@charset "UTF-8";
@font-face {
  font-family: "Zaloga";
  src: url("../font/Zaloga.ttf") format("woff2"),
      url("../font/Zaloga.ttf") format("woff2");
  font-weight: normal;
  font-style: normal;
}
*,
*::before,
*::after {
    margin:0;
    padding:0;
    box-sizing:border-box;
}
.section-padding{
    padding: 70px 0;
}
.section-margin{
    margin: 50px 0;
}
a {
    text-decoration: none;
    cursor: pointer;
}
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;
}

.fixed-col{
    padding: 0px!important;
}

:root {
    --custom-first-font: "Poppins", sans-serif;
    --subtitle-color:#E1BA6D;
    --title-color:#262626;
    --text-color:#111244;
    --bg-color:#EAE8E8;
    --text-light:#fff;
    --text-black:#2C2C2C;
    --text-color-2:#477d82;
    --color-2:#E8E8F1;
    --button-gradient:radial-gradient(closest-side at 50% 50%, #E1BA6D 0%, #c 100%) 0% 0% no-repeat padding-box;
    --footer-gradient:radial-gradient(closest-side at 50% 50%, #FBFCFE 0%, #BCCBE4 100%) 0% 0% no-repeat padding-box;
    --menu-color:#A57842;
    --gutter0:0px;
    --gutter25:25px;
}
.gutterbg{
  padding-left: var(--gutter25);  
  padding-right: var(--gutter25);  
}
body {
    font-family: 'Montserrat', sans-serif;
    color:var(--text-color);
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    -webkit-font-smoothing: antialiased;
    position: relative!important;
    top: 0px!important;
    overflow-x: hidden;
    --gutter-x: 15px;
    --gutter-x3: -15px;
}

.cta-btn{
  display: flex;
  gap: 10px;
}

.cta-btn .link {
  background: var(--subtitle-color);
  padding: 10px 15px;
  min-width: 235px;
  display: flex;
  justify-content: center;
  color: #fff;
  border-radius: 9px;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  border-radius: 5px;
}

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;
}

/* === 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-color);
    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-color);
}

.mobile-hamburger-menu .hamburger-menu.animate.animate:before {
    bottom: 0;
    transform: rotate(-45deg);
    background:var(--text-color);
    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-color);
    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-color);
    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: #fff;
    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: #041D33;
    -moz-transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    cursor: pointer
}

#side-menu .menu-ana-menu-container {
    margin-top: 25px;
}

#side-menu .content .close-btn:hover {
    color: #FF7A2E
}

#side-menu .content.in {
    margin-right: 0
}

#side-menu .content .headerLogos img {
    width: 200px;
    margin: 0 auto;
    display: block;
}

#side-menu .content ul.menu {
    padding: 0 12px
}

.logo-item img {
    max-height: 150px;
    width: auto;
}

#side-menu .content ul.menu li.current-menu-item>a {
    font-weight: 700;
    color: var(--color);
}

#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: #c1c1c1
}

#side-menu .content ul.menu li a {
    display: flex;
    align-items: center;
    height: 48px;
    padding: 6px 0;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    border-bottom: 1px solid #eaeaea
}

#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(--title-color);
    border-bottom: 1px solid #edd9d9
}

#side-menu .content ul.menu li ul.sub-menu li a {
    padding: 0;
    border: none;
    height: 40px;
    color: #fff
}

#side-menu .content .lang-list {
    margin-top: 20px
}

#side-menu .content .lang-list li div {
    display: flex;
    align-items: center;
    height: 48px;
    color: #041D33;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid #eaeaea;
    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: #041D33
}

#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 #041D33;
    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: #041D33
}

#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: #fff;
    background-color: #041D33;
    margin: 24px auto
}

#side-menu .header-button-group{
    gap: 10px;
    margin-top: 30px;
    padding: 0 25px;
}

#side-menu .header-button {
    background: linear-gradient(259deg, #CB584B 0%, #DB8074 75%, #EBA79D 100%) 0% 0% no-repeat padding-box;
    padding: 7px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    text-align: center;
}



nav.menu-menu-container ul {
    max-height: 500px;
    overflow-y: auto;
}

body.modal-opened {
    overflow: hidden;
}

.fixed-col{
    padding: 0px;
}

#left-whatsapp {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    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 */
    border-radius: 0px 8px 8px 0px;
    -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(--text-color);
}

#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(--title-color);
}

#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);
}


/* h-bottom */
/* header{
    background: #ffffff75;
} */

header{
  position: relative;
  z-index: 10;
  /* background: transparent linear-gradient(93deg, #F8FBFB 0%, #DBDCDD 100%) 0% 0% no-repeat padding-box; */
}

header .header-section {
    position: relative;
    padding: 15px 0;
}

header .header-section .header-bg{
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: -1;
}


body:not(.home) .h-bottom-inner {
  background: var(--text-color);
  /* border-radius: 18px 18px 0 0; */
  border-bottom: 1px solid #fff;
}


header .header-content{
    padding: 0 20px;
}

.header-center {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

header .h-top {
    /* padding: 10px 0px 0px; */
}
header .h-top .h-top-left {
    gap: 15px;
}
header .h-top .h-top-left .header-contact {
    color: var(--text-color);
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
}
header .h-top .h-top-right {
    gap: 10px;
}

header .h-top .top-social {
    display: flex;
    gap: 5px;
}

header .h-top .top-social li a {
    display: block;
}

header .h-top .top-social li a svg{
    width: 20px;
    height: 20px;
    color: var(--text-color);
}

header .top-form-area form .search-input {
    width: 210px;
    max-width: 100%;
    border: 2px solid #2A2C82;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 20px;
    padding: 0 72px 0 36px;
    height: 40px;
    color: #3E3E3E;
    font-size: 18px;
    font-weight: 500
}

header .top-form-area form .search-input::placeholder {
    color: #3B3B3B;
    font-weight: 500
}

header .top-form-area form .search-btn {
    position: absolute;
    right: 6px;
    top: 6px;
    background-color: #fff0;
    color: #2A2C82;
    border: none;
    cursor: pointer
}

header .top-form-area form .search-btn svg {
    width: 28px;
    height: 28px
}


header .h-center {
    position: relative;
    /* padding: 0px 0 15px; */
}
header .h-center .header-center-logo {
    position: relative;
    width: 256px;
    height: 87px;
    bottom: 15px;
    margin-bottom: -15px;
}
header .h-center .header-center-logo .top-logo {
    position: absolute;
    bottom: 15px;
    margin-bottom: -15px;
    left: 0px;
}
header .header-center-left .header-contact {
    color: var(--text-color);
    gap: 10px;
}
header .h-center .header-right {
    gap: 15px;
    position: relative;
}

/* header .h-center::before {
    position: absolute;
    left: 0;
    top: 15%;
    width: 35vw;
    height: 2px;
    background: #A0A0B4;
    content: "";
}

header .h-center::after {
    position: absolute;
    right: 0;
    top: 15%;
    width: 35vw;
    height: 2px;
    background: #A0A0B4;
    content: "";
} */

/* header .h-center .header-left {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, 25px);
}
header .h-center .header-left .top-logo {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, 25px);
} */
/* header .h-center .header-left img {
    width: 165px;
} */

header .h-bottom{

}

.h-bottom-inner {
    background: var(--text-color);
}

header .h-bottom .header-button-group{
    gap: 10px;
    margin-right: 10px;
}

/* header .web-lang > li {
    border: 2px solid var(--text-light);
    border-radius: 9px;
    padding:5px 10px;
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 6px;
}

header .web-lang > li svg{
    width: 20px;
    height: 20px;
    fill: var(--text-light);
}

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 img {
    width: 23px;
    height: 23px;
    color: #fff;
    cursor: pointer;
}

header .web-lang>li .lang-item {
    color: #000;
    background: #fff;
    padding: 4px 15px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    margin-left: 15px;
    border: 2px solid #2B1638;
}

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;
    font-size: 16px;
}

header .web-lang li ul.sub-menu {
    opacity: 0;
    position: absolute;
    z-index: 9;
    top: 80%;
    left: 50%;
    transform: translateX(-50%);
    background:var(--bg-color-3);
    pointer-events: none;
    transition: all 0.2s;
    border-radius: 13px;
    list-style: none;
    padding: 0;
    overflow: hidden;
    margin-top: 5px !important;
}

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: #e6e6e6;
}

header .web-lang li ul.sub-menu li:hover span {
    color: #000;
}

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 #fff;
}

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 {
    text-align: center;
}

header .tops-menu > li {
    position: relative;
    padding: 15px 13px;
}

header .tops-menu > li.menu-item-has-children {
    display: flex;
}

header .tops-menu > li.menu-item-has-children svg {
    color: #fff;
    width: 25px;
    height: 25px;
}

header .tops-menu > li > a {
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    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 > a:first-child{
    padding-left: 0px;
}

header .tops-menu > li::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  -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%;
}
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(--text-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    min-width: 180px;
    border-radius: 5px;
    opacity: 0;
    padding: 5px;
    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;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
header .tops-menu li ul.sub-menu li svg{
  transform: rotate(-90deg);
}
header .tops-menu li ul.sub-menu li a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-light);
  padding:8px 12px;
  text-align:start;
  width:100%;
  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: -5px;
  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{
    font-weight: 700;
}

header .tops-menu > li.current-menu-item a::before {
    content: "";
    position: absolute;
    width: 54px;
    height: 3px;
    background-color: var(--button-gradient);
    bottom: 0%;
}

header .meeting-btn {
    border-radius: 10px;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.5s;
    background:var(--bg-color-2);
    color: #fff;
    padding: 8px 30px;
    transition: 0.5s;
}

header .meeting-btn:hover{
  transform: scale(1.1);
}

.section-subtitle{
    color:var(--subtitle-color);
    font-size: 20px;
    font-weight: 500;
}

.section-title{
    color:var(--text-color);
    font-size: 40px;
    font-weight: 700;
}

.otgs-development-site-front-end {
    display: none;
}

.skiptranslate {
    display: none;
}
#goog-gt-tt {
    display: none !important;
}


#right-social-media {
    position: fixed;
    z-index: 999;
    right: 30px;
    bottom: 5%;
}

#right-social-media .sm-container{
    gap: 10px;
}

#right-social-media .top-social-link{
    padding: 7px;
    border-radius: 50%;
    background: var(--bg-color-2);
    color: var(--text-light);
}

.btnhover:hover {
  padding: 12px 18px;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  transition: 0.3s ease-in;
  transform: scale(1.1);
}
  /* center form */