@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&family=Raleway&family=Roboto&display=swap');
@import url('../Panton/stylesheet.css');

:root{
    --main-color:#38BCEA ;
    --bg:#FBFBFB;
}

*{
    font-family: 'Nunito', sans-serif;
    font-family: 'Raleway', sans-serif;
    font-family: 'Roboto', sans-serif;
    margin:0; padding:0;
    box-sizing: border-box;
    outline: none; border:none;
    text-decoration: none;
    transition: .2s linear;
    list-style: none;
}


html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 9rem;
    scroll-behavior: smooth;
}

html::-webkit-scrollbar{
    width: .8rem;
}

html::-webkit-scrollbar-track{
    background: transparent;
}

.btn{
    background: var(--main-color);
    border-radius: 3px;
}

section{
    padding: 124.33px 145px;
}

h1{
    font-family: 'Panton';
    font-weight: 700;
    font-size: 48px;
    line-height: 50px;
    color: #1A3444;
}
/* HEADER */

header{
    background: var(--bg);
    padding: 39px 130px 34.65px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top:0; left: 0; right: 0;
    z-index: 1000;
}

header .logo{
    margin-right: 20px;
}

header .logo img{
    width: 60px;
    border-radius: 50%;
}

header .icons{
    display: flex;
}

header .icons a{
    color: #2E3A59;
    font-size: 15px;
    padding-right: 20.86px;
}

header .navbar{
    display: flex;
}

header .navbar a{
    font-family: 'Roboto';
    font-size: 15px;
    line-height: 18px;
    color: #AAAAAA;
    padding-right: 35px;
}

header nav a:hover{
    color: #01678A ;
}

header .item-container {
    display: flex;
    align-items: center;
}

header .item-container i{
    padding-right: 14.88px;
}

header .location p{
    width: 142.25px;
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    line-height: 17px;
}

header .time p{
    font-family: 'Panton';
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    color: #12354B;
}

header .time span{
    font-size: 15px;
    line-height: 18px;
    text-align: right;
    color: #919191;
}

header .phone a{
    font-family: 'Panton';
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    color: #3C3C3C;
}

header .btn{
    padding: 8.13px 11.69px;
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    color: #FFFFFF;
    cursor: pointer;
}

header #menu-btn{
    font-size: 5rem;
    cursor: pointer;
    color:#666;
    padding:.5rem 1.5rem;
    display: none;
  }


header .navbar-items-container{
    position: absolute;
    top:100%; right: -100%;
    height: calc(100vh - 9.5rem);
    width: 35rem;
    background: #fff;
    padding:0 1.5rem;
    display: none;
}

header .navbar-items-container .navbar{
    position: relative;
    margin:2rem 0;
    display: flex;
    align-items: center;
    gap:1.5rem;
    
}

header .navbar-items-container.active{
    right: 0;
    border-left: 1px solid rgb(164, 164, 164);
}

header .popup{
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    top: 0;
    left: 0;
    display: none;
}

header .popup.active{
    display:block;
}

header .popup .popup_body{
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 10px;
}

header .popup .popup_body .popup_content{
    background-color: #fff;
    color: #000;
    max-width: 800px;
    padding: 20px 30px;
    border: 1px solid var(--main-color);
    box-shadow: 2px 4px 10px rgb(0 0 0 / 45%);
}

header .popup .popup_body .popup_content .result_modal-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .popup .popup_body .popup_content .result_modal-header h2{
    font-size: 24px;
}
header .popup .popup_body .popup_content .result_model-form{
    margin-top: 30px;
}

header .popup .popup_body .popup_content .result_model-form p{
    font-size: 15px;
    max-width: 550px;
    margin-bottom: 30px;
}

header .popup .popup_body .popup_content .result_model-form .search_input {
    margin-bottom: 15px;
    border: 1px solid var(--main-color);
    box-sizing: border-box;
    height: 46px;
    width: 320px;
    max-width: 300px;
    padding-left: 12px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    display: flex;
    align-items: center;
    color: #806D6D;
}

header .popup .popup_body .popup_content .submit_button  {
    margin-top: 30px;
    width: 100%;
    max-width: 300px;
    background: var(--main-color);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-sizing: border-box;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    color: #FFFFFF;
}


header .popup .popup_body .popup_content .result_modal-header .close{
    content: "";
    display:inline-block;
    width: 30px;
    height: 30px; 
    background-image: url(../img/icons/close.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.home{
    background-image:url('../img/nurse-posing-against-background-dentist-who-treats-girl\ 1.png') ;
    background-repeat: no-repeat;
    background-size: cover;
    height: 628.51px;
    padding-top: 250.77px;
}

.home .home_inner{
    padding-left: 130px;
}

.home .home_inner h1{
    line-height: 50px;
    max-width: 351.85px;
}

.home .home_inner p {
    font-family: 'Raleway';
    font-weight: 400;
    font-size: 20px;
    line-height: 23px;
    color: #6F6F6F;
    max-width: 464.71px;
    padding: 17px 0 37px;
}

.home .home_inner .btn {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    color: #FFFFFF;
    padding: 14.38px 8px;
}

.home .home_items{
    display: flex;
    gap:6.47px;
    padding-top: 76.87px;
}

.home .home_items .item{
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(19px);
}

.home .home_items .item .item_inner p{
    max-width: 192.11px;
    font-family: 'Raleway';
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #4B4B4B;
}

.home .home_items .item .item_inner img{
    padding-right: 30px;
}

.home .home_items .first{
    width: 100%;
}

.home .home_items .first .item_inner{
    display: flex;
    align-items: center;
    float: right;
    padding: 26.65px 20.89px 37.3px 0;
}

.home .home_items .second{
    width:368.71px;
    max-width: 100%;
}

.home .home_items .second .item_inner{
    display: flex;
    align-items: center;
    padding: 26.65px 94.45px 37.3px 30.27px;
}

.home .home_items .third{
    width:100% ;
}

.home .home_items .third .item_inner{
    display: flex;
    float: left;
    padding: 26.65px 94.45px 37.3px 30.27px;
}

.service{
    background-image: url('../img/clinic_bg6.png');
    background-repeat: no-repeat;
    background-color: #FBFBFB;
    background-size: cover;
    z-index: -1;
}

.service p{
    padding: 13.97px 0 69.02px;
    font-family: 'Raleway';
    font-weight: 400;
    font-size: 24px;
    line-height: 28px;
    color: #222222;
    max-width: 439.19px;
}

.service .service_boxes{
    display: flex;
    flex-wrap: wrap;
    gap:1.5rem;
}

.service .service_boxes .box{
    flex:1 1 30rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    background:rgba(255, 255, 255, 0.437);

}

.service .service_boxes .box {
    text-align: center;
    padding:54.08px 39.69px;
}

.service .service_boxes .box:hover{
    background: #fff;
}

.service .service_boxes .box  img{
    margin-bottom: 28.46px;
}

.service .service_boxes .box  h3{
    font-family: 'Roboto';
    font-weight: 500;
    font-size: 26px;
    line-height: 30px;
    color:#222222 ;
}

.service .service_boxes .box  p{
    font-size: 17px;
}

/* Animation */
.box-area {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.box-area li {
	position: absolute;
	display: block;
	list-style: none;
	width: 25px;
	height: 25px;
	background: #38BCEA;
	animation: animate 20s linear infinite;
	bottom: -150px;
    z-index: -1;
}

.box-area li:nth-child(1) {
	left: 86%;
	width: 80px;
	height: 80px;
	animation-delay: 0s;
}
.box-area li:nth-child(2) {
	left: 12%;
	width: 30px;
	height: 30px;
	animation-delay: 1.5s;
	animation-duration: 10s;
}
.box-area li:nth-child(3) {
	left: 70%;
	width: 100px;
	height: 100px;
	animation-delay: 5.5s;
}
.box-area li:nth-child(4) {
	left: 42%;
	width: 150px;
	height: 150px;
	animation-delay: 0s;
	animation-duration: 15s;
}
.box-area li:nth-child(5) {
	left: 65%;
	width: 40px;
	height: 40px;
	animation-delay: 0s;
}
.box-area li:nth-child(6) {
	left: 15%;
	width: 110px;
	height: 110px;
	animation-delay: 3.5s;
}
@keyframes animate {
	0% {
		transform: translateY(0) rotate(0deg);
		opacity: 1;
	}
	100% {
		transform: translateY(-1000px) rotate(360deg);
		opacity: 0;
	}
}





.trust{
    background: var(--bg);
}

.trust .trust_boxes{
    gap: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.trust .trust_boxes .box{
    margin-top: 30px;
    background:#fff;
    padding:58.35px 26.56px 58.35px 37.52px;
}



.trust .trust_boxes .box h2{
    font-family: 'Panton';
    font-weight: 400;
    font-size: 48px;
    line-height: 58px;
    color: #38BCEA;
    margin-bottom: 7.73px;
}

.trust .trust_boxes .box h3{
    font-family: 'Panton';
    font-weight: 700;
    font-size: 36px;
    line-height: 44px;
    color: #222222;
    max-width: 422.85px;
    margin-bottom: 7.73px;
}

.trust .trust_boxes .box p {
    font-family: 'Raleway';
    font-weight: 400;
    font-size: 24px;
    line-height: 28px;
    color: #292929;
    max-width: 461.33px;
}

.call {
    padding-left: unset;
    padding-right: unset;
}

.call_inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: 592.63px;
    padding: 0 145.12px 0 130px;
    background: linear-gradient(84.27deg, #E6F2FF 0%, #FAF1ED 100%);
}

.call_inner img{
    position: relative;
    /* z-index: 1000; */
    top: -95px;
}

.call_inner .call_content h1{
    max-width: 891.15px;
    padding-bottom: 39.41px;
}

.call_inner .call_content p{
    font-family: 'Raleway';
    font-weight: 400;
    font-size: 24px;
    line-height: 31px;
    max-width: 532.86px;
    padding-bottom: 37.58px;
}

.call_inner .call_content p a{
    color:#01678A;
}

.call_inner .call_content form{
    padding-bottom:32.62px ;
    display: flex;
    gap: 20.33px;
}

.call_inner .call_content form input{
    padding: 20.01px 105.88px 20.1px 27.1;
    background: #FEFEFE;
    font-family: 'Raleway';
    font-weight: 400;
    font-size: 24px;
    line-height: 31px;
    color: #BBBBBB;
}

.call_inner .call_content form .btn{
    font-family: 'Raleway';
    font-weight: 700;
    font-size: 24px;
    line-height: 31px;
    color: #FFFFFF;
    padding: 20.01px 33.89px 20.01px 34.89px;
}

.call_inner .call_content .subtext{
    font-family: 'Arial';
    font-weight: 400;
    font-size: 18px;
    line-height: 23px;
    color: #4E4E4E;
    padding: unset;
}

.call_inner .call_content .subtext span{
    text-decoration: underline;
}

.guarantee{
    background: #FBFBFB;
}

.guarantee h2{
    padding:13.97px 0 63.04px;
    max-width: 526.06px;
    font-family: 'Arial';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 28px;
    color: #737373;
}

.guarantee .guarantee_row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap-reverse;
}

.guarantee .guarantee_row .quarantee_column .logo{
    display: flex;
    align-items: center;
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 20px;
    line-height: 23px;
    color: #1A3444;
    padding-bottom: 16.5px;
}

.guarantee .guarantee_row .quarantee_column .logo img{
    padding-right: 9.31px;
}

.guarantee .guarantee_row .quarantee_column p {
    font-family: 'Raleway';
    font-weight: 600;
    font-size: 20px;
    line-height: 23px;
    color: #242424;
    max-width: 581.13px;
}

.guarantee .guarantee_row .quarantee_column .quarantee_departments{
    padding: 47.47px 0 47.47px;
    display: flex;
    flex-wrap: wrap;
    column-gap: 11.63px;
    row-gap: 9.86px;
    max-width: 100%;
}

    .guarantee .guarantee_row .guarantee_image{
        height: 100%;
        width: 750px;
    }

.guarantee .guarantee_row .quarantee_column .quarantee_departments .department{
    padding: 11.5px 22.02px;
    background: #F9F9F9;
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    color: #242424;
}

.guarantee .guarantee_row .quarantee_column .quarantee_partners{
    display: flex;
    gap: 41.02px;
    align-items: center;
}

.workers .subtext {
    font-family: 'Arial';
    font-weight: 400;
    font-size: 24px;
    line-height: 28px;
    color: #737373;
    padding:13.97px 0 72.94px;
    max-width: 526.06px;
}

.workers .worker_boxes{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    row-gap: 66.4px;
    flex-wrap: wrap;
}

.workers .worker_boxes .box{
    background: linear-gradient(255.02deg, #F7F8FA -0.59%, #EFF0F4 100%);
    box-shadow: 0px 13px 50px rgba(192, 192, 192, 0.2);
    border-radius: 4px;
    display: flex;
}

.workers .worker_boxes .box .content{
    padding-left: 54.63px;
}

.workers .worker_boxes .box img{
    padding-right: 51.97px;
    padding-left: 10px;
    height: 100%;
    max-width: 100%;
    width: 350px;
}

.workers .worker_boxes .box .content h2{
    font-family: 'Panton';
    font-weight: 700;
    font-size: 36px;
    line-height: 44px;
    color: #363636;
    max-width: 295px;
    padding-top: 29.02px;
}

.workers .worker_boxes .box .content p{
    font-family: 'Arial';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 23px;
    color: #3E3E3E;
    padding-top: 11.25px ;
}

.workers .worker_boxes .box .content a{
    font-family: 'Arial';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 25px;
    color: #3E3E3E;
}

.workers .worker_boxes .box .content a:hover{
    color: #38BCEA;
}


footer {
    background: #F2F3F5;
    padding: 61.3px 145.12px 56.86px 129.57px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .icons {
    display: flex;
}

footer .icons a{
    font-size: 33.5px;
    padding-right: 46.59px;
}

footer p{
    font-family: 'Arial';
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    text-align: center;
    color: #000000;
    max-width: 500px;
}

footer span {
    font-family: 'Arial';
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    text-decoration-line: underline;
    color: #000000;
    max-width: 239.51px;
}

footer .icons a{
    color: #666;
}


