*,
*::before,
*::after {
    box-sizing: border-box;
}

h5,
h4,
h3,
h2,
h1,
p {
    margin: 0;
}

img {
    max-width: initial;
}

a:hover {
    text-decoration: none;
}

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

@font-face {
    font-family: 'jf-flat-regular';
    src: url(../webfonts/jf-flat-regular.ttf) format("truetype");
}

@font-face {
    font-family: 'DINPro';
    src: url(../webfonts/DINPro.otf) format("opentype");
}

body {
    margin: 0;
    direction: rtl;
    text-align: unset;
    min-height: 100vh;
    font-family: 'jf-flat-regular';
    overflow-x: hidden;
}

body .loading-div {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #164C4F;
    z-index: 999;
    display: grid;
    align-items: center;
    justify-items: center;
}

body .loading-div img {
    width: 320px;
}

@media only screen and (min-width: 992px) {
    body .loading-div img {
        width: 400px;
    }
}
.map_frame {
    height : 100%;
}
body .header-md {
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 20;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.icon-bar {
    position: fixed;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  
  /* Style the icon bar links */
  .icon-bar a {
    display: block;
    text-align: center;
    padding: 16px;
    transition: all 0.3s ease;
    color: white;
    font-size: 20px;
    margin-right: 20px;
    margin-bottom: 20px;
  }
  
  /* Style the social media icons with color, if you want */
  .icon-bar a:hover {
    background-color: #cfcfcf;
    color: #000;
  }
  
  .facebook {
    background: #3B5998;
    color: white;
    border-radius: 50px;
    height: 50px;
  }
  
  .twitter {
    background: #55ACEE;
    color: white;
    border-radius: 50px;
    height: 50px;
  }
  
  .google {
    background: #dd4b39;
    color: white;
    border-radius: 50px;
    height: 50px;
  }
  
  .linkedin {
    background: #007bb5;
    color: white;
    border-radius: 50px;
    height: 50px;
  }

body .header-md .logo-lines {
    height: 80px;
    display: grid;
    align-items: center;
}
.swiper-container {
    margin: 130px auto 0;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}

body .header-md .logo-lines .container {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: space-between;
    align-items: center;
    background-color: black;
}

body .header-md .logo-lines .container .logo-img img {
    height: 74px;
}

body .header-md .main-header-md-ul-div {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: rgba(0, 0, 0, 0.7);
    transform: translate(100%, 0);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10;
}

body .header-md .main-header-md-ul-div.toggle-main-header-md-ul-div {
    transform: translate(0);
}

body .header-md .main-header-md-ul-div .main-header-md-ul {
    background-color: #fff;
    background-image: url(../images/bkgs/dust.png);
    overflow: auto;
    width: 250px;
    height: 100%;
}

@media only screen and (min-width: 768px) {
    body .header-md .main-header-md-ul-div .main-header-md-ul {
        width: 260px;
    }
}

body .header-md .main-header-md-ul-div .main-header-md-ul li.drop-li {
    overflow: hidden;
}

body .header-md .main-header-md-ul-div .main-header-md-ul > li {
    display: grid;
}

body .header-md .main-header-md-ul-div .main-header-md-ul > li > a {
    padding: 12px 18px;
}

body .header-md .main-header-md-ul-div .main-header-md-ul > li > a > span {
    color: #272727;
    font-size: 18px;
}

body .header-md .main-header-md-ul-div .main-header-md-ul > li.drop-li .drop-a {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: space-between;
    align-items: center;
    transition: all .4s ease-out;
}

body .header-md .main-header-md-ul-div .main-header-md-ul > li.drop-li .drop-a i {
    transition: all .4s ease-out;
    color: #272727;
    font-size: 14px;
}

body .header-md .main-header-md-ul-div .main-header-md-ul > li.drop-li .drop-a.toggle-drop-a i {
    transform: rotate(-90deg);
}

body .header-md .main-header-md-ul-div .main-header-md-ul > li.drop-li > .drop-a.toggle-drop-a {
    background-color: #fafafa;
}

body .header-md .main-header-md-ul-div .main-header-md-ul > li.drop-li > .drop-a.toggle-drop-a i {
    transform: rotate(-90deg);
}

body .header-md .main-header-md-ul-div .main-header-md-ul > li.drop-li .dropped-ul {
    height: 0;
    transition: height 1s cubic-bezier(0.68, -0.55, 0.265, 1.55), background-color 0.4s ease-out;
    background-color: #fff;
}

body .header-md .main-header-md-ul-div .main-header-md-ul > li.drop-li .dropped-ul > li {
    display: grid;
}

body .header-md .main-header-md-ul-div .main-header-md-ul > li.drop-li .dropped-ul > li > a {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

body .header-md .main-header-md-ul-div .main-header-md-ul > li.drop-li .dropped-ul > li > a > span {
    color: #272727;
    font-size: 14px;
}

body .header-md .main-header-md-ul-div .main-header-md-ul > li.drop-li > .dropped-ul > li > a {
    padding: 8px 34px 8px 18px;
}

body .header-md .main-header-md-ul-div .main-header-md-ul > li.drop-li > .dropped-ul > li.drop-li > .dropped-ul > li > a {
    padding: 8px 50px 8px 18px;
}

body .header-md .main-header-md-ul-div .main-header-md-ul > li.drop-li > .dropped-ul > li.drop-li > .dropped-ul > li.drop-li > .dropped-ul > li > a {
    padding: 8px 64px 8px 18px;
}

body .header-md .main-header-md-ul-div .main-header-md-ul > li.drop-li > .dropped-ul > .drop-li > .drop-a.toggle-drop-a {
    background-color: moccasin;
}

body .header-md .main-header-md-ul-div .main-header-md-ul > li.drop-li > .dropped-ul > .drop-li > .dropped-ul {
    background-color: moccasin;
}

body .header-md .main-header-md-ul-div .main-header-md-ul > li.drop-li > .dropped-ul > .drop-li > .dropped-ul > .drop-li > .drop-a.toggle-drop-a {
    background-color: aliceblue;
}

body .header-md .main-header-md-ul-div .main-header-md-ul > li.drop-li > .dropped-ul > .drop-li > .dropped-ul > .drop-li > .dropped-ul {
    background-color: aliceblue;
}

@media only screen and (min-width: 992px) {
    body .header-md {
        display: none;
    }
}

body .header-md.toggle-header-md {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

body .header-lg {
    display: none;
    position: fixed;
    background-color: #000;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    height: 130px;
    transition: all .3s ease-out;
}

@media only screen and (min-width: 992px) {
    body .header-lg {
        display: grid;
    }
}

body .header-lg .header-lg-top {
    border-bottom: 1px solid #b59236;
    align-self: start;
    transition: all .3s ease-out;
    display: none;
}

body .header-lg .header-lg-top > .container {
    display: grid;
    grid-auto-flow: column;
    align-items: center;
    justify-content: space-evenly;
    height: 60px;
}

body .header-lg .header-lg-top > .container .social-ul {
    justify-self: end;
    display: grid;
    grid-auto-flow: column;
    grid-gap: 14px;
}

body .header-lg .header-lg-top > .container .social-ul li {
    display: grid;
}

body .header-lg .header-lg-top > .container .social-ul li a {
    display: grid;
    align-items: center;
    justify-items: center;
    border-radius: 200px 200px 200px 50px;
    width: 38px;
    height: 38px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

body .header-lg .header-lg-top > .container .social-ul li a i {
    font-size: 18px;
    color: #fff;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

body .header-lg .header-lg-top > .container .social-ul li:nth-of-type(1) a {
    background-color: rgb(211 181 69);
}

body .header-lg .header-lg-top > .container .social-ul li:nth-of-type(2) a {
    background-color: rgb(211 181 69);
}

body .header-lg .header-lg-top > .container .social-ul li:nth-of-type(3) a {
    background-color: rgb(211 181 69);
}

body .header-lg .header-lg-top > .container .social-ul li:nth-of-type(4) a {
    background-color: rgb(211 181 69);
}

body .header-lg .header-lg-top > .container .social-ul li:nth-of-type(5) a {
    background-color: rgb(211 181 69);
}

body .header-lg .header-lg-top > .container .social-ul li:nth-of-type(6) a {
    background-color: rgb(211 181 69);
}

body .header-lg .header-lg-top > .container .phone-email {
    display: grid;
    justify-items: start;
}

body .header-lg .header-lg-top > .container .phone-email .phone {
    display: grid;
    grid-auto-flow: column;
    justify-content: start;
    grid-gap: 6px;
    align-items: center;
    color: #fff;
}

body .header-lg .header-lg-top > .container .phone-email .phone i {
    font-size: 32px;
    line-height: 0;
}

body .header-lg .header-lg-top > .container .phone-email .phone span {
    line-height: 1;
    color: #fff;
    font-size: 18px;
    font-family: 'DINPro';
}

body .header-lg .header-lg-top > .container .phone-email .email {
    display: grid;
    grid-auto-flow: column;
    justify-content: start;
    grid-gap: 6px;
    align-items: center;
}

body .header-lg .header-lg-top > .container .phone-email .email i {
    font-size: 32px;
    line-height: 0;
    color: #fff;
}

body .header-lg .header-lg-top > .container .phone-email .email span {
    line-height: 1;
    color: #fff;
    font-size: 16px;
}

body .header-lg .header-lg-bottom {
    display: grid;
    /* border-bottom: 1px solid #ab9d91; */
    /* height: 50px; */
    /* padding: 0 32px; */
    transition: all .3s ease-out;
    /*margin-left: 287px;*/
}

body .header-lg .header-lg-bottom .main-header-lg-ul {
    display: flex;
    grid-auto-flow: column;
    justify-content: space-evenly;
}

body .header-lg .header-lg-bottom .main-header-lg-ul > li {
    display: grid;
}

body .header-lg .header-lg-bottom .main-header-lg-ul > li.img-li {
    position: relative;
    width: 90px;
    display: grid;
    justify-items: center;
}

body .header-lg .header-lg-bottom .main-header-lg-ul > li.img-li a {
    background-color: #000;
    display: grid;
    position: absolute;
    bottom: 0px;
    left: 113%;
    transform: translate(-50%, 0);
    z-index: 2;
}

body .header-lg .header-lg-bottom .main-header-lg-ul > li.img-li a img {
    height: 75px;
    padding-bottom: 0px;
    margin-left: -100px;
    width: auto;
    position: relative;
    top: -30px;
}

body .header-lg .header-lg-bottom .main-header-lg-ul > li a {
    display: grid;
    align-items: center;
    color: #fff;
    cursor: pointer;
    transition: all .3s ease-out;
}

body .header-lg .header-lg-bottom .main-header-lg-ul > li a > span {
    font-size: 16px;
    font-weight: bold;
}
body .header-lg .header-lg-bottom .main-header-lg-ul > li a > span.lang {
    background-color: #f7da00;
    padding: 10px 20px;
    border-radius: 2px;
    margin-left: -30px;
}
body .header-lg .header-lg-bottom .main-header-lg-ul > li:hover > a i {
    transform: rotate(-180deg);
}

body .header-lg .header-lg-bottom .main-header-lg-ul li.hover-li {
    position: relative;
    display: grid;
}

body .header-lg .header-lg-bottom .main-header-lg-ul li.hover-li > .hover-a > i {
    transition: inherit;
}

body .header-lg .header-lg-bottom .main-header-lg-ul li.hover-li .hover-a {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    grid-gap: 1px;
}

body .header-lg .header-lg-bottom .main-header-lg-ul li.hover-li .hover-a > i {
    font-size: 14px;
}

body .header-lg .header-lg-bottom .main-header-lg-ul li.hover-li .hovered-ul {
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
    position: absolute;
    top: 100%;
    right: 0;
    transform: scale(0) translate(0, 200px);
    transform-origin: top right;
    opacity: 0;
    visibility: hidden;
    width: 280px;
    background-color: #000;
    box-shadow: 0 22px 28px rgba(0, 0, 0, 0.15);
    display: grid;
    z-index: 5;
    transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body .header-lg .header-lg-bottom .main-header-lg-ul li.hover-li .hovered-ul li {
    display: grid;
}

body .header-lg .header-lg-bottom .main-header-lg-ul li.hover-li .hovered-ul li:last-of-type a {
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
}

body .header-lg .header-lg-bottom .main-header-lg-ul li.hover-li .hovered-ul li:hover > a {
    box-shadow: 0 12px 16px rgba(0, 0, 0, 0.15);
    background-color: #d3b545;
    color: #fff;
}

body .header-lg .header-lg-bottom .main-header-lg-ul li.hover-li .hovered-ul li a {
    display: grid;
    grid-gap: 8px;
    align-content: center;
    justify-items: center;
    padding: 14px;
    position: relative;
    color: #fff;
    text-align: center;
}

body .header-lg .header-lg-bottom .main-header-lg-ul li.hover-li .hovered-ul li a span {
    font-size: 14px;
}

body .header-lg .header-lg-bottom .main-header-lg-ul li.hover-li .hovered-ul.side-ul {
    width: 220px;
    top: 0;
    right: 100%;
    transform: scale(0) translate(-200px, 0);
}

body .header-lg .header-lg-bottom .main-header-lg-ul li.hover-li .hovered-ul.side-ul li > a {
    border-radius: 0;
}

body .header-lg .header-lg-bottom .main-header-lg-ul li.hover-li .hovered-ul.side-ul li:last-of-type > a {
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
}

body .header-lg .header-lg-bottom .main-header-lg-ul li.hover-li:hover > .hovered-ul {
    transform: scale(1) translate(0, 0);
    opacity: 1;
    visibility: visible;
}

body .header-lg .header-lg-bottom .main-header-lg-ul li.active-li > a > span {
    color: #fff;
}

body .header-lg.toggle-header-lg {
    width: 100%;
    /* transform: translate(0, -65px); */
    z-index: 10;
    background-color: #000;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
}

body .header-lg.toggle-header-lg .header-lg-bottom .main-header-lg-ul > li.img-li {
    display: block;
    margin: 0;
}

body .header-lg.toggle-header-lg .header-lg-bottom .main-header-lg-ul > li.img-li img {
    /* height: 74px; */
}

body .home-main-slider .swiper-wrapper .swiper-slide .slider-img img {
    width: 100%;
    height: 290px;
}

@media only screen and (min-width: 768px) {
    body .home-main-slider .swiper-wrapper .swiper-slide .slider-img img {
        height: 440px;
    }
}

@media only screen and (min-width: 992px) {
    body .home-main-slider .swiper-wrapper .swiper-slide .slider-img img {
        height: 80vh;
        }
}

body .home-main-slider .swiper-wrapper .swiper-slide .slider-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)); */
}

body .home-main-slider .swiper-wrapper .swiper-slide .slider-text {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translate(0, -50%);
    padding: 0 32px;
    z-index: 1;
}

@media only screen and (min-width: 768px) {
    body .home-main-slider .swiper-wrapper .swiper-slide .slider-text {
        padding: 0 52px;
    }
}

@media only screen and (min-width: 992px) {
    body .home-main-slider .swiper-wrapper .swiper-slide .slider-text {
        padding: 0 72px;
        display: grid;
        align-items: center;
        top: 250px;
        transform: none;
    }
}

@media only screen and (min-width: 1200px) {
    body .home-main-slider .swiper-wrapper .swiper-slide .slider-text {
        top: 260px;
    }
}
.about_theDoctors button{
    text-decoration: none;
    background-color: rgb(211 181 69);
    height: 50px;
    width: auto;
    margin-top: 30px;
    padding-right: 10px;
    padding-left: 10px;
    border: transparent;
    border-radius: 35px;
}
.about_theDoctors a {
    color: #fff;
    font-size: 24px;
}
body .home-main-slider .swiper-wrapper .swiper-slide .slider-text .text-buttons {
    display: grid;
    grid-gap: 18px;
    display: none;
}

@media only screen and (min-width: 992px) {
    body .home-main-slider .swiper-wrapper .swiper-slide .slider-text .text-buttons {
        grid-gap: 32px;
    }
}

body .home-main-slider .swiper-wrapper .swiper-slide .slider-text .text-buttons .text {
    display: grid;
    grid-gap: 8px;
}

@media only screen and (min-width: 992px) {
    body .home-main-slider .swiper-wrapper .swiper-slide .slider-text .text-buttons .text {
        grid-gap: 18px;
    }
}

@media only screen and (min-width: 1200px) {
    body .home-main-slider .swiper-wrapper .swiper-slide .slider-text .text-buttons .text {
        grid-gap: 22px;
    }
}

body .home-main-slider .swiper-wrapper .swiper-slide .slider-text .text-buttons .text p {
    color: #fff;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    text-transform: uppercase;
    /* font-family: 'SIMPLIFICA'; */
    /* letter-spacing: 3px; */
    line-height: 1;
}

body .home-main-slider .swiper-wrapper .swiper-slide .slider-text .text-buttons .text p:first-of-type {
    transform: translate(0, -300px);
    font-size: 14px;
    transition: all 1s ease-out 1s;
    line-height: 1;
}

@media only screen and (min-width: 768px) {
    body .home-main-slider .swiper-wrapper .swiper-slide .slider-text .text-buttons .text p:first-of-type {
        font-size: 20px;
    }
}

@media only screen and (min-width: 992px) {
    body .home-main-slider .swiper-wrapper .swiper-slide .slider-text .text-buttons .text p:first-of-type {
        font-size: 32px;
    }
}

body .home-main-slider .swiper-wrapper .swiper-slide .slider-text .text-buttons .text p:last-of-type {
    font-size: 42px;
    transform: translate(300px, 0);
    transition: all 1s ease-out 1.6s;
}

@media only screen and (min-width: 768px) {
    body .home-main-slider .swiper-wrapper .swiper-slide .slider-text .text-buttons .text p:last-of-type {
        font-size: 72px;
    }
}

@media only screen and (min-width: 992px) {
    body .home-main-slider .swiper-wrapper .swiper-slide .slider-text .text-buttons .text p:last-of-type {
        font-size: 102px;
    }
}

body .home-main-slider .swiper-wrapper .swiper-slide .slider-text .text-buttons .buttons {
    justify-self: center;
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 16px;
}

body .home-main-slider .swiper-wrapper .swiper-slide .slider-text .text-buttons .buttons a {
    padding: 8px 12px;
    transform: scale(1.5);
    opacity: 0;
    visibility: hidden;
    display: grid;
    align-items: center;
    grid-template-columns: auto 1fr;
    grid-gap: 6px;
    border-radius: 52px;
    position: relative;
    background-color: rgb(211 181 69);
    overflow: hidden;
    transition: all .4s ease-out 2.5s;
}

@media only screen and (min-width: 768px) {
    body .home-main-slider .swiper-wrapper .swiper-slide .slider-text .text-buttons .buttons a {
        padding: 8px 16px;
    }
}

@media only screen and (min-width: 992px) {
    body .home-main-slider .swiper-wrapper .swiper-slide .slider-text .text-buttons .buttons a {
        padding: 12px 20px;
    }
}

@media only screen and (min-width: 1200px) {
    body .home-main-slider .swiper-wrapper .swiper-slide .slider-text .text-buttons .buttons a {
        padding: 14px 24px;
    }
}

body .home-main-slider .swiper-wrapper .swiper-slide .slider-text .text-buttons .buttons a span {
    font-size: 14px;
    /* font-family: 'SIMPLIFICA'; */
    /* letter-spacing: 2px; */
    text-transform: uppercase;
    color: #fff;
    position: relative;
    z-index: 1;
}

@media only screen and (min-width: 768px) {
    body .home-main-slider .swiper-wrapper .swiper-slide .slider-text .text-buttons .buttons a span {
        font-size: 16px;
    }
}

@media only screen and (min-width: 992px) {
    body .home-main-slider .swiper-wrapper .swiper-slide .slider-text .text-buttons .buttons a span {
        font-size: 20px;
    }
}

@media only screen and (min-width: 1200px) {
    body .home-main-slider .swiper-wrapper .swiper-slide .slider-text .text-buttons .buttons a span {
        /* letter-spacing: 4px; */
        font-size: 24px;
    }
}

body .home-main-slider .swiper-wrapper .swiper-slide .slider-text .text-buttons .buttons a i {
    color: #fff;
    position: relative;
    z-index: 1;
    font-size: 12px;
}

@media only screen and (min-width: 768px) {
    body .home-main-slider .swiper-wrapper .swiper-slide .slider-text .text-buttons .buttons a i {
        font-size: 16px;
    }
}

body .home-main-slider .swiper-wrapper .swiper-slide .slider-text .text-buttons .buttons a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 1px;
    border-radius: 50%;
    transition: all .6s ease-out;
}

body .home-main-slider .swiper-wrapper .swiper-slide .slider-text .text-buttons .buttons a:hover::after {
    box-shadow: 0 0 0 10rem black;
}

body .home-main-slider .swiper-wrapper .swiper-slide .slider-text .loopy-div {
    height: 40px;
    position: relative;
    margin-bottom: 12px;
}

body .home-main-slider .swiper-wrapper .swiper-slide .slider-text .loopy-div::before {
    display: inline-block;
    position: absolute;
    left: 50%;
    content: '';
    z-index: 2;
    width: 0;
    height: 40px;
    border-left: 1px solid rgba(255, 255, 255, 0.527);
    animation: moreLoopY 2.5s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

body .home-main-slider .swiper-wrapper .swiper-slide.swiper-slide-active .slider-text .text-buttons .text p {
    transform: translate(0, 0);
    opacity: 1;
    visibility: visible;
}

body .home-main-slider .swiper-wrapper .swiper-slide.swiper-slide-active .slider-text .text-buttons .buttons a {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

@keyframes moreLoopY {
    0% {
        transform: scale(1, 0);
        transform-origin: top;
    }

    47% {
        transform: scale(1, 1);
        transform-origin: top;
    }

    48% {
        transform: scale(1, 1);
        transform-origin: bottom;
    }

    95% {
        transform: scale(1, 0);
        transform-origin: bottom;
    }

    96% {
        transform: scale(1, 0);
        transform-origin: top;
    }

    100% {
        transform: scale(1, 0);
    }
}

body .mfa-swiper-buttons {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translate(0, -50%);
    z-index: 2;
}

body .mfa-swiper-buttons .home-main-slider-next,
body .mfa-swiper-buttons .home-main-slider-prev {
    display: grid;
    align-items: center;
    position: static;
    background-image: none;
    width: unset;
    height: unset;
    margin: 0;
    border: 1px solid #272727;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 12px 8px;
}

@media only screen and (min-width: 768px) {

    body .mfa-swiper-buttons .home-main-slider-next,
    body .mfa-swiper-buttons .home-main-slider-prev {
        padding: 16px 12px;
    }
}

@media only screen and (min-width: 992px) {

    body .mfa-swiper-buttons .home-main-slider-next,
    body .mfa-swiper-buttons .home-main-slider-prev {
        padding: 18px 14px;
    }
}

body .mfa-swiper-buttons .home-main-slider-next span,
body .mfa-swiper-buttons .home-main-slider-prev span {
    color: #fff;
}

@media only screen and (min-width: 992px) {

    body .mfa-swiper-buttons .home-main-slider-next span,
    body .mfa-swiper-buttons .home-main-slider-prev span {
        font-size: 22px;
    }
}

body .mfa-swiper-buttons .home-main-slider-next:focus,
body .mfa-swiper-buttons .home-main-slider-prev:focus {
    outline: 0;
}

body .mfa-swiper-buttons .home-main-slider-next {
    -webkit-clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
}

body .mfa-swiper-buttons .home-main-slider-prev {
    -webkit-clip-path: polygon(25% 0%, 100% 1%, 100% 100%, 25% 100%, 0% 50%);
    clip-path: polygon(25% 0%, 100% 1%, 100% 100%, 25% 100%, 0% 50%);
}

body .home-main-slider-pagination {
    position: absolute;
    bottom: 12px !important;
    left: 50% !important;
    width: unset !important;
    height: unset !important;
    transform: translate(-50%, 0);
    display: grid;
    grid-gap: 6px;
    grid-auto-flow: column;
    justify-content: start;
}

@media only screen and (min-width: 768px) {
    body .home-main-slider-pagination {
        grid-gap: 8px;
    }
}

@media only screen and (min-width: 992px) {
    body .home-main-slider-pagination {
        grid-gap: 12px;
    }
}

body .home-main-slider-pagination span {
    width: 12px;
    height: 12px;
    margin: 0 !important;
    background-color: transparent;
    position: relative;
    opacity: 1;
    color: #607D8B;
    font-size: 12px;
    transition: all .4s ease-out;
}

@media only screen and (min-width: 768px) {
    body .home-main-slider-pagination span {
        width: 18px;
        height: 18px;
    }
}

@media only screen and (min-width: 992px) {
    body .home-main-slider-pagination span {
        width: 32px;
        height: 32px;
    }
}

@media only screen and (min-width: 768px) {
    body .home-main-slider-pagination span {
        font-size: 18px;
    }
}

@media only screen and (min-width: 992px) {
    body .home-main-slider-pagination span {
        font-size: 32px;
    }
}

body .home-main-slider-pagination span::before {
    content: '\e861';
    font-family: 'feather';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

body .home-main-slider-pagination span:focus {
    outline: 0;
}

body .home-main-slider-pagination span.swiper-pagination-bullet-active {
    opacity: 1;
    color: #d3b545;
}

body .home-main-slider-pagination span.swiper-pagination-bullet-active::before {
    content: '\e8d4';
}

body .home-about-section {
    padding: 32px 0;
    background-color: #fff;
}

@media only screen and (min-width: 768px) {
    body .home-about-section {
        padding: 42px 0;
    }
}

@media only screen and (min-width: 992px) {
    body .home-about-section {
        padding: 62px 0;
    }
}

@media only screen and (min-width: 1200px) {
    body .home-about-section {
        padding: 82px 0;
    }
}

@media only screen and (min-width: 768px) {
    body .home-about-section .container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: start;
    }
}

body .home-about-section .container .home-about-slick-slider {
    display: grid;
    grid-template-columns: auto 1fr auto;
    position: relative;
}

@media only screen and (min-width: 768px) {
    body .home-about-section .container .home-about-slick-slider {
        max-width: 550px;
    }
}

body .home-about-section .container .home-about-slick-slider::before,
body .home-about-section .container .home-about-slick-slider::after {
    content: '';
    position: absolute;
    left: 50%;
    width: calc(100% - 44px);
    /* transform: translate(-50%, 0); */
    height: 50%;
    /* border-color: #d3b545; */
    /* border-style: solid; */
}

@media only screen and (min-width: 992px) {

    body .home-about-section .container .home-about-slick-slider::before,
    body .home-about-section .container .home-about-slick-slider::after {
        width: calc(100% - 40px);
    }
}

body .home-about-section .container .home-about-slick-slider::before {
    top: 0;
    /* border-width: 10px 10px 0 10px; */
}

body .home-about-section .container .home-about-slick-slider::after {
    bottom: 0;
    border-width: 0 10px 10px 10px;
}

body .home-about-section .container .home-about-slick-slider .slick-list {
    z-index: 1;
    justify-self: center;
    /* margin: 52px 16px; */
    width: 100%;
    height: 100%;
    /* background-color: azure; */
    box-shadow: 0 12px 18px rgba(0, 0, 0, 0.158);
    /* border-radius: 50%; */
}

@media only screen and (min-width: 992px) {
    body .home-about-section .container .home-about-slick-slider .slick-list {
        box-shadow: 0 22px 32px rgba(0, 0, 0, 0.158);
    }
}

@media only screen and (min-width: 992px) {
    body .home-about-section .container .home-about-slick-slider .slick-list {
        /* width: 310px; */
        /* height: 310px; */
        /* margin: 52px 52px; */
    }
}

@media only screen and (min-width: 1200px) {
    body .home-about-section .container .home-about-slick-slider .slick-list {
        /* margin: 52px 72px; */
    }
}

body .home-about-section .container .home-about-slick-slider .slick-list .slick-track .img-div {
    position: relative;
}

body .home-about-section .container .home-about-slick-slider .slick-list .slick-track .img-div::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* border-radius: 50%; */
    /* background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(37, 131, 198, 0.678)); */
}

body .home-about-section .container .home-about-slick-slider .slick-list .slick-track .img-div img {
    width: 100%;
    height: 100%;
    /* border-radius: 50%; */
    /* filter: grayscale(0.5); */
}

@media only screen and (min-width: 992px) {
    body .home-about-section .container .home-about-slick-slider .slick-list .slick-track .img-div img {
        /* width: 310px; */
        /* height: 310px; */
    }
}

body .home-about-section .container .home-about-slick-slider button {
    align-self: center;
    color: #b2b2b2;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 16px;
    border: 0;
    outline: 0;
    background-color: #fff;
    transition: all .2s ease-out;
    padding: 8px 0 20px 0;
}

@media only screen and (min-width: 992px) {
    body .home-about-section .container .home-about-slick-slider button {
        padding: 12px 0 24px 0;
    }
}

body .home-about-section .container .home-about-slick-slider button:focus {
    border: 0;
    outline: 0;
}

body .home-about-section .container .home-about-slick-slider button:hover {
    color: #000;
}

body .home-about-section .container .home-about-slick-slider button:hover::after {
    background-color: #000;
    width: 40%;
}

body .home-about-section .container .home-about-slick-slider button::after {
    content: '';
    position: absolute;
    bottom: 14px;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: #b2b2b2;
    transition: all .2s ease-out;
}

body .home-about-section .container .section-text {
    margin-top: 22px;
    grid-gap: 14px;
}

@media only screen and (min-width: 768px) {
    body .home-about-section .container .section-text {
        margin-top: 0;
        flex-basis: 50%;
    }
}

@media only screen and (min-width: 992px) {
    body .home-about-section .container .section-text {
        grid-gap: 20px;
        flex-basis: 45%;
    }
}

@media only screen and (min-width: 1200px) {
    body .home-about-section .container .section-text {
        flex-basis: 40%;
    }
}

body .home-about-section .container .section-text .section-heading {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    justify-content: center;
    align-items: center;
    grid-gap: 10px;
}

@media only screen and (min-width: 992px) {
    body .home-about-section .container .section-text .section-heading {
        grid-gap: 15px;
    }
}
body .home-about-section .container .section-text .section-heading img {
    width: auto;
    height: 140px;
}
body .home-about-section .container .section-text .section-heading .heading-left,
body .home-about-section .container .section-text .section-heading .heading-right {
    display: grid;
}

body .home-about-section .container .section-text .section-heading .heading-left .draw-line,
body .home-about-section .container .section-text .section-heading .heading-right .draw-line {
    background-color: #d3b545;
    border-radius: 32px;
    height: 4px;
    width: 40px;
}

@media only screen and (min-width: 992px) {

    body .home-about-section .container .section-text .section-heading .heading-left .draw-line,
    body .home-about-section .container .section-text .section-heading .heading-right .draw-line {
        width: 60px;
    }
}

body .home-about-section .container .section-text .section-heading .heading-left {
    justify-self: end;
}

body .home-about-section .container .section-text .section-heading .heading-right {
    justify-self: start;
}

body .home-about-section .container .section-text .section-heading .heading-right .draw-line {
    background-color: #d3b545;
}

body .home-about-section .container .section-text .section-heading .heading-middle {
    justify-self: center;
}

body .home-about-section .container .section-text .section-heading .heading-middle p {
    text-align: center;
    font-family: 'SIMPLIFICA';
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 26px;
    font-weight: bold;
    line-height: 1;
}

@media only screen and (min-width: 768px) {
    body .home-about-section .container .section-text .section-heading .heading-middle p {
        font-size: 28px;
    }
}

@media only screen and (min-width: 992px) {
    body .home-about-section .container .section-text .section-heading .heading-middle p {
        font-size: 36px;
    }
}

@media only screen and (min-width: 1200px) {
    body .home-about-section .container .section-text .section-heading .heading-middle p {
        font-size: 42px;
    }
}

body .home-about-section .container .section-text .section-heading .heading-middle p:first-of-type span:first-of-type {
    color: #f26323;
}

body .home-about-section .container .section-text .section-heading .heading-middle p:first-of-type span:last-of-type {
    color: #2584c6;
}

body .home-about-section .container .section-text .section-heading .heading-middle p:first-of-type span:first-of-type,
body .home-about-section .container .section-text .section-heading .heading-middle p:first-of-type span:last-of-type {
    font-size: 30px;
}

@media only screen and (min-width: 768px) {

    body .home-about-section .container .section-text .section-heading .heading-middle p:first-of-type span:first-of-type,
    body .home-about-section .container .section-text .section-heading .heading-middle p:first-of-type span:last-of-type {
        font-size: 36px;
    }
}

@media only screen and (min-width: 992px) {

    body .home-about-section .container .section-text .section-heading .heading-middle p:first-of-type span:first-of-type,
    body .home-about-section .container .section-text .section-heading .heading-middle p:first-of-type span:last-of-type {
        font-size: 42px;
    }
}

@media only screen and (min-width: 1200px) {

    body .home-about-section .container .section-text .section-heading .heading-middle p:first-of-type span:first-of-type,
    body .home-about-section .container .section-text .section-heading .heading-middle p:first-of-type span:last-of-type {
        font-size: 52px;
    }
}

body .home-about-section .container .section-text .section-heading .heading-middle p:last-of-type span:first-of-type {
    color: #c2c685;
}

body .home-about-section .container .section-text .section-heading .heading-middle p:last-of-type span:last-of-type {
    color: #2584c6;
}

body .home-about-section .container .section-text .section-body p {
    text-align: justify;
}

@media only screen and (min-width: 992px) {
    body .home-about-section .container .section-text .section-body p {
        font-size: 16px;
        line-height: 1.8;
    }
}

body .home-services-section .section-body {
    display: grid;
    transition: all .4s ease-out;
}

body .home-services-section .section-body .main-section-ul {
    display: grid;
}

@media only screen and (min-width: 992px) {
    body .home-services-section .section-body .main-section-ul {
        grid-template-columns: repeat(4, 1fr);
    }
}

body .home-services-section .section-body .main-section-ul > li {
    display: grid;
}

body .home-services-section .section-body .main-section-ul > li a {
    transition: all .4s ease-out;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}

@media only screen and (min-width: 992px) {
    body .home-services-section .section-body .main-section-ul > li a {
        grid-template-columns: auto;
        grid-template-rows: 1fr 1fr;
    }
}

body .home-services-section .section-body .main-section-ul > li a .img-div {
    position: relative;
    display: grid;
    background-color: moccasin;
    /* height: 180px; */
}

body .home-services-section .section-body .main-section-ul > li a .img-div::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    transition: all .4s ease-out;
}

body .home-services-section .section-body .main-section-ul > li a .img-div::before {
    content: '\f489';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    font-size: 50px;
    font-family: 'Ionicons';
    color: #fff;
    display: block;
    opacity: 0;
    z-index: 2;
    transition: all .4s ease-out;
}

@media only screen and (min-width: 992px) {
    body .home-services-section .section-body .main-section-ul > li a .img-div::before {
        font-size: 80px;
    }
}

@media only screen and (min-width: 992px) {
    body .home-services-section .section-body .main-section-ul > li a .img-div {
        /* height: 320px; */
    }
}

body .home-services-section .section-body .main-section-ul > li a .img-div img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
}

body .home-services-section .section-body .main-section-ul > li a .text {
    display: grid;
    align-items: center;
    position: relative;
    background-color: #d3b545;

}

body .home-services-section .section-body .main-section-ul > li a .text .service-title {
    width: 80%;
    margin: auto;
}

body .home-services-section .section-body .main-section-ul > li a .text p {
    text-align: center;
    color: #272727;
    position: relative;
    z-index: 2;
    font-size: 18px;
}

@media only screen and (min-width: 992px) {
    body .home-services-section .section-body .main-section-ul > li a .text p {
        font-size: 28px;
    }
}

@media only screen and (min-width: 1200px) {
    body .home-services-section .section-body .main-section-ul > li a .text p {
        font-size: 36px;
    }
}

body .home-services-section .section-body .main-section-ul > li a .text::before {
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    transition: all .4s ease-out;
    background-color: #f7f7f7;
    display: none;
}

body .home-services-section .section-body .main-section-ul > li a .text::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    bottom: auto;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 16px solid #f7f7f7;
    border-right: 0 none;
    transform: translate(0, -50%);
}

@media only screen and (min-width: 992px) {
    body .home-services-section .section-body .main-section-ul > li a .text::after {
        top: auto;
        bottom: 100%;
        left: 50%;
        border-top: 0 none;
        border-right: 16px solid transparent;
        border-left: 16px solid transparent;
        border-bottom: 16px solid #f7f7f7;
        transform: translate(-50%, 0);
    }
}

body .home-services-section .section-body .main-section-ul > li a:hover {
    z-index: 2;
    opacity: 1 !important;
}

body .home-services-section .section-body .main-section-ul > li a:hover .img-div::after {
    background-color: #c2c6858c;
}

body .home-services-section .section-body .main-section-ul > li a:hover .img-div::before {
    transform: translate(-50%, -50%) rotate(0);
    opacity: 1;
}

body .home-services-section .section-body .main-section-ul > li a:hover .text::before {
    z-index: 2;
    background-color: #f7f7f7;
}

body .home-services-section .section-body .main-section-ul > li:nth-of-type(2n + 2) a .img-div {
    order: 1;
}

body .home-services-section .section-body .main-section-ul > li:nth-of-type(2n + 2) a .text::after {
    left: auto;
    right: 100%;
    border-left: 0 none;
    border-right: 16px solid #f7f7f7;
}

@media only screen and (min-width: 992px) {
    body .home-services-section .section-body .main-section-ul > li:nth-of-type(2n + 2) a .text::after {
        top: 100%;
        left: 50%;
        bottom: auto;
        right: auto;
        border-top: 16px solid #f7f7f7;
        border-right: 16px solid transparent;
        border-left: 16px solid transparent;
        border-bottom: 0 none;
    }
}

body .home-services-section .section-body:hover {
    background-color: #000;
}

body .home-services-section .section-body:hover .main-section-ul > li a {
    opacity: .4;
}

body .home-testimonials-section {
    background-color: #eee;
    padding: 42px 0;
    direction: ltr;
}

@media only screen and (min-width: 992px) {
    body .home-testimonials-section {
        padding: 42px 0;
    }
}

@media only screen and (min-width: 1200px) {
    body .home-testimonials-section {
        padding: 82px 0;
    }
}

body .home-testimonials-section .section-heading {
    color: #151515;
    font-size: 32px;
    text-align: center;
    margin: 0 12px 8px 12px;
}

@media only screen and (min-width: 992px) {
    body .home-testimonials-section .section-heading {
        margin: 0 22px 16px 22px;
        font-size: 42px;
    }
}

body .home-testimonials-section .testimonials-slick-slider .item-wrapper {
    background-color: #fff;
    opacity: .5;
    transform: scale(0.85);
    transition: all .4s ease-out;
    cursor: pointer;
    position: relative;
    z-index: -1;
}

body .home-testimonials-section .testimonials-slick-slider .item-wrapper .item-inner {
    margin: 16px;
    padding: 22px;
    border: 1px solid #eee;
    display: grid;
    align-items: center;
    justify-items: center;
}

body .home-testimonials-section .testimonials-slick-slider .item-wrapper .item-inner .img-div {
    display: grid;
    width: 90px;
    height: 90px;
    background-color: #eee;
    border-radius: 50%;
    box-shadow: 0 12px 14px rgba(0, 0, 0, 0.1);
    margin-bottom: 22px;
}

@media only screen and (min-width: 992px) {
    body .home-testimonials-section .testimonials-slick-slider .item-wrapper .item-inner .img-div {
        margin-bottom: 32px;
    }
}

body .home-testimonials-section .testimonials-slick-slider .item-wrapper .item-inner .img-div img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
}

body .home-testimonials-section .testimonials-slick-slider .item-wrapper .item-inner .text p {
    color: #9b9b9b;
    text-align: center;
    line-height: 1.6;
    font-size: 14px;
}

body .home-testimonials-section .testimonials-slick-slider .item-wrapper .item-inner .title {
    margin-top: 12px;
    color: #151515;
    font-size: 18px;
}

@media only screen and (min-width: 992px) {
    body .home-testimonials-section .testimonials-slick-slider .item-wrapper .item-inner .title {
        margin-top: 20px;
    }
}

body .home-testimonials-section .testimonials-slick-slider .item-wrapper.slick-center {
    opacity: 1;
    transform: scale(1);
    cursor: auto;
    z-index: 10;
}

body .home-testimonials-section .testimonials-slick-slider .item-wrapper:focus {
    outline: 0;
}

body .home-testimonials-section .testimonials-slick-slider .slick-dots {
    direction: rtl;
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(32px, auto));
    justify-content: center;
    grid-gap: 2px;
}

@media only screen and (min-width: 992px) {
    body .home-testimonials-section .testimonials-slick-slider .slick-dots {
        grid-gap: 6px;
        margin-top: 32px;
    }
}

body .home-testimonials-section .testimonials-slick-slider .slick-dots li {
    display: grid;
    align-items: center;
    justify-items: center;
}

body .home-testimonials-section .testimonials-slick-slider .slick-dots li button {
    border: 0;
    position: relative;
    width: 30px;
    height: 30px;
    color: transparent;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transform: scale(0.75);
    transition: all .3s ease-out;
}

@media only screen and (min-width: 992px) {
    body .home-testimonials-section .testimonials-slick-slider .slick-dots li button {
        width: 40px;
        height: 40px;
    }
}

body .home-testimonials-section .testimonials-slick-slider .slick-dots li button::after {
    content: '\ec21';
    color: #151515;
    font-family: 'linearIcons';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-180deg);
    font-size: 18px;
    transition: all .3s ease-out;
}

@media only screen and (min-width: 992px) {
    body .home-testimonials-section .testimonials-slick-slider .slick-dots li button::after {
        font-size: 20px;
    }
}

body .home-testimonials-section .testimonials-slick-slider .slick-dots li.slick-active button {
    transform: scale(1);
    background-color: #9DC50A;
    background-color: #e4c55a;
}

body .home-testimonials-section .testimonials-slick-slider .slick-dots li.slick-active button:focus {
    outline: 0;
}

body .home-testimonials-section .testimonials-slick-slider .slick-dots li.slick-active button::after {
    color: #fff;
    transform: translate(-50%, -50%) rotate(0);
}




/**************contact page***********/
.contact-info-area {
    z-index: 1;
    padding: 50px 0;
    background-color: #dee2e6;
    direction: rtl;
    text-align: right;
}

.contact-info-box {
    background-color: #00afa9;
    position: relative;
    overflow: hidden;
    -webkit-transition: 0.5s;
    box-shadow: 0 18px 22px rgba(0, 0, 0, 0.15);
    transition: 0.5s;
    z-index: 1;
    border-radius: 5px;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 20px;
    height: 135px;
    padding-left: 90px;
    padding-right: 20px;
}

.contact-info-box .icon {
    position: absolute;
    left: 20px;
    top: 30px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    color: #00afa9;
    background-color: #ffffff;
    font-size: 25px;
    margin-bottom: 22px;
}

.contact-info-box h3 {
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 400;
}

.contact-info-box span {
    display: block;
    color: #ffffff;
}

.contact-info-area .form-column {
    background-color: #fff;
    border-top-left-radius: 5px;
    border-top-right-radius: 20px;
    height: 100%;
    margin-top: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.contact-info-area .form-column h3 {
    position: relative;
    padding: 25px 35px 10px;
    color: #d3b545;
    box-shadow: 0px 20px 40px #d3b5453d;
    margin-bottom: 20px;
    /* background: #01b0aa; */
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    text-align: center;
}

.contact-info-area .calender-form {
    position: relative;
    padding: 20px;
}

.contact-info-area .calender-form .form-group {
    position: relative;
    margin-bottom: 25px;
}

.contact-info-area .calender-form .form-group label {
    position: relative;
    color: #222222;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-info-area .calender-form .form-group label .icon {
    position: relative;
    margin-left: 8px;
    color: #57b847;
    font-weight: 400;
}

.contact-info-area.contact-info-area .calender-form .form-group input[type="text"],
.contact-info-area.contact-info-area .calender-form .form-group input[type="tel"],
.contact-info-area.contact-info-area .calender-form .form-group input[type="email"],
.contact-info-area.contact-info-area .calender-form .form-group select {
    position: relative;
    display: block;
    width: 100%;
    line-height: 33px;
    padding: 10px 28px;
    color: rgba(0, 0, 0, 0.60);
    height: 45px;
    font-size: 14px;
    background: none;
    border: 2px solid #ddd;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
    border-radius: 10px;
}


.contact-info-area textarea {
    height: 80px;
    padding-top: 10px;
    resize: none;
    width: 100%;
    margin-bottom: 0px;
    background: #ffffff;
    border: 2px solid #ddd;
    text-indent: 15px;
    transition: .3s linear;
    border-radius: 15px;
}

.contact-info-area .custom_btn {
    color: #fff;
    background: #d3b545;
    padding: 15px 30px;
    transition: .3s linear;
    position: relative;
    z-index: 1;
    border-radius: 15px;
    border: none;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
    width: 180px;
}

.contact-info-area .map {
    margin-top: 50px;
}

body .clients-section {
    clip-path: polygon(0 0, 100% 4vw, 100% calc(100% - 4vw), 0 100%);
    -wibkit-clip-path: polygon(0 0, 100% 4vw, 100% calc(100% - 4vw), 0 100%);
    margin: -4vw 0;
    position: relative;
    z-index: 3;
    padding: calc(4vw + 32px) 0;
}

@media only screen and (min-width: 992px) {
    body .clients-section {
        padding: calc(4vw + 52px) 0;
    }
}

@media only screen and (min-width: 1200px) {
    body .clients-section {
        padding: calc(4vw + 62px) 0;
    }
}

body .clients-section .section-heading {
    padding-bottom: 12px;
}

@media only screen and (min-width: 768px) {
    body .clients-section .section-heading {
        padding-bottom: 18px;
    }
}

@media only screen and (min-width: 992px) {
    body .clients-section .section-heading {
        padding-bottom: 20px;
    }
}

body .clients-section .section-heading p {
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 28px;
    color: #151515;
}

@media only screen and (min-width: 992px) {
    body .clients-section .section-heading p {
        font-size: 42px;
    }
}

@media only screen and (min-width: 1200px) {
    body .clients-section .section-heading p {
        font-size: 52px;
    }
}

body .clients-section .home-clients-slider {
    border-width: 1px 0 1px 0;
    border-style: solid;
    border-color: rgba(13, 51, 83, 0.151);
    padding: 0 2px;
}

body .clients-section .home-clients-slider .swiper-wrapper .swiper-slide {
    position: relative;
    border-left: 1px solid rgba(13, 51, 83, 0.151);
    display: grid;
    align-items: center;
    justify-items: center;
}

body .clients-section .home-clients-slider .swiper-wrapper .swiper-slide:last-of-type {
    border-right: 1px solid rgba(13, 51, 83, 0.151);
}

body .clients-section .home-clients-slider .swiper-wrapper .swiper-slide .slider-img {
    display: grid;
    align-items: center;
    justify-items: center;
    width: 160px;
    height: 160px;
}

body .clients-section .home-clients-slider .swiper-wrapper .swiper-slide .slider-img img {
    width: 100%;
    filter: grayscale(1);
}

body .clients-section .home-clients-slider .clients-slider-buttons {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 4px;
    right: 4px;
    transform: translate(0, -50%);
    z-index: 2;
}

body .clients-section .home-clients-slider .clients-slider-buttons .clients-slider-next,
body .clients-section .home-clients-slider .clients-slider-buttons .clients-slider-prev {
    display: grid;
    align-items: center;
    position: static;
    background-image: none;
    width: unset;
    height: unset;
    margin: 0;
    background-color: #fff;
    padding: 6px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
    border-radius: 50%;
}

@media only screen and (min-width: 768px) {

    body .clients-section .home-clients-slider .clients-slider-buttons .clients-slider-next,
    body .clients-section .home-clients-slider .clients-slider-buttons .clients-slider-prev {
        padding: 8px;
    }
}

@media only screen and (min-width: 992px) {

    body .clients-section .home-clients-slider .clients-slider-buttons .clients-slider-next,
    body .clients-section .home-clients-slider .clients-slider-buttons .clients-slider-prev {
        padding: 10px;
    }
}

body .clients-section .home-clients-slider .clients-slider-buttons .clients-slider-next span,
body .clients-section .home-clients-slider .clients-slider-buttons .clients-slider-prev span {
    color: #272727;
    font-size: 14px;
}

@media only screen and (min-width: 992px) {

    body .clients-section .home-clients-slider .clients-slider-buttons .clients-slider-next span,
    body .clients-section .home-clients-slider .clients-slider-buttons .clients-slider-prev span {
        font-size: 16px;
    }
}

body .clients-section .home-clients-slider .clients-slider-buttons .clients-slider-next:focus,
body .clients-section .home-clients-slider .clients-slider-buttons .clients-slider-prev:focus {
    outline: 0;
}

body .latest-news-section {
    clip-path: polygon(0 4vw, 100% 0, 100% 100%, 0 100%);
    -webkit-clip-path: polygon(0 4vw, 100% 0, 100% 100%, 0 100%);
    padding: calc(4vw + 32px) 0;
    background-color: #fafafa;
    margin-top: 2vw;
}

@media only screen and (min-width: 992px) {
    body .latest-news-section {
        padding: calc(4vw + 52px) 0;
    }
}

@media only screen and (min-width: 1200px) {
    body .latest-news-section {
        padding: calc(4vw + 62px) 0;
    }
}

body .latest-news-section .section-heading {
    margin-bottom: 14px;
}

@media only screen and (min-width: 768px) {
    body .latest-news-section .section-heading {
        margin-bottom: 16px;
    }
}

@media only screen and (min-width: 992px) {
    body .latest-news-section .section-heading {
        margin-bottom: 32px;
    }
}

@media only screen and (min-width: 1200px) {
    body .latest-news-section .section-heading {
        margin-bottom: 42px;
    }
}

body .latest-news-section .section-heading p {
    text-transform: uppercase;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
}

@media only screen and (min-width: 768px) {
    body .latest-news-section .section-heading p {
        font-size: 28px;
    }
}

@media only screen and (min-width: 992px) {
    body .latest-news-section .section-heading p {
        font-size: 32px;
    }
}

@media only screen and (min-width: 1200px) {
    body .latest-news-section .section-heading p {
        font-size: 42px;
    }
}

body .latest-news-section .section-body .main-section-ul {
    display: grid;
    padding: 0 12px;
    grid-gap: 32px;
}

@media only screen and (min-width: 768px) {
    body .latest-news-section .section-body .main-section-ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (min-width: 992px) {
    body .latest-news-section .section-body .main-section-ul {
        grid-gap: 32px 12px;
    }
}

@media only screen and (min-width: 1200px) {
    body .latest-news-section .section-body .main-section-ul {
        grid-template-columns: repeat(3, 1fr);
        padding: 0 22px;
        grid-gap: 42px 22px;
    }
}

@media only screen and (min-width: 1600px) {
    body .latest-news-section .section-body .main-section-ul {
        grid-gap: 42px 22px;
    }
}

body .latest-news-section .section-body .main-section-ul li {
    display: grid;
    background-color: #fff;
    border-radius: 4px;
    transition: all .4s ease-out;
}

body .latest-news-section .section-body .main-section-ul li > a {
    display: grid;
    align-content: start;
    justify-items: center;
    transition: all .4s ease-out;
}

body .latest-news-section .section-body .main-section-ul li > a .news-img {
    display: grid;
    justify-items: center;
    width: 100%;
    position: relative;
    transition: all .4s ease-out;
    overflow: hidden;
}

body .latest-news-section .section-body .main-section-ul li > a .news-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 4px;
    transition: all .4s ease-out;
}

@media only screen and (min-width: 1600px) {
    body .latest-news-section .section-body .main-section-ul li > a .news-img img {
        height: 260px;
    }
}

body .latest-news-section .section-body .main-section-ul li > a .news-body {
    padding: 12px 18px 16px 18px;
}

@media only screen and (min-width: 992px) {
    body .latest-news-section .section-body .main-section-ul li > a .news-body {
        padding: 18px 28px 18px 28px;
    }
}

body .latest-news-section .section-body .main-section-ul li > a .news-body .news-heading-date {
    border-bottom: 1px solid rgba(0, 0, 0, 0.034);
    margin: 0 -18px;
    padding: 0 18px 8px 18px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
}

@media only screen and (min-width: 992px) {
    body .latest-news-section .section-body .main-section-ul li > a .news-body .news-heading-date {
        margin: 0 -28px;
        padding: 0 28px 12px 28px;
    }
}

body .latest-news-section .section-body .main-section-ul li > a .news-body .news-heading-date .heading p {
    color: #151515;
    font-size: 14px;
    line-height: 1.2;
    transition: all .3s ease-out;
}

@media only screen and (min-width: 992px) {
    body .latest-news-section .section-body .main-section-ul li > a .news-body .news-heading-date .heading p {
        font-size: 18px;
    }
}

body .latest-news-section .section-body .main-section-ul li > a .news-body .news-heading-date .date {
    display: grid;
    justify-content: start;
    align-items: center;
    line-height: 1;
    text-align: center;
}

body .latest-news-section .section-body .main-section-ul li > a .news-body .news-heading-date .date span {
    font-family: 'DINPro';
    color: #9b9b9b;
    transition: all .3s ease-out;
}

body .latest-news-section .section-body .main-section-ul li > a .news-body .news-heading-date .date i {
    color: #9b9b9b;
    font-size: 32px;
    transition: all .3s ease-out;
}

body .latest-news-section .section-body .main-section-ul li > a .news-body .news-text {
    padding-top: 12px;
}

@media only screen and (min-width: 992px) {
    body .latest-news-section .section-body .main-section-ul li > a .news-body .news-text {
        padding-top: 16px;
    }
}

body .latest-news-section .section-body .main-section-ul li > a .news-body .news-text p {
    color: #9b9b9b;
    line-height: 1.8;
    text-align: center;
    font-size: 14px;
}

body .latest-news-section .section-body .main-section-ul li > a:hover .news-img img {
    filter: grayscale(0.7);
    transform: scale(1.1);
}

body .latest-news-section .section-body .main-section-ul li .social-div {
    display: grid;
    grid-auto-flow: column;
    justify-content: center;
    grid-gap: 18px;
    font-weight: bold;
    padding: 6px 8px 18px 8px;
}

@media only screen and (min-width: 992px) {
    body .latest-news-section .section-body .main-section-ul li .social-div {
        grid-gap: 22px;
        padding: 8px 12px 24px 12px;
    }
}

body .latest-news-section .section-body .main-section-ul li .social-div > a {
    color: #9b9b9b;
    font-size: 20px;
}

@media only screen and (min-width: 992px) {
    body .latest-news-section .section-body .main-section-ul li .social-div > a {
        font-size: 24px;
    }
}

body .latest-news-section .section-body .main-section-ul li .social-div:hover .news-body .news-heading-date {
    border-color: rgba(0, 0, 0, 0.034);
}

body .latest-news-section .section-body .main-section-ul li.toggle-news-card {
    background-color: #f4fafd;
    box-shadow: 0 22px 28px rgba(0, 0, 0, 0.15);
}

body .latest-news-section .section-body .main-section-ul li.toggle-news-card > a .news-body .news-heading-date .heading p {
    color: #000;
}

body .latest-news-section .section-body .main-section-ul li.toggle-news-card > a .news-body .news-heading-date .date i,
body .latest-news-section .section-body .main-section-ul li.toggle-news-card > a .news-body .news-heading-date .date span {
    color: #000;
}

body .upcoming-events-section {
    padding: 32px 0;
    padding-top: 0;
}

@media only screen and (min-width: 768px) {
    body .upcoming-events-section {
        padding: 42px 0;
        padding-top: 0;
    }
}

@media only screen and (min-width: 992px) {
    body .upcoming-events-section {
        padding: 52px 0;
        padding-top: 0;
    }
}

@media only screen and (min-width: 1200px) {
    body .upcoming-events-section {
        padding: 72px 0;
        padding-top: 0;
    }
}

body .upcoming-events-section .section-heading {
    margin-bottom: 10px;
}

@media only screen and (min-width: 768px) {
    body .upcoming-events-section .section-heading {
        margin-bottom: 16px;
    }
}

@media only screen and (min-width: 992px) {
    body .upcoming-events-section .section-heading {
        margin-bottom: 32px;
    }
}

@media only screen and (min-width: 1200px) {
    body .upcoming-events-section .section-heading {
        margin-bottom: 42px;
    }
}

body .upcoming-events-section .section-heading p {
    text-transform: uppercase;
/*    font-family: 'Dosis-Regular';*/
    letter-spacing: 2px;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
}

@media only screen and (min-width: 768px) {
    body .upcoming-events-section .section-heading p {
        font-size: 28px;
    }
}

@media only screen and (min-width: 992px) {
    body .upcoming-events-section .section-heading p {
        font-size: 32px;
    }
}

@media only screen and (min-width: 1200px) {
    body .upcoming-events-section .section-heading p {
        font-size: 42px;
    }
}

body .upcoming-events-section .section-body .main-section-ul {
    display: grid;
    grid-gap: 22px;
}

@media only screen and (min-width: 992px) {
    body .upcoming-events-section .section-body .main-section-ul {
        grid-gap: 32px;
    }
}

body .upcoming-events-section .section-body .main-section-ul > li {
    display: grid;
}

body .upcoming-events-section .section-body .main-section-ul > li a {
    display: grid;
    background-color: #f9f9f9;
    border-radius: 4px;
    transition: all .4s ease-out;
}

@media only screen and (min-width: 768px) {
    body .upcoming-events-section .section-body .main-section-ul > li a {
        grid-template-columns: 35% 65%;
    }
}

body .upcoming-events-section .section-body .main-section-ul > li a .event-img img {
    width: 100%;
    height: 250px;
    transition: all .4s ease-out;
    object-fit: cover;
}

@media only screen and (min-width: 992px) {
    body .upcoming-events-section .section-body .main-section-ul > li a .event-img img {
        height: 280px;
    }
}

body .upcoming-events-section .section-body .main-section-ul > li a .event-body {
    padding: 14px 18px;
}

@media only screen and (min-width: 768px) {
    body .upcoming-events-section .section-body .main-section-ul > li a .event-body {
        padding: 18px 22px;
    }
}

@media only screen and (min-width: 992px) {
    body .upcoming-events-section .section-body .main-section-ul > li a .event-body {
        padding: 24px 30px;
    }
}

@media only screen and (min-width: 1200px) {
    body .upcoming-events-section .section-body .main-section-ul > li a .event-body {
        padding: 30px 38px;
    }
}

@media only screen and (min-width: 1600px) {
    body .upcoming-events-section .section-body .main-section-ul > li a .event-body {
        padding: 36px 42px;
    }
}

body .upcoming-events-section .section-body .main-section-ul > li a .event-body .event-heading p {
    color: #f26323;
    font-family: 'Dosis-Regular';
    font-size: 18px;
}

@media only screen and (min-width: 992px) {
    body .upcoming-events-section .section-body .main-section-ul > li a .event-body .event-heading p {
        font-size: 26px;
    }
}

body .upcoming-events-section .section-body .main-section-ul > li a .event-body .event-details .speakers {
    display: grid;
    grid-gap: 4px;
}

body .upcoming-events-section .section-body .main-section-ul > li a .event-body .event-details .speakers .heading {
    line-height: 1.1;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    justify-content: start;
    grid-gap: 4px;
    color: #000;
}

body .upcoming-events-section .section-body .main-section-ul > li a .event-body .event-details .speakers > ul {
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 10px;
    justify-content: start;
}

@media only screen and (min-width: 992px) {
    body .upcoming-events-section .section-body .main-section-ul > li a .event-body .event-details .speakers > ul {
        grid-gap: 14px;
    }
}

body .upcoming-events-section .section-body .main-section-ul > li a .event-body .event-details .speakers > ul li {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    justify-content: start;
    grid-gap: 4px;
    color: #5f5f5f;
    line-height: 1.4;
}

body .upcoming-events-section .section-body .main-section-ul > li a .event-body .event-details .speakers > ul li span {
    font-size: 14px;
}

body .upcoming-events-section .section-body .main-section-ul > li a .event-body .event-details .text {
    margin-top: 12px;
}

body .upcoming-events-section .section-body .main-section-ul > li a .event-body .event-details .text p {
    font-size: 16px;
    color: #7f7f7f;
}

body .upcoming-events-section .section-body .main-section-ul > li a:hover {
    background-color: #ffe4b57a !important;
}

body .upcoming-events-section .section-body .main-section-ul > li a:hover .event-img img {
    filter: grayscale(0.8);
}

body .upcoming-events-section .section-body .main-section-ul > li:nth-of-type(2n + 1) a {
    background-color: aliceblue;
}

body .branches-page {
    margin-top: 80px;
    padding: 22px 0;
}

@media only screen and (min-width: 768px) {
    body .branches-page {
        padding: 32px 0;
    }
}

@media only screen and (min-width: 992px) {
    body .branches-page {
        padding: 42px 0;
    }
}

@media only screen and (min-width: 1200px) {
    body .branches-page {
        padding: 52px 0;
    }
}

body .branches-page .page-heading {
    margin-bottom: 18px;
}

body .branches-page .page-heading p {
    text-align: center;
    color: #151515;
    font-size: 28px;
}

@media only screen and (min-width: 992px) {
    body .branches-page .page-heading p {
        font-size: 34px;
    }
}

@media only screen and (min-width: 1200px) {
    body .branches-page .page-heading p {
        font-size: 42px;
    }
}

body .branches-page .page-body .main-page-ul {
    display: grid;
    grid-gap: 32px;
}

@media only screen and (min-width: 992px) {
    body .branches-page .page-body .main-page-ul {
        grid-template-columns: repeat(3, 1fr);
    }
}

body .branches-page .page-body .main-page-ul > li {
    display: grid;
    background-color: #fff;
    grid-template-rows: 280px 1fr;
    box-shadow: 0 12px 16px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
}

@media only screen and (min-width: 992px) {
    body .branches-page .page-body .main-page-ul > li {
        box-shadow: 0 32px 38px rgba(0, 0, 0, 0.1);
    }
}

body .branches-page .page-body .main-page-ul > li .li-img {
    display: grid;
}

body .branches-page .page-body .main-page-ul > li .li-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 4px 4px 0 0;
}

body .branches-page .page-body .main-page-ul > li .li-body {
    padding: 18px 16px;
    display: grid;
}

@media only screen and (min-width: 992px) {
    body .branches-page .page-body .main-page-ul > li .li-body {
        padding: 22px 20px;
    }
}

body .branches-page .page-body .main-page-ul > li .li-body .heading p {
    font-size: 14px;
    text-align: center;
    color: #151515;
    font-weight: bold;
    text-align: center;
}

@media only screen and (min-width: 992px) {
    body .branches-page .page-body .main-page-ul > li .li-body .heading p {
        font-size: 18px;
    }
}

body .branches-page .page-body .main-page-ul > li .li-body .address {
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 2px;
    margin-top: 8px;
    justify-content: center;
    color: #3DA1DE;
    font-size: 14px;
    text-align: center;
    line-height: 1.2;
}

@media only screen and (min-width: 992px) {
    body .branches-page .page-body .main-page-ul > li .li-body .address {
        font-size: 16px;
    }
}

body .branches-page .page-body .main-page-ul > li .li-body .phones {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1px;
    margin-top: 14px;
    border-radius: 3px;
}

body .branches-page .page-body .main-page-ul > li .li-body .phones li {
    padding: 10px 2px;
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 3px;
    justify-content: center;
    line-height: 1;
    color: #525252;
    font-size: 14px;
    background-color: #f5f5f5;
}

body .branches-page .page-body .main-page-ul > li .li-body .phones li:nth-of-type(2n + 1) {
    background-color: aliceblue;
}

@media only screen and (min-width: 992px) {
    body .branches-page .page-body .main-page-ul > li .li-body .phones li i {
        font-size: 18px;
    }
}

@media only screen and (min-width: 992px) {
    body .branches-page .page-body .main-page-ul > li .li-body .phones li {
        font-size: 16px;
        grid-gap: 6px;
    }
}

body .branches-page .page-body .main-page-ul > li .li-body .working-hours {
    align-self: end;
    margin-top: 18px;
    display: grid;
    grid-gap: 8px;
    background-color: #f4fafd;
    color: #9b9b9b;
    padding: 14px 12px;
    border-radius: 4px;
}

@media only screen and (min-width: 992px) {
    body .branches-page .page-body .main-page-ul > li .li-body .working-hours {
        grid-gap: 10px;
    }
}

@media only screen and (min-width: 1200px) {
    body .branches-page .page-body .main-page-ul > li .li-body .working-hours {
        grid-gap: 14px;
    }
}

body .branches-page .page-body .main-page-ul > li .li-body .working-hours li {
    display: grid;
    grid-template-columns: 65px auto;
}

body .branches-page .page-body .main-page-ul > li .li-body .working-hours li span:first-of-type {
    color: #3DA1DE;
}

body .book-now-page {
    margin-top: 80px;
    padding: 32px 0;
    min-height: 60vh;
    display: grid;
    align-items: center;
    justify-items: center;
}

@media only screen and (min-width: 768px) {
    body .book-now-page {
        padding: 42px 0;
    }
}

@media only screen and (min-width: 992px) {
    body .book-now-page {
        margin-top: 120px;
        padding: 52px 0;
    }
}

@media only screen and (min-width: 1200px) {
    body .book-now-page {
        padding: 62px 0;
    }
}

body .book-now-page .service-appointment-form {
    max-width: 540px;
    border-radius: 2px;
    display: grid;
    position: relative;
    box-shadow: 0 32px 38px rgba(0, 0, 0, 0.15);
    background-color: #fff;
    padding: 12px 15px 22px 15px;
}

@media only screen and (min-width: 992px) {
    body .book-now-page .service-appointment-form {
        min-width: 400px;
    }
}

@media only screen and (min-width: 1200px) {
    body .book-now-page .service-appointment-form {
        min-width: 500px;
    }
}

@media only screen and (min-width: 992px) {
    body .book-now-page .service-appointment-form {
        padding: 10px 38px 38px 38px;
    }
}

@media only screen and (min-width: 1200px) {
    body .book-now-page .service-appointment-form {
        padding: 28px 42px 42px 42px;
    }
}

@media only screen and (min-width: 1200px) {
    body .book-now-page .service-appointment-form {
        padding: 28px 42px 42px 42px;
    }
}

@media only screen and (min-width: 1200px) {
    body .book-now-page .service-appointment-form {
        padding: 32px 52px 52px 52px;
    }
}

body .book-now-page .service-appointment-form .form-heading p {
    text-align: center;
    margin-bottom: 12px;
    font-size: 18px;
}

@media only screen and (min-width: 992px) {
    body .book-now-page .service-appointment-form .form-heading p {
        font-size: 20px;
    }
}

@media only screen and (min-width: 1200px) {
    body .book-now-page .service-appointment-form .form-heading p {
        font-size: 26px;
    }
}

@media only screen and (min-width: 1600px) {
    body .book-now-page .service-appointment-form .form-heading p {
        font-size: 28px;
    }
}

body .book-now-page .service-appointment-form form {
    display: grid;
    grid-gap: 12px;
    border-radius: 2px;
}

@media only screen and (min-width: 992px) {
    body .book-now-page .service-appointment-form form {
        grid-gap: 16px;
    }
}

body .book-now-page .service-appointment-form form .form-div {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    background-color: #f9f9f9;
    transition: all .3s ease-out;
    border: 2px solid transparent;
    border-radius: 4px;
}

body .book-now-page .service-appointment-form form .form-div label {
    margin: 0;
    margin-left: 8px;
}

body .book-now-page .service-appointment-form form .form-div label i {
    padding: 0 8px;
    font-size: 22px;
    color: #9b9b9b;
}

@media only screen and (min-width: 992px) {
    body .book-now-page .service-appointment-form form .form-div label i {
        padding: 0 12px;
        font-size: 22px;
    }
}

@media only screen and (min-width: 1200px) {
    body .book-now-page .service-appointment-form form .form-div label i {
        font-size: 30px;
    }
}

@media only screen and (min-width: 1600px) {
    body .book-now-page .service-appointment-form form .form-div label i {
        font-size: 34px;
    }
}

body .book-now-page .service-appointment-form form .form-div input {
    height: 42px;
    background-color: transparent;
    border: 0;
    outline: 0;
    padding: 2px 16px;
    color: #605c5c;
}

body .book-now-page .service-appointment-form form .form-div input::-webkit-input-placeholder {
    /* Edge */
    color: #9b9b9b;
}

body .book-now-page .service-appointment-form form .form-div input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #9b9b9b;
}

body .book-now-page .service-appointment-form form .form-div input::placeholder {
    color: #9b9b9b;
}

body .book-now-page .service-appointment-form form .form-div select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(../images/icons/chevron-down.svg);
    background-repeat: no-repeat;
    background-position: 4% center;
    background-size: 16px;
    height: 42px;
    background-color: transparent;
    border: 0;
    outline: 0;
    padding: 2px 16px;
    color: #9b9b9b;
    width: 100%;
}

@media only screen and (min-width: 375px) {
    body .book-now-page .service-appointment-form form .form-div select {
        max-width: unset;
    }
}

body .book-now-page .service-appointment-form form .form-div select option {
    color: #605c5c;
}

body .book-now-page .service-appointment-form form .form-div select option:first-child {
    color: #9b9b9b;
}

body .book-now-page .service-appointment-form form .form-div textarea {
    border: 0;
    outline: 0;
    padding: 8px 16px;
    height: 90px;
    color: #605c5c;
}

body .book-now-page .service-appointment-form form .form-div textarea::placeholder {
    color: #9b9b9b;
}

@media only screen and (min-width: 992px) {
    body .book-now-page .service-appointment-form form .form-div textarea {
        height: 100px;
    }
}

body .book-now-page .service-appointment-form form .form-div.submit-div {
    align-items: stretch;
    border: 0;
    background-color: transparent;
}

body .book-now-page .service-appointment-form form .form-div.submit-div button {
    position: relative;
    background-color: transparent;
    border: 1px solid rgba(61, 161, 222, 0.78);
    box-shadow: 0 0 12px rgba(61, 161, 222, 0.255);
    display: flex;
    align-items: center;
    justify-content: center;
    grid-template-columns: auto auto;
    color: #3DA1DE;
    border-radius: 2px;
    transition: all .2s ease-out;
    overflow: hidden;
}

body .book-now-page .service-appointment-form form .form-div.submit-div button i {
    font-size: 26px;
    margin-left: 4px;
}

@media only screen and (min-width: 992px) {
    body .book-now-page .service-appointment-form form .form-div.submit-div button i {
        font-size: 32px;
        margin-left: 6px;
    }
}

@media only screen and (min-width: 992px) {
    body .book-now-page .service-appointment-form form .form-div.submit-div button span {
        font-size: 20px;
    }
}

body .book-now-page .service-appointment-form form .form-div.submit-div button i,
body .book-now-page .service-appointment-form form .form-div.submit-div button span {
    position: relative;
    z-index: 1;
}

body .book-now-page .service-appointment-form form .form-div.submit-div button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: #c8e5f6;
    transition: all .2s ease-out;
}

body .book-now-page .service-appointment-form form .form-div.submit-div button:hover {
    box-shadow: 0 0 12px transparent;
}

body .book-now-page .service-appointment-form form .form-div.submit-div button:hover::before {
    left: 100%;
}

body .book-now-page .service-appointment-form form .form-div.submit-div button:focus,
body .book-now-page .service-appointment-form form .form-div.submit-div button:active {
    border: 0;
    outline: 0;
}

body .book-now-page .service-appointment-form form .form-div.toggle-form-div {
    border-color: rgba(61, 161, 222, 0.15);
}

body .book-now-page .service-appointment-form form .form-div.toggle-form-div label i {
    color: #3DA1DE;
}

body .carrers-page {
    padding-top: 32px;
    padding-bottom: 32px;
    min-height: 60vh;
}

@media only screen and (min-width: 768px) {
    body .carrers-page {
        padding-top: 42px;
        padding-bottom: 42px;
    }
}

@media only screen and (min-width: 992px) {
    body .carrers-page {
        margin-top: 120px;
        padding-top: 52px;
        padding-bottom: 52px;
    }
}

@media only screen and (min-width: 1200px) {
    body .carrers-page {
        padding-bottom: 62px;
    }
}

body .carrers-page .page-heading {
    margin-bottom: 32px;
}

body .carrers-page .page-heading p {
    color: #272727;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    font-size: 22px;
}

@media only screen and (min-width: 768px) {
    body .carrers-page .page-heading p {
        font-size: 32px;
    }
}

@media only screen and (min-width: 992px) {
    body .carrers-page .page-heading p {
        font-size: 38px;
    }
}

@media only screen and (min-width: 1200px) {
    body .carrers-page .page-heading p {
        font-size: 42px;
    }
}

body .carrers-page .page-body .job-form {
    max-width: 650px;
    margin: auto;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 26px 18px;
    display: grid;
    grid-gap: 24px;
}

@media only screen and (min-width: 992px) {
    body .carrers-page .page-body .job-form {
        grid-gap: 36px;
        padding: 36px 26px;
    }
}

@media only screen and (min-width: 1200px) {
    body .carrers-page .page-body .job-form {
        grid-gap: 40px;
        padding: 62px 52px;
    }
}

body .carrers-page .page-body .job-form .form-div {
    display: grid;
}

body .carrers-page .page-body .job-form .form-div input,
body .carrers-page .page-body .job-form .form-div textarea {
    background-color: transparent;
    border: 0;
    outline: 0;
    font-size: 18px;
    padding: 6px 16px;
    color: #373737;
}

@media only screen and (min-width: 992px) {

    body .carrers-page .page-body .job-form .form-div input,
    body .carrers-page .page-body .job-form .form-div textarea {
        font-size: 20px;
    }
}

body .carrers-page .page-body .job-form .form-div input::-webkit-input-placeholder,
body .carrers-page .page-body .job-form .form-div textarea::-webkit-input-placeholder {
    /* Edge */
    color: rgba(0, 0, 0, 0.3);
    font-size: 14px;
}

@media only screen and (min-width: 992px) {

    body .carrers-page .page-body .job-form .form-div input::-webkit-input-placeholder,
    body .carrers-page .page-body .job-form .form-div textarea::-webkit-input-placeholder {
        font-size: 16px;
    }
}

body .carrers-page .page-body .job-form .form-div input:-ms-input-placeholder,
body .carrers-page .page-body .job-form .form-div textarea:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: rgba(0, 0, 0, 0.3);
    font-size: 14px;
}

@media only screen and (min-width: 992px) {

    body .carrers-page .page-body .job-form .form-div input:-ms-input-placeholder,
    body .carrers-page .page-body .job-form .form-div textarea:-ms-input-placeholder {
        font-size: 16px;
    }
}

body .carrers-page .page-body .job-form .form-div input::placeholder,
body .carrers-page .page-body .job-form .form-div textarea::placeholder {
    color: rgba(0, 0, 0, 0.3);
    font-size: 14px;
}

@media only screen and (min-width: 992px) {

    body .carrers-page .page-body .job-form .form-div input::placeholder,
    body .carrers-page .page-body .job-form .form-div textarea::placeholder {
        font-size: 16px;
    }
}

body .carrers-page .page-body .job-form .form-div input:focus,
body .carrers-page .page-body .job-form .form-div textarea:focus {
    background-color: transparent;
}

body .carrers-page .page-body .job-form .form-div input:focus + .thin-line::after,
body .carrers-page .page-body .job-form .form-div textarea:focus + .thin-line::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    transition: all .4s ease-out;
}

body .carrers-page .page-body .job-form .form-div textarea {
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 14px;
    border-radius: 2px;
    height: 140px;
}

body .carrers-page .page-body .job-form .form-div textarea:focus {
    border: 1px solid #F6BE45;
}

body .carrers-page .page-body .job-form .form-div .thin-line {
    position: relative;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    transition: all .4s ease-out;
}

body .carrers-page .page-body .job-form .form-div .thin-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #3DA1DE;
}

body .carrers-page .page-body .job-form .form-div label {
    color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    margin: 0;
    padding: 6px 16px;
    border: 1px solid rgba(0, 0, 0, 0.123);
}

body .carrers-page .page-body .job-form .form-div input[type="file"] {
    width: .1px;
    height: .1px;
    opacity: 0;
    visibility: hidden;
    padding: 0;
}

body .carrers-page .page-body .job-form .form-div button {
    background-color: transparent;
    border: 0;
    outline: 0;
    color: #3DA1DE;
    border: 1px solid #3DA1DE;
    padding: 8px 14px;
    border-radius: 52px;
    justify-self: start;
    transition: all .2s ease-out;
}

@media only screen and (min-width: 992px) {
    body .carrers-page .page-body .job-form .form-div button {
        padding: 10px 18px;
    }
}

body .carrers-page .page-body .job-form .form-div button:hover {
    background-color: #3DA1DE;
    color: #fff;
}

body .news-details-page {
    min-height: 60vh;
    padding-top: 32px;
    padding-bottom: 32px;
}

@media only screen and (min-width: 768px) {
    body .news-details-page {
        padding-top: 42px;
        padding-bottom: 42px;
    }
}

@media only screen and (min-width: 992px) {
    body .news-details-page {
        margin-top: 120px;
        padding-top: 52px;
        padding-bottom: 52px;
    }
}

body .news-details-page .details-wrapper {
    background-color: #f9f9f9;
    display: grid;
}

@media only screen and (min-width: 992px) {
    body .news-details-page .details-wrapper {
        grid-template-columns: 45% 55%;
        justify-content: space-between;
    }
}

body .news-details-page .details-wrapper .news-img {
    display: grid;
}

body .news-details-page .details-wrapper .news-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

@media only screen and (min-width: 768px) {
    body .news-details-page .details-wrapper .news-img img {
        height: 320px;
    }
}

@media only screen and (min-width: 992px) {
    body .news-details-page .details-wrapper .news-img img {
        min-height: 420px;
        height: 100%;
    }
}

@media only screen and (min-width: 1200px) {
    body .news-details-page .details-wrapper .news-img img {
        min-height: 520px;
    }
}

body .news-details-page .details-wrapper .news-body {
    padding: 32px;
}

@media only screen and (min-width: 768px) {
    body .news-details-page .details-wrapper .news-body {
        padding: 42px;
    }
}

@media only screen and (min-width: 992px) {
    body .news-details-page .details-wrapper .news-body {
        padding: 62px;
    }
}

@media only screen and (min-width: 1200px) {
    body .news-details-page .details-wrapper .news-body {
        padding: 72px;
    }
}

@media only screen and (min-width: 1600px) {
    body .news-details-page .details-wrapper .news-body {
        padding: 82px;
    }
}

body .news-details-page .details-wrapper .news-body .news-heading-date {
    max-width: 600px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    margin-bottom: 12px;
    grid-gap: 12px;
}

@media only screen and (min-width: 992px) {
    body .news-details-page .details-wrapper .news-body .news-heading-date {
        margin-bottom: 22px;
    }
}

body .news-details-page .details-wrapper .news-body .news-heading-date .heading {
    padding: 14px 0;
}

body .news-details-page .details-wrapper .news-body .news-heading-date .heading p {
    color: #f26323;
    font-size: 18px;
    line-height: 1.2;
}

@media only screen and (min-width: 992px) {
    body .news-details-page .details-wrapper .news-body .news-heading-date .heading p {
        font-size: 22px;
    }
}

@media only screen and (min-width: 1200px) {
    body .news-details-page .details-wrapper .news-body .news-heading-date .heading p {
        font-size: 28px;
    }
}

body .news-details-page .details-wrapper .news-body .news-heading-date .date {
    display: grid;
    justify-content: start;
    align-items: center;
    line-height: 1;
    text-align: center;
}

body .news-details-page .details-wrapper .news-body .news-heading-date .date span {
    color: #5f5f5f;
}

body .news-details-page .details-wrapper .news-body .news-heading-date .date i {
    color: #5f5f5f;
    font-size: 32px;
}

@media only screen and (min-width: 992px) {
    body .news-details-page .details-wrapper .news-body .news-heading-date .date i {
        font-size: 38px;
    }
}

@media only screen and (min-width: 1200px) {
    body .news-details-page .details-wrapper .news-body .news-heading-date .date i {
        font-size: 44px;
    }
}

body .news-details-page .details-wrapper .news-body .news-text {
    max-width: 600px;
}

body .news-details-page .details-wrapper .news-body .news-text p {
    color: #7f7f7f;
    text-align: justify;
    margin-bottom: 12px;
}

body .news-details-page .details-wrapper .news-body .news-text .text-section {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-gap: 4px;
}

body .news-details-page .details-wrapper .news-body .news-text .text-section i {
    line-height: 1;
    margin-top: 4px;
}

@media only screen and (min-width: 992px) {
    body .news-details-page .details-wrapper .news-body .news-text .text-section i {
        margin-top: 6px;
    }
}

body .blogs-page {
    min-height: 60vh;
    margin-top: 80px;
    padding: 32px 0;
    background-color: #f5f5f5;
}

@media only screen and (min-width: 768px) {
    body .blogs-page {
        padding: 42px 0;
    }
}

@media only screen and (min-width: 992px) {
    body .blogs-page {
        margin-top: 120px;
        padding: 52px 0;
    }
}

body .blogs-page .page-heading {
    padding-bottom: 10px;
}

@media only screen and (min-width: 992px) {
    body .blogs-page .page-heading {
        padding-bottom: 22px;
    }
}

body .blogs-page .page-heading p {
    color: #151515;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

@media only screen and (min-width: 768px) {
    body .blogs-page .page-heading p {
        font-size: 22px;
    }
}

@media only screen and (min-width: 992px) {
    body .blogs-page .page-heading p {
        font-size: 42px;
    }
}

body .blogs-page .page-body .main-section-ul {
    display: grid;
    grid-gap: 32px;
}

@media only screen and (min-width: 768px) {
    body .blogs-page .page-body .main-section-ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (min-width: 992px) {
    body .blogs-page .page-body .main-section-ul {
        grid-gap: 32px 12px;
    }
}

@media only screen and (min-width: 1200px) {
    body .blogs-page .page-body .main-section-ul {
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 42px 22px;
    }
}

@media only screen and (min-width: 1600px) {
    body .blogs-page .page-body .main-section-ul {
        grid-gap: 42px 22px;
    }
}

body .blogs-page .page-body .main-section-ul li {
    display: grid;
    background-color: #fff;
    border-radius: 4px;
    transition: all .4s ease-out;
}

body .blogs-page .page-body .main-section-ul li > a {
    display: grid;
    align-content: start;
    justify-items: center;
    transition: all .4s ease-out;
}

body .blogs-page .page-body .main-section-ul li > a .news-img {
    display: grid;
    justify-items: center;
    width: 100%;
    position: relative;
    transition: all .4s ease-out;
    overflow: hidden;
}

body .blogs-page .page-body .main-section-ul li > a .news-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 4px;
    transition: all .4s ease-out;
}

@media only screen and (min-width: 1600px) {
    body .blogs-page .page-body .main-section-ul li > a .news-img img {
        height: 260px;
    }
}

body .blogs-page .page-body .main-section-ul li > a .news-body {
    padding: 12px 18px 16px 18px;
}

@media only screen and (min-width: 992px) {
    body .blogs-page .page-body .main-section-ul li > a .news-body {
        padding: 18px 28px 18px 28px;
    }
}

body .blogs-page .page-body .main-section-ul li > a .news-body .news-heading-date {
    border-bottom: 1px solid rgba(0, 0, 0, 0.034);
    margin: 0 -18px;
    padding: 0 18px 8px 18px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
}

@media only screen and (min-width: 992px) {
    body .blogs-page .page-body .main-section-ul li > a .news-body .news-heading-date {
        margin: 0 -28px;
        padding: 0 28px 12px 28px;
    }
}

body .blogs-page .page-body .main-section-ul li > a .news-body .news-heading-date .heading p {
    color: #151515;
    font-size: 14px;
    line-height: 1.2;
    transition: all .3s ease-out;
}

@media only screen and (min-width: 992px) {
    body .blogs-page .page-body .main-section-ul li > a .news-body .news-heading-date .heading p {
        font-size: 18px;
    }
}

body .blogs-page .page-body .main-section-ul li > a .news-body .news-heading-date .date {
    display: grid;
    justify-content: start;
    align-items: center;
    line-height: 1;
    text-align: center;
}

body .blogs-page .page-body .main-section-ul li > a .news-body .news-heading-date .date span {
    font-family: 'DINPro';
    color: #9b9b9b;
    transition: all .3s ease-out;
}

body .blogs-page .page-body .main-section-ul li > a .news-body .news-heading-date .date i {
    color: #9b9b9b;
    font-size: 32px;
    transition: all .3s ease-out;
}

body .blogs-page .page-body .main-section-ul li > a .news-body .news-text {
    padding-top: 12px;
}

@media only screen and (min-width: 992px) {
    body .blogs-page .page-body .main-section-ul li > a .news-body .news-text {
        padding-top: 16px;
    }
}

body .blogs-page .page-body .main-section-ul li > a .news-body .news-text p {
    color: #9b9b9b;
    line-height: 1.8;
    text-align: center;
    font-size: 14px;
}

body .blogs-page .page-body .main-section-ul li > a:hover .news-img img {
    filter: grayscale(0.7);
    transform: scale(1.1);
}

body .blogs-page .page-body .main-section-ul li .social-div {
    display: grid;
    grid-auto-flow: column;
    justify-content: center;
    grid-gap: 18px;
    font-weight: bold;
    padding: 6px 8px 18px 8px;
}

@media only screen and (min-width: 992px) {
    body .blogs-page .page-body .main-section-ul li .social-div {
        grid-gap: 22px;
        padding: 8px 12px 24px 12px;
    }
}

body .blogs-page .page-body .main-section-ul li .social-div > a {
    color: #9b9b9b;
    font-size: 20px;
}

@media only screen and (min-width: 992px) {
    body .blogs-page .page-body .main-section-ul li .social-div > a {
        font-size: 24px;
    }
}

body .blogs-page .page-body .main-section-ul li .social-div:hover .news-body .news-heading-date {
    border-color: rgba(0, 0, 0, 0.034);
}

body .blogs-page .page-body .main-section-ul li.toggle-news-card {
    background-color: #f4fafd;
    box-shadow: 0 22px 28px rgba(0, 0, 0, 0.15);
}

body .blogs-page .page-body .main-section-ul li.toggle-news-card > a .news-body .news-heading-date .heading p {
    color: #3DA1DE;
}

body .blogs-page .page-body .main-section-ul li.toggle-news-card > a .news-body .news-heading-date .date i,
body .blogs-page .page-body .main-section-ul li.toggle-news-card > a .news-body .news-heading-date .date span {
    color: #3DA1DE;
}

body .gallery-pgae {
    min-height: 60vh;
    padding-top: 22px;
    /*margin-top: 80px;*/
}

@media only screen and (min-width: 768px) {
    body .gallery-pgae {
        padding-top: 42px;
    }
}

@media only screen and (min-width: 992px) {
    body .gallery-pgae {
        /*margin-top: 120px;*/
        padding-top: 52px;
    }
}

body .gallery-pgae .section-heading {
    margin-bottom: 10px;
}

@media only screen and (min-width: 992px) {
    body .gallery-pgae .section-heading {
        margin-bottom: 14px;
    }
}

body .gallery-pgae .section-heading p {
    text-align: center;
    font-size: 22px;
    color: #151515;
}

@media only screen and (min-width: 992px) {
    body .gallery-pgae .section-heading p {
        font-size: 32px;
    }
}

@media only screen and (min-width: 1200px) {
    body .gallery-pgae .section-heading p {
        font-size: 42px;
    }
}

body .gallery-layout {
    background-color: #fff;
    display: grid;
}

body .gallery-layout .home-light-gallery {
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    grid-auto-flow: dense;
    grid-gap: 2px;
}

@media only screen and (min-width: 992px) {
    body .gallery-layout .home-light-gallery {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media only screen and (min-width: 992px) {
    body .body-text .gallery-layout .home-light-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

body .gallery-layout .home-light-gallery a {
    display: grid;
    align-items: stretch;
}

body .gallery-layout .home-light-gallery a img {
    width: 100%;
    height: 331px;
    object-fit: cover;
}

body .contact-page {
    padding-top: 32px;
}

@media only screen and (min-width: 768px) {
    body .contact-page {
        padding-top: 42px;
    }
}

@media only screen and (min-width: 992px) {
    body .contact-page {
        margin-top: 120px;
        padding-top: 52px;
        padding-bottom: 52px;
    }
}

@media only screen and (min-width: 1200px) {
    body .contact-page {
        padding-bottom: 62px;
    }
}

body .contact-page > .container .page-body {
    display: grid;
    grid-gap: 22px;
}

@media only screen and (min-width: 768px) {
    body .contact-page > .container .page-body {
        grid-gap: 32px;
    }
}

@media only screen and (min-width: 992px) {
    body .contact-page > .container .page-body {
        grid-template-columns: 45% 45%;
        justify-content: space-between;
    }
}

body .contact-page > .container .page-body .branches {
    display: grid;
    box-shadow: 0 36px 46px rgba(255, 255, 255, 0.24);
    border-radius: 2px;
    transform: perspective(1000px) rotateX(-8deg);
    align-self: start;
}

@media only screen and (min-width: 992px) {
    body .contact-page > .container .page-body .branches {
        transform: perspective(1000px) rotateY(358deg);
        position: sticky;
        top: 100px;
        height: 601px;
    }
}

body .contact-page > .container .page-body .branches > li {
    display: grid;
    grid-gap: 18px;
    padding: 14px;
}

@media only screen and (min-width: 768px) {
    body .contact-page > .container .page-body .branches > li {
        padding: 20px;
        grid-gap: 24px;
    }
}

@media only screen and (min-width: 992px) {
    body .contact-page > .container .page-body .branches > li {
        padding: 26px;
        grid-gap: 32px;
    }
}

body .contact-page > .container .page-body .branches > li .branch-heading p {
    color: #000;
    text-align: center;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
}

@media only screen and (min-width: 768px) {
    body .contact-page > .container .page-body .branches > li .branch-heading p {
        font-size: 20px;
    }
}

@media only screen and (min-width: 992px) {
    body .contact-page > .container .page-body .branches > li .branch-heading p {
        font-size: 22px;
    }
}

body .contact-page > .container .page-body .branches > li .working-hours-phones {
    display: grid;
    grid-gap: 12px;
    justify-items: center;
    align-items: center;
}

@media only screen and (min-width: 768px) {
    body .contact-page > .container .page-body .branches > li .working-hours-phones {
        grid-template-columns: 1fr 1fr;
    }
}

body .contact-page > .container .page-body .branches > li .working-hours-phones .working-hours .week-days {
    display: grid;
    justify-content: start;
    grid-gap: 8px;
}

@media only screen and (min-width: 768px) {
    body .contact-page > .container .page-body .branches > li .working-hours-phones .working-hours .week-days {
        grid-gap: 10px;
    }
}

@media only screen and (min-width: 992px) {
    body .contact-page > .container .page-body .branches > li .working-hours-phones .working-hours .week-days {
        grid-gap: 12px;
    }
}

body .contact-page > .container .page-body .branches > li .working-hours-phones .working-hours .week-days li {
    display: grid;
    grid-template-columns: 50px 1fr;
    grid-gap: 8px;
}

@media only screen and (min-width: 768px) {
    body .contact-page > .container .page-body .branches > li .working-hours-phones .working-hours .week-days li {
        grid-gap: 12px;
    }
}

@media only screen and (min-width: 992px) {
    body .contact-page > .container .page-body .branches > li .working-hours-phones .working-hours .week-days li {
        grid-gap: 14px;
    }
}

body .contact-page > .container .page-body .branches > li .working-hours-phones .phones {
    display: grid;
    grid-gap: 12px;
}

@media only screen and (min-width: 768px) {
    body .contact-page > .container .page-body .branches > li .working-hours-phones .phones {
        grid-gap: 16px;
    }
}

@media only screen and (min-width: 992px) {
    body .contact-page > .container .page-body .branches > li .working-hours-phones .phones {
        grid-gap: 22px;
    }
}

body .contact-page > .container .page-body .branches > li .working-hours-phones .phones li {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    grid-gap: 4px;
}

@media only screen and (min-width: 768px) {
    body .contact-page > .container .page-body .branches > li .working-hours-phones .phones li {
        grid-gap: 6px;
    }
}

@media only screen and (min-width: 992px) {
    body .contact-page > .container .page-body .branches > li .working-hours-phones .phones li {
        grid-gap: 8px;
    }
}

body .contact-page > .container .page-body .branches > li .working-hours-phones .phones li span {
    font-size: 20px;
}

@media only screen and (min-width: 768px) {
    body .contact-page > .container .page-body .branches > li .working-hours-phones .phones li span {
        font-size: 24px;
    }
}

@media only screen and (min-width: 992px) {
    body .contact-page > .container .page-body .branches > li .working-hours-phones .phones li span {
        font-size: 32px;
    }
}

body .contact-page > .container .page-body .branches > li .working-hours-phones .phones li span:last-of-type {
    font-family: 'DINPro';
    color: #000;
    line-height: 1;
}

body .contact-page > .container .page-body .branches > li .location {
    text-align: center;
}

body .contact-page > .container .page-body .branches > li:nth-of-type(2n + 1) {
    background-color: moccasin;
}

body .contact-page > .container .page-body .branches > li:nth-of-type(2n + 2) {
    background-color: aliceblue;
}

body .contact-page > .container .page-body .form-wrapper {
    padding: 22px 0;
    display: grid;
    background-color: #756e5d;
    align-self: start;
    border-radius: 2px;
    box-shadow: 0 36px 46px rgba(255, 255, 255, 0.24);
    transform: perspective(1000px) rotateX(-12deg);
}

@media only screen and (min-width: 992px) {
    body .contact-page > .container .page-body .form-wrapper {
        position: sticky;
        top: 80px;
    }
}

body .contact-page > .container .page-body .form-wrapper .form-heading {
    padding: 0 16px;
}

body .contact-page > .container .page-body .form-wrapper .form-heading p {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    color: #d7ba4e;
}

@media only screen and (min-width: 768px) {
    body .contact-page > .container .page-body .form-wrapper .form-heading p {
        font-size: 32px;
    }
}

@media only screen and (min-width: 992px) {
    body .contact-page > .container .page-body .form-wrapper .form-heading p {
        font-size: 38px;
    }
}

body .contact-page > .container .page-body .form-wrapper form {
    padding: 16px;
    display: grid;
    grid-gap: 14px;
}

@media only screen and (min-width: 768px) {
    body .contact-page > .container .page-body .form-wrapper form {
        padding: 24px;
    }
}

@media only screen and (min-width: 992px) {
    body .contact-page > .container .page-body .form-wrapper form {
        padding: 36px;
    }
}

@media only screen and (min-width: 768px) {
    body .contact-page > .container .page-body .form-wrapper form {
        grid-gap: 18px;
    }
}

@media only screen and (min-width: 992px) {
    body .contact-page > .container .page-body .form-wrapper form {
        grid-gap: 32px;
    }
}

body .contact-page > .container .page-body .form-wrapper form .form-div {
    display: grid;
}

body .contact-page > .container .page-body .form-wrapper form .form-div input {
    border: 1px solid #cacaca;
    padding: 0 12px;
    height: 40px;
    /* background-color: transparent; */
    border-radius: 52px;
}

body .contact-page > .container .page-body .form-wrapper form .form-div input::placeholder {
    font-size: 14px;
}

@media only screen and (min-width: 768px) {
    body .contact-page > .container .page-body .form-wrapper form .form-div input {
        height: 46px;
        padding: 0 14px;
    }
}

@media only screen and (min-width: 992px) {
    body .contact-page > .container .page-body .form-wrapper form .form-div input {
        height: 52px;
        padding: 0 22px;
    }
}

body .contact-page > .container .page-body .form-wrapper form .form-div input + .thin-line {
    height: 1px;
    background-color: gold;
    width: 0;
    transition: all .4s ease-out;
}

body .contact-page > .container .page-body .form-wrapper form .form-div input:focus {
    outline: 0;
    border: 0;
}

body .contact-page > .container .page-body .form-wrapper form .form-div input:focus + .thin-line {
    width: 100%;
}

body .contact-page > .container .page-body .form-wrapper form .form-div textarea {
    border: 1px solid #cacaca;
    padding: 8px 12px;
    height: 82px;
    /* background-color: transparent; */
    border-radius: 22px;
}

@media only screen and (min-width: 768px) {
    body .contact-page > .container .page-body .form-wrapper form .form-div textarea {
        height: 72px;
        padding: 10px 14px;
    }
}

@media only screen and (min-width: 992px) {
    body .contact-page > .container .page-body .form-wrapper form .form-div textarea {
        height: 120px;
        padding: 16px 22px;
    }
}

body .contact-page > .container .page-body .form-wrapper form .form-div textarea + .thin-line {
    height: 1px;
    background-color: gold;
    width: 0;
    transition: all .4s ease-out;
}

body .contact-page > .container .page-body .form-wrapper form .form-div textarea:focus {
    outline: 0;
    border: 0;
}

body .contact-page > .container .page-body .form-wrapper form .form-div textarea:focus + .thin-line {
    width: 100%;
}

body .contact-page > .container .page-body .form-wrapper form button {
    padding: 8px 16px;
    border: 0;
    outline: 0;
    background-color: #d7ba4e;
    color: #272727;
    border-radius: 52px;
}

body .contact-page > .container .page-body .form-wrapper form button:focus {
    border: 0;
    outline: 0;
}

@media only screen and (min-width: 992px) {
    body .contact-page > .container .page-body .form-wrapper {
        transform: perspective(1000px) rotateY(8deg);
    }
}

body .about-page {
    padding-top: 32px;
}

@media only screen and (min-width: 768px) {
    body .about-page {
        padding-top: 42px;
    }
}

@media only screen and (min-width: 992px) {
    body .about-page {
        margin-top: 120px;
        padding-top: 52px;
    }
}

body .about-page .page-heading {
    padding-bottom: 10px;
}

@media only screen and (min-width: 992px) {
    body .about-page .page-heading {
        padding-bottom: 22px;
    }
}

body .about-page .page-heading p {
    color: #151515;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

@media only screen and (min-width: 768px) {
    body .about-page .page-heading p {
        font-size: 22px;
    }
}

@media only screen and (min-width: 992px) {
    body .about-page .page-heading p {
        font-size: 42px;
    }
}

body .about-page .page-body .main-section-ul > li {
    display: grid;
}

@media only screen and (min-width: 768px) {
    body .about-page .page-body .main-section-ul > li {
        grid-template-columns: repeat(6, 1fr);
    }
}

body .about-page .page-body .main-section-ul > li:nth-of-type(2n + 1) {
    background-color: #ddc052;
}

body .about-page .page-body .main-section-ul > li:nth-of-type(2n + 2) {
    background-color: #9c9289;
}

@media only screen and (min-width: 768px) {
    body .about-page .page-body .main-section-ul > li:nth-of-type(2n + 2) .li-img {
        order: 1;
    }
}

body .about-page .page-body .main-section-ul > li .li-img {
    display: grid;
}

body .about-page .page-body .main-section-ul > li .li-img img {
    width: 100%;
    min-height: 200px;
    object-fit: cover;
}

@media only screen and (min-width: 992px) {
    body .about-page .page-body .main-section-ul > li .li-img img {
        height: 100%;
        min-height: 500px;
    }
}

@media only screen and (min-width: 768px) {
    body .about-page .page-body .main-section-ul > li .li-img {
        grid-column-end: span 3;
    }
}

@media only screen and (min-width: 992px) {
    body .about-page .page-body .main-section-ul > li .li-img {
        grid-column-end: span 4;
    }
}

body .about-page .page-body .main-section-ul > li .li-text {
    padding: 22px 14px;
    color: #fff;
}

@media only screen and (min-width: 768px) {
    body .about-page .page-body .main-section-ul > li .li-text {
        grid-column-end: span 3;
        padding: 22px 38px;
    }
}

@media only screen and (min-width: 992px) {
    body .about-page .page-body .main-section-ul > li .li-text {
        grid-column-end: span 2;
        padding: 22px 48px;
    }
}

body .about-page .page-body .main-section-ul > li .li-text .text-heading p {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
}

@media only screen and (min-width: 768px) {
    body .about-page .page-body .main-section-ul > li .li-text .text-heading p {
        font-size: 22px;
    }
}

@media only screen and (min-width: 992px) {
    body .about-page .page-body .main-section-ul > li .li-text .text-heading p {
        font-size: 28px;
    }
}

body .about-page .page-body .main-section-ul > li .li-text .inside-ul {
    display: grid;
    grid-gap: 10px;
}

@media only screen and (min-width: 992px) {
    body .about-page .page-body .main-section-ul > li .li-text .inside-ul {
        grid-gap: 16px;
    }
}

body .about-page .page-body .main-section-ul > li .li-text .inside-ul li {
    display: grid;
    grid-auto-flow: column;
    line-height: 1.8;
    grid-gap: 4px;
    justify-content: start;
    font-size: 14px;
}

@media only screen and (min-width: 992px) {
    body .about-page .page-body .main-section-ul > li .li-text .inside-ul li {
        grid-gap: 6px;
        font-size: 15px;
    }
}

body .about-page .page-body .main-section-ul > li .li-text .inside-ul li span {
    line-height: 1.8;
    color: #fff;
}

body .why-us-page {
    background-color: #f5f5f5;
    margin-top: 80px;
    padding: 32px 0;
    min-height: 60vh;
}

@media only screen and (min-width: 768px) {
    body .why-us-page {
        padding: 42px 0;
    }
}

@media only screen and (min-width: 992px) {
    body .why-us-page {
        margin-top: 120px;
        padding: 52px 0;
    }
}

@media only screen and (min-width: 1200px) {
    body .why-us-page {
        padding: 62px 0;
    }
}

body .why-us-page .page-heading {
    margin-bottom: 18px;
}

body .why-us-page .page-heading p {
    text-align: center;
    color: #151515;
    font-size: 28px;
}

@media only screen and (min-width: 992px) {
    body .why-us-page .page-heading p {
        font-size: 34px;
    }
}

@media only screen and (min-width: 1200px) {
    body .why-us-page .page-heading p {
        font-size: 42px;
    }
}

body .why-us-page .why-us-section {
    display: grid;
    grid-gap: 14px;
    position: relative;
    display: grid;
}

@media only screen and (min-width: 992px) {
    body .why-us-page .why-us-section {
        grid-gap: 42px;
    }
}

@media only screen and (min-width: 1200px) {
    body .why-us-page .why-us-section {
        grid-gap: 54px;
    }
}

body .why-us-page .why-us-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 18px;
    height: 18px;
    background-color: #3DA1DE;
    border-radius: 2px;
}

body .why-us-page .why-us-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 42px;
    height: 42px;
    background-color: #f5f5f5;
}

body .why-us-page .why-us-section ul {
    display: grid;
    grid-template-rows: repeat(4, 1fr);
    grid-gap: 1px;
    background-color: rgba(0, 0, 0, 0.08);
}

@media only screen and (min-width: 992px) {
    body .why-us-page .why-us-section ul {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
    }
}

body .why-us-page .why-us-section ul li {
    display: grid;
    background-color: #f5f5f5;
}

body .why-us-page .why-us-section ul li .li-div {
    margin: 22px 0;
    background-color: #fff;
    padding: 32px;
    text-align: center;
    display: grid;
}

@media only screen and (min-width: 992px) {
    body .why-us-page .why-us-section ul li .li-div {
        margin: 32px;
    }
}

@media only screen and (min-width: 992px) {
    body .why-us-page .why-us-section ul li .li-div {
        padding: 42px;
    }
}

body .why-us-page .why-us-section ul li .li-div .li-icon {
    margin-bottom: 8px;
}

body .why-us-page .why-us-section ul li .li-div .li-icon i {
    font-size: 42px;
    color: #3DA1DE;
}

@media only screen and (min-width: 992px) {
    body .why-us-page .why-us-section ul li .li-div .li-icon i {
        font-size: 52px;
    }
}

@media only screen and (min-width: 1200px) {
    body .why-us-page .why-us-section ul li .li-div .li-icon i {
        font-size: 62px;
    }
}

body .why-us-page .why-us-section ul li .li-div .li-heading {
    color: #151515;
    font-size: 18px;
    margin-bottom: 8px;
}

@media only screen and (min-width: 992px) {
    body .why-us-page .why-us-section ul li .li-div .li-heading {
        margin-bottom: 12px;
    }
}

@media only screen and (min-width: 992px) {
    body .why-us-page .why-us-section ul li .li-div .li-heading {
        font-size: 22px;
    }
}

body .why-us-page .why-us-section ul li .li-div .li-text p {
    font-size: 14px;
    color: #9b9b9b;
}

@media only screen and (min-width: 992px) {

    body .why-us-page .why-us-section ul li:nth-of-type(1) .li-div,
    body .why-us-page .why-us-section ul li:nth-of-type(2) .li-div {
        margin-top: 0;
    }

    body .why-us-page .why-us-section ul li:nth-of-type(3) .li-div,
    body .why-us-page .why-us-section ul li:nth-of-type(4) .li-div {
        margin-bottom: 0;
    }

    body .why-us-page .why-us-section ul li:nth-of-type(1) .li-div,
    body .why-us-page .why-us-section ul li:nth-of-type(3) .li-div {
        margin-right: 0;
    }

    body .why-us-page .why-us-section ul li:nth-of-type(2) .li-div,
    body .why-us-page .why-us-section ul li:nth-of-type(4) .li-div {
        margin-left: 0;
    }
}
  body .doctors-page {
    margin-top: 80px;
    padding-bottom: 32px; }
 body .doctors-page .section-heading {
    color: #151515;
    font-size: 32px;
    text-align: center;
    margin: 0 12px 8px 12px;
}

@media only screen and (min-width: 992px) {
     body .doctors-page .section-heading {
        margin: 0 22px 25px 22px;
        font-size: 42px;
    }
}

    @media only screen and (min-width: 992px) {
      body .doctors-page {
        margin-top: 140px;
        padding-bottom: 52px;
        } }
    @media only screen and (min-width: 1200px) {
      body .doctors-page {
        padding-bottom: 62px; } }
    body .doctors-page .page-heading {
      margin-bottom: 18px;
      height: 145px;
      position: relative;
      display: grid;
      align-items: end;
      justify-items: center; }
      @media only screen and (min-width: 992px) {
        body .doctors-page .page-heading {
          margin-bottom: 32px; } }
      @media only screen and (min-width: 1200px) {
        body .doctors-page .page-heading {
          margin-bottom: 42px; } }
      @media only screen and (min-width: 768px) {
        body .doctors-page .page-heading {
          height: 180px; } }
      @media only screen and (min-width: 992px) {
        body .doctors-page .page-heading {
          height: 240px; } }
      @media only screen and (min-width: 1200px) {
        body .doctors-page .page-heading {
          height: 300px; } }
      @media only screen and (min-width: 1600px) {
        body .doctors-page .page-heading {
          height: 340px; } }
      body .doctors-page .page-heading .img-div {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%; }
        body .doctors-page .page-heading .img-div img {
          width: 100%;
          height: 100%;
          object-fit: cover; }
        body .doctors-page .page-heading .img-div::after {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.6)); }
      body .doctors-page .page-heading p {
        position: relative;
        z-index: 1;
        font-family: 'Dosis-Regular';
        color: #ffffffcf;
        font-weight: bold;
        margin-bottom: 22px;
        font-size: 32px;
        text-shadow: 0 2px 8px rgba(255, 255, 255, 0.8); }
        @media only screen and (min-width: 768px) {
          body .doctors-page .page-heading p {
            font-size: 38px; } }
        @media only screen and (min-width: 992px) {
          body .doctors-page .page-heading p {
            font-size: 42px;
            margin-bottom: 28px; } }
        @media only screen and (min-width: 1200px) {
          body .doctors-page .page-heading p {
            font-size: 62px;
            margin-bottom: 38px; } }
        @media only screen and (min-width: 1600px) {
          body .doctors-page .page-heading p {
            font-size: 72px;
            margin-bottom: 42px; } }
    body .doctors-page .page-body .main-page-ul {
      display: grid;
      grid-gap: 64px; }
      @media only screen and (min-width: 768px) {
        body .doctors-page .page-body .main-page-ul {
          grid-template-columns: repeat(2, 1fr);
          grid-gap: 64px 18px; } }
      @media only screen and (min-width: 992px) {
        body .doctors-page .page-body .main-page-ul {
          grid-template-columns: repeat(3, 1fr);
          grid-gap: 74px 22px; } }
      @media only screen and (min-width: 1200px) {
        body .doctors-page .page-body .main-page-ul {
          grid-gap: 84px 22px; } }
      body .doctors-page .page-body .main-page-ul li {
        display: grid;
        grid-template-rows: auto 1fr;
        background-color: #f8f7fa;
        border-radius: 4px;
        transition: all .2s ease-out; }
        body .doctors-page .page-body .main-page-ul li .img-div {
          display: grid;
          justify-self: center;
          height: 240px;
          background-color: aliceblue;
          border-radius: 4px 0 0;
          transition: all .3s ease-out;
          width: 100%; }
          @media only screen and (min-width: 992px) {
            body .doctors-page .page-body .main-page-ul li .img-div {
              border-radius: 6px 0 0;
              height: 290px; } }
          @media only screen and (min-width: 1200px) {
            body .doctors-page .page-body .main-page-ul li .img-div {
              height: 320px; } }
          @media only screen and (min-width: 1600px) {
            body .doctors-page .page-body .main-page-ul li .img-div {
              height: 330px; } }
          body .doctors-page .page-body .main-page-ul li .img-div img {
            border-radius: 4px 4px 0 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all .3s ease-out; }
            @media only screen and (min-width: 992px) {
              body .doctors-page .page-body .main-page-ul li .img-div img {
                border-radius: 6px 6px 0 0; } }
        body .doctors-page .page-body .main-page-ul li .body {
          display: grid;
          text-align: center;
          padding: 22px 22px; }
          @media only screen and (min-width: 1200px) {
            body .doctors-page .page-body .main-page-ul li .body {
              padding: 38px 38px; } }
          body .doctors-page .page-body .main-page-ul li .body .name {
            color: #151515;
            margin-bottom: 8px; }
            body .doctors-page .page-body .main-page-ul li .body .name img {
              width: 22px;
              height: 22px; }
            body .doctors-page .page-body .main-page-ul li .body .name span {
              font-size: 16px; }
              @media only screen and (min-width: 992px) {
                body .doctors-page .page-body .main-page-ul li .body .name span {
                  font-size: 18px; } }
          body .doctors-page .page-body .main-page-ul li .body .job-description {
            margin-bottom: 8px; }
            body .doctors-page .page-body .main-page-ul li .body .job-description p {
              color: #6b6b6b;
              font-size: 14px; }
              @media only screen and (min-width: 992px) {
                body .doctors-page .page-body .main-page-ul li .body .job-description p {
                  font-size: 16px; } }
          body .doctors-page .page-body .main-page-ul li .body .btns {
            display: grid;
            grid-auto-flow: column; }
            body .doctors-page .page-body .main-page-ul li .body .btns .profile-link,
            body .doctors-page .page-body .main-page-ul li .body .btns .book-link {
              align-self: end;
              justify-self: center;
              display: grid;
              grid-template-columns: auto auto;
              align-items: center;
              justify-content: center;
              border-radius: 5px;
              padding: 10px 22px;
              transition: all .2s ease-out;
              grid-gap: 4px;
              color: #707070;
              margin-top: 16px;
              border: 1px solid #a5c95d;
              }
              @media only screen and (min-width: 992px) {
                body .doctors-page .page-body .main-page-ul li .body .btns .profile-link,
                body .doctors-page .page-body .main-page-ul li .body .btns .book-link {
                  margin-top: 22px; } }
            body .doctors-page .page-body .main-page-ul li .body .btns .book-link {
              background-color: #F6BE45;
              color: #fff; }
        body .doctors-page .page-body .main-page-ul li:hover {
          background-color: #fff !important;
          box-shadow: 0 38px 40px rgba(0, 0, 0, 0.1);
          border-color: transparent; }
          body .doctors-page .page-body .main-page-ul li:hover .img-div img {
            filter: grayscale(0.8); }
          body .doctors-page .page-body .main-page-ul li:hover .body .read-more {
            background-color: #F6BE45;
            color: #fff; }
    body .doctors-page .page-body .pagination-ul {
      margin-top: 22px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(40px, auto));
      justify-content: center; }
      @media only screen and (min-width: 992px) {
        body .doctors-page .page-body .pagination-ul {
          margin-top: 32px; } }
      @media only screen and (min-width: 1200px) {
        body .doctors-page .page-body .pagination-ul {
          margin-top: 42px; } }
      body .doctors-page .page-body .pagination-ul li {
        display: grid; }
        body .doctors-page .page-body .pagination-ul li a {
          display: grid;
          align-items: center;
          justify-items: center;
          line-height: 1.5;
          background-color: #fff;
          border: 1px solid #dee2e6;
          padding: 8px 12px;
          margin-right: -1px;
          color: #6c757d;
          transition: all .2s ease-out; }
          body .doctors-page .page-body .pagination-ul li a span {
            font-family: 'DINPro'; }
          body .doctors-page .page-body .pagination-ul li a.active-page {
            background-color: #F6BE45;
            color: #fff;
            border-color: #F6BE45; }
          body .doctors-page .page-body .pagination-ul li a:hover {
            background-color: #F6BE45;
            color: #fff;
            border-color: #F6BE45; }
        body .doctors-page .page-body .pagination-ul li:first-of-type a {
          margin-right: 0;
          border-top-left-radius: 4px;
          border-bottom-left-radius: 4px; }
        body .doctors-page .page-body .pagination-ul li:last-of-type a {
          border-top-right-radius: 4px;
          border-bottom-right-radius: 4px; }
  body .doctor-profile-page {
    background-color: #f9f9f99e;
    margin-top: 80px;
    padding-top: 32px;
    padding-bottom: 32px; }
    @media only screen and (min-width: 768px) {
      body .doctor-profile-page {
        padding-top: 42px;
        padding-bottom: 42px; } }
    @media only screen and (min-width: 992px) {
      body .doctor-profile-page {
        margin-top: 120px;
        padding-top: 52px;
        padding-bottom: 52px; } }
    body .doctor-profile-page .container {
      display: grid; }
      @media only screen and (min-width: 992px) {
        body .doctor-profile-page .container {
          grid-template-columns: 30% 65%;
          justify-content: space-between;
          align-items: start; } }
      body .doctor-profile-page .container .doctor-img-contacts {
        background-color: #f5f5f5; }
        @media only screen and (min-width: 992px) {
          body .doctor-profile-page .container .doctor-img-contacts {
            position: sticky;
            top: 100px; } }
        body .doctor-profile-page .container .doctor-img-contacts .img-div {
          display: grid; }
          body .doctor-profile-page .container .doctor-img-contacts .img-div img {
            width: 100%;
            height: 260px;
            object-fit: cover; }
            @media only screen and (min-width: 768px) {
              body .doctor-profile-page .container .doctor-img-contacts .img-div img {
                height: 340px; } }
        body .doctor-profile-page .container .doctor-img-contacts .doctor-contacts {
          padding: 18px;
          padding-bottom: 22px; }
          @media only screen and (min-width: 992px) {
            body .doctor-profile-page .container .doctor-img-contacts .doctor-contacts {
              padding: 22px;
              padding-bottom: 26px; } }
          @media only screen and (min-width: 1200px) {
            body .doctor-profile-page .container .doctor-img-contacts .doctor-contacts {
              padding: 22px 32px;
              padding-bottom: 38px; } }
          body .doctor-profile-page .container .doctor-img-contacts .doctor-contacts .doctor-name p {
            color: #151515;
            font-weight: bold;
            font-size: 18px;
            text-transform: capitalize;
            text-align: center; }
            @media only screen and (min-width: 992px) {
              body .doctor-profile-page .container .doctor-img-contacts .doctor-contacts .doctor-name p {
                font-size: 20px; } }
          body .doctor-profile-page .container .doctor-img-contacts .doctor-contacts .job-description p {
            color: #F6BE45;
            text-transform: uppercase;
            text-align: center; }
          body .doctor-profile-page .container .doctor-img-contacts .doctor-contacts .phone-number {
            margin-top: 4px;
            display: grid;
            margin-bottom: 12px;
            grid-template-columns: auto auto;
            grid-gap: 4px;
            justify-content: center;
            line-height: 1;
            align-items: center; }
            body .doctor-profile-page .container .doctor-img-contacts .doctor-contacts .phone-number span {
              font-family: 'DINPro';
              font-size: 18px; }
            @media only screen and (min-width: 1200px) {
              body .doctor-profile-page .container .doctor-img-contacts .doctor-contacts .phone-number {
                grid-gap: 8px;
                margin-bottom: 22px;
                margin-top: 12px; }
                body .doctor-profile-page .container .doctor-img-contacts .doctor-contacts .phone-number span {
                  font-size: 22px; }
                body .doctor-profile-page .container .doctor-img-contacts .doctor-contacts .phone-number i {
                  font-size: 18px; } }
          body .doctor-profile-page .container .doctor-img-contacts .doctor-contacts .social-ul {
            display: grid;
            grid-auto-flow: column;
            grid-gap: 12px;
            justify-content: center; }
            body .doctor-profile-page .container .doctor-img-contacts .doctor-contacts .social-ul li {
              display: grid; }
              body .doctor-profile-page .container .doctor-img-contacts .doctor-contacts .social-ul li a {
                display: grid;
                align-items: center;
                justify-items: center;
                border-radius: 200px 200px 200px 50px;
                width: 32px;
                height: 32px;
                box-shadow: 0 0 8px rgba(0, 0, 0, 0.1); }
                @media only screen and (min-width: 1200px) {
                  body .doctor-profile-page .container .doctor-img-contacts .doctor-contacts .social-ul li a {
                    width: 38px;
                    height: 38px; } }
                body .doctor-profile-page .container .doctor-img-contacts .doctor-contacts .social-ul li a i {
                  font-size: 14px;
                  color: #fff;
                  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.15); }
                  @media only screen and (min-width: 1200px) {
                    body .doctor-profile-page .container .doctor-img-contacts .doctor-contacts .social-ul li a i {
                      font-size: 16px; } }
              body .doctor-profile-page .container .doctor-img-contacts .doctor-contacts .social-ul li:nth-of-type(1) a {
                background-color: #3b5998; }
              body .doctor-profile-page .container .doctor-img-contacts .doctor-contacts .social-ul li:nth-of-type(2) a {
                background-color: #1da1f2; }
              body .doctor-profile-page .container .doctor-img-contacts .doctor-contacts .social-ul li:nth-of-type(3) a {
                background-color: #c13584; }
              body .doctor-profile-page .container .doctor-img-contacts .doctor-contacts .social-ul li:nth-of-type(4) a {
                background-color: #128c7e; }
      @media only screen and (min-width: 992px) {
        body .doctor-profile-page .container .details-section {
          border: 1px solid rgba(0, 0, 0, 0.08);
          padding: 32px; } }
      body .doctor-profile-page .container .details-section .sections-ul {
        margin-top: 12px;
        display: grid;
        grid-gap: 18px; }
        body .doctor-profile-page .container .details-section .sections-ul > li {
          display: grid;
          border-bottom: 1px solid rgba(0, 0, 0, 0.08);
          padding-bottom: 18px; }
          body .doctor-profile-page .container .details-section .sections-ul > li:last-of-type {
            border: 0; }
          body .doctor-profile-page .container .details-section .sections-ul > li .title {
            display: grid;
            justify-content: start;
            grid-auto-flow: column;
            line-height: 1.3;
            grid-gap: 4px;
            color: #272727;
            font-size: 14px;
            margin-bottom: 8px; }
            body .doctor-profile-page .container .details-section .sections-ul > li .title i {
              margin-top: 3px; }
            body .doctor-profile-page .container .details-section .sections-ul > li .title p {
              font-weight: bold;
              text-transform: uppercase; }
          body .doctor-profile-page .container .details-section .sections-ul > li > ul {
            margin-left: 10px;
            display: grid;
            grid-gap: 10px; }
            body .doctor-profile-page .container .details-section .sections-ul > li > ul li {
              display: grid;
              justify-content: start;
              grid-template-columns: auto 1fr;
              grid-gap: 5px;
              color: #6f6f6f;
              line-height: 1.4; }
              body .doctor-profile-page .container .details-section .sections-ul > li > ul li i {
                font-size: 28px;
                line-height: 0;
                color: #F6BE45; }
body .testimonials-page {
    min-height: 70vh;
    margin-top: 80px;
    padding: 22px 0;
}

@media only screen and (min-width: 768px) {
    body .testimonials-page {
        padding: 32px 0;
    }
}

@media only screen and (min-width: 992px) {
    body .testimonials-page {
        padding: 42px 0;
    }
}

@media only screen and (min-width: 1200px) {
    body .testimonials-page {
        padding: 52px 0;
    }
}

body .services-page {
    min-height: 60vh;
    margin-top: 80px;
    padding-top: 22px;
    padding-bottom: 32px;
}

@media only screen and (min-width: 768px) {
    body .services-page {
        padding: 32px;
    }
}

@media only screen and (min-width: 992px) {
    body .services-page {
        margin-top: 120px;
        padding: 42px 0;
    }
}

body .details-page {
    /* min-height: 60vh; */
    /* margin-top: 80px; */
    padding-top: 22px;
    padding-bottom: 32px;
}

@media only screen and (min-width: 992px) {
    body .details-page {
        /* margin-top: 120px; */
        padding: 42px 0;
    }
}

body .details-page .page-body {
    /* display: grid; */
    /* grid-gap: 32px; */
}

@media only screen and (min-width: 992px) {
    body .details-page .page-body {
        /* justify-content: space-evenly; */
    }
}

body .details-page .page-body > .container {
    display: grid;
}

body .details-page .page-body > .container .body-text {
    display: grid;
    grid-gap: 18px;
}

@media only screen and (min-width: 768px) {
    body .details-page .page-body > .container .body-text {
        grid-gap: 22px;
    }
}

@media only screen and (min-width: 992px) {
    body .details-page .page-body > .container .body-text {
        grid-gap: 32px;
    }
}

body .details-page .page-body > .container .body-text .main-heading {
    display: grid;
    grid-gap: 12px;
}

body .details-page .page-body > .container .body-text .main-heading p:first-of-type {
    color: #151515;
    text-transform: uppercase;
    font-size: 22px;
}

@media only screen and (min-width: 768px) {
    body .details-page .page-body > .container .body-text .main-heading p:first-of-type {
        font-size: 24px;
    }
}

@media only screen and (min-width: 992px) {
    body .details-page .page-body > .container .body-text .main-heading p:first-of-type {
        font-size: 32px;
    }
}

body .details-page .page-body > .container .body-text .main-heading p:last-of-type {
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
    font-size: 14px;
    text-align: justify;
}

@media only screen and (min-width: 992px) {
    body .details-page .page-body > .container .body-text .main-heading p:last-of-type {
        line-height: 1.8;
    }
}

@media only screen and (min-width: 768px) {
    body .details-page .page-body > .container .body-text .main-heading p:last-of-type {
        font-size: 16px;
    }
}

body .details-page .page-body > .container .body-text .specifications {
    border-radius: 2px;
    padding: 14px;
    background-color: #e3c85d;
}

@media only screen and (min-width: 992px) {
    body .details-page .page-body > .container .body-text .specifications {
        /* transform: perspective(620px) rotateY(-4deg); */
    }
}

@media only screen and (min-width: 768px) {
    body .details-page .page-body > .container .body-text .specifications {
        padding: 18px;
    }
}

@media only screen and (min-width: 992px) {
    body .details-page .page-body > .container .body-text .specifications {
        padding: 28px;
    }
}

body .details-page .page-body > .container .body-text .specifications .title {
    color: #000;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 18px;
}

@media only screen and (min-width: 992px) {
    body .details-page .page-body > .container .body-text .specifications .title {
        margin-bottom: 16px;
        font-size: 22px;
    }
}

@media only screen and (min-width: 1200px) {
    body .details-page .page-body > .container .body-text .specifications .title {
        margin-bottom: 18px;
        font-size: 24px;
    }
}

body .details-page .page-body > .container .body-text .specifications > ul {
    display: grid;
    grid-gap: 10px;
}

@media only screen and (min-width: 992px) {
    body .details-page .page-body > .container .body-text .specifications > ul {
        grid-gap: 14px;
    }
}

body .details-page .page-body > .container .body-text .specifications > ul li {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-gap: 4px;
    font-size: 14px;
}

@media only screen and (min-width: 992px) {
    body .details-page .page-body > .container .body-text .specifications > ul li {
        font-size: 16px;
        grid-gap: 8px;
    }
}

body .details-page .page-body > .container .body-text .specifications > ul li p {
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
}

body .details-page .page-body > .container .body-text .specifications > ul li i {
    color: #0f1214;
    line-height: 1.7;
}

body .details-page .page-body > .container .before-after-container {
    align-self: center;
}

@media only screen and (min-width: 992px) {
    body .details-page .page-body > .container .before-after-container {
        position: sticky;
        top: 120px;
    }
}

body .details-page .page-body > .container .before-after-container .section-heading {
    margin-bottom: 12px;
}

@media only screen and (min-width: 992px) {
    body .details-page .page-body > .container .before-after-container .section-heading {
        margin-bottom: 18px;
    }
}

@media only screen and (min-width: 1200px) {
    body .details-page .page-body > .container .before-after-container .section-heading {
        margin-bottom: 22px;
    }
}

body .details-page .page-body > .container .before-after-container .section-heading p {
    color: #151515;
    text-align: center;
    color: #9c9289;
    font-weight: bold;
}

@media only screen and (min-width: 992px) {
    body .details-page .page-body > .container .before-after-container .section-heading p {
        font-size: 20px;
    }
}

@media only screen and (min-width: 1200px) {
    body .details-page .page-body > .container .before-after-container .section-heading p {
        font-size: 24px;
    }
}

body .details-page .page-body > .container .before-after-container #before-after-container img {
    height: 230px;
    object-fit: cover;
}

@media only screen and (min-width: 992px) {
    body .details-page .page-body > .container .before-after-container #before-after-container img {
        height: 400px;
    }
}

@media only screen and (min-width: 1200px) {
    body .details-page .page-body > .container .before-after-container #before-after-container img {
        height: 550px;
    }
}

body .appointment-working-hours-wrapper {
    /* padding: 32px 0; */
    /* display: grid; */
    width: 100%;
}

@media only screen and (min-width: 992px) {
    body .appointment-working-hours-wrapper {
        padding: 42px 0;
    }
}

@media only screen and (min-width: 1200px) {
    body .appointment-working-hours-wrapper {
        padding: 0;
    }
}

body .appointment-working-hours-wrapper .container {
    /* display: grid; */
    /* grid-gap: 32px; */
}

@media only screen and (min-width: 992px) {
    body .appointment-working-hours-wrapper .container {
        /* grid-template-columns: 45% 45%; */
        /* justify-content: space-evenly; */
    }
}

body .appointment-working-hours-wrapper .working-hours-wrapper {
    display: grid;
    align-self: center;
    padding: 12px 22px 22px 22px;
    background-color: #e3c85d;
}

@media only screen and (min-width: 992px) {
    body .appointment-working-hours-wrapper .working-hours-wrapper {
        padding: 10px 38px 38px 38px;
        position: sticky;
        top: 130px;
    }
}

@media only screen and (min-width: 1200px) {
    body .appointment-working-hours-wrapper .working-hours-wrapper {
        padding: 28px 42px 42px 42px;
    }
}

@media only screen and (min-width: 1200px) {
    body .appointment-working-hours-wrapper .working-hours-wrapper {
        padding: 28px 42px 42px 42px;
    }
}

@media only screen and (min-width: 1200px) {
    body .appointment-working-hours-wrapper .working-hours-wrapper {
        padding: 32px 15px 52px 15px;
    }
}

body .appointment-working-hours-wrapper .working-hours-wrapper .section-heading {
    text-align: center;
    color: #151515;
    color: #000;
    font-size: 22px;
    margin-bottom: 10px;
}

@media only screen and (min-width: 992px) {
    body .appointment-working-hours-wrapper .working-hours-wrapper .section-heading {
        font-size: 28px;
        margin-bottom: 14px;
    }
}

body .appointment-working-hours-wrapper .working-hours-wrapper .section-body .main-section-ul {
    display: grid;
    grid-gap: 1px;
}

body .appointment-working-hours-wrapper .working-hours-wrapper .section-body .main-section-ul li {
    padding: 8px 0;
    display: grid;
    grid-template-columns: 70px 1fr;
}

@media only screen and (min-width: 992px) {
    body .appointment-working-hours-wrapper .working-hours-wrapper .section-body .main-section-ul li {
        grid-template-columns: 90px 1fr;
    }
}

@media only screen and (min-width: 992px) {
    body .appointment-working-hours-wrapper .working-hours-wrapper .section-body .main-section-ul li {
        padding: 12px 0;
    }
}

body .appointment-working-hours-wrapper .working-hours-wrapper .section-body .main-section-ul li:last-of-type {
    padding-bottom: 0;
}

body .appointment-working-hours-wrapper .working-hours-wrapper .section-body .main-section-ul li span {
    color: #22271e;
}

@media only screen and (min-width: 992px) {
    body .appointment-working-hours-wrapper .working-hours-wrapper .section-body .main-section-ul li span {
        font-size: 18px;
    }
}

@media only screen and (min-width: 1200px) {
    body .appointment-working-hours-wrapper .working-hours-wrapper .section-body .main-section-ul li span {
        font-size: 20px;
    }
}

@media only screen and (min-width: 992px) {
    body .appointment-working-hours-wrapper .working-hours-wrapper {
        transform: perspective(620px) rotateY(0deg);
    }
}

body .appointment-working-hours-wrapper .service-appointment-form {
    /* max-width: 540px; */
    border-radius: 2px;
    display: grid;
    width: 100%;
    position: relative;
    box-shadow: 0 32px 38px rgba(0, 0, 0, 0.15);
    background-color: #212529;
    padding: 12px 15px 22px 15px;
}

@media only screen and (min-width: 992px) {
    body .appointment-working-hours-wrapper .service-appointment-form {
        /* min-width: 400px; */
    }
}

@media only screen and (min-width: 1200px) {
    body .appointment-working-hours-wrapper .service-appointment-form {
        /* min-width: 500px; */
    }
}

@media only screen and (min-width: 992px) {
    body .appointment-working-hours-wrapper .service-appointment-form {
        padding: 10px 38px 38px 38px;
    }
}

@media only screen and (min-width: 1200px) {
    body .appointment-working-hours-wrapper .service-appointment-form {
        padding: 28px 42px 42px 42px;
    }
}

@media only screen and (min-width: 1200px) {
    body .appointment-working-hours-wrapper .service-appointment-form {
        padding: 28px 42px 42px 42px;
    }
}

@media only screen and (min-width: 1200px) {
    body .appointment-working-hours-wrapper .service-appointment-form {
        padding: 32px 10px 52px 10px;
        margin-bottom: 20px;
        background-color: #000000;
    }
}

body .appointment-working-hours-wrapper .service-appointment-form .form-heading p {
    text-align: center;
    margin-bottom: 12px;
    font-size: 18px;
}

@media only screen and (min-width: 992px) {
    body .appointment-working-hours-wrapper .service-appointment-form .form-heading p {
        font-size: 20px;
    }
}

@media only screen and (min-width: 1200px) {
    body .appointment-working-hours-wrapper .service-appointment-form .form-heading p {
        font-size: 26px;
        color: #fff;
    }
}

@media only screen and (min-width: 1600px) {
    body .appointment-working-hours-wrapper .service-appointment-form .form-heading p {
        font-size: 28px;
        color: #efd986;
    }
}

body .appointment-working-hours-wrapper .service-appointment-form form {
    display: grid;
    grid-gap: 12px;
    border-radius: 2px;
}

@media only screen and (min-width: 992px) {
    body .appointment-working-hours-wrapper .service-appointment-form form {
        grid-gap: 16px;
    }
}

body .appointment-working-hours-wrapper .service-appointment-form form .form-div {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    background-color: #f9f9f9;
    transition: all .3s ease-out;
    border: 2px solid transparent;
    border-radius: 4px;
}

body .appointment-working-hours-wrapper .service-appointment-form form .form-div label {
    margin: 0;
    margin-left: 8px;
}

body .appointment-working-hours-wrapper .service-appointment-form form .form-div label i {
    padding: 0 8px;
    font-size: 22px;
    color: #9b9b9b;
}

@media only screen and (min-width: 992px) {
    body .appointment-working-hours-wrapper .service-appointment-form form .form-div label i {
        padding: 0 12px;
        font-size: 22px;
    }
}

@media only screen and (min-width: 1200px) {
    body .appointment-working-hours-wrapper .service-appointment-form form .form-div label i {
        font-size: 30px;
    }
}

@media only screen and (min-width: 1600px) {
    body .appointment-working-hours-wrapper .service-appointment-form form .form-div label i {
        font-size: 34px;
    }
}

body .appointment-working-hours-wrapper .service-appointment-form form .form-div input {
    height: 42px;
    background-color: transparent;
    border: 0;
    outline: 0;
    padding: 2px 16px;
    color: #605c5c;
}

body .appointment-working-hours-wrapper .service-appointment-form form .form-div input::-webkit-input-placeholder {
    /* Edge */
    color: #9b9b9b;
}

body .appointment-working-hours-wrapper .service-appointment-form form .form-div input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #9b9b9b;
}

body .appointment-working-hours-wrapper .service-appointment-form form .form-div input::placeholder {
    color: #9b9b9b;
}

body .appointment-working-hours-wrapper .service-appointment-form form .form-div select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(../images/icons/chevron-down.svg);
    background-repeat: no-repeat;
    background-position: 4% center;
    background-size: 16px;
    height: 42px;
    background-color: transparent;
    border: 0;
    outline: 0;
    padding: 2px 16px;
    color: #9b9b9b;
    width: 100%;
}

@media only screen and (min-width: 375px) {
    body .appointment-working-hours-wrapper .service-appointment-form form .form-div select {
        max-width: unset;
    }
}

body .appointment-working-hours-wrapper .service-appointment-form form .form-div select option {
    color: #605c5c;
}

body .appointment-working-hours-wrapper .service-appointment-form form .form-div select option:first-child {
    color: #9b9b9b;
}

body .appointment-working-hours-wrapper .service-appointment-form form .form-div textarea {
    border: 0;
    outline: 0;
    padding: 8px 16px;
    height: 90px;
    color: #605c5c;
}

body .appointment-working-hours-wrapper .service-appointment-form form .form-div textarea::placeholder {
    color: #9b9b9b;
}

@media only screen and (min-width: 992px) {
    body .appointment-working-hours-wrapper .service-appointment-form form .form-div textarea {
        height: 100px;
    }
}

body .appointment-working-hours-wrapper .service-appointment-form form .form-div.submit-div {
    align-items: stretch;
    border: 0;
    background-color: #d5e696;
}

body .appointment-working-hours-wrapper .service-appointment-form form .form-div.submit-div button {
    position: relative;
    background-color: #e3c85d;
    border: 1px solid rgb(227 200 93);
    box-shadow: 0 0 12px rgb(227 200 93);
    display: flex;
    align-items: center;
    justify-content: center;
    grid-template-columns: auto auto;
    color: #030302;
    border-radius: 2px;
    transition: all .2s ease-out;
    overflow: hidden;
}

body .appointment-working-hours-wrapper .service-appointment-form form .form-div.submit-div button i {
    font-size: 26px;
    margin-left: 4px;
}

@media only screen and (min-width: 992px) {
    body .appointment-working-hours-wrapper .service-appointment-form form .form-div.submit-div button i {
        font-size: 32px;
        margin-left: 6px;
    }
}

@media only screen and (min-width: 992px) {
    body .appointment-working-hours-wrapper .service-appointment-form form .form-div.submit-div button span {
        font-size: 20px;
    }
}

body .appointment-working-hours-wrapper .service-appointment-form form .form-div.submit-div button i,
body .appointment-working-hours-wrapper .service-appointment-form form .form-div.submit-div button span {
    position: relative;
    z-index: 1;
}

body .appointment-working-hours-wrapper .service-appointment-form form .form-div.submit-div button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: #d6bc58;
    transition: all .2s ease-out;
}

body .appointment-working-hours-wrapper .service-appointment-form form .form-div.submit-div button:hover {
    box-shadow: 0 0 12px transparent;
}

body .appointment-working-hours-wrapper .service-appointment-form form .form-div.submit-div button:hover::before {
    left: 100%;
}

body .appointment-working-hours-wrapper .service-appointment-form form .form-div.submit-div button:focus,
body .appointment-working-hours-wrapper .service-appointment-form form .form-div.submit-div button:active {
    border: 0;
    outline: 0;
}

body .appointment-working-hours-wrapper .service-appointment-form form .form-div.toggle-form-div {
    border-color: rgba(61, 161, 222, 0.15);
}

body .appointment-working-hours-wrapper .service-appointment-form form .form-div.toggle-form-div label i {
    color: #3DA1DE;
}

body .your-clinic-page {
    margin-top: 80px;
    padding: 22px 0;
}

@media only screen and (min-width: 768px) {
    body .your-clinic-page {
        padding: 32px 0;
    }
}

@media only screen and (min-width: 992px) {
    body .your-clinic-page {
        padding: 42px 0;
    }
}

@media only screen and (min-width: 1200px) {
    body .your-clinic-page {
        padding: 52px 0;
    }
}

body .your-clinic-page .page-heading {
    margin-bottom: 18px;
}

body .your-clinic-page .page-heading p {
    text-align: center;
    color: #151515;
    font-size: 28px;
}

@media only screen and (min-width: 992px) {
    body .your-clinic-page .page-heading p {
        font-size: 34px;
    }
}

@media only screen and (min-width: 1200px) {
    body .your-clinic-page .page-heading p {
        font-size: 42px;
    }
}

body .your-clinic-page .page-body {
    display: grid;
    background-color: #fafafa;
}

@media only screen and (min-width: 992px) {
    body .your-clinic-page .page-body {
        grid-template-columns: 45% 55%;
    }
}

body .your-clinic-page .page-body .img-div {
    display: grid;
}

body .your-clinic-page .page-body .img-div img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

@media only screen and (min-width: 992px) {
    body .your-clinic-page .page-body .img-div img {
        min-height: 100%;
        height: auto;
        max-height: 750px;
    }
}

body .your-clinic-page .page-body .steps-section {
    padding: 22px 16px;
}

@media only screen and (min-width: 768px) {
    body .your-clinic-page .page-body .steps-section {
        padding: 28px 20px;
    }
}

@media only screen and (min-width: 992px) {
    body .your-clinic-page .page-body .steps-section {
        padding: 42px 52px;
    }
}

@media only screen and (min-width: 1200px) {
    body .your-clinic-page .page-body .steps-section {
        padding: 52px 62px;
    }
}

@media only screen and (min-width: 1600px) {
    body .your-clinic-page .page-body .steps-section {
        padding: 62px 72px;
    }
}

body .your-clinic-page .page-body .steps-section .heading {
    color: #3DA1DE;
    font-size: 20px;
    margin-bottom: 12px;
}

@media only screen and (min-width: 992px) {
    body .your-clinic-page .page-body .steps-section .heading {
        font-size: 24px;
    }
}

@media only screen and (min-width: 1200px) {
    body .your-clinic-page .page-body .steps-section .heading {
        font-size: 28px;
    }
}

@media only screen and (min-width: 1200px) {
    body .your-clinic-page .page-body .steps-section .heading {
        margin-bottom: 18px;
    }
}

body .your-clinic-page .page-body .steps-section .steps {
    margin-right: 5px;
    display: grid;
    grid-gap: 12px;
}

@media only screen and (min-width: 992px) {
    body .your-clinic-page .page-body .steps-section .steps {
        grid-gap: 18px;
        margin-right: 10px;
    }
}

@media only screen and (min-width: 1200px) {
    body .your-clinic-page .page-body .steps-section .steps {
        grid-gap: 22px;
    }
}

body .your-clinic-page .page-body .steps-section .steps li {
    display: grid;
    grid-template-columns: auto 1fr;
    text-align: justify;
    grid-gap: 1px;
}

@media only screen and (min-width: 992px) {
    body .your-clinic-page .page-body .steps-section .steps li {
        grid-gap: 2px;
    }
}

body .your-clinic-page .page-body .steps-section .steps li span {
    font-size: 14px;
    color: #888888;
}

@media only screen and (min-width: 992px) {
    body .your-clinic-page .page-body .steps-section .steps li span {
        font-size: 18px;
    }
}

body .your-clinic-page .page-body .steps-section .steps li i {
    color: gold;
    margin-top: 3px;
}

@media only screen and (min-width: 992px) {
    body .your-clinic-page .page-body .steps-section .steps li i {
        margin-top: 4px;
        font-size: 20px;
    }
}

body footer {
    background-image: url(../images/bkgs/black-linen.png);
    background-color: #161A1D;
    background-attachment: fixed;
    padding: 32px 0;
    padding-bottom: 0;
}

@media only screen and (min-width: 768px) {
    body footer {
        padding: 42px 0;
        padding-bottom: 0;
    }
}

@media only screen and (min-width: 992px) {
    body footer {
        padding: 52px 0;
        padding-bottom: 0;
    }
}

@media only screen and (min-width: 1200px) {
    body footer {
        padding: 72px 0;
        padding-bottom: 0;
    }
}

@media only screen and (min-width: 1600px) {
    body footer {
        padding: 92px 0;
        padding-bottom: 0;
    }
}

body footer .top-footer {
    padding-bottom: 18px;
}

@media only screen and (min-width: 768px) {
    body footer .top-footer {
        padding-bottom: 22px;
    }
}

@media only screen and (min-width: 992px) {
    body footer .top-footer {
        padding-bottom: 32px;
    }
}

@media only screen and (min-width: 1200px) {
    body footer .top-footer {
        padding-bottom: 42px;
    }
}

body footer .top-footer .container {
    display: grid;
    grid-gap: 22px;
}

@media only screen and (min-width: 992px) {
    body footer .top-footer .container {
        grid-gap: 0;
        grid-template-columns: repeat(3, 1fr);
        justify-content: space-between;
        grid-gap: 42px;
    }
}

@media only screen and (min-width: 1200px) {
    body footer .top-footer .container {
        grid-gap: 52px;
    }
}

body footer .top-footer .container .section-one,
body footer .top-footer .container .section-two,
body footer .top-footer .container .section-three,
body footer .top-footer .container .section-four {
    display: grid;
    grid-gap: 8px;
    align-content: start;
}

@media only screen and (min-width: 768px) {

    body footer .top-footer .container .section-one,
    body footer .top-footer .container .section-two,
    body footer .top-footer .container .section-three,
    body footer .top-footer .container .section-four {
        grid-gap: 10px;
    }
}

@media only screen and (min-width: 992px) {

    body footer .top-footer .container .section-one,
    body footer .top-footer .container .section-two,
    body footer .top-footer .container .section-three,
    body footer .top-footer .container .section-four {
        grid-gap: 12px;
    }
}

body footer .top-footer .container .section-one .section-heading p,
body footer .top-footer .container .section-two .section-heading p,
body footer .top-footer .container .section-three .section-heading p,
body footer .top-footer .container .section-four .section-heading p {
    color: #d3b545;
    text-transform: uppercase;
    font-size: 16px;
}

body footer .top-footer .container .section-one .section-body,
body footer .top-footer .container .section-two .section-body,
body footer .top-footer .container .section-three .section-body,
body footer .top-footer .container .section-four .section-body {
    display: grid;
}

body footer .top-footer .container .section-one .section-body .logo-img,
body footer .top-footer .container .section-two .section-body .logo-img,
body footer .top-footer .container .section-three .section-body .logo-img,
body footer .top-footer .container .section-four .section-body .logo-img {
    display: grid;
    justify-items: center;
}

body footer .top-footer .container .section-one .section-body .logo-img img,
body footer .top-footer .container .section-two .section-body .logo-img img,
body footer .top-footer .container .section-three .section-body .logo-img img,
body footer .top-footer .container .section-four .section-body .logo-img img {
    height: 110px;
}

@media only screen and (min-width: 992px) {

    body footer .top-footer .container .section-one .section-body .logo-img img,
    body footer .top-footer .container .section-two .section-body .logo-img img,
    body footer .top-footer .container .section-three .section-body .logo-img img,
    body footer .top-footer .container .section-four .section-body .logo-img img {
        height: 120px;
    }
}

body footer .top-footer .container .section-one .section-body > .text,
body footer .top-footer .container .section-two .section-body > .text,
body footer .top-footer .container .section-three .section-body > .text,
body footer .top-footer .container .section-four .section-body > .text {
    margin-top: 12px;
}

@media only screen and (min-width: 992px) {

    body footer .top-footer .container .section-one .section-body > .text,
    body footer .top-footer .container .section-two .section-body > .text,
    body footer .top-footer .container .section-three .section-body > .text,
    body footer .top-footer .container .section-four .section-body > .text {
        margin-top: 18px;
    }
}

body footer .top-footer .container .section-one .section-body > .text p,
body footer .top-footer .container .section-two .section-body > .text p,
body footer .top-footer .container .section-three .section-body > .text p,
body footer .top-footer .container .section-four .section-body > .text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.658);
    text-align: justify;
}

body footer .top-footer .container .section-one .section-body .main-section-ul,
body footer .top-footer .container .section-two .section-body .main-section-ul,
body footer .top-footer .container .section-three .section-body .main-section-ul,
body footer .top-footer .container .section-four .section-body .main-section-ul {
    display: grid;
    grid-gap: 8px;
}

body footer .top-footer .container .section-one .section-body .main-section-ul li a span,
body footer .top-footer .container .section-two .section-body .main-section-ul li a span,
body footer .top-footer .container .section-three .section-body .main-section-ul li a span,
body footer .top-footer .container .section-four .section-body .main-section-ul li a span {
    color: rgb(172 173 174);
}

body footer .top-footer .container .section-one .section-body .main-section-ul.contacts-wrapper,
body footer .top-footer .container .section-two .section-body .main-section-ul.contacts-wrapper,
body footer .top-footer .container .section-three .section-body .main-section-ul.contacts-wrapper,
body footer .top-footer .container .section-four .section-body .main-section-ul.contacts-wrapper {
    justify-self: start;
}

body footer .top-footer .container .section-one .section-body .main-section-ul.contacts-wrapper li,
body footer .top-footer .container .section-two .section-body .main-section-ul.contacts-wrapper li,
body footer .top-footer .container .section-three .section-body .main-section-ul.contacts-wrapper li,
body footer .top-footer .container .section-four .section-body .main-section-ul.contacts-wrapper li {
    display: grid;
    grid-gap: 6px;
}

@media only screen and (min-width: 768px) {

    body footer .top-footer .container .section-one .section-body .main-section-ul.contacts-wrapper li,
    body footer .top-footer .container .section-two .section-body .main-section-ul.contacts-wrapper li,
    body footer .top-footer .container .section-three .section-body .main-section-ul.contacts-wrapper li,
    body footer .top-footer .container .section-four .section-body .main-section-ul.contacts-wrapper li {
        grid-gap: 10px;
    }
}

@media only screen and (min-width: 992px) {

    body footer .top-footer .container .section-one .section-body .main-section-ul.contacts-wrapper li,
    body footer .top-footer .container .section-two .section-body .main-section-ul.contacts-wrapper li,
    body footer .top-footer .container .section-three .section-body .main-section-ul.contacts-wrapper li,
    body footer .top-footer .container .section-four .section-body .main-section-ul.contacts-wrapper li {
        grid-gap: 14px;
    }
}

body footer .top-footer .container .section-one .section-body .main-section-ul.contacts-wrapper li .phone,
body footer .top-footer .container .section-one .section-body .main-section-ul.contacts-wrapper li .address,
body footer .top-footer .container .section-one .section-body .main-section-ul.contacts-wrapper li .email,
body footer .top-footer .container .section-two .section-body .main-section-ul.contacts-wrapper li .phone,
body footer .top-footer .container .section-two .section-body .main-section-ul.contacts-wrapper li .address,
body footer .top-footer .container .section-two .section-body .main-section-ul.contacts-wrapper li .email,
body footer .top-footer .container .section-three .section-body .main-section-ul.contacts-wrapper li .phone,
body footer .top-footer .container .section-three .section-body .main-section-ul.contacts-wrapper li .address,
body footer .top-footer .container .section-three .section-body .main-section-ul.contacts-wrapper li .email,
body footer .top-footer .container .section-four .section-body .main-section-ul.contacts-wrapper li .phone,
body footer .top-footer .container .section-four .section-body .main-section-ul.contacts-wrapper li .address,
body footer .top-footer .container .section-four .section-body .main-section-ul.contacts-wrapper li .email {
    display: grid;
    grid-gap: 2px;
}

@media only screen and (min-width: 992px) {

    body footer .top-footer .container .section-one .section-body .main-section-ul.contacts-wrapper li .phone,
    body footer .top-footer .container .section-one .section-body .main-section-ul.contacts-wrapper li .address,
    body footer .top-footer .container .section-one .section-body .main-section-ul.contacts-wrapper li .email,
    body footer .top-footer .container .section-two .section-body .main-section-ul.contacts-wrapper li .phone,
    body footer .top-footer .container .section-two .section-body .main-section-ul.contacts-wrapper li .address,
    body footer .top-footer .container .section-two .section-body .main-section-ul.contacts-wrapper li .email,
    body footer .top-footer .container .section-three .section-body .main-section-ul.contacts-wrapper li .phone,
    body footer .top-footer .container .section-three .section-body .main-section-ul.contacts-wrapper li .address,
    body footer .top-footer .container .section-three .section-body .main-section-ul.contacts-wrapper li .email,
    body footer .top-footer .container .section-four .section-body .main-section-ul.contacts-wrapper li .phone,
    body footer .top-footer .container .section-four .section-body .main-section-ul.contacts-wrapper li .address,
    body footer .top-footer .container .section-four .section-body .main-section-ul.contacts-wrapper li .email {
        grid-gap: 6px;
    }
}

body footer .top-footer .container .section-one .section-body .main-section-ul.contacts-wrapper li .phone > span,
body footer .top-footer .container .section-one .section-body .main-section-ul.contacts-wrapper li .address > span,
body footer .top-footer .container .section-one .section-body .main-section-ul.contacts-wrapper li .email > span,
body footer .top-footer .container .section-two .section-body .main-section-ul.contacts-wrapper li .phone > span,
body footer .top-footer .container .section-two .section-body .main-section-ul.contacts-wrapper li .address > span,
body footer .top-footer .container .section-two .section-body .main-section-ul.contacts-wrapper li .email > span,
body footer .top-footer .container .section-three .section-body .main-section-ul.contacts-wrapper li .phone > span,
body footer .top-footer .container .section-three .section-body .main-section-ul.contacts-wrapper li .address > span,
body footer .top-footer .container .section-three .section-body .main-section-ul.contacts-wrapper li .email > span,
body footer .top-footer .container .section-four .section-body .main-section-ul.contacts-wrapper li .phone > span,
body footer .top-footer .container .section-four .section-body .main-section-ul.contacts-wrapper li .address > span,
body footer .top-footer .container .section-four .section-body .main-section-ul.contacts-wrapper li .email > span {
    color: rgb(184 165 141);
    font-size: 14px;
}

body footer .top-footer .container .section-one .section-body .main-section-ul.contacts-wrapper li .phone > div,
body footer .top-footer .container .section-one .section-body .main-section-ul.contacts-wrapper li .address > div,
body footer .top-footer .container .section-one .section-body .main-section-ul.contacts-wrapper li .email > div,
body footer .top-footer .container .section-two .section-body .main-section-ul.contacts-wrapper li .phone > div,
body footer .top-footer .container .section-two .section-body .main-section-ul.contacts-wrapper li .address > div,
body footer .top-footer .container .section-two .section-body .main-section-ul.contacts-wrapper li .email > div,
body footer .top-footer .container .section-three .section-body .main-section-ul.contacts-wrapper li .phone > div,
body footer .top-footer .container .section-three .section-body .main-section-ul.contacts-wrapper li .address > div,
body footer .top-footer .container .section-three .section-body .main-section-ul.contacts-wrapper li .email > div,
body footer .top-footer .container .section-four .section-body .main-section-ul.contacts-wrapper li .phone > div,
body footer .top-footer .container .section-four .section-body .main-section-ul.contacts-wrapper li .address > div,
body footer .top-footer .container .section-four .section-body .main-section-ul.contacts-wrapper li .email > div {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-gap: 3px;
}

@media only screen and (min-width: 992px) {

    body footer .top-footer .container .section-one .section-body .main-section-ul.contacts-wrapper li .phone > div,
    body footer .top-footer .container .section-one .section-body .main-section-ul.contacts-wrapper li .address > div,
    body footer .top-footer .container .section-one .section-body .main-section-ul.contacts-wrapper li .email > div,
    body footer .top-footer .container .section-two .section-body .main-section-ul.contacts-wrapper li .phone > div,
    body footer .top-footer .container .section-two .section-body .main-section-ul.contacts-wrapper li .address > div,
    body footer .top-footer .container .section-two .section-body .main-section-ul.contacts-wrapper li .email > div,
    body footer .top-footer .container .section-three .section-body .main-section-ul.contacts-wrapper li .phone > div,
    body footer .top-footer .container .section-three .section-body .main-section-ul.contacts-wrapper li .address > div,
    body footer .top-footer .container .section-three .section-body .main-section-ul.contacts-wrapper li .email > div,
    body footer .top-footer .container .section-four .section-body .main-section-ul.contacts-wrapper li .phone > div,
    body footer .top-footer .container .section-four .section-body .main-section-ul.contacts-wrapper li .address > div,
    body footer .top-footer .container .section-four .section-body .main-section-ul.contacts-wrapper li .email > div {
        grid-gap: 6px;
    }
}

body footer .top-footer .container .section-one .section-body .main-section-ul.contacts-wrapper li .phone > div i,
body footer .top-footer .container .section-one .section-body .main-section-ul.contacts-wrapper li .phone > div p,
body footer .top-footer .container .section-one .section-body .main-section-ul.contacts-wrapper li .address > div i,
body footer .top-footer .container .section-one .section-body .main-section-ul.contacts-wrapper li .address > div p,
body footer .top-footer .container .section-one .section-body .main-section-ul.contacts-wrapper li .email > div i,
body footer .top-footer .container .section-one .section-body .main-section-ul.contacts-wrapper li .email > div p,
body footer .top-footer .container .section-two .section-body .main-section-ul.contacts-wrapper li .phone > div i,
body footer .top-footer .container .section-two .section-body .main-section-ul.contacts-wrapper li .phone > div p,
body footer .top-footer .container .section-two .section-body .main-section-ul.contacts-wrapper li .address > div i,
body footer .top-footer .container .section-two .section-body .main-section-ul.contacts-wrapper li .address > div p,
body footer .top-footer .container .section-two .section-body .main-section-ul.contacts-wrapper li .email > div i,
body footer .top-footer .container .section-two .section-body .main-section-ul.contacts-wrapper li .email > div p,
body footer .top-footer .container .section-three .section-body .main-section-ul.contacts-wrapper li .phone > div i,
body footer .top-footer .container .section-three .section-body .main-section-ul.contacts-wrapper li .phone > div p,
body footer .top-footer .container .section-three .section-body .main-section-ul.contacts-wrapper li .address > div i,
body footer .top-footer .container .section-three .section-body .main-section-ul.contacts-wrapper li .address > div p,
body footer .top-footer .container .section-three .section-body .main-section-ul.contacts-wrapper li .email > div i,
body footer .top-footer .container .section-three .section-body .main-section-ul.contacts-wrapper li .email > div p,
body footer .top-footer .container .section-four .section-body .main-section-ul.contacts-wrapper li .phone > div i,
body footer .top-footer .container .section-four .section-body .main-section-ul.contacts-wrapper li .phone > div p,
body footer .top-footer .container .section-four .section-body .main-section-ul.contacts-wrapper li .address > div i,
body footer .top-footer .container .section-four .section-body .main-section-ul.contacts-wrapper li .address > div p,
body footer .top-footer .container .section-four .section-body .main-section-ul.contacts-wrapper li .email > div i,
body footer .top-footer .container .section-four .section-body .main-section-ul.contacts-wrapper li .email > div p {
    color: rgb(167 173 174);
    line-height: 1.3;
}

body footer .top-footer .container .section-one .section-body .main-section-ul.contacts-wrapper li .phone > div i,
body footer .top-footer .container .section-one .section-body .main-section-ul.contacts-wrapper li .address > div i,
body footer .top-footer .container .section-one .section-body .main-section-ul.contacts-wrapper li .email > div i,
body footer .top-footer .container .section-two .section-body .main-section-ul.contacts-wrapper li .phone > div i,
body footer .top-footer .container .section-two .section-body .main-section-ul.contacts-wrapper li .address > div i,
body footer .top-footer .container .section-two .section-body .main-section-ul.contacts-wrapper li .email > div i,
body footer .top-footer .container .section-three .section-body .main-section-ul.contacts-wrapper li .phone > div i,
body footer .top-footer .container .section-three .section-body .main-section-ul.contacts-wrapper li .address > div i,
body footer .top-footer .container .section-three .section-body .main-section-ul.contacts-wrapper li .email > div i,
body footer .top-footer .container .section-four .section-body .main-section-ul.contacts-wrapper li .phone > div i,
body footer .top-footer .container .section-four .section-body .main-section-ul.contacts-wrapper li .address > div i,
body footer .top-footer .container .section-four .section-body .main-section-ul.contacts-wrapper li .email > div i {
    font-size: 18px;
}

@media only screen and (min-width: 992px) {

    body footer .top-footer .container .section-one .section-body .main-section-ul.contacts-wrapper li .phone > div i,
    body footer .top-footer .container .section-one .section-body .main-section-ul.contacts-wrapper li .address > div i,
    body footer .top-footer .container .section-one .section-body .main-section-ul.contacts-wrapper li .email > div i,
    body footer .top-footer .container .section-two .section-body .main-section-ul.contacts-wrapper li .phone > div i,
    body footer .top-footer .container .section-two .section-body .main-section-ul.contacts-wrapper li .address > div i,
    body footer .top-footer .container .section-two .section-body .main-section-ul.contacts-wrapper li .email > div i,
    body footer .top-footer .container .section-three .section-body .main-section-ul.contacts-wrapper li .phone > div i,
    body footer .top-footer .container .section-three .section-body .main-section-ul.contacts-wrapper li .address > div i,
    body footer .top-footer .container .section-three .section-body .main-section-ul.contacts-wrapper li .email > div i,
    body footer .top-footer .container .section-four .section-body .main-section-ul.contacts-wrapper li .phone > div i,
    body footer .top-footer .container .section-four .section-body .main-section-ul.contacts-wrapper li .address > div i,
    body footer .top-footer .container .section-four .section-body .main-section-ul.contacts-wrapper li .email > div i {
        font-size: 22px;
    }
}

body footer .top-footer .container .section-one .section-body .news-letter,
body footer .top-footer .container .section-two .section-body .news-letter,
body footer .top-footer .container .section-three .section-body .news-letter,
body footer .top-footer .container .section-four .section-body .news-letter {
    display: grid;
}

body footer .top-footer .container .section-one .section-body .news-letter form,
body footer .top-footer .container .section-two .section-body .news-letter form,
body footer .top-footer .container .section-three .section-body .news-letter form,
body footer .top-footer .container .section-four .section-body .news-letter form {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: start;
}

body footer .top-footer .container .section-one .section-body .news-letter form input,
body footer .top-footer .container .section-two .section-body .news-letter form input,
body footer .top-footer .container .section-three .section-body .news-letter form input,
body footer .top-footer .container .section-four .section-body .news-letter form input {
    border: 0;
    background-color: black;
    border-top-right-radius: 52px;
    border-bottom-right-radius: 52px;
    color: #fff;
    height: 42px;
    padding: 2px 12px;
    width: 180px;
    border: 2px solid #9c9289;
}

@media only screen and (min-width: 768px) {

    body footer .top-footer .container .section-one .section-body .news-letter form input,
    body footer .top-footer .container .section-two .section-body .news-letter form input,
    body footer .top-footer .container .section-three .section-body .news-letter form input,
    body footer .top-footer .container .section-four .section-body .news-letter form input {
        height: 52px;
        padding: 2px 16px;
        width: 200px;
    }
}

@media only screen and (min-width: 992px) {

    body footer .top-footer .container .section-one .section-body .news-letter form input,
    body footer .top-footer .container .section-two .section-body .news-letter form input,
    body footer .top-footer .container .section-three .section-body .news-letter form input,
    body footer .top-footer .container .section-four .section-body .news-letter form input {
        height: 58px;
        padding: 4px 22px;
        width: 235px;
    }
}

body footer .top-footer .container .section-one .section-body .news-letter form input::placeholder,
body footer .top-footer .container .section-two .section-body .news-letter form input::placeholder,
body footer .top-footer .container .section-three .section-body .news-letter form input::placeholder,
body footer .top-footer .container .section-four .section-body .news-letter form input::placeholder {
    color: peru;
    font-size: 13px;
}

body footer .top-footer .container .section-one .section-body .news-letter form input:focus,
body footer .top-footer .container .section-two .section-body .news-letter form input:focus,
body footer .top-footer .container .section-three .section-body .news-letter form input:focus,
body footer .top-footer .container .section-four .section-body .news-letter form input:focus {
    outline: 0;
}

body footer .top-footer .container .section-one .section-body .news-letter form button,
body footer .top-footer .container .section-two .section-body .news-letter form button,
body footer .top-footer .container .section-three .section-body .news-letter form button,
body footer .top-footer .container .section-four .section-body .news-letter form button {
    padding: 2px 10px;
    border-top-left-radius: 52px;
    border-bottom-left-radius: 52px;
    background-color: #9c9289;
    color: #fff;
    border: 0;
    outline: 0;
}

@media only screen and (min-width: 768px) {

    body footer .top-footer .container .section-one .section-body .news-letter form button,
    body footer .top-footer .container .section-two .section-body .news-letter form button,
    body footer .top-footer .container .section-three .section-body .news-letter form button,
    body footer .top-footer .container .section-four .section-body .news-letter form button {
        padding: 2px 14px;
    }
}

@media only screen and (min-width: 992px) {

    body footer .top-footer .container .section-one .section-body .news-letter form button,
    body footer .top-footer .container .section-two .section-body .news-letter form button,
    body footer .top-footer .container .section-three .section-body .news-letter form button,
    body footer .top-footer .container .section-four .section-body .news-letter form button {
        padding: 2px 18px;
    }
}

body footer .top-footer .container .section-one .section-body .social-links,
body footer .top-footer .container .section-two .section-body .social-links,
body footer .top-footer .container .section-three .section-body .social-links,
body footer .top-footer .container .section-four .section-body .social-links {
    justify-content: center;
    display: grid;
    grid-auto-flow: column;
    grid-gap: 14px;
}

body footer .top-footer .container .section-one .section-body .social-links li,
body footer .top-footer .container .section-two .section-body .social-links li,
body footer .top-footer .container .section-three .section-body .social-links li,
body footer .top-footer .container .section-four .section-body .social-links li {
    display: grid;
}

body footer .top-footer .container .section-one .section-body .social-links li a,
body footer .top-footer .container .section-two .section-body .social-links li a,
body footer .top-footer .container .section-three .section-body .social-links li a,
body footer .top-footer .container .section-four .section-body .social-links li a {
    width: 32px;
    height: 32px;
    background-color: aliceblue;
    display: grid;
    align-items: center;
    justify-items: center;
    border-radius: 50%;
    line-height: 1;
}

body footer .top-footer .container .section-one .section-body .social-links li a i,
body footer .top-footer .container .section-two .section-body .social-links li a i,
body footer .top-footer .container .section-three .section-body .social-links li a i,
body footer .top-footer .container .section-four .section-body .social-links li a i {
    line-height: 0;
    color: #fff;
    font-size: 12px;
    text-shadow: 0 2px 3px rgba(255, 255, 255, 0.15);
}

@media only screen and (min-width: 992px) {

    body footer .top-footer .container .section-one .section-body .social-links li a,
    body footer .top-footer .container .section-two .section-body .social-links li a,
    body footer .top-footer .container .section-three .section-body .social-links li a,
    body footer .top-footer .container .section-four .section-body .social-links li a {
        width: 42px;
        height: 42px;
    }

    body footer .top-footer .container .section-one .section-body .social-links li a i,
    body footer .top-footer .container .section-two .section-body .social-links li a i,
    body footer .top-footer .container .section-three .section-body .social-links li a i,
    body footer .top-footer .container .section-four .section-body .social-links li a i {
        font-size: 16px;
    }
}

body footer .top-footer .container .section-one .section-body .social-links li:nth-of-type(1) a,
body footer .top-footer .container .section-two .section-body .social-links li:nth-of-type(1) a,
body footer .top-footer .container .section-three .section-body .social-links li:nth-of-type(1) a,
body footer .top-footer .container .section-four .section-body .social-links li:nth-of-type(1) a {
    background-color: #d2b445;
}

body footer .top-footer .container .section-one .section-body .social-links li:nth-of-type(2) a,
body footer .top-footer .container .section-two .section-body .social-links li:nth-of-type(2) a,
body footer .top-footer .container .section-three .section-body .social-links li:nth-of-type(2) a,
body footer .top-footer .container .section-four .section-body .social-links li:nth-of-type(2) a {
    background-color: #d2b445;
}

body footer .top-footer .container .section-one .section-body .social-links li:nth-of-type(3) a,
body footer .top-footer .container .section-two .section-body .social-links li:nth-of-type(3) a,
body footer .top-footer .container .section-three .section-body .social-links li:nth-of-type(3) a,
body footer .top-footer .container .section-four .section-body .social-links li:nth-of-type(3) a {
    background-color: #d2b445;
}

body footer .top-footer .container .section-one .section-body .social-links li:nth-of-type(4) a,
body footer .top-footer .container .section-two .section-body .social-links li:nth-of-type(4) a,
body footer .top-footer .container .section-three .section-body .social-links li:nth-of-type(4) a,
body footer .top-footer .container .section-four .section-body .social-links li:nth-of-type(4) a {
    background-color: #d2b445;
}

@media only screen and (min-width: 992px) {
    body footer .top-footer .container .section-one {
        max-width: 260px;
    }
}

@media only screen and (min-width: 992px) {
    body footer .top-footer .container .section-two {
        justify-self: center;
    }
}

@media only screen and (min-width: 992px) {
    body footer .top-footer .container .section-three {
        /* max-width: 200px; */
        justify-self: center;
    }
}

body footer .top-footer .container .section-four {
    justify-self: center;
}

@media only screen and (min-width: 992px) {
    body footer .top-footer .container .section-four {
        justify-self: end;
    }
}

body footer .top-footer .container .section-four .section-heading p {
    text-align: center;
    font-size: 14px;
}

@media only screen and (min-width: 992px) {
    body footer .top-footer .container .section-four .section-heading p {
        font-size: 16px;
    }
}

body footer .top-footer .container .section-four .social-links {
    margin-top: 12px;
}

@media only screen and (min-width: 768px) {
    body footer .top-footer .container .section-four .social-links {
        margin-top: 16px;
    }
}

@media only screen and (min-width: 992px) {
    body footer .top-footer .container .section-four .social-links {
        margin-top: 32px;
    }
}

body footer .bottom-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.171);
    padding: 12px 0;
}

@media only screen and (min-width: 768px) {
    body footer .bottom-footer {
        padding: 14px 0;
    }
}

@media only screen and (min-width: 992px) {
    body footer .bottom-footer {
        padding: 18px 0;
    }
}

body footer .bottom-footer .container p {
    line-height: 1;
    color: rgb(228 197 90);
    font-size: 12px;
    text-align: center;
}

@media only screen and (min-width: 992px) {
    body footer .bottom-footer .container p {
        font-size: 16px;
    }
}

body.toggle-body {
    overflow: hidden;
}

body .number {
    font-family: 'DINPro';
}

@media (max-width: 767px) {
    

    
    body .home-main-slider .swiper-wrapper .swiper-slide .slider-text .text-buttons .text p:last-of-type {
            font-size: 14px;
    }
    body .home-main-slider .swiper-wrapper .swiper-slide .slider-text .text-buttons .buttons {
    justify-self: center;
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 5px;
}
    body .home-main-slider .swiper-wrapper .swiper-slide .slider-text .text-buttons .buttons a {
    padding: 8px 12px;
    transform: scale(1.5);
    opacity: 0;
    visibility: hidden;
    display: grid;
    align-items: center;
    grid-template-columns: auto 1fr;
    grid-gap: 6px;
    border-radius: 52px;
    position: relative;
    background-color: rgb(226 200 94);
    overflow: hidden;
    transition: all .4s ease-out 2.5s;
}
    body .home-about-section {
    padding: 32px 0;
    background-color: #fff;
    overflow: hidden;
}
}
.medicen-aboutUs {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.459), rgba(0, 0, 0, 0.432) 100%),url(../images/bkgs/sagae.jpg);
    background-position: r;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 456px;
    background-position: top;
}

.medicen-aboutUs h3 {
    font-size: 40px;
    font-weight: 600;
    color: #ffffff;
    padding-top: 58px;
    text-transform: uppercase;
}
.medicen-aboutUs img {
    width: 200px;
    height: auto;
}
.breadcrumb-item.active, .breadcrumb-item a, .breadcrumb-item {
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
}
.breadcrumb{
    background: transparent !important;
    display: inline-flex !important;
   
}
.breadcrumb-item.active, .breadcrumb-item a, .breadcrumb-item {
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
   
} 
.breadcrumb-item+.breadcrumb-item::before {
display: inline-block;
    padding-right: 5px;
    padding-left: 5px;
    text-align: center;
    color: #cfcfcf;
    content: "> >";
}
.about_team {
    padding-top: 40px;
    text-align: right;
}
.about_team h2 {
    padding-bottom: 18px;
}
.about_team p {
    line-height: 2;
    font-size: 16px;
    margin: 0px 0px 15px 0px;
}
.doctors_center {
    padding-top: 50px;
    text-align: center;
}
.doctors_center img {
    width: 350px;
    height: 350px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.doctors_center .imgBx {
    transition: .5s;
}
.doctors_center h2 {
    font-size: 30px;
    background-color: #ddd;
    padding-top: 13px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding-bottom: 20px;
    margin-bottom: 10px;
}
.doctors_center p {
    line-height: 2.5;
    text-align: right;
    background-color: #d3b545;
}
.doctors_center .imgBx:hover {
    box-shadow: 20px 19px 20px rgb(0 0 46 / 20%);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
.vedios {
    margin-top: 60px;
}
.vedios h1 {
    padding-bottom: 30px;
}
.sec-title{
	position:relative;
	z-index: 1;
	margin-bottom:55px;
}

.sec-title h2{
	position: relative;
	display: block;
	font-size:36px;
	line-height: 1.2em;
	color: #222222;
	font-weight: 700;
	padding-bottom:25px;
	text-transform:capitalize;
}

.sec-title .separator{
	position:relative;
	width:100px;
}

.sec-title .separator:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	width:100%;
	height:1px;
	background-color:#cccccc;
}

.sec-title .separator:after{
	position:absolute;
	content:'';
	left:50%;
	top:-15px;
	width:30px;
	height:30px;
	margin-left:-15px;
	border:10px solid #ffffff;
	background-color:#004cda;
}

.sec-title.light .separator:after{
	background-color:#222222;
}

.sec-title .separator.style-two::after{
	border-color:#f5f5f5;
}

.sec-title .separator.style-three::after{
	border-color:#fafafa;
}

.sec-title.centered .separator{
	margin:0 auto;
}

.sec-title.light h2,
.sec-title.light .title{
	color: #ffffff;
}

.sec-title.centered{
	text-align:center;
}

.sec-title.style-two .title{
	text-transform:capitalize;
	color:#004cda;
	font-size:20px;
}
.contact-page-section button {
    margin-top: 15px;
    padding: 11px 42px;
    background-color: #d2b72b;
    border: 0;
    border-radius: 50px;
}
.contact-page-section{
	position:relative;
background-color: #f8f9fa;
    padding: 5px 0;}

.contact-form{
	position:relative;
	max-width:970px;
	margin:0 auto;
}

.contact-form .row{
	margin:0px -8px;
}

.contact-form .row .column{
	padding:0px 8px;
}

.contact-form .form-group{
	position:relative;
	margin-bottom:20px;
}

.contact-form .form-group input[type="text"],
.contact-form .form-group input[type="tel"],
.contact-form .form-group input[type="email"],
.contact-form .form-group select{
	position:relative;
	display:block;
	width:100%;
	line-height:28px;
	padding:10px 20px;
	color:#222222;
	height:54px;
	font-size:15px;
	background:#ffffff;
    border-radius: 50px;
	border:1px solid #e1e1e1;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}


.contact-form .form-group textarea{
	position:relative;
	display:block;
	width:100%;
	line-height:22px;
	padding:15px 20px;
	color:#222222;
	height:120px;
	background:#ffffff;
	resize:none;
	font-size:15px;
    border-radius: 20px;
	border:1px solid #e1e1e1;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.contact-form .form-group .btn-detail{
	position:relative;
	text-align:center;
	margin-left:30px;
	color:#ffffff;
	font-weight:600;
	display:inline-block;
}

.contact-form button{
	margin-top:15px;
	padding:11px 42px;
}

.contact-form input.error,
.contact-form select.error,
.contact-form textarea.error{
	border-color:#ff0000 !important;
}

.contact-form label.error{
	display:block;
	line-height:24px;
	padding:5px 0px 0px;
	margin:0px;
	text-transform:uppercase;
	font-size:12px;
	color:#ff0000;
	font-weight:500;
}
.about_theDoctors img {
    width: 100%;
    height: 300px;
}


.dt-shadow{text-shadow:0px 10px 30px rgba(0,0,0,1)}#rev_slider_131_1 .uranus.tparrows{width:50px; height:50px; background:rgba(255,255,255,0)}#rev_slider_131_1 .uranus.tparrows:before{width:50px; height:50px; line-height:50px; font-size:40px; transition:all 0.3s;-webkit-transition:all 0.3s}#rev_slider_131_1 .uranus.tparrows:hover:before{opacity:0.75}.slotholder canvas { height: 100% !important; }
	
		.btn-whatsapp-pulse {
	background: #25d366;
	color: white;
	position: fixed;
	bottom: 60px;
	left: 0px;
	font-size: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 0;
	height: 0;
	padding: 20px;
	text-decoration: none;
	border-radius: 50%;
	animation-name: pulse;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
	z-index: 10;
}
.btn-instagram-pulse2 {
	background: #8a3ab9;
	color: white;
	position: fixed;
	bottom: 60px;
	left: 0px;
	font-size: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 0;
	height: 0;
	padding: 20px;
	text-decoration: none;
	border-radius: 50%;
	animation-name: pulse;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
	z-index: 10;

}
.btn-facebook-pulse {
	background: #3b5998;
	color: white;
	position: fixed;
	bottom: 100px;
	left: 0px;
	font-size: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 5px;
	height: 2px;
	padding: 20px;
	text-decoration: none;
	border-radius: 50%;
	animation-name: pulse;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
	z-index: 10;

}
.btn-phone-pulse {
	background: #00acee;
	color: white;
	position: fixed;
	bottom: 140px;
	left: 0px;
	font-size: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 0;
	height: 0;
	padding: 20px;
	text-decoration: none;
	border-radius: 50%;
	animation-name: pulse;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
	z-index: 10;

}
@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
	}
	80% {
		box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
	}
}


.btn-whatsapp-pulse-border {
	bottom: 120px;
	right: 20px;
	animation-play-state: paused;
}

.btn-whatsapp-pulse-border::before {
	content: "";
	position: absolute;
	border-radius: 50%;
	padding: 25px;
	border: 5px solid #000000;
	opacity: 1.75;
	animation-name: pulse-border;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}
.Contact-with-us {
    overflow: hidden;
    margin-top: 30px;
}
 body .side-social-links {
    /* display: none; */
    position: fixed;
    bottom: 19%;
    left: 0;
    z-index: 8;
    }
    @media only screen and (min-width: 992px) {
      body .side-social-links {
        /* display: none; */
        } }
    body .side-social-links .main-ul {
      display: grid;
      grid-gap: 10px; }
      body .side-social-links .main-ul li {
        display: grid;
        width: max-content; }
        body .side-social-links .main-ul li a {
          display: grid;
          align-items: center;
          justify-items: center;
          border-radius: 0 50% 50% 0;
          width: 48px;
          height: 48px; }
          body .side-social-links .main-ul li a i {
            color: #fff;
            font-size: 22px;
            line-height: 1; }
          body .side-social-links .main-ul li a.facebook-link {
            background-color: #3b5898c9; }
          body .side-social-links .main-ul li a.instagram-link {
            background-color: #c13584ad; }
          body .side-social-links .main-ul li a.twitter-link {
            background-color: #1da0f2c5; }
          body .side-social-links .main-ul li a.youtube-link {
            background-color: #ff0000cb; }
          body .side-social-links .main-ul li a.whatsapp-link {
            background-color: rgba(0, 191, 166, 0.808); }
           
           
               @media only screen and (max-width: 767px) {
 
            .swiper-container {
    margin: 80px auto 0;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}}
.main-heading p {
    
color: #d6bc58;
    
font-size: 26px;
    
margin-top: 10px;
}
 .specifications .title {
text-align: justify;
    background-color: #efe4b7;
    padding: 25px;
    border-radius: 5px;
    box-shadow: 0 32px 38px rgb(0 0 0 / 6%);
    margin-bottom: 20px;
 }
/* sidebar */
.sidebar-wrapper {
  /* padding: 45px 40px; */
  padding-bottom: 35px;
  padding-right: 20px;
}

.sidebar-title h3 {
  position: relative;
  margin-bottom: 22px;
  text-transform: capitalize;
}
.sidebar-title h3::before {
  position: absolute;
  content: "";
  top: -5px;
  left: 0;
  width: 20px;
  height: 3px;
  background-color: #f8a683;
}
.sidebar-title.post-comment-title h3 {
  font-size: 26px;
  font-weight: 500;
  font-family: "Rubik", sans-serif;
}

.sidebar-list ul li {
  display: block;
  transition: 0.5s all ease-in-out;
  width: 323px;
  background: #000;
}
.sidebar-list ul li a {
  position: relative;
  display: block;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #dde0e0;
  padding-left: 10px;
}
.sidebar-list ul li a::before {
  position: absolute;
  content: "";
  top: 48%;
  right: -8px;
  width: 15px;
  height: 1px;
  transition: 0.5s all ease-in-out;
  background-color: #dde0e0;
}
.sidebar-list ul li a:hover {
  color: #056c5f;
  border-color: #056c5f;
  padding-left: 20px;
}
.sidebar-list ul li a:hover::before {
  width: 10px;
  background-color: #fad700;
}
.sidebar-list ul li:last-child a {
  /* padding-bottom: 0; */
  /* margin-bottom: 0; */
  /* border-bottom: none; */
}
.sidebar-list ul li:last-child a::before {
  top: 50%;
}
.sidebar-list-2 ul li {
  display: block;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #dde0e0;
}
.sidebar-list-2 ul li h6 {
  font-size: 16px;
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  margin-bottom: 0;
  display: inline-block;
}
.sidebar-list-2 ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}
.sidebar-list-2 ul li:hover {
  border-color: #056c5f;
}
.sidebar-list-3 ul li span {
  float: right;
}

.basic-pagination ul {
  display: block;
}
.basic-pagination ul li {
  display: inline-block;
  margin: 0 5px;
}
.basic-pagination ul li.active a {
  background-color: #056c5f;
  color: #ffffff;
}
.basic-pagination ul li a {
  height: 70px;
  width: 70px;
  background: transparent;
  font-size: 16px;
  font-weight: 500;
  border-radius: 50%;
  line-height: 66px;
  margin: 0px;
  display: inline-block;
  text-align: center;
  border: 2px solid #eaebec;
  position: relative;
  z-index: 1;
}
.basic-pagination ul li a::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #056c5f;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -ms-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  z-index: -1;
}
.basic-pagination ul li a:hover {
  background: #056c5f;
  border-color: #056c5f;
  color: #ffffff;
}
.sidebar-list ul li:last-child a {
    /* padding-bottom: 0; */
    /* margin-bottom: 0; */
    /* border-bottom: none; */
}
.sidebar-list ul li a:hover {
    color: #fac900;
    border-color: #face00;
    padding-right: 20px;
    transition: 0.5s all ease-in-out;
}
.sidebar-list ul li a {
    position: relative;
    display: block;
    margin-bottom: -1px;
    padding-bottom: 14px;
    padding-top: 16px;
    border: 1px solid #face00;
    padding-right: 19px;
    transition: 0.5s all ease-in-out;
    color: #fff;
}
.sidebar-list ul li a:after {
    right: auto;
    left: 33px;
    content: ">";
}
.sidebar-list ul li a:after {
    position: absolute;
    content: '>';
    left: 33px;
    top: 15px;
    /* color: #face00; */
    font-size: 18px;
    line-height: 30px;
    font-family: 'FontAwesome';
}
iframe {
    width: 100%;
}