/* Colors 
	Main Green : #58A782

    Dev Link 
    https://xd.adobe.com/view/f7b76baf-4fe2-40d8-bf1c-49e7a61c21a3-a2e4/


	Placeholder: https://via.placeholder.com/100x50.jpg
*/
@font-face {
    font-family: 'gothic';
    src: url(/fonts/gothic/gothic.ttf);
}

/* Fonts  */

html {
    scroll-behavior: smooth;
}
  
body {
	margin: 0;
	padding: 0;
    font-family: 'gothic', sans-serif;
/* 	-webkit-user-select: none;  
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none; */
}

img {
	width: 100%;
	height: auto;
}

p, li, a {
	font-size: 16px;
	line-height: 25px;
	color: #202020;
	outline: 0;
    font-family: 'gothic', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
	margin-top: 0;
	margin-bottom: 0;
    font-family: 'gothic', sans-serif;
	color: #202020;
}

h1 {
    font-size: 4em;
    font-weight: 600;
    color: #fff;
}

h2 {
	font-size: 2em;;
    margin-bottom: 20px;
    font-weight: 600;
}

h3, h4{
    margin-bottom: 1rem;
    font-weight: 600;
}

strong {
	font-weight: 800;
}

a:link, a:visited, a:hover, a:active  {
	text-decoration: none;
	/* border-bottom: none; */
	outline: none;
	color:inherit;
	outline: 0;
}

.mobi-breaks{
	display:none;
}

.mobi-icons{
    display: none;
}

.modal-body input:focus{
    border: 2px solid #58A782;
}

.nopad{
	padding:0!important;
}

.form-control {
    display: block;
    width: 100%;
    height: auto;
    padding: 0.8em;
    font-size: 0.9em;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 2px solid #eeeeee;
	border-radius: 0.4rem;
	box-shadow: none;
}

.form-control:focus, .form-control.focus{
	outline: 0;
	box-shadow: none;
    border: 2px solid #eeeeee;
}

/* Buttons  */
.btn{
    width: fit-content;
    padding: 0.5em 1em;
    border: 2px solid #fff;
    border-radius: 0.3em;
    font-size: 1em;
    line-height: 1;
    font-weight: 600;
    color: #fff;
}

.btn:focus, button:focus{
    outline:0;
    box-shadow:none;
}

.btn.btn-go {
    background-color: #58A782;
    color: #fff;
    border: 2px solid transparent;
    padding: 0.8em;
    font-weight: 100;
}

.go-inv {
    color: #fff!important;
    background-color:#202020!important;
    border-color: #202020!important;
}

.go-inv:hover {
    color: #202020!important;
    background-color:#fff!important;
    border-color: #202020!important;
}


.btn.btn-go:hover{
	background-color: #fff;
	color: #58A782!important;
    transition: 0.5s;
    border-color: #58A782;
}

.btn.btn-read-more{
	background-color: #58A782;
	color: #fff;
	font-weight: 100;
	padding: 1em 2em;
	border: 2px solid transparent;
}

.btn.btn-read-more:hover{
	background-color: #fff;
	color: #58A782;
	border-color: #58A782;
	transition: 0.5s;
}

.go-green-inv{
    color: #58A782!important;
    background-color:#fff!important;
    border-color: #58A782!important;
}

.go-green-inv:hover{
    color: #fff!important;
    background-color:#58A782!important;
    border-color: #58A782!important;
}

.btn-go-accord{
    color: #fff;
    background-color: transparent;
    border-color: #7f7f7f;
}

/* Landing Page  */

.landing-page{
    height: 100vh;
}

h1 {
    font-size: 40px;
    font-weight: 400;
}

.section{
    height: 100%;
    padding: 3em 0;
}

/* Navigation  */
.header{
	background-color: #fff;
	-webkit-box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.19);
    -moz-box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.19);
    box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.19);
}

.fixed-top{
    z-index: 9999;
}

.navbar-brand{
    width: 9em;
}

.logo .fa-bars {
    font-size: 1.5em;
    display: flex;
    align-items: center;
    padding-right: 1em;
}

.navbar-nav {
    width: 30em;
    justify-content: space-between;
    margin-right: 1em;
}

.nav-link{
	border-bottom: 3px solid transparent;
	padding: 0 0 0.3em!important;
}

.nav-item:hover .nav-link{
	border-bottom: 3px solid #58A782;
	transition: 0.5s;
}

.nav-item:active .nav-link, .nav-item.active .nav-link{
	border-bottom: 3px solid #58A782;
}

.navbar-expand-md {
    padding: 0.5rem 0;
}

/* Search Bar  */

.search-field {
    width: 50px;
    height: 50px;
    color: #202020;
    font-size: 1.3em;
    padding: 0.35em 50px 0.35em 0;
    border: 1px solid transparent;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    max-width: 60%;
    float: right;
}

.search-field-mobi {
    width: 100%;
    height: 50px;
    color: #202020;
    font-size: 1.3em;
    padding: 0.35em 50px 0.35em 0;
    border: 1px solid transparent;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    max-width: 60%;
    float: right;
}

.search-wrapper {
    position: relative;
}

.search-wrapper-mobi {
    position: relative;
    width: 90%;
}

.search * {
    outline: none;
    box-sizing: border-box;
}

.search {
    position: absolute;
    top: 50%;
    left: 4em;
    /* margin-left: 15px; */
    -webkit-transform: translateX(-100%) translateY(-50%);
    transform: translateX(-100%) translateY(-50%);
}

.search-icon {
    position: absolute;
    top: -3px;
    right: 0;
    background-color: #fff;
    width: 50px;
    height: 50px;
    font-size: 1.35em;
    text-align: center;
    border-color: transparent;
    border-radius: 50%;
    pointer-events: none;
    display: inline-block;
    transition: background-color 0.2s ease-in-out;
}

.search-icon-mobi {
    position: absolute;
    right: 0;
    background-color: #fff;
    width: 50px;
    height: 50px;
    font-size: 1.35em;
    text-align: center;
    border-color: transparent;
    border-radius: 50%;
    pointer-events: none;
    display: inline-block;
    transition: background-color 0.2s ease-in-out;
}

#navSearchIcon{
    position:relative;
    float:right;
}

.search-field:focus {
    border-bottom: 2px solid #202020;
}

/* Home  */
.home-head {
    margin-top: 100px;
    background: url("/images/home/Home-header.jpg") no-repeat center center/cover;
    padding: 10% 0;
    min-height: 83vh;
}

.home-head p{
	color: #fff;
	font-size: 1.5em;
}

.home-head .form-control{
	border: none;
	padding: 0.8em;
    font-size: 0.9em;
}

.home-head .form-control:focus, .home-head .form-control.focus{
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(101,176,155,.25);
	border: none;
}

.search-box{
	width: 25em;
}

.search-box select{
	-webkit-appearance:none;
	-moz-appearance:none;
    appearance:none;
    padding-right: 2.3em!important;
}

.search-box select::-ms-expand {
	display: none;
}

.custom-caret{
	position: relative;
    width: 83%;
}
/* 
.custom-caret:after{
    content: "\f107";
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    position: relative;
    right: 2em;
    display: flex;
	align-items: center;
	pointer-events: none;
} */

.home-intro{
	padding: 3em 0;
	width: 68%;
}

.iamat-section {
    background-color:#58A782;
    padding: 20px;
    text-align: center;
}

.iamat-section p {
    padding: 0;
    margin: 0;
    color:#fff;
    font-size: 18px;
}

.who-we{
    padding: 3em 0;
	background-color: #F2F2F2;
	border: none;
}

.who-intro {
    width: 60%;
    margin: 0 auto 2em;
}

.who-we .card{
    border-radius: 0.5em;
    border: none;
}

.who-we .card-img-top{
	border-radius: 0.5em;
}

.who-we .card-body {
    padding: 1.25rem;
    position: relative;
    min-height: 310px;
}

.who-we .card-body .btn-read-more {
    position: absolute;
    bottom: 20px;
}

.other-headers{
	background: url("https://via.placeholder.com/1600x800.jpg") no-repeat center center/cover;
	margin-top: 6.5em;
}

.other-headers-info{
	height: 20em;
}

.other-headers h1{
	font-weight: 600;
}

/* About  */
.why-trust{
    background-color: #232323;
    padding: 5em 0;
}

.cta-btns {
    margin-bottom:50px;
}

#cta-divider {
    margin-left:15px;
    margin-right:15px;
}

.features .fa-circle{
    color: #58A782;
    font-size: 5em;
    margin-bottom: 1rem;
}

.feature{
    padding: 0 3em;
}

.why-trust h3, .why-trust h4, .why-trust h2, .why-trust li, .why-trust p{
    color: #fff;
}

.why-trust h2{
    font-size: 2em;
}

.why-trust h3{
    font-size: 2.5em;
    margin-bottom:0.5em;
}

.why-trust p{
    font-weight: 100;
}

.why-trust ul{
    padding-left: 1em;
}

.our-partners{
    padding: 5em 0;
    background-color: #F2F2F2;
}

.our-partners .gallery img{
    margin-bottom: 1em;
    border-radius: 0.5em;
}

.our-partners .col-md-4{
    padding-left: 0;
}

/* Travel Health Resources  */
.health-box{
    padding: 0 8em;
    height: 28em;
    justify-content: center;
    max-width: 41em;
}

.green-box{
    background-color: #58A782;
}

.green-box h2 span{
    border-bottom: 1px solid #202020;
    padding-bottom: 0.5em;
}

.dark-box{
    background-color:#202020;
}

.dark-box h2{
    color: #58A782;
}

.dark-box h2 span{
    border-bottom: 1px solid #58A782;
    padding-bottom: 0.5em;
}

.health-box h2{
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 1em;
}

.health-box ul{
    padding-left: 1em;
}

.health-box p, .health-box li{
    color: #fff;
}

.health-info {
    min-height: 14em;
    justify-content: space-between;
    display: flex;
    flex-flow: column wrap;
}

.travel-info{
    padding: 6em 0;
}

/* Country Individual */
.indiv-search {
    background-color: rgb(32,32,32,0.57);
    padding: 1em;
    border-radius: 0.5em;
}

.indiv-heading {
    max-width: 60%;
}

.travel-health{
    background-color: #202020;
    padding: 2em 0;
    margin-bottom: 8em;
}

.travel-health h2{
    color: #fff;
    padding-bottom: 0.7em;
    border-bottom: 1px solid #ABABAB;
}

[data-toggle="collapse"] .fa:before {  
    content: "\f106";
}

[data-toggle="collapse"].collapsed .fa:before {
    content: "\f107";
}

.toggle-text{
    color: #fff;
}

.toggle-text:after{
    content: "Close";
}

.collapsed .toggle-text:after{
    content: "See All";
}

.open-close-box{
    position: absolute;
    right: 1em;
    bottom: 1.8em;
}

.illness-name{
    color: #58A782;
    font-weight: 100;
    font-size: 2em;
}

/* .travel-health h2.collapsed:after{
    content: "\f106";
} */

.travel-health .open-info{
    color: #fff;
}

.health-section{
    padding: 2em 0;
}

.health-section a, .health-section p{
    color: #fff;
    margin-bottom: 0.25rem;
}

.health-section h3{
    color: #58A782;
    font-weight: 600;
    font-size: 1.5em;
}

.health-section h4{
    color: #fff;
    text-transform: uppercase;
    font-size: 1em;
    margin-top: 1em;
}

.collapsing {
    transition: 1s;
}

.info-boxes .col-md-12{
    border-bottom: 1px solid #ABABAB;
    padding: 0;
}

.info-box{
    padding-bottom: 3rem;
    margin-top: 3rem;
}

.info-box p{
    margin-bottom: 0;
}

.info-box h5{
    text-transform: uppercase;
    padding-bottom: 1rem;
    font-size: 1em;
}

.validity .btn-go{
    font-size: 1.3em;
    padding: 1em 1.5em;
    border-width: 3px;
    font-weight: 600;
}

.validity{
    padding-bottom: 4em;
}

.next-section{
    background-color:#F2F2F2;
    padding: 3em 0;
}

.next-section h3{
    color: #58A782;
    font-size: 2em;
}


/* Locate Doctors Clinics  */

.country-information{
    border-top: 1px solid #ABABAB;
}

.country-information h3{
    color: #58A782;
    font-weight: 100;
}

.country-listings{
    width: 82%;
}

.country-listings .btn-go{
    padding: 1em 2em;
}

.city-box{
    margin: 2em 0;
}

.city-info{
    border: 1px solid #ABABAB;
    padding: 1.5em;
    border-radius: 0.5em;
    overflow-wrap: break-word;
}

.city-info span{
    font-weight: 600;
}

/* .map{
    height: 12em;
    border-radius: 0.5em;
} */

.map-box {
    border-radius: 1em;
    overflow: hidden;
    /* width: fit-content; */
    width: 100%;
}

/* Contact  */
.contact-intro{
	margin-top: 5em;
	padding-bottom: 3em;
	width: 70%;
}

.contact-form{
	width: 90%;
}

.contact-page label{
	font-weight: 600;
	text-transform: uppercase;
}

.contact-details a:hover{
    color: #58A782;
    transition: 0.5s;
}


.error {
    padding: 1em;
    background-color: #202020;
    text-align: center;
    color: #fff;
    display: none;
    width: 70%;
    font-size: 16px;
    margin: 0 auto 1em;
}

.output {
    padding: 1em;
    background-color: #58A782;
    text-align: center;
    color: #fff;
    display: none;
    width: 70%;
    font-size: 16px;
    margin: 0 auto 1em;
}

#email2 {
	display: none;
}

.msg-input{
    min-height: 10em;
	resize:vertical;
	max-height: 15em;
}


/* Footer  */
.footer{
	padding: 2em 0;
}

.footer-logo{
	justify-content: center;
}

.footer img{
	width: 22em;
}

.footer .navbar-nav {
    width: 30em;
    margin: 0 auto 0.5em;
}

.error-404 {
    height: 25em;
    padding-top: 5em;
}

.error-404 p {
    font-size: 1.5em;
}

.error-404 a {
    font-size: 1em;
    font-weight: 600;
    color: #58A782;
}

.error-404 a:hover {
    border-bottom: 2px solid #202020;
}

[data-notify="container"][class*="alert-pastel-"] {
    background-color: rgb(255, 255, 255);
    border-width: 0px;
    border-left: 15px solid #5f8d46;
    border-radius: 0px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

[data-notify="container"].alert-pastel-info {
    border-left-color: #818285;
}

[data-notify="container"].alert-pastel-danger {
    border-left-color: #F2493B;
}

[data-notify="container"][class*="alert-pastel-"]>[data-notify="title"] {
    color: #333;
    display: block;
    font-weight: 700;
    margin-bottom: 5px;
}

[data-notify="container"][class*="alert-pastel-"]>[data-notify="message"] {
    font-weight: 400;
}

.health-section a:hover{
    /* color: #58A782; */
    border-bottom: 1px solid #58A782;
    /* transition: 0.5s; */
}

/* Frontend Select2  */
.select2-container .select2-selection--single {
    height: auto!important;
    padding: 0.5em!important;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    height: 33px;
    margin-right: 60px;
    padding-right: 0px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    margin: 0.6em!important;
}

span.select2-selection.select2-selection--single:focus {
    outline: 1px solid #58A782!important;
}

input.select2-search__field:focus {
    outline: 1px solid #58A782!important;
    border-radius: 0.2em;
}

.btn-go .span{
    color: #fff!important;
}

.expand-body a{
    color: #58A782;
    font-weight: 600;
}

.expand-body a:hover{
    border-bottom: 1px solid #58A782;
}

.country-info-text {
    line-height: 2;
    background-color: #58A782;
    color: #fff;
    padding: 1em;
    border-radius: 0.5em;
    margin-bottom: 2em;
    /* width: 35%; */
    float:right;
    min-width: 350px;
    max-width: 350px;
}

.country-info-text p {
    color:#fff;
}

.green-background {
    /* background-color: #58A782; */
    color: #fff;
    padding: 1em;
    border-radius: 0.5em;
    margin-bottom: 2em;
    width: 35%;
    float:right;
    line-height: 2;
}

.associated-countries ul {
    list-style: none;
    display: flex;
    flex-flow: row wrap;
    padding-left:0;
}

.associated-countries li{
    padding: 1em 1em 1em 0;
}

.associated-countries a {
    background-color: #58A782;
    padding: 0.5em;
    color: #fff;
    border-radius: 0.3em;
}

.main-risk{
    color: #58A782;
    font-size: 2.5em;
}

.risk-box{
    border: 6px double #58A782;
    padding: 2em;
    margin-bottom: 2em;
    width: 100%;
}

.outbreak-box{
    border: 6px double #ff8c00;
    padding: 2em;
    margin-bottom: 2em;
    width: 100%;
}

/* .risk-box p, .outbreak-box{
    margin-bottom: 0;
} */

.risk-box h3{
    color: #58A782;
    font-weight: 600;
    font-size: 1.2em;
}

.outbreak-box h3{
    color: #ff8c00;
    font-weight: 600;
    font-size: 1.2em;
}

.country-risk-info h5{
    font-weight: 600;
    margin-bottom: 0.5em;
}

.country-risk-info h5, .risk-info h5{
    font-weight: 600;
    margin-bottom: 0.5em;
}

.country-risk-info a, .risk-info a{
    color: #58A782;
    font-weight: 600;
}

.country-risk-info a {
    font-size: 1em;
}

.associated-countries a{
    color: #fff!important;
}

.country-risk-info .row{
    display: inline;
}

.row .bk8 {
    background: #f5f5f5;
    clear: both;
    display: flex;
    content: "";
    clear: both;
    margin-bottom: 1em;
    /* border-radius: 1em; */
    padding: 1em;
    /* flex-flow: row nowrap; */
}

.country-info-text h3{
    color: #fff;
}

.country-info-text a:hover{
    color: #fff!important;
}

.country-info-text .btn-go {
    border-color:#fff;
    color:#fff;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #202020!important;
}

/* .risk-select .select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #58A782!important;
} */

.select2-dropdown {
    z-index: 9999999;
}

.search-wrapper .select2-selection__arrow b {
    display:none !important;
}

.search-wrapper select {
    -webkit-appearance: none;
    -moz-appearance: none;
}

.search-wrapper-mobi .select2-selection__arrow b {
    display:none !important;
}

.search-wrapper-mobi select {
    -webkit-appearance: none;
    -moz-appearance: none;
}

.custom-about-circle {
    background: #58A782;
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem auto;
}

.abt-reliable img {
    width: 74%;
    margin-top: 7px;
}

.abt-tailored img {
    margin-top: 12px;
    width: 55px;
    margin-right: 6px;
}

.abt-trusted img {
    width: 76px;
}

@media screen and (min-width: 992px) and (max-width: 1300px) {
    .home-slider {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }

    .home-first-text {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}

@media screen and (min-width: 992px) {
    .intro-img {
        border-radius: 0.5em;
        width: 36em;
        position: absolute;
        bottom: 0;
        z-index: 99;
        right: 58px;
        top: 2rem;
    }
}