body{
    overflow-x: hidden;
    position: relative;
    width: 100%;
}
.domain-carousel .owl-nav{
    display: none !important;
}

p, h1, h2, h3, h4, h5, h6, span, a {
  font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}
p, span, a {
    font-size: 18px;
}
img{
    max-width: 100%;
}
.child_menu
.menu-phone{
    font-size: 18px;
    font-weight: 500;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.navbar-transparent {
    background-color: transparent;
    transition: background-color 0.3s, color 0.3s;
}
.navbar-scrolled {
    background-color: white;
    color: black;
}
.navbar-scrolled .menu-item, .navbar-scrolled .menu-item:hover {
    color: black;
}
.mobile-menu-content{
    display: none;
}

.menu-active::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 35px !important;
    height: 2px;
    background:black !important;
    transform: translateX(-50%)  !important;
}
.menu-item::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: gray;
    transform: translateX(-50%) ;
    transition: width 0.3s ease-in-out;
}
.menu-item:hover::after {
    width: 35px;
}
.menu-item {
    font-size: 16px;
    font-weight: 500;
    position: relative;
    display: flex;
    gap:6px;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
    text-wrap-mode: nowrap;
}
.menu-item, .menu-item:hover {
    color: black;
}
.menu-parent{
    position: relative;
    transition: 0.3s ease-in-out;
    
}
.menu-child{
    position: absolute;
    top: 100%;
    padding-top: 35px;
    padding-bottom: 35px;
    padding-right: 15px;
    padding-left: 15px;
    left: -95px;
    background-color: #014FFE;
    border-radius: 15px;
    gap:15px;
    min-width: 250px;
    display: none;
    z-index: 99;
    justify-content: start;
    text-align: start;
    transition: 0.3s ease-in-out;
}
.menu-parent:hover .menu-child{
    display: flex;
    flex-direction: column;
    transition: 0.3s ease-in-out;

}
.menu-parent:hover .bi-chevron-down {
    transform: rotate(180deg);
    transition: 0.3s ease-in-out;
}
.child-menu-item{
    color: #fff;
    padding-bottom: 5px;
    border-bottom: 1px solid #ffffff69;
    transition: 0.3s ease-in-out;
}
.child-menu-item:hover{

    border-bottom: 1px solid #fff;
    transition: 0.3s ease-in-out;

}

.scroll-hidden {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
    pointer-events: none;
    height: 0;
    overflow: hidden;
}
.scroll-visible {
    opacity: 1 !important;
    transform: translateY(0px);
    pointer-events: auto;
    height: auto;
    overflow: visible;
}

.about-wrapper {
    width: max-content;
    padding: 0 150px;
    height: 100%;
    display: flex;
    align-items: start;
    gap: 100px;
    will-change: transform;
}

.services-carousel .owl-nav {
    display: flex !important;
    justify-content: end !important;
    align-items: end !important;
}

.services-carousel .owl-nav button {
    background: #36A9E1 !important;
    color: #fff !important;
    border-radius: 20px !important;
    padding: 10px 15px !important;
    width: 50px !important;
    height: 50px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

#blogNav  {
    display: flex !important;
    justify-content: end !important;
    align-items: end !important;
    gap: 15px;
}

#blogNav  button {
    background: #36A9E1 !important;
    color: #fff !important;
    border-radius: 20px !important;
    padding: 10px 15px !important;
    width: 50px !important;
    height: 50px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.comments-carousel .owl-nav {
    display: flex !important;
    justify-content: end !important;
    align-items: end !important;
    margin-top: 20px !important;
}

.comments-carousel .owl-nav button {
    background: #36A9E1 !important;
    color: #fff !important;
    border-radius: 20px !important;
    padding: 10px 15px !important;
    width: 50px !important;
    height: 50px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}
.seo-article h2{
    font-size: 20px;
    font-weight: 600;
    margin: 15px 0;
    color: #000;
}
.seo-article p {
    margin: 0 0 20px 0;
    font-size: 16px;
    font-weight: 400;
}

.sway-horizontal {
  animation: sway-horizontal 2s ease-in-out infinite;
}

.sway-vertical {
  animation: sway-vertical 2s ease-in-out infinite;
}
@keyframes sway-horizontal {
  0%   { transform: translateX(0); }
  25%  { transform: translateX(5px); }
  50%  { transform: translateX(0); }
  75%  { transform: translateX(-5px); }
  100% { transform: translateX(0); }
}

@keyframes sway-vertical {
  0%   { transform: translateY(0); }
  25%  { transform: translateY(5px); }
  50%  { transform: translateY(0); }
  75%  { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}
@keyframes slideDownFade {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.img_top_container {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #014FFE;
    width: 100%;
    height: 100%;
    display: none; 
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    padding: 20px;
    text-align: center;
}

.team-hover:hover .img_top_container {
    display: flex;
    animation: slideDownFade 0.4s ease forwards;
    z-index: 10;
}


@media only screen and (max-width:1024px){
    .menu-item{
        font-size: 20px;
    }
    .mobile-menu-content{
        display: flex;
        position: absolute;
        background-color: #fff;
        width: 100%;
        height: 100vh;
        top: 0;
        left: -2000px;
        transition: 0.5s ease-in-out;
    }
    .mobile-menu-content-active{
        left: 0 !important;
        height: 110vh;
        transition: 0.5s ease-in-out;
        z-index: 99;
    }
    .mobile-active::after{
        content: "";
        display: flex;
        width: 100% !important;
        height: 2px;
        background: linear-gradient(to top, #D4AB41, #FCE897) !important;
    }
    .menu-child {
        display: none;
        position: static;
        padding: 15px;
        background-color: #014FFE;
        border-radius: 0;
        min-width: 100%;
        text-align: start;
    }

    .menu-parent.active .menu-child {
        display: flex;
        flex-direction: column;
    }

    .services-carousel .owl-nav {
        justify-content: center !important;
        align-items: center !important;
    }
    #blogNav {
        justify-content: center !important;
        align-items: center !important;
    }
    .comments-carousel .owl-nav {
        justify-content: center !important;
        align-items: center !important;
    }
    .about_vertical_line{
        transform: rotate(90deg);
       max-height: fit-content;
       max-width: fit-content;
    }
}
