@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&display=swap');

:root {
    --primary-color: #0078FF;
    --secondary-color: #00254F;
}

* {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
}

.btn {
    padding: 15px 45px;
    border-radius: 40px;
    color: #fff;
    outline: none;
    border: none;
    cursor: pointer;
}

.primary-btn {
    background-color: var(--primary-color);
}

.secondary-btn {
    background-color: var(--secondary-color);
}





.hero-section {
    width: 100%;
    /* height: 140vh; */
    height: 1030px;
    padding-top: 15px;

    /* background-color: red; */
    /* background-image: url("img/banner-bg.png"); */
    background-image: url("img/banner.png");
    /* background-size: 100% 100%; */
    background-size: 110% 110%;
    background-position: top;
    background-repeat: no-repeat;
    position: relative;
}
.hero-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    /* background-color: red; */
    background: #ffffff;
background: linear-gradient(0deg, rgba(255, 255, 255, 1) 21%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.hero-section .cloud-img {
    width: 112%;
    height: 330px;
    position: absolute;
    bottom: -100px;
    left: -6%;
    z-index: 2;
    animation: cloudDrift 6s ease-in-out infinite;
    will-change: transform, opacity;
}

@keyframes cloudDrift {
    0% {
        transform: translateX(-70px) translateY(0);
        opacity: 0.85;
    }
    50% {
        transform: translateX(70px) translateY(-18px);
        opacity: 1;
    }
    100% {
        transform: translateX(-70px) translateY(0);
        opacity: 0.85;
    }
}

.hero-section nav {
    background-color: rgba(255, 255, 255, 0.262);
    /* background-color: rgb(235, 122, 122); */
    display: flex;
    justify-content: space-between;
    gap: 50px;
    padding: 15px 20px;
    border-radius: 70px;
    width: fit-content;
    margin: 0 auto;
}

.hero-section nav .left img {
    width: 160px;
}

.hero-section nav .right {
    display: flex;
    align-items: center;
}
.hero-section nav  ul {
    display: flex;
    list-style: none;
    border-right: 1px solid #fff;
    margin-right: 30px;
    padding-right: 20px;
}

.hero-section nav  ul li a {
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 300;
    font-size: 14px;
}

.hero-section nav button {
    background-color: #fff;
    outline: none;
    border: none;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 6px 15px 6px 6px;
}

.hero-section nav button .circle {
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    border-radius: 50%;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-section nav button .circle img {
    width: 20px;
}

.hero-section .text-layer-container {
    width: 100%;
    }

.text-layer-container{

    margin-top:190px;

}



.hero-section .text-layer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70%;
    /* width: 1080px; */
    margin: 0 auto;
    position: relative;
    margin-top: 100px;
}

.text-layer .trusted {
    width: 22%;
    position: absolute;
    top: -110px;
    left: 60px;
}

.text-layer .estates {
    /* width: 100%; */
    width: 1065px;
}

.text-layer .advisor {
    width: 22%;
    position: absolute;
    right: 130px;
    bottom: -80px;
}


.marker-wrap {
    width: 48%;
    position: absolute;
    top: 18%;
    left: 50%;
    transform: translateX(-50%) scale(var(--marker-zoom, 1));
    transition: transform 0.2s ease-out;
}

.marker {
    width: 100%;
    display: block;
    transform-origin: 50% 85%;
    animation: markerFloat 2s cubic-bezier(0.45, 0, 0.55, 1) infinite;
    will-change: transform;
}

@keyframes markerFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-22px) rotate(3deg) scale(1.025);
    }
    50% {
        transform: translateY(-34px) rotate(0deg) scale(1.05);
    }
    75% {
        transform: translateY(-22px) rotate(-3deg) scale(1.025);
    }
}




.quick-cta-section{
    margin-top: 10px;
    position: relative;
    font-weight: 400;
    font-size: 20px;
    z-index: 5;
}
.quick-cta-section p {
    text-align: center;
    line-height: 60px;
    font-size: 60px;
    font-weight: 400;
    letter-spacing: -4.0px;

}

.quick-cta-section .btns {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}






.brand-line {
    margin-top: 80px;
    width: 100%;
    overflow: hidden;
}

.brand-line-track {
    display: flex;
    width: max-content;
    animation: brandSlide 22s linear infinite;
    will-change: transform;
}

@keyframes brandSlide {
    from {
        transform: translateX(-25%);
    }
    to {
        transform: translateX(0%);
    }
}

.brand-line-item {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
    padding-right: 100px;
}

.brand-line .img {
    flex: 0 0 auto;
    width: 350px;
    display: flex;
    justify-content: center;
}

.brand-line .text {
    flex: 0 0 auto;
    font-size: 6rem;
    text-transform: uppercase;
    line-height: 1;
    white-space: nowrap;
}

.brand-line .text-1 {
    color: rgba(0, 37, 79, 0.1);
    -webkit-text-stroke: 1px #000000;

}

.brand-line .text-2 {
    color: rgba(0, 120, 255, 0.1);
    -webkit-text-stroke: 1px #0078FF;
}

.brand-line .img img {
    width: 100%;
    animation: circleSpin 9s linear infinite;
    will-change: transform;
}

@keyframes circleSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}




.experience-container {
    margin-top: 50px;
}

.experience-container h4 {
    font-family: Helvetica, sans-serif;
    text-transform: uppercase;
    text-align: center;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 5px;
}

.experience-container h1 {
    text-align: center;
    font-weight: 400;
    font-size: 80px;
    width: 900px;
    margin: 30px auto;
    line-height: 80px;
    letter-spacing: -5.0px;

}

.experience-container h1 span {
    color: var(--primary-color);
}

.experience-container .boxes {
    display: flex;
    gap: 20px;
    margin-top: 100px;
    padding: 0 70px;
}

.experience-container .boxes .box {
    background-color: #fff;
    flex-basis: 33%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* padding-bottom: 120px; */
    border-radius: 20px;
    box-shadow: 0 0 25px -5px #c3c2c2;
    /* height: 200px; */
    position: relative;
    padding: 80px 60px 60px 60px;

}

/* .experience-container .boxes .box .img-container1 {
     background-image: url("img/house-sold_17745855.png");
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    padding: 30px;
    transform: translateY(-40%);
    position: absolute;
    top: 0;
} */

.experience-container .boxes .box .img-container  {
    background-image: url("img/Ellipse\ 1.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 130px;
    height: 130px;
    padding: 30px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,-50%);
}

.experience-container .boxes .box .img-container img {
    width: 65px;
    align-items: center;
    justify-content: center;
}

.experience-container .boxes .box .img-container .imgs {
    position: relative;
}

.experience-container .boxes .box .img-container .imgs img {
    /* position: absolute;
    left */
}
.experience-container .boxes .box p{

   font-size: 26px;
   padding-top: 20px;

}





.about-container .family-pic-div {
    width: 100%;
    position: relative;
    margin-top: 50px;
}

.about-container .family-pic-div .family-pic {
    width: 100%;
    display: block;
    z-index: 1;
}

.about-container .family-pic-div::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 380px;
    background: linear-gradient(to bottom,
        #fff 0%,
        rgba(255, 255, 255, 0.95) 25%,
        rgba(255, 255, 255, 0.75) 50%,
        rgba(255, 255, 255, 0.35) 75%,
        rgba(255, 255, 255, 0) 100%);
    z-index: 2;
    pointer-events: none;
}

.about-container .cap-pic {
        position: absolute;
    right: -36px;
    top: -58px;
    width: 260px;
    transform-origin: 50% 82%;
    animation: capFloat 4.5s cubic-bezier(0.45, 0, 0.55, 1) infinite;
    will-change: transform;
    transition: filter 0.3s ease;
}

.about-container .cap-pic:hover {
    animation-play-state: paused;
    filter: drop-shadow(0 18px 14px rgba(0, 0, 0, 0.25));
}

@keyframes capFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(-4deg);
    }
    50% {
        transform: translateY(-16px) rotate(0deg);
    }
    75% {
        transform: translateY(-10px) rotate(4deg);
    }
}


.about-container .about-section {
    position: relative;
    width: 90%;
    margin: -600px auto 0;
    padding: 80px 90px;
    border-radius: 110px;
    background-color: #fff;
}




.about-container .about-section h4 {
    font-family: Helvetica, sans-serif;
    text-transform: uppercase;
    
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 5px;
}

.about-container .about-section h1 {
    color:#00254F;
    font-weight: 400;
    font-size: 70px;
    margin: 12px auto 30px;
    line-height: 80px;
    letter-spacing: -5.0px;
}

.about-container .about-section h1 span {
    color: var(--primary-color);
}

.about-container .about-section .content p.bold {
    font-weight: 600;
    font-size: 24px;
}

.about-container .about-section .content p {
    margin: 30px 0;
    font-size: 24px;
}

.about-container .about-section .cards {
    display: flex;
    gap: 20px;
    padding: 0 20px;
}

.about-container .about-section .cards .card {
    flex: 1 1 0;
    min-width: 0;
    padding: 16px;
    border-radius: 60px;
    background-color: red;
    position: relative;
}

.about-container .about-section .cards .card:first-child {
    background-color: #ECECEC;
}
.about-container .about-section .cards .card:last-child {
    background-color: #E6F2FF;
}

.about-container .about-section .cards .card:last-child .content p {
    padding-bottom: 35px;
}

.about-container .about-section .cards .card .card-tag {
    position: absolute;
    top: 30px;
    right: 40px;
    background-color: #fff;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-container .about-section .cards .card .card-tag .circle {
    background-color: var(--primary-color);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
}

.about-container .about-section .cards .card .thumbnail-img {
    width: 100%;
    border-radius: 50px;
    height:450px;
    object-fit: cover;
    object-position: top;
}

.about-container .about-section .cards .card .man-pic-div {
    background-color:#005AE0;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    padding: 10px;
    border: 4px solid #fff;
    position: absolute;
    transform: translate(21px, -97px);
}

.about-container .about-section .cards .card .man-pic-div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.about-container .about-section .cards .card  .content {
    margin-top: 90px;
    padding: 0 20px;
}

.about-container .about-section .cards .card  h5 {
    font-family: Helvetica, sans-serif;
    text-transform: uppercase;
    
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.about-container .about-section .cards .card .line {
    width: 120px;
    height: 1px;
    background-color:#005AE0;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    
}
.about-container .about-section .cards .card .line .inner-line {
    width: 30%;
    height: 3px;
    background-color: var(--primary-color);
    display: block;
    transform: translateY(-3px);
}


.about-container .about-section .cards .card .tags {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    gap: 8px;
    margin-bottom: 25px;
}

.about-container .about-section .cards .card .tags .tag {
    background-color: #fff;
    font-size: 14px;
    border-radius: 30px;
    padding: 7px 10px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.about-container .about-section .cards .card .tags .tag img {
    width: 18px;
}

.about-container .about-section .cards .card button {
    width: 100%;
    text-transform: uppercase;
}



.contact-container {
    background-color: #00254F;
    display: flex;
    /* align-items: center; */
    margin-top: 20px;
    color: #fff;
}

.contact-container > div {
    flex-basis: 50%;
}

.contact-container h1{
    padding-top: 10px;
    font-weight: 300;
    font-size: 70px;
    line-height: 70px;
    letter-spacing: -4.0px;

}

.contact-container .content {
    padding: 90px 60px 90px 140px;
}

.contact-container .content h4 {

    font-family: Helvetica, sans-serif;
    text-transform: uppercase;
    
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 3px;

}

.contact-container .content .first-para {
    margin: 30px 0;
}
.contact-container .content .green {
    color: #00F422;
}


.contact-container .content button {
    margin-top: 36px;
}

.contact-container .img {
    display: flex;
    justify-content: center;
    background-image: linear-gradient(rgba(0, 37, 79, 0.7), rgba(0, 37, 79, 0.7)), url("img/home-o.png");
    /* height: 100%; */
    background-size: cover;
    background-position: center;
    position: relative;
    
}
.contact-container .img img {
    width: 400px;
    /* height: auto; */
    position: absolute;
    bottom: -4px;
}








.rating-container {
    margin-top: 100px;
    margin-bottom: 500px;
    position: relative;
    z-index: 10;
}

.rating-container > h4 {
    font-family: Helvetica, sans-serif;
    text-transform: uppercase;
    text-align: center;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 5px;
}

.rating-container > h1 {
    color:#00254F;
    text-align: center;
    font-weight: 400;
    font-size: 70px;
    line-height: 70px;
    letter-spacing: -4.0px;
    width: 1350px;
    margin: 30px auto 60px;
}

.rating-container h1 span {
    color: var(--primary-color);
}


.rating-container .cards {
    display: flex;
    gap: 20px;
    padding: 0 190px;
}

.rating-container .cards .card {
    flex-basis: 33%;
    background-color: #EBEBEB;
    border-radius: 20px;
    padding: 40px;
}

.rating-container .cards .card .top {
    display: flex;
    justify-content: space-between;
    padding: 0 40px 0 20px;
}


.rating-container .cards .card .top .img-div {
    background-color: #fff;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rating-container .cards .card .top .img-div img {
    width: 50%;
}

.rating-container .cards .card .top .rating-div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
}
.rating-container .cards .card .top .rating-div img {
    width: 30px;
}

.rating-container .cards .card .bottom {
    padding: 30px ;
    margin-top: 16px;
}

.rating-container .cards .card .bottom h1 {
    /* font-size: 45px;
    font-weight: 400; */
    font-weight: 400;
    font-size: 45px;
    line-height: 55px;
    letter-spacing: -2.0px;
    color:#00254F;
}

.rating-container .cards .card .bottom p {
    color: var(--primary-color);
}




.cta-container {
    background-color: #00254F;
    /* padding: 0 30px; */
    margin-top: 100px;
    position: relative;
    padding-top: 20px;
    background-image:
    linear-gradient(rgba(0, 37, 79, 0.7), rgba(0, 37, 79, 0.7)),
    linear-gradient(rgba(0, 37, 79, 0.7), rgba(0, 37, 79, 0.7)),
    url("img/home-o.png"), url("img/home-o.png");
    background-repeat: no-repeat, no-repeat;
    background-size: auto 100% , auto 100%;
    background-position: left center, right center;
}

.cta-container .cta-section {
    display: flex;
    background-color: #EFF7FF;
    padding: 90px;
    padding-top: 110px;
    gap: 50px;
    position: relative;
    margin: -400px auto 0;
    border-radius: 80px;
    width: 90vw;
}

.cta-container .cta-section .cap-pic {
    position: absolute;
    top: -53px;
    left: -41px;
    width: 240px;
    transform-origin: 50% 82%;
    animation: capFloatFlipped 4s cubic-bezier(0.45, 0, 0.55, 1) infinite;
    will-change: Transform;
    transition: filter 0.3s ease;
}

.cta-container .cta-section .cap-pic:hover {
    animation-play-state: paused;
    filter: drop-shadow(0 18px 14px rgba(0, 0, 0, 0.25));
}

@keyframes capFloatFlipped {
    0%, 100% {
        transform: rotateY(180deg) translateY(0) rotate(0deg);
    }
    25% {
        transform: rotateY(180deg) translateY(-10px) rotate(-3deg);
    }
    50% {
        transform: rotateY(180deg) translateY(-16px) rotate(0deg);
    }
    75% {
        transform: rotateY(180deg) translateY(-10px) rotate(3deg);
    }
}

.cta-container .cta-section > div {
    flex-basis: 50%;
}

.cta-container .cta-section .left img {
    width: 100%;
    border-radius: 40px;
}

.cta-container .cta-section .right h4 {
    font-family: Helvetica, sans-serif;
    text-transform: uppercase;
    
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.cta-container .cta-section .right h1 {
    font-size: 80px;
    line-height: 84px;
    font-weight: 400;
    letter-spacing: -5.0px;
    color: #00254F!important;
}

.cta-container .cta-section .right h1 span {
    color: var(--primary-color);
}

.cta-container .cta-section .right p {
    margin: 36px 0;
}

.cta-container .cta-section .right p.bold {
    font-weight: 700;
}

.cta-container .cta-section .right button{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 12px 12px 24px;
    gap: 14px;
}
.cta-container .cta-section .right button span {
    background-color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cta-container .cta-section .right button span img {
    width: 40%;
}


.cta-container .think-div {
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60%;
    margin: 0 auto;
    padding:  110px 0;
}

.cta-container .think-div h1 {
    font-size: 50px;
    font-weight: 400;
}

.cta-container .think-div .input-div {
    position: relative;
    width: 100%;
    margin-top: 44px;
}

.cta-container .think-div .input-div input {
    width: 100%;
    /* padding: 18px 18px; */
    border-radius: 30px;
    outline: none;
    border: none;
    padding: 18px 200px 18px 70px ;
}

.cta-container .think-div .input-div .icon {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.cta-container .think-div .input-div button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);   
}



.cta-container .menu ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 55px;
    background-color: #1A3B61;
    padding: 28px 0;
    list-style: none;
}

.cta-container .menu ul li a {
    text-decoration: none;
    color: #fff;
}






footer {
    
}

footer .footer-section {
    display: flex;
    color: #fff;
}


.footer-section .line {
    width: 120px;
    height: 1px;
    background-color: #6683A5;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 16px;
    
}
.footer-section .line .inner-line {
    width: 30%;
    height: 3px;
    background-color: #fff;
    display: block;
    transform: translateY(-3px);
}

footer .footer-section ul {
    list-style: none;
}

footer .footer-section > div {
    flex-basis: 33.33%;
    padding-block: 70px;
}

footer .footer-section .one {
    padding-inline: 70px;
    background-color: #00254F;
}

footer .footer-section .one ul li {
    margin-block: 13px;
}


.footer-section .two {
    background-color: #003169;
    padding-inline: 40px;
}

.footer-section .two .uls {
    display: flex;
}

.footer-section .two .uls > ul {
    flex-basis: 50%;
}

.footer-section .two .uls > ul li {
    margin-block: 18px;
}

.footer-section .three {
    background-color: #00254F;
    padding-inline: 30px;
}

.footer-section .row {
    display: flex;
    gap: 20px;
    margin-block: 14px;
}

.footer-section .icons {
    display: flex;
    gap: 10px;
    margin-top: 40px;
}

.footer-section .icons .icon {
    background-color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}


footer .copyright-line {
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 34px 70px;
}

footer .copyright-line p a{
    color:black;
    text-decoration: none;
}

footer .footer-menu {
    background-color: #DDDDDD;
}

footer .footer-menu ul {
    display: flex;
    justify-content: center;
    padding: 26px 0;
    list-style: none;
    /* gap: 30px; */
}

footer .footer-menu ul li {
    padding-inline: 20px;
    border-right: 1px solid #000;
}

footer .footer-menu ul li a {
    color: #000;
    text-decoration: none;
    font-size: 15px;
}
