@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

*,
*::before,
*::after {
    margin:0;
    padding:0;
    box-sizing:border-box;
}
.section-padding{
    padding: 70px 0;
}
.section-margin{
    margin: 50px 0;
}
a {
    text-decoration: none;
}
div{
    line-height: 1.2;
}
html,
body,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
input,
select,
textarea,
button,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

a:hover{
    text-decoration: none!important;
    outline: none!important;
}

a, button, input {
    outline: none;
}
p{
    line-height: 1.2;
}
ol, ul {
    padding: 0;
    margin: 0!important;
    list-style-type: none;
}

.copyright{
    color: #fff;
    font-family: var(--custom-first-font);
    font-size: 20px;
}
.img-responsive {
    width: 100%;
    height: auto;
    display: block;
}
b, strong {
    font-weight: 600;
    color: var(--first-color);
}
main {
    position: relative;
    z-index: 0; 
    overflow-x: clip;
}
iframe {
    width: 100%;
    border: none;
    display: block;
}

button:focus {
    outline: none;
}

svg{
    width: 24px;
    height: 24px;
}

figure{
    margin: 0px;
}

.p60 {
    padding: 60px 0;
}

.homeButton {
    font-weight: bold;
}

.success{
    display: none;
}

.unsuccessful{
    display: none;
}

:root {
    --custom-first-font: "Poppins", sans-serif;

    --primary-brown: #aa9288;
    --light-beige: #e9e1dd;
    --secondary-brown: #aa9288;

    --gradient-primary: radial-gradient(closest-side at 50% 50%, #F7EED9 0%, #a38c59 100%) 0% 0% no-repeat padding-box;
    --gradient-secondary: linear-gradient(81deg, #aa9288 0%, #e9e1dd 54%, #aa9288 100%);

    --text-dark: #3D3D3D;
    --text-primary: #202020;
    --text-secondary: #313030;
    --text-light: #fff;

    --first-color: #aa9288;
    --second-color: radial-gradient(closest-side at 50% 50%, #e9e1dd 0%, #aa9288 100%) 0% 0% no-repeat padding-box;
    --head-color: #aa9288;

    --gutter0:0px;
    --gutter25:25px;
}

.gutterbg{
  padding-left: var(--gutter25);  
  padding-right: var(--gutter25);  
}
body {
    font-family: "Poppins","sans-serif";
    color: var(--text-primary);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    -webkit-font-smoothing: antialiased;
    position: relative!important;
    top: 0px!important;
    overflow-x: hidden;
    --gutter-x: 15px;
    --gutter-x3: -15px;
}

svg{
  width: 30px;
  height: 30px;
}

.gap-5{
  gap: 10px;
}

.gap-10{
  gap: 10px;
}

.gap-35{
  gap: 35px;
}

@keyframes opacIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

.doctor-animation {
  animation: opacIn 1.5s ease-in-out forwards;
}

header{
  position: relative;
  z-index: 10;
}

header .h-top {
    background: #aa9288;
    padding: 5px 0;
}

header .h-bottom{
    padding: 10px 0;
}

header .header-contact-container {
    gap: 15px;
}

header .header-contact-container a {
    gap: 5px;
    color: #fff;
}

/* === Hamburger Buton === */

.mobile-hamburger-menu {
    display: flex;
    z-index: 999999;
    flex-direction: column;
    padding: 10px;
    width: 40px;
    height: 34px;
}

.mobile-hamburger-menu .hamburger-menu {
    position: relative;
    transform: translateY(6px);
    background: var(--text-light);
    transition: all 0ms 300ms;
    width: 20px;
    height: 2px;
}

.mobile-hamburger-menu .hamburger-menu.animate {
    background: rgba(255, 255, 255, 0);
}

.mobile-hamburger-menu .hamburger-menu.animate.animate:after {
    top: 0;
    transform: rotate(45deg);
    transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    background: var(--text-light);
}

.mobile-hamburger-menu .hamburger-menu.animate.animate:before {
    bottom: 0;
    transform: rotate(-45deg);
    background: var(--text-light);
    transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.mobile-hamburger-menu .hamburger-menu:after,
.mobile-hamburger-menu .hamburger-menu:before {
    width: 20px;
    height: 2px;
}

.mobile-hamburger-menu .hamburger-menu:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 6px;
    background: var(--text-light);
    transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.mobile-hamburger-menu .hamburger-menu:after {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    background: var(--text-light);
    transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}


/* === Men��� Paneli === */

#side-menu {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 9999
}

#side-menu .backdrop {
    background-color: rgb(0 0 0 / .8);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    flex: 1;
    width: 100%;
    height: 100%
}

#side-menu .content {
    padding: 60px 0 50px;
    width: 85%;
    max-width: 400px;
    background-color: var(--light-beige);
    box-shadow: -3px 0 10px 0 #00000026;
    margin-right: calc((50% + 56px) * -1);
    overflow-y: auto;
    -moz-transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    position: relative
}

#side-menu .content .close-btn {
    position: absolute;
    right: 30px;
    top: 20px;
    color: var(--text-dark);
    -moz-transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    cursor: pointer
}

#side-menu .content .close-btn:hover {
    color: var(--primary-brown)
}

#side-menu .content.in {
    margin-right: 0
}

#side-menu .content .headerLogos img {
    width: 200px;
    margin: 0 auto;
}

#side-menu .content ul.menu {
    padding: 0 12px
}

#side-menu .content ul.menu li.current-menu-item>a {
    font-weight: 700;
    color: var(--primary-brown);
}

#side-menu .content ul.menu li.opened.menu-item-has-children>a svg {
    transform: translateY(-50%) rotate(180deg)
}

#side-menu .content ul.menu li.opened>ul.sub-menu {
    max-height: 400px
}

#side-menu .content ul.menu li.menu-item-has-children>a svg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    padding: 8px;
    right: 0;
    -moz-transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    color: var(--secondary-brown)
}

#side-menu .content ul.menu li a {
    display: flex;
    align-items: center;
    height: 48px;
    padding: 6px 0;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    border-bottom: 1px solid var(--secondary-brown)
}

#side-menu .content ul.menu li ul.sub-menu {
    max-height: 0;
    overflow: hidden;
    overflow-y: auto;
    -moz-transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    border-radius: 10px
}

#side-menu .content ul.menu li ul.sub-menu li {
    padding: 2px 8px;
    background-color: var(--primary-brown);
    border-bottom: 1px solid var(--light-beige)
}

#side-menu .content ul.menu li ul.sub-menu li a {
    padding: 0;
    border: none;
    height: 40px;
    color: var(--text-light)
}

#side-menu .content .lang-list {
    margin-top: 20px
}

#side-menu .content .lang-list li div {
    display: flex;
    align-items: center;
    height: 48px;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid var(--secondary-brown);
    position: relative
}

#side-menu .content .lang-list li div svg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    padding: 8px;
    right: 0;
    -moz-transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    color: var(--text-dark)
}

#side-menu .content .lang-list li .name {
    margin-left: 10px
}

#side-menu .content ul.social-menu {
    margin-top: 30px
}

#side-menu .content ul.social-menu li {
    margin: 5px
}

#side-menu .content ul.social-menu li a {
    border: 1px solid var(--text-dark);
    padding: 6px;
    display: block;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%
}

#side-menu .content ul.social-menu li a svg {
    color: var(--text-dark)
}

#side-menu .mobile-contact-btn {
    display: block;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    border-radius: 30px;
    padding: 4px 24px;
    font-size: 18px;
    text-align: center;
    max-width: 200px;
    color: var(--text-light);
    background-color: var(--primary-brown);
    margin: 24px auto
}


nav.menu-menu-container ul {
    max-height: 500px;
    overflow-y: auto;
}

body.modal-opened {
    overflow: hidden;
}



#left-whatsapp {
    position: fixed;
    right: 0;
    top: 55%;
    transform: translateY(-55%);
    z-index: 9;
}

#left-whatsapp a {
    height: 75px;
    width: 75px;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#f4f7fc+0,dfdfdf+100 */
    background: #58d164;
    /* Old browsers */
    background: -moz-linear-gradient(top, #58d164 0%, #2cb842 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #58d164 0%, #2cb842 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #58d164 0%, #2cb842 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@first', endColorstr='@sec', GradientType=0);
    /* IE6-9 */
    -webkit-border-radius: 0 8px 8px 0;
    -moz-border-radius: 0 8px 8px 0;
    -ms-border-radius: 0 8px 8px 0;
    border-radius: 8px 0 0 8px;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

#left-whatsapp a svg {
    color: #fff;
    width: 55px;
    height: 55px;
}

#mobile-footer-cta-buttons {
    padding-bottom: 14px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
}

#mobile-footer-cta-buttons:before {
    content: " ";
    height: 40px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--gradient-secondary);
}

#mobile-footer-cta-buttons .row {
    --gutter-x: 4px;
    --gutter-x2: -4px;
}

#mobile-footer-cta-buttons .button-x {
    height: 52px;
    width: 100%;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    border-radius: 8px;
    padding: 0 20px;
    color: #fff;
}

#mobile-footer-cta-buttons .button-x.button-call {
    background: var(--text-primary);
}

#mobile-footer-cta-buttons .button-x.button-whatsapp {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#f4f7fc+0,dfdfdf+100 */
    background: #58D164;
    /* Old browsers */
    background: -moz-linear-gradient(top, #58D164 0%, #2CB842 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #58D164 0%, #2CB842 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #58D164 0%, #2CB842 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@first', endColorstr='@sec', GradientType=0);
    /* IE6-9 */
}

#mobile-footer-cta-buttons .button-x svg {
    color: #fff;
}

#mobile-footer-cta-buttons .button-x span.text {
    margin-left: 12px;
    font-weight: 400;
    font-size: 14px;
    font-family: var(--custom-first-font);
}



header.header-area {
    position: sticky;
    top: -1px;
    background-color: var(--primary-brown);
    box-shadow:  9px 5px 16px #00000096;
    transition: 0.2s;
}

header.header-area.scrolled {
    background-color: var(--secondary-brown);
}

header .h-right{
    width: 100%;
}

header .header-content{
    gap: 47px;
}

header .header-content .header-content-right{
    width:100%;
    padding-top: 10px;
}

header .header-top-container {
    gap: 20px;
}

header .header-right-container {
    border-right: 1px solid #fff;
}

header .header-content .header-content-right .header-content-right-top {
    width: 100%;
    margin-bottom: 5px;
    gap: 10px;
}

header .header-content .header-content-right .header-content-right-top .header-contact-container {
    gap: 20px;
}

header .header-content .header-content-right .header-content-right-top .header-contact-container a {
    gap: 5px;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s ease-in;
    color: var(--text-light);
}

header .header-content .header-content-right .header-content-right-top .header-contact-container a svg {
    color: var(--text-light);
    width: 20px;
    height: 20px;
}

header .header-content .header-content-right .header-content-right-top .header-contact-container a:hover{
    opacity: 0.3;
}

header .header-content .header-content-right #menu-ana-menu {
    gap: 10px;
}

header .header-social-container .header-top-social-link svg {
    color: var(--text-light);
    width: 20px;
    height: 20px;
}

header .header-social-container .header-top-social-link.instagram {
    background: linear-gradient(87deg, #FBCE0E 0%, #FE6D27 27%, #EB217D 58%, #7C1CC7 100%) 0% 0% no-repeat padding-box;
    border-radius: 50%;
    padding: 7px;
}

header .header-social-container .header-top-social-link.youtube {
    background-color: #f03;
    border-radius: 50%;
    padding: 7px;
}

header .header-social-container .header-top-social-link.facebook {
    background-color: #0866ff;
    border-radius: 50%;
    padding: 7px;
}


header .header-content .h-bottom {
    width: 100%;
    padding-bottom: 10px;
}



header .header-social-container{
    gap: 10px;
    margin-right: 10px;
    padding-right: 10px;
}

header .header-social-container a svg{
    width: 25px;
    height: 25px;
}




header .web-lang > li {
    border: 2px solid var(--text-light);
    padding:3px 4px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 6px;
}

header .web-lang > li:after {
    content: ' ';
    border: 6px solid;
    transform: translateY(35%);
    border-color: var(--text-light) transparent transparent transparent;
    margin-left: 5px;
}

header .web-lang {
    margin: 0;
    cursor: pointer;
    z-index: 999;
    list-style: none;
    padding: 0;
}

header .web-lang>li {
    position: relative;
    display: inline-flex;
}

header .web-lang .menu-item-has-children svg {
    width: 23px;
    height: 23px;
    fill: var(--text-light);
    cursor: pointer;
}

header .web-lang>li .lang-item {
    color: var(--text-primary);
    background: var(--text-light);
    padding: 4px 15px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    margin-left: 15px;
    border: 2px solid var(--primary-brown);
}

header .web-lang>li .lang-item a img,
header .web-lang>li .lang-item img {
    width: 25px;
    height: 25px;
    margin-right: 10px;
}

header .web-lang>li .lang-item a span,
header .web-lang li ul.sub-menu li span {
    color: #fdfdfd;
    font-weight: 600;
}

header .web-lang li ul.sub-menu {
    opacity: 0;
    position: absolute;
    z-index: 9;
    top: 80%;
    margin-top: 5px !important;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    pointer-events: none;
    transition: all 0.2s;
    border-radius: 13px;
    list-style: none;
    padding: 0;
    overflow: hidden;
}

header .web-lang>li:hover ul.sub-menu {
    z-index: 15;
    opacity: 1;
    top: 100%;
    pointer-events: initial;
}

header .web-lang li ul.sub-menu li {
    padding: 0;
    margin: 0;
    transition: all 0.2s;
}

header .web-lang li ul.sub-menu li:hover {
    background-color: var(--light-beige);
}

header .web-lang li ul.sub-menu li:hover span {
    color: var(--text-primary);
}

header .web-lang li ul.sub-menu li .d-flex {
    padding: 10px 28px 10px 14px;
    display: flex;
    align-items: center;
    cursor: pointer;
    border-bottom: 1px solid var(--text-light);
}

header .web-lang li ul.sub-menu li:last-child .d-flex {
    border-bottom: none;
}

header .web-lang li ul.sub-menu li img.flag-img {
    margin-right: 10px;
    width: 20px;
    height: 20px;
}





header .tops-menu > li {
  position: relative;
}
header .tops-menu > li > a {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-light);
  padding: 10px;
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 300ms;
  -moz-transition-duration: 300ms;
  -o-transition-duration: 300ms;
  transition-duration: 300ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
header .tops-menu > li > a:first-child{
    padding-left: 0px;
}
header .tops-menu > li::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: var(--text-light);
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 300ms;
  -moz-transition-duration: 300ms;
  -o-transition-duration: 300ms;
  transition-duration: 300ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
header .tops-menu > li:hover::after {
  width: 100%;
    height: 2px;
}
header .tops-menu > li:hover > ul.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

header .tops-menu li ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 0%;
  background: var(--light-beige);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  z-index: 9;
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 300ms;
  -moz-transition-duration: 300ms;
  -o-transition-duration: 300ms;
  transition-duration: 300ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

header .tops-menu li ul.sub-menu::-webkit-scrollbar {
  width: 8px;
}

header .tops-menu li ul.sub-menu::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

header .tops-menu li ul.sub-menu::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 4px;
}

header .tops-menu li ul.sub-menu::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}


header .tops-menu li ul.sub-menu li {
  position: relative;
}
header .tops-menu li ul.sub-menu li a {
  display: block;
  padding: 9px 12px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  white-space: nowrap;
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 300ms;
  -moz-transition-duration: 300ms;
  -o-transition-duration: 300ms;
  transition-duration: 300ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
header .tops-menu li ul.sub-menu li a:hover {
  opacity: 0.5;
}
header .tops-menu li ul.sub-menu li ul.sub-menu {
  top: 0;
  left: 100%;
}
header .tops-menu li ul.sub-menu li:hover > ul.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

header .tops-menu > li.current-menu-item a{
    color: var(--text-light);
}

header .tops-menu > li.current-menu-item a::before {
    content: "";
    position: absolute;
    width: 54px;
    height: 2px;
    background-color: var(--text-light);
    bottom: 5%;
}

.meeting-btn {
    border-radius: 10px;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.5s;
    background:var(--secondary-brown);
    color: var(--light-beige);
    padding: 5px 20px;
    border: 2px solid var(--light-beige);
    font-style: italic;
}

.meeting-btn:hover{
  transform: scale(1.1);
  transition: 0.5s;
  color: var(--text-light);
}

.section-title{
    color: var(--text-dark);
    font-size: 36px;
    font-weight: 700;
}

.otgs-development-site-front-end {
    display: none;
}

.skiptranslate {
    display: none;
}
#goog-gt-tt {
    display: none !important;
}


.border-wrapper {
  position: fixed;
  right: 2%;
  bottom: 0;
  width: 300px;
  z-index: 1000;
  border-radius: 5px 5px 0 0;
  padding: 2px;
  background: white;
  text-align: center;
  overflow: hidden;
  /* width: 100%; */
}

.rotating-border {
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  border-radius: 30px;
  background: conic-gradient(from 0deg,transparent 0%,#000 20%,#000 40%,transparent 60%,transparent 100%);
  z-index: 1;
  animation: rotateBorder 2s linear infinite;
}

.mobile-footer-cta-wp {
  background:var(--secondary-brown);
  padding: 15px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  border-radius: 5px 5px 0 0;
  position: relative;
  z-index: 2;
  text-decoration: none;
}

@keyframes rotateBorder {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* doctors */

#home-doctors {
    margin-bottom: 100px;
}

#home-doctors .section-title {
    text-align: center;
    margin-bottom: 40px;
}

#home-doctors .doctor-box-item{
    margin-bottom: 20px;
}

#home-doctors .doctor-box-item .doctor-image {
    margin-bottom: 10px;
}

#home-doctors .doctor-box-item .doctor-image img {
    border-radius: 20px;
}

#home-doctors .doctor-box-item .doctor-content .doctor-name {
    color: var(--text-dark);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

#home-doctors .doctor-box-item .doctor-content .doctor-branch{
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 400;
}

#home-doctors .doctor-box-item .doctor-content .doctor-text{
    color: var(--text-dark);
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}