*{
    font-family: 'Fira Sans', sans-serif;
}

body, html{
    background-color: #F3F6FE;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a{
    text-decoration: none;
}

li{
    list-style-type: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
}

p{
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0;
}


.box-white{
    background-color: #fff;
}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

nav ul {
    display: flex;
    margin-top: 20px;
}

nav ul li{
    list-style-type: none;
}

nav ul li a{
    color: #000;
    margin: 0 20px;
    transition: 0.2s all;
    padding-bottom: 15px;
    font-family: 'Manrope', sans-serif;
}

nav ul li a:hover{
    color: #608DC3;
    border-bottom: 3px solid #608DC3;
}

.active-a{
    color: #608DC3;
    border-bottom: 3px solid #608DC3;
}

.header-btn{
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 500;
    background-color: #608DC3;
    padding: 17px 38px;
    color: #fff;
    text-align: center;
    width: 200px;
    display: block;
}


.header-btn:hover{
    color: #fff;
}

.header-bg{
    background: url(img/img-1.jpg) center center/cover no-repeat;
}

.header-block{
    padding-top: 220px;
    padding-bottom: 144px;
}

.header-text{
    margin-top: 24px;
    border-radius: 15px;
    background-color: rgb(255, 255, 255, 0.8);
    padding: 30px;
}

.header-text h1{
    font-size: 60px;
    font-weight: bold;
}

.header-text p{
    font-size: 18px;
    max-width: 400px;
}

.header-fixed{
    position: fixed;
    width: 100%;
    top: 0px;
    z-index: 9999999;
    box-shadow: 1px 8px 14px -5px rgba(34, 60, 80, 0.2);
}

.about{
    padding: 168px 0;
}

.figure{
    width: 71px;
    height: 2px;
    background-color: #608DC3;
    margin-top: 19px;
}

.h2{
    color: #000;
    font-size: 58px;
    font-weight: bold;
    margin-top: 0px;
    font-family: 'Montserrat', sans-serif;
}

.span{
    color: #608DC3;
    font-family: 'Montserrat', sans-serif;
}


.doctors{
    padding: 75px;
    font-family: 'Montserrat', sans-serif;
    padding-top: 100px;
}

.title{
    width: 340px;
    margin: 0 auto;
    margin-bottom: 75px;
    white-space: nowrap;
}

.title-rewievs{
    width: 570px;
    margin: 0 auto;
    white-space: nowrap;
}

.reviews{
    padding-top: 100px;
}

.doctors h5{
    font-size: 19px;
    font-weight: bold;
    margin-top: 25px;
    font-family: 'Montserrat', sans-serif;
}

.doctors h6{
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
    font-family: 'Montserrat', sans-serif;
}

.doctors p{
    font-size: 700px;
    margin-top: 10px;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
}

.doctors h6{
    color: #002E55;
    font-weight: 800;
}
.df-br-32{
    align-items: center;
}





.footer-bg{
    background: url(img/bg-footer.jpg) center center/cover no-repeat;
    height: 210px;
}

.footer-bg-text{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 90px;
}

.footer-bg-text h2{
    font-size: 36px;
    color: #fff;
}

.footer{
    padding-top: 50px;
}

.footer p{
    line-height: 32px;
    color: #1A1A1F;
}

.menu-footer h3{
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
}

.logo-footer{
    margin-left: -15px;
}

.img-social{
    margin-right: 10px;
}

.menu-footer a{
    line-height: 35px;
    color: #000;
    font-family: 'Montserrat', sans-serif;
}

.menu-footer a:hover{
    text-decoration: underline;
}

.footer hr{
    margin-top: 40px;
    margin-bottom: 30px;
}

.footer-crp{
    display: flex;
    justify-content: space-between;
    padding-bottom: 30px;
    font-size: 12px;
}

.p{
    color: #1A1A1F;
}

.privacy span{
    margin-left: 40px;
}


/* mob-menu */

.menu__mb {
    z-index: 99999;
  }
  .nav-bar {
    position: fixed;
    background-color: #608DC3;
    top: 0;
    left: 100%;
    height: 100vh;
    padding: 5px;
    width: calc(100% / 3 + 100px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transition: .2s;
    transition: .2s;
    z-index: 1;
  }
  .nav-bar.toggle {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  .toggle-menu {
    /* background-color: #335076; */
    width: 44px;
    height: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    padding: 2px 5px;
    border-radius: 5px;
    cursor: pointer;
    position: fixed;
    top: 24px;
    right: 30px;
    z-index: 2;
    -webkit-transition: .2s;
    transition: .2s;
  }
  .line {
    width: 100%;
    height: 4px;
    border-radius: 5px;
    background-color: #608DC3;
    -webkit-transition: -webkit-transform 0.2s ease-out;
    transition: -webkit-transform 0.2s ease-out;
    transition: transform 0.2s ease-out;
    transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
    -webkit-transition: transform 0.2s ease-out;
    -moz-transition: transform 0.2s ease-out;
    -ms-transition: transform 0.2s ease-out;
    -o-transition: transform 0.2s ease-out;
  }
  .toggle-menu.toggle {
    top: 20px;
    right: 20px;
    /* background-color: #608DC3; */
  }
  .toggle-menu.toggle .line1 {
    background-color: #fff;
    -webkit-transform: scale(0.9) rotateZ(-45deg) translate(-6px, 4px);
            transform: scale(0.9) rotateZ(-45deg) translate(-6px, 4px);
  }
  .toggle-menu.toggle .line2 {
    display: none;
  }
  .toggle-menu.toggle .line3 {
    background-color: #fff;
    -webkit-transform: scale(0.9) rotateZ(45deg) translate(-6px, -4px);
            transform: scale(0.9) rotateZ(45deg) translate(-6px, -4px);
  }
  .nav-list {
    padding-top: 50px;
    list-style: none;
    display: flex;
    flex-direction: column;
    padding-left: 0;
  }
  .nav-list-item {
    text-align: center;
    padding: 10px 0;
  }
  .nav-link {
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    padding-right: 20px;
  }
  .nav-link::before {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transition: -webkit-transform 0.4s ease-in-out;
    transition: -webkit-transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transition: transform 0.4s ease-in-out;
    -moz-transition: transform 0.4s ease-in-out;
    -ms-transition: transform 0.4s ease-in-out;
    -o-transition: transform 0.4s ease-in-out;
  }
  .nav-link:hover::before {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }


.img-up{
    position: fixed;
    bottom: 40px;
    right: 40px;
}

.map{
    display: flex;
    align-items: center;
    height: 500px;
    margin-bottom: 100px;
}

.map-text{
    width: 45%;
    background-color: #608DC3;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-text h2{
    font-size: 35px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
}
.text-bottom-45{
    margin-bottom: 30px;
}

.footer-text{
    font-family: 'Fira Sans', sans-serif;
}

.about p{
    font-size: 22px;
    line-height: 42px;
    font-family: 'Montserrat', sans-serif;
}

.p-text-desk{
    font-family: 'Montserrat', sans-serif;
}

#container h2{
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
}

.tell{
    background: url(img/bg-tell.jpg) center center/cover no-repeat;
    padding: 100px 0;
    color: #fff;
    margin-bottom: 100px;
}

.tell h2{
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 36px;
}

.tell p{
    font-size: 25px;
}

.tell input{
    margin: 0 auto;
    display: block;
}

.input-email{
    padding: 20px 22px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #A7A7A7;
    background: rgba(255, 255, 255, 0.89);
    width: 343px;
    height: 67px;
    border: none;
    outline: none;
}

.btn-email{
    margin: 0 auto;
    display: block;
    width: 343px;
    height: 67px;
    color: #fff;
    background-color: #608DC3;
    font-size: 21px;
    border: none;
    font-family: 'Montserrat', sans-serif;
    outline: none;
}

.events__title{
    color: #608DC3;
    font-size: 58px;
    font-weight: bold;
    margin-top: 0px;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    margin-bottom: 50px;
}

.header-btn-445{
    display: flex;
    margin: 30px 0;
}
.header-btn-445 a{
    margin-right: 20px;
}

.form-box-tg{
    text-align: center;
    display: block;
    margin: 0 auto;
}

.form-box-tg h1{
    margin-bottom: 30px;
    font-size: 35px;
}
.form-box-tg h2{
    margin-bottom: 30px;
    font-size: 20px;
}

.form-box-tg a{
    display: inline-block;
    color: #fff;
    padding: 10px 30px;
    border-radius: 15px;
    text-align: center;
    background-color: #608DC3;
}