@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');
:root {
    /* Fonts */

    --body-font: "IBM Plex Sans", sans-serif;

    

    /* Color */
    --primary:  #0584C7;
    --black: #161C2D;
    --white: #fff;
    --defult: #2E3136;

}

body {
    font-family: var(--body-font);
    color: var(--black);
    background-color: #fff;
}

h1,
h2,
h3 {
    font-family: var(--body-font);
    font-weight: 700;
}
p{
    font-size: 20px;
    font-weight: 400;
    line-height: 31px;
    color: #2C2B2B;
    font-family: var(--body-font);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    transition: 300ms ease-in all;
    color: var(--primary);
    text-decoration: none;
}

/* :::::::::::::::::::::::::::::::::::::::::::::
                    BOOTSTRAP
::::::::::::::::::::::::::::::::::::::::::::: */



.btn {
    text-transform: uppercase;
    font-weight: 500;
}

@media(min-width:575px) {
    .btn:not(.btn-lg) {
        font-size: 1.125rem;
        padding: 12px 28px;
        border-radius: 10px;  
    }
}

.btn-lg {
    padding-left: 1.75em;
    padding-right: 1.75em;
}




/*.input-group-lg>.btn,*/
.input-group-lg>.form-control,
.input-group-lg>.form-select,
.input-group-lg>.input-group-text {
    font-size: 0.75em;
    font-family: var(--body-font);
}
input.form-control{
    border: 1px solid #0000001A;
    padding: 6px 12px;
    height: 44px;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    border-radius: 0;
    background-color: #fff;
    color: #242E27;
    font-family: var(--body-font);
}
input.form-control.error-class {
    border-color: red;
}
input.form-control::placeholder{
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
    letter-spacing: 0.01em;
    color: #969696;
    
}
textarea.form-control{
    border: 1px solid #0000001A;
    padding: 6px 12px;
    height: 50px;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    border-radius: 0;
    background-color: #fff;
    color: #242E27;
    font-family: var(--body-font);
}
textarea.form-control::placeholder{
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
    letter-spacing: 0.01em;
    color: #969696;
}
select.form-select{
    border: 1px solid #0000001A;
    padding: 6px 12px;
    height: 44px;
    border-radius: 0;
    background-color: #fff;
    color: #242E27;
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
    letter-spacing: 0.01em;
    color: #969696;
}
select.form-select option{
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
    letter-spacing: 0.01em;
    color: #969696;
}
.form-control:focus{
    border: 1px solid #000;
    background-color: transparent;
    color: #000;
}
.form-check{
    display: flex;
    align-items: center;
    gap: 8px;
}
.form-check-input{
    width: 16px;
    height: 16px;
    margin-top: 0;
    border: 1px solid #0000001A;
}
.form-check-input:checked{
    background-color: var(--primary);
    border-color: var(--primary);;
}

.input-group-with-icon{
    position: relative;
}

.input-group-icon-1{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 10px;
    display: flex;
    align-items: center;
}
.input-group-icon-2{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 14px;
    display: flex;
    align-items: center;
}
.input-group-with-icon i{
    font-size: 22px;
    color: var(--primary);
}
.input-group-with-box{
    display: flex;
    gap: 15px
}
.input-group-with-box input{
    font-size: 24px;
    font-weight: 400;
    line-height: 24px;
    padding: 5px 20px;
    text-align: center;

}
.form-check-inline{
    display: inline-block !important;
}
 form label{
    text-align: left;
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;

}
input.form-control[type="date"]{
    color: #969696;
}
.relative {
    position: relative;
}

.max-720 {
    max-width: 720px;
}

.max-790 {
    max-width: 790px;
}

.shadow-md {
  box-shadow: 0 0.125rem 1.5rem rgba(0, 0, 0, 0.075) !important;
}
.defult-font{font-family: var(--defult-font);}
.bold-text p{
    font-weight: 700 !important;
}

.sec-title h2{
    font-family: var(--body-font);
    font-size: 48px;
    font-weight: 600;
    line-height: 57.6px;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--black);
    margin-bottom: 16px;
}
.sec-title p{
    font-family: var(--body-font);
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #2E3136;
}

.primary-btn{
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;    
    padding: 18px 42px;
    color: var(--primary);
    background-color: transparent;
    border: 1px solid var(--primary);
    text-transform: uppercase;
}
.primary-btn:hover{
    color: var(--primary) !important;
    background-color: var(--white) !important;
    border-color: var(--primary) !important;
}

.container-custom{
    max-width: 1400px;
    padding: 0 24px;
}
.container-custom.sm{
    max-width: 1200px;
}
.cs_row{
    display: flex;
}

/* :::::::::::::::::::::::::::::::::::::::::::::
                    COMMON
::::::::::::::::::::::::::::::::::::::::::::: */

/* :::::::::::::::::::::::::::::::::::::::::::::
                HEADER-START
::::::::::::::::::::::::::::::::::::::::::::: */

.header {
    background-color: #fff;
    padding: 10px 0 14px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}
.header-btn a{
    font-family: IBM Plex Sans;
    font-size: 14px;
    font-weight: 500;
    line-height: 18.2px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    padding: 16px 20px;
    color: #FFFFFF;    
    background-color: #010915;
}
 .header-btn a:hover{
    background-color: #0584C7;
    color: #fff;
}
/* :::::::::::::::::::::::::::::::::::::::::::::
                 HEADER-END
::::::::::::::::::::::::::::::::::::::::::::: */




/* :::::::::::::::::::::::::::::::::::::::::::::
                BANNER-START
::::::::::::::::::::::::::::::::::::::::::::: */

.banner{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.banner-content{
    display: flex;
    padding-top: 100px;
}
.banner .banner-text{
    width: 58%;
    padding: 184px 46px 60px 0;
}

.banner .banner-text h1{
    font-family: var(--body-font);
    font-size: 64px;
    font-weight: 600;
    line-height: 76.8px;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #fff;
    margin-bottom: 32px;
}
.banner .banner-text p{
    font-family: var(--body-font);
    font-size: 24px;
    font-weight: 400;
    line-height: 31.2px;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #fff;
}
.banner-form{
    width: 42%;
    position: relative;
}
.banner-form form{
    padding: 40px 12px;
    background-color: #fff;
    position: absolute;
    bottom: -133px;
    z-index: 10;
}
.banner-form h3{
    font-family: var(--body-font);
    font-size: 32px;
    font-weight: 600;
    line-height: 38.4px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #010915;
    margin-bottom: 36px;
}
.banner-form .submit-btn button{
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 500;
    line-height: 19.36px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #FFFFFF;
    padding: 24px;
    width: 100%;
    background-color: var(--primary);
    text-align: center;
    border-radius: 0;
    margin: 20px 0 16px;
}
.banner-form .submit-btn p{
    font-family: var(--body-font);
    font-size: 12px;
    font-weight: 400;
    line-height: 15.6px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;

}
.enquiry-modal .banner-form{
    width: 100%;
}
.enquiry-modal .banner-form form{
    position: unset;
    padding: 20px 12px;
}
.enquiry-modal .btn-close{
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 1;
}
.enquiry-modal .banner-form .submit-btn button{
    padding: 18px;
}

/* :::::::::::::::::::::::::::::::::::::::::::::
                BANNER-END
::::::::::::::::::::::::::::::::::::::::::::: */


/* :::::::::::::::::::::::::::::::::::::::::::::
             CUSTOMER-VIEW-START
::::::::::::::::::::::::::::::::::::::::::::: */

.customer-view{
    padding: 32px 0;
    background-color: #F2F4F6;
}
.customer-view-content{
    padding-left: 0;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    margin-bottom: 0;
}
.customer-view-content li{
    width: 29%;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding-right: 40px;
    border-right: 1px solid #D0D4DE;
}
.customer-view-content li:nth-child(2){
    padding-left: 40px;
    border: none;
}
.customer-view-content li h3{
    font-family: var(--body-font);
    font-size: 34px;
    font-weight: 600;
    line-height: 47.6px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #161C2D;
    margin-bottom: 0;
}
.customer-view-content li p{
    font-family: var(--body-font);
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -0.20000000298023224px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #2E3136BF;
    margin-bottom: 0;
}
.customer-view-content li:nth-child(3){
    width: 42%;
}

/* :::::::::::::::::::::::::::::::::::::::::::::
             CUSTOMER-VIEW-END
::::::::::::::::::::::::::::::::::::::::::::: */



/* :::::::::::::::::::::::::::::::::::::::::::::
             DISPLAY-BOARD-START
::::::::::::::::::::::::::::::::::::::::::::: */

.display-board{
    overflow: hidden;
    padding: 140px 0;
}
.display-board-content{
    align-items: center;
}
.display-board-content .text-content{
    padding-right: 100px;
}
.display-board-content .text-content h2{
    margin-bottom: 60px;
}
.display-board-content .text-content ul{
    margin-bottom: 0;
    list-style: none;
    padding-left: 0;
}
.display-board-content .text-content ul li{
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}
.display-board-content .text-content ul li:last-child{
    margin-bottom: 0;
}
.display-board-content .text-content ul li h3{
    font-family: var(--body-font);
    font-size: 24px;
    font-weight: 400;
    line-height: 28.8px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #010915BF;
}
.display-board-content .text ul li .icon{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #01091526
}
.display-board-content .text ul li:hover .icon{
    background-color: #F2F4F6;
}
.display-board-content .image{
    position: relative;
}
.display-board-content .image::before{
    content: "";
    position: absolute;
    left: 50px;
    right: 50px;
    top: 50px;
    bottom: 50px;
    border: 4px solid #ffffffa9;
    background: #FFFFFF40;

}
.display-board-content .image img{
    width: 100%;
}

/* :::::::::::::::::::::::::::::::::::::::::::::
             DISPLAY-BOARD-START
::::::::::::::::::::::::::::::::::::::::::::: */


/* :::::::::::::::::::::::::::::::::::::::::::::
             PRODUCT-BLOCK-START
::::::::::::::::::::::::::::::::::::::::::::: */

.product{
    overflow: hidden;
}
.product-block{
    display: flex;
}
.product-block .sec-title h2{
    font-size: 36px;
    font-weight: 600;
    line-height: 43.2px;

}
.product-block .image{
    width: 33%;
}
.product-block .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-block .sec-title{
    text-align: center;
    width: 33%;
    padding: 80px 36px;
    background-color: #F1F3F880;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.product-block .sec-title p{
    margin-bottom: 60px;
}

/* :::::::::::::::::::::::::::::::::::::::::::::
             PRODUCT-BLOCK-END
::::::::::::::::::::::::::::::::::::::::::::: */


/* :::::::::::::::::::::::::::::::::::::::::::::
            BENEFITS-START
::::::::::::::::::::::::::::::::::::::::::::: */

.benefits{
    padding: 140px 0;
}
.benefits .sec-title{
    text-align: center;
    margin-bottom: 64px;
}
.benefits .benefit-boxes{
    --bs-gutter-y: 1.5rem;
}
.benefits .benefit-box{
    height: 100%;
    padding: 32px 24px;
    border: 1px solid #0000001A;
    transition: 300ms ease-in all;
}
.benefits .benefit-box .icon{
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F2F4F6;
    margin-bottom: 28px;
}
.benefits .benefit-box h3{
    font-family: var(--body-font);
    font-size: 24px;
    font-weight: 500;
    line-height: 28.8px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #0584C7;
    margin: 28px 0 12px;
}
.benefits .benefit-box p{
    font-family: var(--body-font);
    font-family: IBM Plex Sans;
    font-size: 16px;
    font-weight: 400;
    line-height: 20.8px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #2E3136;    
    margin-bottom: 0;
}
.benefits .benefit-box:hover{
    background-color: #0584C7;
}
.benefits .benefit-box:hover h3{
    color: #fff;
}
.benefits .benefit-box:hover p{
    color: #fff;
}

/* :::::::::::::::::::::::::::::::::::::::::::::
           MULTIPLE-APPLICATION-START
::::::::::::::::::::::::::::::::::::::::::::: */


.multiple-application{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 148px 0;
    overflow: hidden;
}
.multiple-ap-content{
    display: flex;
    align-items: center;
    gap: 90px;
    justify-content: space-between;
}
.multiple-ap-content .sec-title h2{
    color: #fff;
}
.multiple-ap-content .sec-title p{
    color: #fff;
}

.multiple-ap-content .sec-title{
    width: 40%;
    padding-right: 14px;
}
.multiple-ap-content .sec-title p{
    margin: 16px 0 58px;
}
.multiple-ap-content .sec-title a.primary-btn{
    color: #fff;
    border-color: #fff;
}
.multiple-ap-content .multiple-ap-list{
    padding-left: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 43px;
    width: 60%;
}
.multiple-ap-content .multiple-ap-list li{
    width: 29%;
    text-align: center;
    background-color: #FFFFFF1A;
    padding: 36px 10px;
    border: 1px solid #FFFFFF80;
    backdrop-filter: blur(10px);
}
.multiple-ap-content .multiple-ap-list li h3{
    font-family: var(--body-font);
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #fff;
    margin-top: 8px;
    margin-bottom: 0;
}

/* :::::::::::::::::::::::::::::::::::::::::::::
           MULTIPLE-APPLICATION-END
::::::::::::::::::::::::::::::::::::::::::::: */


/* :::::::::::::::::::::::::::::::::::::::::::::
             DOMAIN-START
::::::::::::::::::::::::::::::::::::::::::::: */

.upgrade{
    padding: 140px 0 0;
}
.upgrade .sec-title{
    text-align: center;
    margin-bottom: 64px;
}
.upgrade .table-content{
    overflow-y: auto;
}
.upgrade table{
    max-width: 1080px;
    margin: 0 auto;
}
.upgrade table .uncheck,.upgrade table .check{
    width: 36px;
    height: 36px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.upgrade table .uncheck{
    background-color: #e9e9ea;
    color: #2E3136;
}
.upgrade table .check{
    background-color: #7fbfe1;
    color: #fff;
}
.upgrade table thead tr th{
    background: #E9EEF4BF;
    border-bottom: 1px solid #0000000D;
    padding-top: 25px;
    padding-bottom: 28px;
    vertical-align: middle;
    font-family: var(--body-font);
    font-size: 24px;
    font-weight: 500;
    line-height: 31.2px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #2E3136;
}
.upgrade table thead tr th:first-child{
    padding-left: 40px;
}
.upgrade table thead tr th:last-child{
    padding-right: 40px;
}
.upgrade table thead tr th:not(:first-child){
    text-align: center;
}
.upgrade table tbody tr:last-child td{
    border-bottom: none;
}
.upgrade table tbody td{
    background-color: #F8F9FBBF;
    padding-top: 20px;
    padding-bottom: 20px;
    vertical-align: middle;
    font-family: var(--body-font);
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
}
.upgrade table tbody tr td:first-child{
    padding-left: 40px;
}
.upgrade table tbody tr td:last-child{
    padding-right: 40px;
}
.upgrade table tbody tr td:not(:first-child){
    text-align: center;
}
/* :::::::::::::::::::::::::::::::::::::::::::::
             DOMAIN-START
::::::::::::::::::::::::::::::::::::::::::::: */



/* :::::::::::::::::::::::::::::::::::::::::::::
             DOMAIN-START
::::::::::::::::::::::::::::::::::::::::::::: */

.domain{
    padding: 140px 0;
}
.domain .sec-title{
    text-align: center;
    margin-bottom: 24px;
}
.domain .nav-tabs{
    justify-content: center;
    gap: 16px;
    border: none;
    margin-bottom: 80px;
}
.domain .nav-tabs .nav-item .nav-link{
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    padding: 16px 24px;
    color: #383838;
    background-color: #F4F4F4;
    border: 1px solid transparent;
    border-radius: 0;
}
.domain .nav-tabs .nav-item .nav-link.active{
    font-weight: 500;
    border-color: #0584C7;
    background-color: #fff;
}
.domain-box{
    margin: 0 18px;
}
.domain-box .image img{
    width: 100%;
}
.domain-box h3{
    font-family: var(--body-font);
    font-size: 24px;
    font-weight: 500;
    line-height: 28.8px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #0584C7;
    margin: 25px 0 12px;
}
.domain-box p{
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-bottom: 0;
}
.domain .slick-dots{
    bottom: -60px;
}
.domain .slick-dots li button:before{
    font-size: 40px;
}


/* :::::::::::::::::::::::::::::::::::::::::::::
             DOMAIN-END
::::::::::::::::::::::::::::::::::::::::::::: */




.default-accessories{
    background: #F1F3F880;
    padding: 94px 0;
    overflow: hidden;
}
.default-accessories .sec-title{
    text-align: center;
    margin-bottom: 48px;
}
.accessories-boxes .image img{
    width: 100%;
}
.accessories-boxes h3{
    font-family: var(--body-font);
    font-size: 24px;
    font-weight: 500;
    line-height: 28.8px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-top: 24px;
    margin-bottom: 0;
}





/* :::::::::::::::::::::::::::::::::::::::::::::
             TESTIMONIAL-START
::::::::::::::::::::::::::::::::::::::::::::: */

.testimonial{
    padding: 140px 0;
}
.testimonial-content{
    display: flex;
    align-items: center;
}
.testimonial-content .sec-title{
    width: 40%;
    padding-right: 76px;
}
.testimonial-block{
    width: 60%;
}
.testimonial-block .slick-track{
    padding-top: 40px;
}
.testimonial-block  .slick-arrow{
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #D0D9E9;
}
.testimonial-block  .slick-arrow::before{
    color: #0A2452;
}
.testimonial-block  .slick-prev{
    left: -66%;
    top: 72%;
}
.testimonial-block  .slick-next{
    left: -58%;
    top: 72%;
}
.testimonial-block .block{
    position: relative;
    padding: 114px 58px 65px;
    background-color: #F1F3F8;
}
.testimonial-block .icon{
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -38px;
    background-color: #fff;
    box-shadow: 0px 1px 22.3px 0px #0000000F;
}
.testimonial-block p{
    font-family: var(--body-font);
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #010915;    
    margin-bottom: 44px;
}
.testimonial-block h4{
    font-family: var(--body-font);
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #010915;    
}
.testimonial-block h4 span{
    font-weight: 600;
    margin-right: 10px;
}


/* :::::::::::::::::::::::::::::::::::::::::::::
             TESTIMONIAL-END
::::::::::::::::::::::::::::::::::::::::::::: */


/* :::::::::::::::::::::::::::::::::::::::::::::
              FOOTER-START
::::::::::::::::::::::::::::::::::::::::::::: */

footer{
    background-color: #171C26;
}
footer .upper-footer{
    padding: 56px 0 35px;
    text-align: center;
}
footer .upper-footer .footer-social{
    padding-left: 0;
    list-style: none;
    display: flex;
    gap: 20px;
    justify-content: center;
}
footer .upper-footer .footer-social li a{
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #171C26;
    background-color: #fff;
}
footer .upper-footer .footer-social li a i{
    font-size: 24px;
}
footer .bottom-footer{
    padding: 35px 0;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #FFFFFF40;
}
footer .bottom-footer h5{
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #D0D9E9;
    margin-bottom: 0;
}
footer .bottom-footer .footer-menu{
    padding-left: 0;
    list-style: none;
    display: flex;
    gap: 24px;
    margin-bottom: 0;
}
footer .bottom-footer .footer-menu li a{
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #D0D9E9;
}


/* :::::::::::::::::::::::::::::::::::::::::::::
              FOOTER-END
::::::::::::::::::::::::::::::::::::::::::::: */