/*!
   Theme Name: averygpt
   Version: 1.0.0
   Author: Faige Selevam
   Author URI: https://faigeselevan.com/
 */

.lock body {
    overflow: hidden;
    touch-action: none;
    -ms-scroll-chaining: none;
    overscroll-behavior: none
}
.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden
}
@supports (overflow:clip) {
    .wrapper {
        overflow: clip
    }
}
.wrapper>main {
    flex: 1 1 auto
}
.wrapper>* {
    min-width: 0
}

.menu {
    -webkit-column-gap: clamp(.625rem,.3392857143rem + 1.4285714286vw,1.625rem);
    -moz-column-gap: clamp(.625rem,.3392857143rem + 1.4285714286vw,1.625rem);
    column-gap: clamp(.625rem,.3392857143rem + 1.4285714286vw,1.625rem);
    justify-content: flex-end
}
.menu li>a {
    display: inline-block;
    position: relative;
    font-weight: 500;
    font-size: clamp(.75rem,.6964285714rem + .2678571429vw,.9375rem);
    color: #fff;
    padding: 0
}
.menu li>a::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #fff;
    transition: width .3s ease-in-out
}
.menu li>a:hover::before {
    width: 100%
}
.mobile-menu {
    position: fixed;
    top: -1000%;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    padding-top: 8.75rem;
    background-color: rgba(9,92,104,.95);
    z-index: -1;
    opacity: 0;
    transition: opacity .2s ease-in-out
}
.mobile-menu .menu {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem
}
.mobile-menu .menu>li>a {
    font-size: clamp(1.125rem,.875rem + 1.25vw,2rem)
}
.ibg {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}
.ibg--top {
    -o-object-position: top;
    object-position: top
}
.ibg--bottom {
    -o-object-position: bottom;
    object-position: bottom
}
.ibg--left {
    -o-object-position: left;
    object-position: left
}
.ibg--right {
    -o-object-position: right;
    object-position: right
}
.ibg--contain {
    -o-object-fit: contain;
    object-fit: contain
}
.form label input,
.form label textarea {
    border: none;
    box-shadow: 0 4px 11px 0 rgba(0,0,0,.11);
    background: #fff;
    padding: .5em .625em
}
.form label textarea {
    min-height: 8rem;
    resize: none
}
.form button {
    display: block;
    font-weight: 700;
    font-size: .875rem;
    line-height: 250%;
    letter-spacing: -.03em;
    color: #5ec2a8;
    margin-left: auto;
    cursor: pointer
}

.banner .title-col {
    display: grid;
    grid-template-columns: 1fr;
}

.reviews.has-blocks .testimonials-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

@media (max-width: 1024px) {
    .reviews.has-blocks .testimonials-container {
        grid-template-columns: 1fr 1fr;
        justify-content: center;
    }
}
@media (max-width: 640px) {
    .reviews.has-blocks .testimonials-container {
        grid-template-columns: 1fr;
    }
}

.reviews.has-blocks .review-card {
    width: 100%;
}

.broker__author img {
    width: 220px;
    height: 220px;
}

/********************************************************************/
:root {
    --text-color: #C8CAD1;
}
.header {
    position: relative;
    background: transparent;
}
.header .right-text-col:before {
    background: linear-gradient(360deg, #1FCDEE 40%, #0F1012 100%);
}
.header__logo svg {
    height: auto;
}
.header .menu li>a {
    position: relative;
    z-index: 2;
    color: #fff;
    font-weight: 400;
}
.header .grid-container {
    position: relative;
    max-width: 1440px;
}

.header .menu {justify-content:center; gap: 50px;margin-top: 50px;}

.header .menu-item a{
    position: relative;
    display: inline-block;
    font-family: Inter, sans-serif;
    font-weight: 700;
    text-align: center;
    background: rgba(0, 0, 0, 0);
    transition: all 300ms;
    margin: 0;
    overflow: hidden;
    text-transform: capitalize;
    border: none;
    color: #F5F5F5;
    line-height: 1;
    padding: 0 0 8px;
}
.header .menu-item.current-menu-item a {
    color: #1FCDEE;
}
.header .menu-item a b {
    font-weight: 400;
}
.header .menu-item a:before {
    content: "";
    position: absolute;
    z-index: 1;
    transition: all 300ms;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #1FCDEE;
    opacity: 0;
}
/*.header .menu-item.current-menu-item a:before {*/
/*    opacity: 1;*/
/*}*/

/* Hamburger base */
.mobile-hamburger button {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001; /* keep on top */
}

.mobile-hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
    transform-origin: center;
}

#hamburger-btn {display: none;}
/* Animate to "X" when open */
#hamburger-btn.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

#hamburger-btn.open span:nth-child(2) {
    opacity: 0;
}

#hamburger-btn.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

#hamburger-btn.open {
    height: 17px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: #0F1012;
    padding: 15px 20px;
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    z-index: 999;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.mobile-menu .menu-item {
    margin-bottom: 10px;
}

.mobile-menu .menu-item:last-child {
    margin-bottom: 0;
}

/* Show mobile menu when active */
.mobile-menu.active {
    display: block;
    opacity: 1;
}

/* Hide desktop menu on small screens */
@media (max-width: 850px) {
    .desktop-menu {
        display: none;
    }
    .mobile-hamburger {
        display: block;
    }
    #hamburger-btn {
        display: flex;
    }
    .header .menu {margin-top: 0;}
    .header .sub-menu-container {
        position: static !important;
        transform: none !important;
        width: 100% !important;
    }
}


@media (min-width: 1025px) {
    .header .menu-item a:hover:before {
        opacity: 0;
    }
    .header .menu-item a:hover {
        color: #1FCDEE;
    }
}
@media (max-width: 1200px) {
    .header .grid-container {
        padding: 0 15px;
    }
    /*  .header .header__logo {
        width: max-content;
    } */
    .header .grid-x {
        justify-content: center;
    }
}

@media (max-width: 850px) {
    .header .buttons {
        position: static;
        transform: none;
        order: 2;
        padding-top: 30px;
    }
    .header .menu {
        justify-content: center;
        gap: 10px;
    }
    .header .header__logo {
        width: 50%;
    }
    .header .grid-container {
        display: flex;
        flex-direction: column;
    }
    .header .right-text-col {
        padding-right:60px;
        font-size: 15px;
    }
    .header .right-text-col br {
        display: none;
    }
}
.header .menu-item a span {
    display: flex;
    gap: 10px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.header .menu-item-has-children svg {
    width: 18px;
    height: 18px;
    transition: all 300ms;
}
.header .menu-item-has-children path {stroke:#fff;}
.header .menu-item-has-children {position: relative;}
.header .sub-menu {
    list-style: none;
    background: linear-gradient(180deg, #232527 0%, #141517 100%);
    border-radius: 10px;
    padding: 20px 20px 10px;
    overflow: hidden;
    margin: 1px;
}
.header .current-menu-parent:hover .sub-menu-container {
    max-height: 500px;
}
.header .current-menu-parent:hover svg {
    transform: rotate(180deg);
}
.header .sub-menu-container {
    width: 200px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(31, 205, 238, 0.8) 0, #9DCBFC 20%, #2B303A 52%);
    border-radius: 10px;
    overflow: hidden;
    max-height: 0;
    transition: all 300ms;
}
@media (max-width: 640px) {
    .header .right-text-col {
        padding-top: 45px;
        padding-right: 0;
        font-size: 16px;
    }
    .header .right-text-col br {
        display: block;
    }
}
body {
    background-color: #0F1012;
    color: var(--text-color);
    font-size: clamp(16px, 2vw, 19px);
}

h1 {
    font-size: clamp(35px, 5vw, 62px);
    font-weight: 500;
}

h1, h2 {
    background: linear-gradient(92.61deg, #0F1012 -7.76%, #D8D8D8 23.28%, #FFFFFF 50.86%, #D8D8D8 79.69%, #0F1012 103.55%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 30px;
}

h1 strong, h2 strong {
    background: linear-gradient(78deg, #1FCDEE 70%, #0F1012 100%), #0F1012;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-weight: 500;
}

h3 {
    font-weight: 600;
}

p strong {
    color: #fff;
}
.button {
    text-transform: capitalize !important;
    color: #0F1012;
    border: none;
    background: linear-gradient(120deg, #fff 0%, #9DCBFC 100%);
    /*box-shadow: 0px 0px 34px rgba(31, 205, 238, 0.2);*/
}
.button:before {
    top: 1px;
    left: 1px;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    border-radius: 8px;
}
.button:after {
    top: 1px;
    left: 1px;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    border-radius: 8px;
}
.button--orange {
    color: #F5F5F5;
    background: linear-gradient(155deg, #9DCBFC 0%, #9DCBFC 23%, rgba(133, 134, 135, 0.5) 75%, rgba(133, 134, 135, 0.5) 100%);
}
.button--outlined {
    color: #F5F5F5;
    box-shadow: 0px 0px 34px rgba(31, 205, 238, 0.2);
    background: linear-gradient(155deg, #9DCBFC 0%, #9DCBFC 23%, rgba(133, 134, 135, 0.5) 75%, rgba(133, 134, 135, 0.5) 100%);
}
.button--outlined:before {
    background: linear-gradient(97.03deg, #232327 53.87%, #26272C 73.18%, #282A31 92.48%);
}
.button--outlined:after {
    background: linear-gradient(120deg, #fff 0%, #9DCBFC 100%);
}
.button--outlined:hover {
    color: #0F1012;
}

.pricing-section {
    background-color: transparent;
}

.two-cards-in-row-section {
    background-color: transparent;
}