/********** Template CSS **********/
:root {
    --primary: #06A3DA;
    --secondary: #F57E57;
    --light: #EEF9FF;
    --dark: #091E3E;
}

h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
}

.btn {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
}

.btn-primary:hover {
    background: #30c0cb;
    border-color: #30c0cb;
}

.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
	width: 41px;
	height: 42px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 6px;
    bottom: 6px;
    z-index: 99;
}

.top-shape::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 100%;
    top: 0;
    left: -17px;
    background: #30c0cb;
    transform: skew(40deg);
}

.navbar-light .navbar-nav .nav-link {
    font-family: 'Jost', sans-serif;
    padding:29px 24px;
    font-size: 18px;
    color: var(--dark);
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 15px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #30c0cb;
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: rgba(9, 30, 62, .85);
    z-index: 1;*/
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (min-width: 991.98px) {
    .banner {
        position: relative;
        margin-top: -90px;
        z-index: 1;
    }
}

.section-title h5::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 3px;
    right: -55px;
    bottom: 11px;
    background: var(--primary);
}

.section-title h5::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 3px;
    right: -75px;
    bottom: 11px;
    background: #30c0cb;
}

.twentytwenty-wrapper {
    height: 100%;
}

.hero-header {
    background: linear-gradient(rgba(9, 30, 62, .85), rgba(9, 30, 62, .85)), url(../img/2.jpg) center center no-repeat;
    background-size: cover;
}

.bg-appointment {
    background: linear-gradient(rgba(9, 30, 62, .85), rgba(9, 30, 62, .85)), url(../img/2.jpg) center center no-repeat;
    background-size: cover;
}

.appointment-form {
    background: rgba(6, 163, 218, .7);
}

.service-item img,
.service-item .bg-light,
.service-item .bg-light h5,
.team-item .team-text {
    transition: .5s;
}

.service-item:hover img {
    transform: scale(1.15);
}

.team-item .team-text::after,
.service-item .bg-light::after {
    position: absolute;
    content: "";
    top: 50%;
    bottom: 0;
    left: 15px;
    right: 15px;
    border-radius:100px / 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .7);
    opacity: 0;
    transition: .5s;
    z-index: -1;
}

.team-item:hover .team-text::after,
.service-item:hover .bg-light::after {
    opacity: 1;
}

.bg-offer {
    background:url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.offer-text {
    background: rgba(6, 163, 218, .85);
}

.price-carousel .owl-nav {
    position: absolute;
    width: calc(100% + 45px);
    height: 45px;
    top: calc(50% - 22.5px);
    left: -22.5px;
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
}

.price-carousel:hover .owl-nav {
    opacity: 1;
}

.price-carousel .owl-nav .owl-prev,
.price-carousel .owl-nav .owl-next {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 2px;
    font-size: 22px;
    transition: .5s;
}

.price-carousel .owl-nav .owl-prev:hover,
.price-carousel .owl-nav .owl-next:hover {
    background: #30c0cb;
}

.bg-testimonial {
    background: url(../img/carousel-2.jpg) center center no-repeat;
    background-size: cover;
}

.testimonial-carousel {
    background: rgba(6, 163, 218, .85);
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: calc(100% + 46px);
    height: 46px;
    top: calc(50% - 23px);
    left: -23px;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 2px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: #30c0cb;
}

.testimonial-carousel .owl-item img {
    width: 120px;
    height: 120px;
}

.fa, .fas {
    font-weight: 600;
    font-size: 15px!important;
    padding: 3px!important;
}




/* FAQ Q&A */
.accordion {
	cursor: pointer;
	padding-top: 18px;
    padding-right: 0px;
    padding-bottom: 18px;
    padding-left: 0px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	font-size: 14px;
	transition: 3.4s;
	font-weight: 900;
	text-transform: uppercase;
	border-bottom: 1px solid #ffffff6b;
}

.active, .accordion:hover {
 
}

.accordion:after {
  content: '\002B';

  font-weight: bold;
  float: right;
  margin-left: 5px;
}



.panel {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.panel p {
    padding-top: 12px;
    text-align: justify;
    font-size: 16px;
    color: #ffffffb3;
}
/* FAQ Q&A */

.faqdiv {
	background-color: #30c0cb!important;
	color: white!important;
	padding: 42px;
}

.white{
	color:white!important;
}

.icns {
    color: #30c0cb;
	font-size: 57px!important;
    margin-bottom: 15px;
}
.nuls {
	text-align: left;
	transform-style: inherit;
	list-style-type: disclosure-closed;
	/*color: #30c0cb;*/
	line-height: 41px;
	font-size: 14px;
	font-weight:400;
}
.nulsdv {
	background-color: #ffffff !important;
	color: #918989;
	padding: 21px;
}
.bglight {
	background-color: #ffffff !important;
	border-left: 6px solid #f57e57;
	border-radius: 0px 66px 0px 0px!important;
}
.fclr {
	color:gray !important;
}
.fclr:hover {
	color:#30c0cb !important;
	text-decoration: underline;
	cursor: pointer;
}

.fndbtn {
    background: #30c0cb;
    border-color: #30c0cb;
	border-radius: 86px;
}
.fndbtn:hover {
    background: #30c0cb;
    border-color: #30c0cb;
	border-radius: 86px;
}

.fndz {
	color:#ffffffb3;
	font-size: 18px;
	line-height: 26px;
}
.nfndz {
	color:#525050c2;
	font-size: 22px;
    line-height: 31px;
	font-family: system-ui;
}
.hpn {
	font-weight: 10!important;
	font-size: 41px;
	font-style: revert;
	font-stretch: condensed;
	font-synthesis-weight: initial;
	font-family: sans-serif;
}
.pfnt {
	line-height: 30px;
    font-family: sans-serif;
}
.sgsweg {
	height: auto;
	width: 30%;
	border-radius: 100%;
	display: inline-block;
	border-style: dotted;
}
.bgfrm {
	background-color: hsl(0deg 0% 20%);
}
.fzg {
	font-family: ui-sans-serif;
}
.fwts {
	font-family: fantasy;
	font-size: larger;
}
.fwtss {
	font-size: 22px;
}
.rdndz {
    color: #fff6f6c2;
    font-size: 22px;
    line-height: 40px;
    font-family: system-ui;
}

.bgfooter {
	margin-top: -75px;
	visibility: visible;
	animation-delay: 0.3s;
	animation-name: fadeInUp;
	width: 100%;
	height: 546px;
	background-image: url(../img/bg.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	/* background-attachment: fixed; */
	/* background-position: center; */
	/* background-size: cover;*/
}

.pfnd {
	font-size: 13px;
	font-family: system-ui;
}
.embtn {
    height: 35px;
    font-size: 12px;
    font-family: unset;
}
.d-flex .submit {
    color: #fff !important;
    display: block;
	width: 51px;
	height: 35px;
    font-size: 16px;
    background: #f7b633 !important;
    border: none;
	margin-left:-20px;
	border-radius: 0px 25px 25px 0px;
}
.ion-ios-send:before {
    content: "\f20c";
}
.embtnss {
 margin-bottom: 8px;
 margin-top: 12px;
}
.round-btn {display: inline;height: 40px; width: 40px; background:#fff;border-radius: 50%;float: left;margin:6px 3px;box-shadow: 2px 2px 5px 0px rgb(82, 0, 67);border: 1px solid;/*border: 1px solid #622657;*/}
.round-btn a {display: block !important;padding: 7px 12px;font-size: 18px;border-radius: 50%;}
.round-btn .icon {padding: 3px;}
.round-btn .icon img{height: 24px; width: 32px;margin-top: 6px;}
.btn-facebook a {color: #3b5998;padding: 8px 13px;}
.btn-linkedin a {color: #007bb6;}
.btn-twitter a{color: #1c9deb;}
.btn-instagram a{color: #dd3f5c;}
.btn-whatsapp a{color: #155E54;}
.btn-envelop a{color: #D6403A;font-size: 15px; padding: 9px 12px;}
.standard_header .standard_social_links {margin-left: 1rem;}


/* for desktop */
@media all and (min-width:767px) {

.mfbb {
	margin-top: -1px;
}
}

/* for mobile */
@media screen and (max-width: 767px) {
.mfbb {
	margin-top: 909px;
    position: absolute;
}
.bgmbl {
	background-color: #333333;
	text-align: center;
	margin-top: -2px;
}

.hmbl {
	display:none;
}

.rmbt {
	    position: absolute;
    bottom: 0;
}

.fimg {
	height: 80px;
	text-align: center;
}
.mpl {
	margin-top: 38px;
}
.cncnt {
	text-align: center;
}
.navbar-toggler {
	margin-top: 0px;
	margin-right: 14px;
}
#navbarCollapse {
	text-align: center;
	line-height: 31px;
}
}
.mactive {
	color: #30c0cb!important;
}
.f14 {
	font-size: 14px;
	margin-bottom: 0px;
}


.carousel .carousel-item {
	max-height:750px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

