:root{
    --primary-black:#161616;
    --primary-font: "Montserrat", sans-serif;
    --secondary-font: "DM Sans", sans-serif;
    --pink-color:#B3305B;
    --purple-color:#7E249C;
    --all-trans:all 0.4s ease;
    --gray-color:#868686;
    --primary-gradient:linear-gradient(128deg, rgba(179, 48, 91, 1) 0%, rgba(127, 65, 147, 1) 100%);
}
*{
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
  }
body{
    background: var(--primary-black);
    font-family: var(--primary-font);
    padding:0;
    margin:0;
    font-size:17px;
    color:#fff;
    &.is-open{
        overflow: hidden;
    }

}
.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{
    font-family: var(--primary-font);
}
ul, li{
    list-style: none;
    padding:0;
    margin:0;
}
a{
    text-decoration: none;
}
img{
    max-width:100%;
}
.container{
    max-width:1230px;
    padding:0 15px;
    margin:auto;
}
button{
    &:focus, &:active, &:focus-visible{
        outline:none;
        box-shadow: none;
    }
}
.btn-primary{
    background: #fff;
    border-radius: 10px;
    font-size: 19px;
    display: inline-flex;
    width: fit-content;
    padding: 18px 82px;
    color: var(--primary-black);
    font-weight: 500;
    font-family: var(--secondary-font);
    transition: var(--all-trans);
    margin:35px 0 0;
    overflow: hidden;
    position: relative;
    border:1px solid rgba(255 255 255 / 0%);
    *{
        position: relative;
        z-index: 1;
    }
    &:after{
        content:'';
        background:var(--primary-gradient);
        position: absolute;
        left:0;
        top:0;
        height: 100%;
        width: 100%;
        border-radius:10px;
        opacity: 0;
        transition: var(--all-trans);
    }
    &:hover, &:focus, &:active{
        background: var(--pink-color);
        border:1px solid rgba(255 255 255 / 100%);
        color: #fff;
       &:after{
        opacity: 1;
       }

    }
}
/* header */
header{
    padding:20px 0 0;
    position: relative;
    z-index: 4;
    .hamburger{
        display:none;
    }
    nav{
        width: fit-content;
        background:#363232;
        border-radius:10px;
        padding:13px 16px;
        display:flex;
        align-items: center;
        justify-content: flex-start;
        gap:29px;
         .navbar-brand{
                    display: inline-flex;
                }
        .navbar{
            display:flex;
            gap:30px;
            align-items: center;
            .nav-list{
                 &:nth-child(1){
                  .nav-item{
                    &::before{
                        display:none;
                    }
                  }

                }
                .nav-item{
                    color:#fff;
                    font-weight: 500;
                    font-size:15px;
                    position: relative;
                    transition: var(--all-trans);
                    &:hover{
                        color:var(--pink-color);
                    }
                       &:before{
                            content: '';
                            background: rgba(255 255 255 / 12%);
                            width: 1px;
                            height: 15px;
                            position: absolute;
                            left: -15px;
                            top: 50%;
                            transform: translateY(-50%);
                       }
                }

            }
        }
    }
}
/* footer */
footer{
    padding:100px 0;
    .foot_row{
        display:flex;
        align-items: start;
        justify-content: space-between;
        p{
            margin: 0;
        }
        .foot_col_6{
            flex:0 0 50%
        }
        .foot_nav_row{
            display:flex;
            align-items: start;
            justify-content: space-between;
            .foot_nav_col{
                display:flex;
                flex-direction: column;
                gap:15px;
                align-items: flex-start;
                &:first-of-type{
                    a{
                        border-bottom:1px solid #fff;
                    }
                }
                a{
                    color:#fff;
                    font-size:17px;
                    transition: var(--all-trans);
                    display: inline-flex;
                    &:hover{
                        color: var(--pink-color);
                        border-color:var(--pink-color)
                    }
                }
            }
        }
    }
    .foot_logo{
        margin:0 0 62px;
        display: inline-flex;
    }

}
/* humburg-menu */
.hamburger {
    padding: 0px;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;

  }
  .hamburger:hover {
    opacity: 0.7;
  }
  .hamburger.is-active:hover {
    opacity: 0.7;
  }
  .hamburger.is-active .hamburger-inner,
  .hamburger.is-active .hamburger-inner::before,
  .hamburger.is-active .hamburger-inner::after {
    background-color: #fff;
  }
  .hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
  }

  .hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
  }
  .hamburger-inner,
  .hamburger-inner::before,
  .hamburger-inner::after {
    width: 30px;
    height: 3px;
    background-color: #fff;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
  }
  .hamburger-inner::before,
  .hamburger-inner::after {
    content: "";
    display: block;
  }
  .hamburger-inner::before {
    top: -10px;
  }
  .hamburger-inner::after {
    bottom: -10px;
  }

  /*
     * Collapse
     */
  .hamburger--collapse .hamburger-inner {
    top: auto;
    bottom: 0;
    transition-duration: 0.13s;
    transition-delay: 0.13s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  .hamburger--collapse .hamburger-inner::after {
    top: -20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
      opacity 0.1s linear;
  }
  .hamburger--collapse .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
      transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  .hamburger--collapse.is-active .hamburger-inner {
    transform: translate3d(0, -10px, 0) rotate(-45deg);
    transition-delay: 0.22s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  .hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
      opacity 0.1s 0.22s linear;
  }
  .hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
      transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  /* common-form-input-css */
  .form-group{
    margin:0 0 12px;
  }
  textarea.form-control{
    height: 120px;
  }
 .form-control{
    border: 0;
    border-radius:10px;
    width:100%;
    padding:12px 20px;
    resize: none;
    height: 60px;
    font-size:17px;
    font-weight: bold;
    color:#000000;
    font-family: var(--secondary-font);
    &::placeholder{
        font-size: 17px;
        font-weight: 400;
        font-family: var(--secondary-font);
        color: var(--gray-color);
    }

    &:focus-visible, &:focus{
        outline: none;
        border: 0;
    }
 }
 .nice-select{
     &.open{
        &:after{
            -webkit-transform: rotate(-180deg) !important;
            transform: rotate(-180deg) !important;
        }
     }
    }
.nice-select {
    font-size: 17px;
    font-weight: 400;
    font-family: var(--secondary-font);
    color: var(--gray-color);
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 12px 20px;
    position: relative;
    float: none;
    .current{
        &.selected-option{
            font-size: 17px;
            font-weight: bold;
            color: #000000;

        }
    }
    &:after{
        content: '';
        background-image: url(../images/arrow.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 16px 12px;
        height: 12px;
        width: 16px;
        position: absolute;
        right: 20px;
        -webkit-transition: var(--all-trans);
        transition: var(--all-trans);
        transform: rotate(0);
        border:0;
        transform-origin: inherit;
    }
    .list{
        box-shadow: 0px 4px 4px 0px #00000040;
        border-radius: 10px;
        overflow: hidden;
        width:100%;
         .option {
            height: 60px;
            display: flex;
            align-items: center;
            padding: 12px 20px;
            color:#000;
            font-family:var(--secondary-font);
            font-size:17px;
            &.disabled{
                display: none !important;
            }

        }

    }
}

/* common-box-wrapper */
.box_wrapper{
    max-width:980px;
    border-radius: 25px;
    width: 100%;
    border: 1px solid rgb(255 255 255 / 15%);
    margin: 0 auto !important;
    padding:30px !important;
    background: #FFFFFF;
    background: linear-gradient(137deg, rgba(255, 255, 255, 0.04) 0%, rgba(134, 134, 134, 0.04) 100%);
    backdrop-filter: blur(360px);
    position: relative;
     .glow-1{
                width: 116px;
                height: 197px;
                background: rgba(179 48 91 / 60%);
                filter: blur(170px);
                transform: rotate(317deg);
                position: absolute;
                left: 0;
                top: -16px;
        }
         .glow-2{
                width: 85px;
                height: 244px;
                background: linear-gradient(-137deg, #7E249C 0%, #A117CE 100%);
                filter: blur(170px);
                transform: rotate(39deg);
                position: absolute;
                left: 50%;
                top: 43px;
        }
         .glow-3{
                width: 65px;
                height: 206px;
                background: linear-gradient(-137deg, #B3305B 0%, #E62B 100%);
                filter: blur(125px);
                transform: rotate(216deg);
                position: absolute;
                right: 211px;
                bottom: 55px;
        }
         .glow-4{
                width: 116px;
                height: 197px;
                background: rgba(126 36 156 / 60%);
                filter: blur(150px);
                transform: rotate(132deg);
                position: absolute;
                right: 60px;
                bottom: 19px;
        }
    .card_wrapper{
        max-width:799px;
        margin:auto;
        position: relative;
        .card_text{
            display: flex;
            flex-direction: column;
            gap: 5px;
            margin:0 0 20px;
            strong{
                background: linear-gradient(to right, #B3305B, #7E249C);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                font-size: 22px;
                font-weight: 700;
                font-family:var(--secondary-font);
                background-clip: text;
                color: transparent;
            }
            .primary-title{
                margin:0;
                font-size:35px;
                font-weight: 900;
                font-family: var(--primary-font);
            }
            p{
                margin:0;
                font-family: var(--secondary-font);
                font-weight:400;
                font-size:22px;
            }
        }
    }
  }
  .form-btn{
    height: 60px;
    font-size: 17px;
    border-radius: 10px;
    margin: 0;
    width:100%;
    justify-content: center;
    cursor: pointer;
    background: var(--primary-gradient);
    color:#fff;
    border:0px solid rgba(255 255 255 / 0%);
    -webkit-transition: var(--all-trans);
    transition: var(--all-trans);
    font-weight: 700;
    &:hover{
        background:none;
        border:1px solid rgba(255 255 255 / 100%);
        color:#fff;
    }
}
  /* media-queries-start */
  @media (max-width:883px) {
.hero_sec {
        .scroll_arrow {
            margin-top: 10px;
        }
    }
    .hero_sec{
         margin-top:-50px;
    }
        .text-display {
        height: 150px;
    }
    header{
        padding:20px 0 0;

    }
        .benefit_sec{
            .card_row{
                flex-wrap: wrap;
                .card_item{
                    width:48%
                }
            }
        }
        .cta_sec {
            & .cta_card {
                h2 {
                    font-size: 28px;
                }
                p{
                    font-size:18px;
                }
            }
        }
        .benefit_sec {
            & .sec_heading {
                h3 {
                    font-size: 28px;
                    margin: 0 0 30px;
                }
            }
        }
        .ctav2_sec {
            height:400px;
            & .cta_card {
                h4 {
                    font-size: 28px;
                    margin: 0 0 30px;
                }
            }
        }
}
@media (max-width:767px) {
    .btn-primary{
        padding:15px 30px;
    }
    br{
        display: none;
    }
    body{
        font-size:16px;
    }
    .cta_sec {
        padding:50px 0 20px;
        & .cta_card {
            padding:30px 15px;
            h2 {
                font-size: 22px;
            }
            p{
                font-size:17px;
            }
        }
    }
    .benefit_sec {
        padding:20px 0;
        & .sec_heading {
            h3 {
                font-size: 22px;
                margin: 0 0 30px;
            }
            p{
                font-size:18px;
            }
        }
        & .card_row {
            .card_item {
                min-height: inherit;
                width: 100%;
            }
        }
    }

    .ctav2_sec {
        & .cta_card {
            h4 {
                font-size: 22px;
                margin: 0 0 30px;
            }
        }
    }

    footer {
        padding:60px 0;
        .foot_row {
            flex-direction: column;
            gap: 30px;
            .foot_nav_row {
                display: flex;
                align-items: start;
                justify-content: space-between;
                flex-direction: column;
                gap: 30px;
            }
        }
        .foot_logo{
            margin:0 0 30px;
        }
    }
}
@media (max-width:480px) {
    header{
        .hamburger{
            display:flex;
            z-index: 10;
            position: relative;
            transform: scale(0.8);
        }
        & nav {
            width:100%;
            justify-content: space-between;
            & .navbar {
                position: fixed;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                height: 100%;
                width: 100%;
                left:0;
                top:0;
                background-color: rgba(0 0 0 / 10%);
                backdrop-filter: blur(20px);
                z-index: 9;
                transform: translateY(100%);
                transition: all 0.5s ease;
                &.is-open{
                    transform: translateY(0);
                }
                & .nav-list {
                    & .nav-item {
                        &:before {
                            display:none;
                        }
                    }
                }
            }
        }
    }
}
/* box-wrapper-form */
@media (max-width:1600px) {

    .box_wrapper{
        br{
            display: block;
        }
        padding:25px 15px !important;
        .card_wrapper{
            .card_text{
                gap:2px;
                margin:0 0 10px;
            }
        }
    }
    .form-control{
        height:50px;
        padding: 12px 15px;
        border-radius:5px;
    }
    textarea.form-control{
        height: 80px;
    }
    .form-btn{
        height: 50px !important;
        border-radius: 5px;
    }
}
@media (max-width:767px) {
    .nice-select{
        &:after{
            right:15px;
        }
        .list{
            .option{
                height: 50px;
                font-size:14px;
            }
        }
    }
        textarea.form-control {
        height: 90px;
    }
    .form-btn{
        font-size:14px;
    }
    .control-label{
        font-size:16px;
    }
    .form-control{
        font-size:14px;
        &::placeholder{
            font-size:14px;
        }
    }
    .nice-select{
        .current{
            font-size:14px;
        }
    }
    .input_row_12{
        flex-wrap: wrap;
        .input_col{
            width:100%;
        }
    }
        .box_wrapper{
             br{
            display: block;
        }
            .card_wrapper{
                .card_text{
                    strong{
                        font-size:20px;
                    }
                    .primary-title{
                        font-size: 24px;
                        font-weight: 700;
                    }
                    p{
                        font-size:16px;
                    }
                }
            }
        }
}