:root {
    --primary: #5055E9;
    --hover: #39babd;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    height: 100%;
}

body {
    line-height: 1.6;
    font-size: 15px;
    font-weight: 400;
    font-family: 'Rubik', sans-serif;
    color: #424243;
    position: relative;
    background-color: #fff;
    overflow-x: hidden;
}

.dark-theme body {
    background-color: #020E23;
    color: #fff;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Rubik', sans-serif;
    color: #01081E;
    font-weight: 600;
}

a {
    text-decoration: none;
    -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

a:hover {
    color: var(--hover);
}

strong {
    font-weight: 700;
}

.btn {
    border-radius: 0;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.py-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.py-90 {
    padding-top: 90px;
    padding-bottom: 90px;
}

.py-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.py-70 {
    padding-top: 70px;
    padding-bottom: 70px;
}

.pt-50 {
    padding-top: 50px;
}

.bg-theme-color {
    background-color: var(--primary) !important;
}

.text-theme-color {
    color: var(--primary) !important;
}

.btn-light-blue {
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    background-color: #009CFF;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    display: inline-block;
    border: none;
}

.btn-blue {
    padding: 12px 25px;
    border-radius: 10rem;
    text-decoration: none;
    background-color: #4ad4b6;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    border: none;
}

.btn-blue span {
    background: url(../images/arrow-black.png) scroll no-repeat right center;
    padding: 0 3rem 0 0;
    display: block;
}

.btn-dark {
    padding: 12px 25px;
    border-radius: 10rem;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(to right top, #00071D, #0D3C4F);
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    border: none;
}

.dark-theme .btn-dark {
    background: transparent linear-gradient(93deg, rgba(0, 84, 233, 1) 0%, rgba(0, 167, 170, 1) 100%) 0% 0% no-repeat;
}

.btn-dark span {
    background: url(../images/arrow-right-blue.png) scroll no-repeat right center;
    padding: 0 3rem 0 0;
    display: block;
}

.custom-arrow-list ul {
    margin: 25px 0;
}

.custom-arrow-list ul li {
    padding: 6px 0;
    position: relative;
    padding-left: 32px;
}

.custom-arrow-list ul li:before {
    content: "\f061";
    position: absolute;
    left: 0;
    top: 10px;
    font-family: "Font Awesome 5 Free";
    font-size: 16px;
    font-weight: 900;
    color: var(--primary);
}

.custom-arrow-list ul li span {
    color: var(--primary);
}

.section-title {
    margin-bottom: 35px;
}

.section-title .main-title {
    font-size: 36px;
    font-weight: 700;
    text-transform: capitalize;
    color: #000;
}

.section-title .main-title.blue-color {
    color: #002856;
}

.section-title .main-title.text-lg {
    font-size: 52px;
}

.section-title .main-title.text-md {
    font-size: 32px;
}

.section-title .main-title.gradient-text {
    background: -webkit-linear-gradient(0deg, #3daeff 0%, #0054e9 33%, #00a7aa 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title .main-title span {
    color: rgba(0, 149, 183, 1);
}

.desktop-view {
    display: flex;
}

.owl-carousel .owl-item img {
    width: auto;
}

.owl-carousel .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 10px .2rem;
    background: 0 0;
    border-radius: 100%;
    outline: 0;
    cursor: pointer;
    border: 3px solid;
    transition: all .25s ease-in-out;
}

.owl-carousel .owl-dots .owl-dot.active span,
.owl-carousel .owl-dots .owl-dot:hover span {
    background: 0 0;
    border-color: var(--primary);
}

.owl-carousel .owl-dots .owl-dot.active span {
    border-color: var(--primary);
}

@media (max-width: 767.98px) {

    .section-title .main-title {
        font-size: 32px;
    }

    .section-title .main-title.text-lg {
        font-size: 32px;
    }
}

/*=============================================
   - Banner Section      
=============================================*/

.hero-banner {
    /*     background-size: cover; */
    color: #ffffff;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 520px;
    padding-top: 50px;
    padding-bottom: 80px;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-banner .logo-wrap {
    position: absolute;
    top: 5%;
    left: 3%;
}

.hero-banner .banner-content {
    padding-top: 80px;
}

.hero-banner .banner-content .section-title .main-title {
    color: #fff;
    font-size: 42px;
}

.hero-banner .banner-content .section-title .short-content {
    color: #fff;
    font-size: 22px;
    margin-top: 20px;
}

.hero-banner .banner-content .btn-dark {
    background: transparent linear-gradient(93deg, rgba(0, 84, 233, 1) 0%, rgba(0, 167, 170, 1) 100%) 0% 0% no-repeat;
}

.hero-banner .banner-content .btn-dark span {
    background: url(../images/arrow-black.png) scroll no-repeat right center;
    filter: brightness(0) invert(1);
}

/*=============================================
   - Banner Overlay Content Section      
=============================================*/

.banner-overlay-content {
    position: relative;
    padding-bottom: 80px;
}

.banner-overlay-content .wrap {
    background: transparent linear-gradient(86deg, #0A2F42 0%, #020E23 100%) 0% 0% no-repeat;
    border-radius: 25px;
    padding: 30px 40px;
    text-align: center;
    margin-top: -60px;
}

.banner-overlay-content .wrap p {
    color: #fff;
    margin-bottom: 0;
}

.banner-overlay-content .inner-detail {
    margin-top: 30px;
}

.banner-overlay-content .inner-detail .feature-box {
    background: transparent linear-gradient(86deg, #0A2F42 0%, #020E23 100%) 0% 0% no-repeat;
    padding: 30px 25px;
    border-radius: 25px;
    text-align: center;
    color: #fff;
}

.banner-overlay-content .inner-detail .feature-box h4 {
    color: #fff;
    margin-bottom: 20px;
}

.banner-overlay-content .inner-detail .feature-box p {
    margin-bottom: 0;
}

.dark-theme .banner-overlay-content .wrap {
    background: transparent linear-gradient(92deg, rgb(0 84 233 / 40%) 0%, rgb(0 167 170 / 40%) 100%) 0% 0% no-repeat;
}

.dark-theme .banner-overlay-content .inner-detail .feature-box {
    background: transparent linear-gradient(96deg, rgb(0 84 233 / 40%) 0%, rgb(0 167 170 / 40%) 100%) 0% 0% no-repeat;
    border: 1px solid rgb(255 255 255 / 40%);
}

/*=============================================
   - Banner Overlay Content Section  V2    
=============================================*/

.banner-overlay-content-v2 {
    position: relative;
    padding-bottom: 80px;
    background: #0A2F42 linear-gradient(46deg, #0A2F42 0%, #020E23 100%) 0% 0% no-repeat;
    z-index: 1;
}

.banner-overlay-content-v2:before {
    position: absolute;
    content: "";
    background-image: url(../images/left-tech-bg.png);
    background-repeat: no-repeat;
    background-position: top left;
    background-size: 300px;
    left: 0;
    top: 20%;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.banner-overlay-content-v2:after {
    position: absolute;
    content: "";
    background-image: url(../images/right-tech-bg.png);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 300px;
    right: 0;
    bottom: 5%;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.banner-overlay-content-v2 .wrap {
    position: relative;
    background: #0A2F42 linear-gradient(86deg, #0A2F42 0%, #020E23 100%) 0% 0% no-repeat;
    border-radius: 25px;
    padding: 30px 40px;
    margin-top: -60px;
    background-size: cover;
    background-position: center right;
    border: 2px solid #fff;
    border-width: 2px 5px 5px 1px;
    z-index: 1;
}

.banner-overlay-content-v2 .wrap h3 {
    color: #fff;
    margin-bottom: 12px;

}

.banner-overlay-content-v2 .wrap p {
    color: #fff;
    margin-bottom: 0;
}

.banner-overlay-content-v2 .key-features-list .feature-item {
    position: relative;
    border: 2px solid #2973A4;
    border-radius: 25px;
    padding: 30px 40px;
    height: 100%;
}

.banner-overlay-content-v2 .key-features-list .feature-item .icon {
    margin-bottom: 25px;
}

.banner-overlay-content-v2 .key-features-list .feature-item .icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.banner-overlay-content-v2 .key-features-list .feature-item h5 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #fff;
}

.banner-overlay-content-v2 .key-features-list .feature-item p {
    color: #fff;
    margin-bottom: 0;
}

/*=============================================
   - Benefits Section      
=============================================*/

.benefits-section {
    position: relative;
    z-index: 1;
    background-color: #061e32;
}

.benefits-section:before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: -1;
    border-radius: 0 250px 0 0;
}

.benefits-section:after {
    position: absolute;
    content: "";
    background-image: url(../images/shape-white_banner_bg.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.benefits-section .benefits-list .benefit-item .icon {
    margin-bottom: 25px;
}

.benefits-section .benefits-list .benefit-item .icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.benefits-section .benefits-list .benefit-item h5 {
    font-size: 20px;
    margin-bottom: 15px;
}

.benefits-section .benefit-contact-wrap {
    padding-top: 60px;
    position: relative;
}

.benefits-section .benefit-contact-wrap:before {
    position: absolute;
    content: "";
    background-image: url(../assets/images/middle-east.png);
    background-repeat: no-repeat;
    background-position: top left;
    background-size: contain;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 600px;
    height: 200px;
}

.benefits-section .benefit-contact-wrap .img-block {
    border-radius: 25px;
}

.benefits-section .benefit-contact-wrap .img-block img {
    border-radius: 25px;
}

@media only screen and (max-width: 767px) {
    .benefits-section:before {
        border-radius: 0 150px 0 0;
    }
}

/*=============================================
   - Secures Section      
=============================================*/

.secures-list-section {
    position: relative;
    z-index: 1;
}

.banner-overlay-content-v2:before {
    position: absolute;
    content: "";
    background-image: url(../images/shape-white_banner_bg.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.secures-list-section .step-progress strong {
    display: block;
    font-size: 22px;
    margin-bottom: 10px;
    color: #111;
}

.secures-list-section .step-progress {
    position: relative;
    padding-left: 45px;
    list-style: none;
}

.secures-list-section .step-progress::before {
    display: inline-block;
    content: '';
    position: absolute;
    top: 10px;
    left: 20px;
    width: 2px;
    height: 90%;
    border-left: 2px solid #060A3D;
}

.secures-list-section .step-progress-item {
    position: relative;
    padding-bottom: 45px;
    padding-left: 20px;
    line-height: 30px;
}

.secures-list-section .step-progress-item .content {
    background-color: #4AD4B6;
    padding: 25px 25px;
    border-radius: 20px;
    border: 1px solid #000;
    border-width: 2px 8px 8px 2px;
}

.secures-list-section .step-progress-item::after {
    content: '●';
    display: inline-block;
    position: absolute;
    top: 2px;
    left: -50px;
    width: 50px;
    height: 50px;
    font-size: 30px;
    line-height: 43px;
    text-align: center;
    color: #060A3D;
    border: 2px solid #060A3D;
    border-radius: 50%;
    background-color: #fff;
}

/*=============================================
   - Privilege Section      
=============================================*/

.privilege-section {
    position: relative;
}

.privilege-section .privilege-list .icon-box {
    width: 80px;
}

.privilege-section .privilege-list h4 {
    font-size: 20px;
}

.dark-theme .privilege-section {
    color: #f2f2f2;
}

.dark-theme .privilege-section .privilege-list h4 {
    color: #fff;
}

.dark-theme .privilege-section .shapes-wrap {
    overflow: hidden;
}

.dark-theme .privilege-section .shapes-wrap .img-1 {
    position: absolute;
    right: 0;
    bottom: 20%;
    overflow: hidden;
    width: 180px;
}

/*=============================================
   - Organization Section      
=============================================*/

.organization-section {
    position: relative;
    background: transparent linear-gradient(177deg, #00A7AA42 0%, #0054E926 100%) 0% 0% no-repeat;
}

.organization-section .organization-list .organization-block {
    border: 1px solid rgba(4, 23, 44, 0.20);
    padding: 20px 20px;
    border-radius: 25px;
    margin-bottom: 15px;
}

.organization-section .organization-list .organization-block h4 {
    font-size: 20px;
}

.organization-section .organization-list .organization-block h4 img {
    margin-right: 8px;
}

.organization-section .organization-list .organization-block p {
    margin-bottom: 0;
}

.dark-theme .organization-section {
    background: transparent linear-gradient(178deg, rgba(0, 167, 170, 0.26) 0%, rgba(0, 84, 233, 0.15) 100%) 0% 0% no-repeat;
}

.dark-theme .organization-section .organization-list .organization-block {
    background-color: rgba(4, 23, 44, 1);
}

.dark-theme .organization-section .organization-list .organization-block h4 {
    color: #fff;
}

/*=============================================
   - Challenges Section      
=============================================*/

.challenges-section {
    position: relative;
}

.challenges-section .challenges-carousel .owl-stage {
    display: flex;
}

.challenges-section .challenges-carousel .challenges-block {
    border: 1px solid #035D7D;
    padding: 20px 20px;
    border-radius: 25px;
    height: 100%;
    margin: 0 4px;
}

.challenges-section .challenges-carousel .challenges-block h4 {
    display: flex;
    font-size: 20px;
}

.challenges-section .challenges-carousel .challenges-block h4 span {
    color: #0096B6;
    opacity: 0.35;
    font-size: 52px;
    line-height: 46px;
    display: inline-block;
    margin-right: 15px;
}

.challenges-section .challenges-carousel .challenges-block p {
    margin-bottom: 0;
}

.dark-theme .challenges-section .challenges-carousel .challenges-block h4 {
    color: #fff;
}

.dark-theme .challenges-section .shapes-wrap {
    overflow: hidden;
}

.dark-theme .challenges-section .shapes-wrap .img-2 {
    position: absolute;
    right: 0;
    top: 20%;
    overflow: hidden;
    width: 280px;
}

/*=============================================
   - CTA Section      
=============================================*/

.cta-section {
    position: relative;
    z-index: 1;
}

.cta-section .content-wrap-box {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    padding: 80px 20px;
    border-radius: 1rem;
    z-index: 1;
}

/*=============================================
   - Solution Section      
=============================================*/

.solutions-section {
    position: relative;
}

.solutions-section .wrap {
    position: relative;
}

.solutions-section .wrap .icon {
    margin-bottom: 25px;
}

.solutions-section .wrap .icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.solutions-section .wrap h5 {
    font-size: 20px;
    margin-bottom: 15px;
}

.dark-theme .solutions-section .wrap h5 {
    color: #fff;
}


/*=============================================
   - Explore Section      
=============================================*/

.explore-section {
    position: relative;
    background: linear-gradient(64deg, #0A2F42 0%, #020E23 100%) 0% 0% no-repeat;
    border-radius: 250px 0 0 0;
    z-index: 1;
}

.explore-section:before {
    position: absolute;
    content: "";
    background-image: url(../images/left-tech-bg.png);
    background-repeat: no-repeat;
    background-position: top left;
    background-size: 300px;
    left: 0;
    top: 20%;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.explore-section:after {
    position: absolute;
    content: "";
    background-image: url(../images/right-tech-bg.png);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 300px;
    right: 0;
    bottom: 5%;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.explore-section .explore-box {
    border: 2px solid #0054E9;
    padding: 50px 30px;
    border-radius: 15px;
}

.explore-section .explore-box h4 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 12px;
}

.explore-section .explore-box .icon-box {
    width: 80px;
}

.explore-section .explore-box p {
    color: #fff;
}

@media only screen and (max-width: 767px) {
    .explore-section {
        border-radius: 100px 0 0 0;
    }
}

/*=============================================
   - Process Section      
=============================================*/

.process-section {
    position: relative;
    background: transparent linear-gradient(74deg, #0A2F42 0%, #020E23 100%) 0% 0% no-repeat;
    z-index: 1;
}

.process-section .process-box {
    position: relative;
    text-align: center;
    padding: 50px 20px 30px;
    height: 100%;
    margin: 0 18px;
}

.process-section .col:nth-child(odd) .process-box:before {
    position: absolute;
    content: "";
    border: 10px dotted #0054E9;
    left: -35px;
    top: -25px;
    right: -35px;
    height: 58%;
    border-radius: 100px 100px 0 0;
    border-bottom: 0;
}

.process-section .col:nth-child(even) .process-box:after {
    position: absolute;
    content: "";
    border: 10px dotted #0054E9;
    left: -35px;
    bottom: -25px;
    right: -35px;
    height: 58%;
    border-radius: 0 0 100px 100px;
    border-top: 0;
}

.process-section .process-box .inner-wrap:before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 75px;
    padding: 2px;
    background: linear-gradient(112deg, #0054E9 0%, #00A7AA 100%) 0% 0%;
    -webkit-mask: linear-gradient(#0054E9 0 0) content-box, linear-gradient(#00A7AA 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.process-section .process-box span {
    color: #00A0AF;
    display: inline-block;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.process-section .process-box h6 {
    color: #fff;
    margin-bottom: 20px;
}

.process-section .process-box {
    color: #FFF;
    margin-bottom: 0;
}

@media (max-width: 767.98px) {

    .process-section .process-box .inner-wrap:before {
        border-radius: 25px;
    }

    .process-section .col:nth-child(odd) .process-box:before {
        display: none;
    }

    .process-section .col:nth-child(even) .process-box:after {
        display: none;
    }
}

.dark-theme .process-section {
    background: transparent linear-gradient(176deg, rgba(0, 167, 170, 0.26) 0%, rgba(0, 84, 233, 0.15) 100%) 0% 0% no-repeat;
}

/*=============================================
   - Testimonials Section      
=============================================*/

.testimonials-section {
    position: relative;
}

.testimonials-section .shape .left {
    position: absolute;
    left: 5%;
    top: 0;
    width: 60px;
}

.testimonials-section .shape .right {
    position: absolute;
    right: 5%;
    top: 0;
    width: 60px;
}

.testimonials-section .testimonial-carousel .owl-stage {
    display: flex;
}

.testimonials-section .testimonial-card {
    background: transparent linear-gradient(178deg, rgba(0, 167, 170, 0.26) 0%, rgba(0, 84, 233, 0.15) 100%) 0% 0% no-repeat;
    border-radius: 50px;
    padding: 30px 30px;
    height: 100%;
}

.testimonials-section .testimonial-card .author-info {
    margin-bottom: 20px;
}

.testimonials-section .testimonial-card .author-info h6 {
    color: #020E23;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 18px;
}

.testimonials-section .testimonial-card .author-info span {
    color: rgba(0, 167, 170, 1);
}

.testimonials-section .testimonial-carousel.owl-theme .owl-nav {
    margin-top: 30px;
}

.testimonials-section .testimonial-carousel .owl-nav button.owl-next,
.testimonials-section .testimonial-carousel .owl-nav button.owl-prev {
    position: relative;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-align: center;
    background: transparent;
    cursor: pointer;
    z-index: 1;
    transition: .5s;
    border: 1px solid #020E23;
    color: #020E23;
    margin: 0 10px;
    font-size: 20px;
}

@media (max-width: 767.98px) {

    .testimonials-section .shape {
        display: none;
    }
}

.dark-theme .testimonials-section .testimonial-card {
    background: transparent linear-gradient(178deg, rgba(0, 167, 170, 0.25) 0%, rgba(0, 84, 233, 0.15) 100%) 0% 0% no-repeat;
}

.dark-theme .testimonials-section .testimonial-card .author-info h6 {
    color: #fff;
}

.dark-theme .testimonials-section .testimonial-carousel .owl-nav button.owl-next,
.dark-theme .testimonials-section .testimonial-carousel .owl-nav button.owl-prev {
    border: 1px solid #fff;
    color: #fff;
}

/*=============================================
   - Section 02 Section      
=============================================*/

.section-02 {
    position: relative;
    z-index: 1;
}

.section-02 .wrap {
    position: relative;
    background: linear-gradient(177deg, rgba(0, 167, 170, 0.26) 0%, rgba(0, 84, 233, 0.15) 100%) 0% 0%;
    padding: 50px 50px;
    border-radius: 25px;
    z-index: 1;
}

.section-02.bg-image:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    background: url(../images/bg-15.png) scroll no-repeat 0 0;
    z-index: -1;
    background-size: cover;
}

.downloads-section {
    position: relative;
    background-color: #F5F5F5;
}

.downloads-section .download-block {
    position: relative;
    background-color: #fff;
    height: 100%;
    box-shadow: 0px 10px 9.7px 0px rgba(0, 0, 0, 0.05);
}

.downloads-section .download-block .content {
    padding: 25px 20px;
}

.downloads-section .download-block .content .tag {
    background-color: rgb(0 149 183 / 10%);
    display: inline-block;
    padding: 5px 12px;
    border-radius: 25px;
    font-size: 12px;
    line-height: normal;
    margin-bottom: 12px;
    font-weight: 500;
}

.downloads-section .download-block .content h4 {
    font-size: 18px;
    font-weight: 500;
    min-height: 55px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.downloads-section .download-block .content .link {
    text-decoration: underline;
}

.downloads-section .table>:not(caption)>*>* {
    padding: 1.5rem 2.5rem;
    font-size: 18px;
    background-color: transparent;
    border: 1px solid #0095b7;
}

.downloads-section .table .download-btn {
    color: #0095b7;
}

.downloads-section .table .download-btn span {
    margin-left: 10px;
}

/* Counter */

.section-02 .counter-area {
    margin-top: 80px;
    background: transparent linear-gradient(175deg, rgb(0 167 170 / 12%) 0%, rgb(0 84 233 / 5%) 100%) 0% 0% no-repeat;
    padding: 50px 50px;
    text-align: center;
}

.section-02 .counter-area .item .count-box .count-text {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background-color: #d3d3d3;
    margin: 0 auto;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.section-02 .counter-area .item .count-box .count-text:before {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: #e8e8e8;
    border: 5px solid #fff;
    z-index: -1;
}

.section-02 .counter-area .item.style-1 .count-box .count-text {
    background-color: #d3d3d3;
}

.section-02 .counter-area .item.style-1 .count-box .count-text:before {
    background: #e8e8e8;
}

.section-02 .counter-area .item.style-2 .count-box .count-text {
    background-color: #ffc000;
}

.section-02 .counter-area .item.style-2 .count-box .count-text:before {
    background: #fdc202;
}

.section-02 .counter-area .item.style-3 .count-box .count-text {
    background-color: #155f82;
    color: #fff;
}

.section-02 .counter-area .item.style-3 .count-box .count-text:before {
    background: #0f577f;
}

.section-02 .counter-area .item.style-4 .count-box .count-text {
    background-color: #1a6025;
    color: #fff;
}

.section-02 .counter-area .item.style-4 .count-box .count-text:before {
    background: #1a6025;
}

@media (max-width: 767.98px) {

    .section-02 .wrap {
        padding: 50px 15px
    }
}

/*=============================================
   - Section CS 3 Section      
=============================================*/

.section-cs3 {
    position: relative;
}

.section-cs3 .ellipse2 {
    position: absolute;
    top: -10rem;
    left: -17rem;
}

@media only screen and (min-width: 1080px) and (max-width: 1159px) {
    .section-cs3 .ellipse2 {
        width: 20rem;
        top: -15rem;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1079px) {
    .section-cs3 .ellipse2 {
        width: 18rem;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-cs3 .ellipse2 {
        width: 18rem;
    }
}

@media only screen and (max-width: 767px) {
    .section-cs3 .ellipse2 {
        width: 8rem;
    }
}

.section-cs3 .titlewrap {
    text-align: center;
    padding: 0 0 5rem 0;
}

.section-cs3 .titlewrap h2 {
    font-size: 48px;
    background: -webkit-linear-gradient(0deg, #3daeff 0%, #0054e9 33%, #00a7aa 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

@media only screen and (max-width: 767px) {
    .section-cs3 .titlewrap h2 {
        font-size: 38px;
    }
}

.section-cs3 .titlewrap h6 {
    color: #01081e;
    font-size: 26px;
    font-weight: 500;
}

.section-cs3 .wrap .wrapin {
    background: url("../../images/bg-cs2.png") scroll no-repeat 0 0;
    background-size: cover;
    border-radius: 2rem;
    padding: 50px 50px;
    margin: 0 1rem;
}

@media only screen and (max-width: 767px) {
    .section-cs3 .wrap .wrapin {
        margin-bottom: 3rem;
    }
}

@media only screen and (max-width: 639px) {
    .section-cs3 .wrap .wrapin {
        padding: 2rem;
    }
}

.section-cs3 .wrap .wrapin h5 {
    color: #239e71;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 25px;
}

.section-cs3 .wrap .wrapin p {
    color: #030711;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

.section-cs3 .wrap .wrapin h6 {
    color: #030711;
    font-size: 22px;
    font-weight: 600;
    padding: 0 0 1rem 0;
}

.section-cs3 .wrap .wrapin ul {
    padding: 0 0 0 2rem;
}

.section-cs3 .wrap .wrapin ul li {
    list-style: disc;
    font-size: 18px;
    padding-bottom: 5px;
}

.section-cs3 .wrap .wrapin .img {
    margin: 2rem 0 0 0;
}

.section-cs3 .wrap .wrapin .img img {
    margin: 0 auto;
    display: block;
}

.section-cs3 .wrap .wrapin.wrapin2 ul li {
    font-weight: 600;
}

.section-cs3 .wrap .wrapin.wrapin2 h6 {
    font-size: 1.8rem;
    font-weight: 400;
    padding: 2rem 0 1.5rem 0;
}

/*=============================================
   - Section 04 Section
=============================================*/

.section-04 {
    position: relative;
}

.section-04 .insights-carousel .box-wrap {
    background: transparent linear-gradient(86deg, #0A2F42 0%, #020E23 100%) 0% 0% no-repeat;
    padding: 30px 25px;
    border-radius: 25px;
    color: #fff;
}

.section-04 .insights-carousel .box-wrap h4 {
    color: #fff;
    margin-bottom: 20px;
}

.section-04 .insights-carousel .box-wrap a {
    color: #39BABD;
}

/*=============================================
   - Section 03 Section      
=============================================*/

.section-03 {
    position: relative;
}

.section-03 .image-box-wrap {
    position: relative;
    background-color: #fff;
    height: 100%;
    box-shadow: 0px 10px 9.7px 0px rgba(0, 0, 0, 0.03);
}

.section-03 .image-box-wrap .img-block img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.section-03 .image-box-wrap .content {
    padding: 25px 20px 20px;
}

.section-03 .image-box-wrap .content h6 {
    margin-bottom: 20px;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.section-03 .image-box-wrap .content .download-link {
    margin-top: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: baseline;
    color: #0095b7;
    cursor: pointer;
}

.section-03 .image-box-wrap .content .download-link i {
    color: #e20707;
}

.section-03 .image-box-wrap .content p {
    margin-bottom: 0;
}

.section-03 .image-box-wrap .content p a {
    color: #00c6ff;
    text-decoration: underline;
    display: inline-block;
    font-style: italic;
}

/*=============================================
   - Enquiry Section      
=============================================*/

.section-c-07 {
    position: relative;
}

.section-c-07 .feature-box {
    position: relative;
    background: transparent linear-gradient(86deg, #0A2F42 0%, #020E23 100%) 0% 0% no-repeat;
    padding: 30px 25px;
    border-radius: 25px;
    text-align: center;
    color: #fff;
    height: 100%;
}

.section-c-07 .feature-box .icon {
    margin-bottom: 25px;
}

.section-c-07 .feature-box .icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.section-c-07 .feature-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #fff;
}

.section-c-07 .feature-box p {
    margin-bottom: 0;
    color: #fff;
}

/*=============================================
   - Section 08
=============================================*/

.section-08 {
    position: relative;
}

.section-08 .image-box-wrap .content {
    position: relative;

}

.section-08 .image-box-wrap .content h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #fff;
}

.section-08 .image-box-wrap .content p {
    margin-bottom: 0;
    color: #fff;
}

/*=============================================
   - Section 09
=============================================*/

.section-09 {
    position: relative;
}

.section-09.bg-image:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    background: url(../images/bg-18.png) scroll no-repeat 0 0;
    z-index: -1;
    background-size: cover;
}

.section-09 .wrap .inner-box {
    background: url(../../images/bg2n.png) scroll no-repeat 0 0;
    background-size: cover;
    background-position: center;
    padding: 30px 30px;
    border-radius: 30px;
    height: 100%;
}

.section-09 .wrap .inner-box .icon {
    text-align: center;
}

.section-09 .wrap .inner-box .icon img {
    width: 100px;
}

.section-09 .wrap .inner-box .content h3 {
    color: #000;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 15px;
}

.section-10 {
    position: relative;
    background: transparent linear-gradient(86deg, #0A2F42 0%, #020E23 100%) 0% 0% no-repeat;
    color: #fff;
    z-index: 1;
    overflow: hidden;
}

.section-10:before {
    content: "";
    position: absolute;
    top: -25%;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    background: url(../images/bg-16.png) scroll no-repeat 0 0;
    z-index: -1;
    background-size: cover;
}

/*=============================================
   - Section 11     
=============================================*/

.section-11 {
    position: relative;
}

.section-11:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    background: url(../images/bg-15.png) scroll no-repeat 0 0;
    z-index: -1;
    background-size: cover;
}

.section-11 .wrap .inner-box {
    position: relative;
    background: transparent linear-gradient(86deg, #0A2F42 0%, #020E23 100%) 0% 0% no-repeat;
    padding: 30px 25px;
    border-radius: 25px;
    color: #fff;
    height: 100%;
    z-index: 1;
}

.section-11 .wrap .inner-box.overlay-bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    border-radius: 25px;
    background-color: #0A2F42;
    z-index: -1;
    background-size: cover;
}

.section-11 .wrap .inner-box .content h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
}

/*=============================================
   - Section 12     
=============================================*/

.section-12 {
    position: relative;
    background: transparent linear-gradient(86deg, #0A2F42 0%, #020E23 100%) 0% 0% no-repeat;
}

.section-12 .inner-box {
    background-color: #fff;
    padding: 30px 30px;
    border-radius: 15px;
    height: 100%;
}

.section-12 .inner-box h3 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-12 .inner-box p {
    margin-bottom: 0;
}

/*=============================================
   - Section 13     
=============================================*/

.section-13 {
    position: relative;
}

.section-13:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    background: url(../images/bg-15.png) scroll no-repeat 0 0;
    z-index: -1;
    background-size: cover;
}

.section-13 .wrap {
    background: transparent linear-gradient(167deg, rgb(0 167 170 / 5%) 0%, rgb(0 84 233 / 10%) 100%) 0% 0% no-repeat;
    border-radius: 15px;
    padding: 30px 30px;
    margin-bottom: 20px;
}

.section-13 .wrap .icon-block {
    display: flex;
    align-items: center;
}

.section-13 .icon-block .icon {
    margin-right: 20px;
}

.section-13 .icon-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.section-13 .icon-block p {
    margin-bottom: 0;
}

/*=============================================
   - Section 14
=============================================*/

.section-14 {
    position: relative;
}

.section-14 .table-container .table>:not(caption)>*>* {
    padding: .6rem .8rem;
}

.section-14 .table-container .table thead th {
    background-color: #0054e9 !important;
    color: #fff;
}

/*=============================================
   - Section 15
=============================================*/

.section-15 {
    position: relative;
}

.section-15.bg-image:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    background: url(../images/bg-18.png) scroll no-repeat 0 0;
    z-index: -1;
    background-size: cover;
    background-position: top center;
}

.section-15 .wrap .inner-box {
    background: url(../../images/bg-cs2.png) scroll no-repeat 0 0;
    background-size: cover;
    background-position: center;
    padding: 30px 30px;
    border-radius: 30px;
    height: 100%;
}

.section-15 .wrap .inner-box .icon {
    text-align: center;
}

.section-15 .wrap .inner-box .icon img {
    width: 100px;
}

.section-15 .wrap .inner-box .content h3 {
    color: #000;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 15px;
}

/*=============================================
   - Section 12     
=============================================*/

.section-16 {
    position: relative;
}

.section-16 .wrap {
    background-color: #F0F6FE;
    padding: 40px 30px;
    border-radius: 15px;
}

.section-16 .wrap .icon-block .icon {
    margin-bottom: 20px;
}

.section-16 .wrap .icon-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.section-16 .wrap .icon-block p {
    margin-bottom: 0;
}

/*=============================================
   - Section 17   
=============================================*/

.section-17 {
    position: relative;
}

.section-17 .item {
    background: url(../../images/bg-cs2.png) scroll no-repeat 0 0;
    background-size: cover;
    background-position: center;
    padding: 30px 30px;
    border-radius: 30px;
    height: 100%;
}

.section-17 .item .count-outer .count-text {
    position: relative;
    font-weight: 700;
    background: -webkit-linear-gradient(#8241af, #0753e2, #024f6c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 40px;
    margin-bottom: 20px;
}

.section-17 .item .count-outer .counter-title {
    font-weight: 400;
    margin-bottom: 0;
}

/*=============================================
   - Section 18  
=============================================*/

.section-18 {
    position: relative;
}

.section-18:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    background: url(../images/bg-15.png) scroll no-repeat 0 0;
    z-index: -1;
    background-size: cover;
}

.section-18 .item {
    background-color: #fff;
    text-align: center;
    padding: 30px 30px;
    border-radius: 20px;
    box-shadow: 0px 0px 2px #3daeff;
    margin: 10px 0;
}

.section-18 .item img {
    width: 185px;
    margin: 0 auto;
    object-fit: contain;
}

/*=============================================
   - Section 19  
=============================================*/

.section-19 {
    position: relative;
}

/*=============================================
   - Enquiry Section      
=============================================*/

.enquiry-form-section {
    position: relative;
}

.enquiry-form-section .wrap {
    background: transparent linear-gradient(175deg, rgba(0, 167, 170, 0.26) 0%, rgba(0, 84, 233, 0.15) 100%) 0% 0% no-repeat;
    border-radius: 50px;
    padding: 80px 50px 50px;
}

.enquiry-form-section .wrap .leftwrap {
    position: relative;
}

.enquiry-form-section .wrap .leftwrap h6 {
    font-size: 20px;
    color: #0A2F42;
    font-weight: 700;
    margin-bottom: 10px;
}

.enquiry-form-section .wrap .leftwrap h2 {
    background: -webkit-linear-gradient(0deg, #3daeff 0%, #0054e9 33%, #00a7aa 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
}

.enquiry-form-section .wrap .enquiry-form-wrap .wpcf7-form-control,
.enquiry-form-section .wrap .enquiry-form-wrap .form-control,
.enquiry-form-section .wrap .enquiry-form-wrap .form-select {
    background-color: #ffffff;
    box-shadow: 2px 4px 15px rgba(86, 85, 233, 0.05);
    color: #A8A8A8;
    font-size: 16px;
    padding: 12px 20px;
    height: 55px;
    border: 0;
    border-radius: 0;
    margin: 0 0 1.5rem 0;
    width: 100%;
}

.enquiry-form-section .wrap .enquiry-form-wrap p {
    margin-bottom: 0;
}

@media (max-width: 767.98px) {

    .enquiry-form-section .wrap {
        padding: 50px 20px 50px;
        border-radius: 25px;
    }

    .enquiry-form-section .wrap .leftwrap h2 {
        font-size: 38px;
    }
}

.dark-theme .enquiry-form-section .wrap {
    background: transparent linear-gradient(175deg, rgba(0, 167, 170, 0.26) 0%, rgba(0, 84, 233, 0.15) 100%) 0% 0% no-repeat;
}

.dark-theme .enquiry-form-section .wrap .leftwrap h6 {
    color: #fff;
}

/*=============================================
   - Footer Section      
=============================================*/

.footer-section {
    position: relative;
    padding-bottom: 40px;
}

.footer-section .footer-logo {
    margin-bottom: 20px;
}

.footer-section .social-links {
    margin-top: 10px;
    display: inline-block;
}

.footer-section .social-links li {
    vertical-align: middle;
    display: inline-block;
    margin-right: 5px;
}

.footer-section .social-links li a {
    display: inline-block;
    font-size: 12px;
    text-align: center;
    color: #fff;
    background: #000D22;
    height: 32px;
    line-height: 32px;
    width: 32px;
    border-radius: 50%;
}

.footer-section .social-links li a:hover {
    background: var(--primary);
}

.footer-section .footer-links {
    text-align: right;
}

.footer-section .copyright {
    font-size: 14px;
}

.footer-section .footer-links a {
    font-size: 12px;
    color: #2B2E41;
    margin-right: 20px;
}

.footer-section .footer-links a:hover {
    color: var(--primary);
}

.dark-theme .footer-section .social-links li a {
    color: #020E23;
    background: #fff;
}

.dark-theme .footer-section .footer-links a {
    color: #fff;
}

@media (max-width: 767.98px) {

    .footer-section {
        text-align: center;
    }

    .footer-section .footer-links {
        text-align: center;
    }

    .footer-section .copyright {
        margin-top: 25px;
    }
}

/*=============================================
   - Case Study Section      
=============================================*/

.case-study-list {
    position: relative;
}

.case-study-wrap {
    position: relative;
}

.case-study-wrap .case-study-img {
    position: relative;
    border-radius: 30px;
}

.case-study-wrap .case-study-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 30px;
}

.case-study-wrap .overlay-content {
    position: absolute;
    background: rgb(1 8 30 / 85%);
    margin: 0 30px;
    top: 55%;
    bottom: -40px;
    border: 1px solid #010A1F;
    border-radius: 30px;
    padding: 30px;
}

.case-study-wrap.style-2 .overlay-content {
    top: 65%;
}

.case-study-wrap .overlay-content .title {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 20px;
}

.case-study-wrap.style-2 .overlay-content .title {
    font-size: 18px;
}

.case-study-wrap .overlay-content .btn-theme {
    padding: 10px 25px;
    border-radius: 10rem;
    text-decoration: none;
    background: #4ad4b6;
    color: #000000;
    font-size: 14px;
    font-weight: 500;
    width: 82%;
    display: inline-block;
    position: absolute;
    bottom: 20px;
}

.case-study-wrap .overlay-content .btn-theme span {
    background: url(../../images/img/arrow-black.png) scroll no-repeat right center;
    padding: 0 4rem 0 0;
    display: block;
}

/* CF7 */

.modal-awareness-download .wpcf7-form-control {
    background-color: #ffffff;
    box-shadow: 2px 4px 15px rgba(86, 85, 233, 0.05);
    color: #A8A8A8;
    font-size: 16px;
    padding: 12px 20px;
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 0;
    margin: 0 0 0.5rem 0;
    width: 100%;
}

/*=============================================
   - Section C 02 Section      
=============================================*/

.section-c-02 {
    position: relative;
}

.custom-phase-tab .nav-pills .nav-item {
    flex: 1;
    margin: 0 0.5rem;
}

.custom-phase-tab .nav-pills .nav-link {
    color: #01081e;
    font-size: 18px;
    border: 1px solid #c3c8d7;
    font-weight: 500;
    padding: 14px 20px;
    border-radius: 10rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.custom-phase-tab .nav-pills .nav-link.active {
    background-color: transparent;
    color: #0173d2;
    border: 1px solid #015ee3;
    box-shadow: 0px 5px 30px rgba(22, 116, 241, 0.15);
    position: relative;
}

.custom-phase-tab .nav-pills .nav-link.active:before {
    content: "";
    position: absolute;
    background: url(../images/arrow-down-blue.png) scroll no-repeat 0 0;
    width: 5rem;
    height: 5rem;
    background-size: 100% 100%;
    bottom: -3.3rem;
}


/* Title Section */
.phase-tab-content .detect-respond-box {
    background-color: #6610f2;
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
    display: inline-block;
    margin-right: 20px;
}

.phase-tab-content .txt {
    color: #6610f2;
    font-size: 18px;
    margin-right: 20px;
    margin-top: 20px;
    margin-bottom: 0;
}

.phase-tab-content .dimension-block {
    position: relative;
    padding-bottom: 20px;
    padding-top: 20px;
}

.phase-tab-content .dimension-block:before {
    position: absolute;
    content: "";
    border: 2px solid #6610f2;
    border-radius: 25px;
    height: 68%;
    top: 0;
    right: 0;
    left: 65%;
}

.phase-tab-content .dimension-block .title {
    color: #5b38d8;
    font-size: 26px;
    margin-bottom: 15px;
}

.phase-tab-content .dimension-block .title span {
    color: #1edad7;
}

.phase-tab-content .dimension-row {
    padding: 10px 10px;
    background-color: #e8e2fe;
    border-radius: 8px;
    margin-bottom: 8px;
    margin-right: 20px;
}

.dimension-row .name {
    font-weight: 500;
    font-style: italic;
    color: #000;
    margin-bottom: 0;
}

.dimension-row .custom-select {
    position: relative;
    text-align: center;
}

.dimension-row .custom-select select {
    text-align: center;
    padding: 5px 5px;
    font-size: 14px;
    font-weight: 700;
    border: 0;
    border-radius: 8px;
    background-color: #fff;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.dimension-row .custom-select select:hover {
    border-color: #aaa;
}

.phase-tab-content .result h4 span {
    color: #6610f2;
}

@media (max-width: 576.98px) {

    .custom-phase-tab .nav-pills .nav-item {
        flex: auto;
        width: 100%;
        margin-bottom: 15px;
    }

    .phase-tab-content .dimension-block:before {
        display: none;
    }

    .phase-tab-content .txt {
        margin-top: 15px;
        margin-bottom: 30px;
    }

    .phase-tab-content .dimension-block .title {
        font-size: 22px;
    }

}

/*---------------------------------------
    Faq section              
-----------------------------------------*/

.faq-section {
    position: relative;
}

.shapes-wrap {
    overflow: hidden;
}

.shapes-wrap .img-2 {
    position: absolute;
    right: 0;
    top: 20%;
    overflow: hidden;
    width: 65px;
}

.faq-section .accordion-item {
    margin-bottom: 20px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
    border: 0;
    border-radius: 16px;
}

.faq-section .accordion-item .accordion-button {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    background: none;
    padding: 15px 20px;
    border: 0;
    box-shadow: none;
}

.faq-section .accordion-item .accordion-button span {
    color: var(--primary);
    font-size: 20px;
    font-weight: 600;
    width: 40px;
}

.faq-section .accordion-item .accordion-body {
    padding: 0 40px 20px;
}

.faq-section .accordion-item .accordion-body p {
    line-height: 1.8;
    padding: 0;
}

.faq-section .accordion-item .accordion-button::after {
    background: url("../../images/arrow-down.png") scroll no-repeat 0 0;
    width: 30px;
    height: 30px;
    background-size: 100% 100%;
}

.faq-section .accordion-item .accordion-button:not(.collapsed)::after {
    background: url("../../images/arrow-up.png") scroll no-repeat 0 0;
    transform: none;
    background-size: 100% 100%;
}

.case-studies-v2-section {
    position: relative;
}

.case-studies-v2-section .wrap {
    position: relative;
}

.case-studies-v2-section .wrap .rightwrap .img img {
    border-radius: 3rem;
    max-width: 100%;
}

.case-studies-v2-section .wrap .leftwrap {
    background: url(../../images/sdp-13.png) scroll no-repeat 0 0;
    background-size: 100% 100%;
    border-radius: 2rem;
    width: 50%;
    padding: 50px 50px;
    color: #fff;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.case-studies-v2-section .wrap .leftwrap h6 {
    font-size: 30px;
    color: #4ad4b6;
    font-weight: 500;
    padding: 0 0 2rem 0;
}

@media only screen and (max-width: 767px) {

    .case-studies-v2-section .wrap .rightwrap .img img {
        border-radius: 1rem;
    }

    .case-studies-v2-section .wrap .leftwrap {
        width: calc(100% - 5rem);
        margin: 0 2rem;
        top: auto;
        margin-top: -3rem;
        padding: 25px;
        transform: none;
        position: relative;
    }
}


/*********************  START GARTNER  *************************/

/*=============================================
   - BANNER SECTION       
=============================================*/

.banner-section-v2 .owl-nav {
    position: absolute;
    bottom: 60px;
    right: 60px;
}

.banner-section-v2 .owl-nav button.owl-prev,
.banner-section-v2 .owl-nav button.owl-next {
    position: relative;
    line-height: 1em;
    margin: 0px 5px;
    display: inline-block;
    font-size: 30px;
    color: #fff;
}

.banner-section-v2 .owl-nav button.owl-prev:before {
    position: absolute;
    content: '';
    top: -10px;
    left: -25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-block;
    border: 1px solid #fff;
}

.banner-section-v2 .owl-nav button.owl-next:before {
    position: absolute;
    content: '';
    top: -10px;
    right: -25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-block;
    border: 1px solid #fff;
}

.banner-section-v2 .owl-theme .owl-nav [class*=owl-]:hover {
    background: none;
}

@media only screen and (max-width: 479px) {

    .banner-section-v2 .owl-nav {
        display: none;
    }

}

.section-g-1 {
    position: relative;
}

.section-g-1 .imgwrap {
    border: 2px solid #eee;
    border-radius: 15px;
}

.section-g-1 .content-wrap-box p {
    font-size: 24px;
}

.section-g-1 .content-wrap-box p strong {
    color: #002856;
}

@media (max-width: 767.98px) {

    .section-g-1 .imgwrap img {
        width: 100%;
    }
}

.section-g-2 {
    position: relative;
    z-index: 1;
    background-color: #fff;
}

.section-g-2:before {
    position: absolute;
    content: "";
    inset: 0;
    background-color: #002856;
    clip-path: polygon(0 25%, 100% 0%, 100% 100%, 0% 100%);
    z-index: -1;
}

.section-g-2 .image-box-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.section-g-2 .image-box-wrap img {
    width: 250px;
    margin: 0 auto;
}

.section-g-2 .image-box-wrap .info {
    background-color: #009CFF;
    display: inline-block;
    padding: 30px 30px;
    border-radius: 25px 25px 0 0;
}

.section-g-2 .image-box-wrap .info h5 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 20px;
}

.section-g-2 .image-box-wrap .info p {
    margin-bottom: 0;
    font-size: 18px;
    color: #fff;
    font-style: italic;
}

.section-g-2 .date {
    border: 2px dashed #FFFFFF;
    border-radius: 15px;
    padding: 18px 20px;
    color: #fff;
    display: inline-block;
    margin-bottom: 0;
    font-size: 20px;
}

.section-g-2 .key-highlights-list {
    position: relative;
}

.section-g-2 .key-highlights-list .owl-carousel .owl-stage {
    display: flex;
}

.section-g-2 .key-highlights-list .key-highlight-block {
    background-color: #002248;
    padding: 30px 30px;
    margin: 0 5px;
    border: 1px solid #646464;
    border-radius: 25px;
    height: 100%;
}

.section-g-2 .key-highlights-list .key-highlight-block .detail h4 {
    font-size: 20px;
    color: #fff;
    font-weight: 500;
}

@media (max-width: 767.98px) {
    .section-g-2:before {
        clip-path: polygon(0 10%, 100% 0%, 100% 100%, 0% 100%);
    }

    .section-g-2 .key-highlights-list {
        margin-top: 30px;
    }
}

.section-g-4 {
    position: relative;
    background: #002856;
    background-image: url('../images/gartner/bg-01.png');
    background-size: cover;
    background-position: center;
}

.section-g-4 .our-team-list .team-card {
    background-color: #002248;
    padding: 20px 20px;
    border: 1px solid #646464;
    border-radius: 15px;
    margin-bottom: 10px;
}

.section-g-4 .our-team-list .team-card .img img {
    width: 210px;
    border-radius: 15px;
}

.section-g-4 .our-team-list .team-card .profile-info {
    color: #fff;
}

.section-g-4 .our-team-list .team-card .profile-info h4 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 26px;
}

.section-g-4 .our-team-list .team-card .profile-info h4 span {
    font-weight: 400;
    font-size: 18px;
    margin-left: 8px;
}

@media (max-width: 767.98px) {

    .section-g-4 .our-team-list .team-card {
        text-align: center;
    }

    .section-g-4 .our-team-list .team-card .img img {
        width: 160px;
    }
}

.section-g-5 {
    position: relative;
    background-color: #009CFF;
    padding: 40px 0;
    text-align: center;
}

.section-g-5 h3 {
    color: #fff;
    font-size: 52px;
    margin-bottom: 0;
}

.section-g-6 {
    position: relative;
}

.section-g-6 .icon-box {
    position: relative;
    background-color: #DBF1FF;
    border-radius: 15px;
    padding: 30px 30px;
    height: 100%;
}

.section-g-6 [class*=col]:nth-child(1) .icon-box {
    background-color: #DBF1FF;
}

.section-g-6 [class*=col]:nth-child(2) .icon-box {
    background-color: #FFF1F1;
}

.section-g-6 [class*=col]:nth-child(3) .icon-box {
    background-color: #F6EEFF;
}

.section-g-6 .icon-box img {
    width: 75px;
    margin-bottom: 20px;
}

.section-g-7 {
    position: relative;
}

.section-g-7 .title-block {
    position: relative;
    background-color: #F6FAFF;
    border: 1px solid #002856;
    border-radius: 15px;
    padding: 22px 30px;
    text-align: center;
    height: 100%;
}

.section-g-7 .title-block .detail p {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0;
}

.section-g-8 {
    position: relative;
    background-color: #002856;
    background-image: linear-gradient(90deg, #002856 60%, #002248 0);
}

.section-g-8 .form-wrap-box .form-control,
.section-g-8 .form-wrap-box .form-select {
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #0052AF;
    padding: 20px;
    padding-left: 0;
    background-color: transparent;
    color: #fff;
    font-size: 16px;
}

.section-g-8 .form-wrap-box .form-control:focus,
.section-g-8 .form-wrap-box .form-select:focus {
    box-shadow: none;
}

.section-g-8 .form-wrap-box .form-control::placeholder {
    color: #dadada;
    opacity: 1;
}

.section-g-8 .form-wrap-box .form-control::-ms-input-placeholder {
    color: #dadada;
}

@media (max-width: 767.98px) {

    .section-g-8 {
        background-image: linear-gradient(180deg, #002856 42%, #002248 0);
    }
}


/* GARTNER VERSION 2 */

/* ------------------------
   Banner Section 
------------------------- */

.gartner-banner-section .banner-item {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    height: 100%;
    z-index: 1;
}

.gartner-banner-section .banner-item .banner-content {
    position: relative;
    padding: 40px 40px;
    color: #fff;
}

.gartner-banner-section .banner-item .banner-content:before {
    content: "";
    position: absolute;
    left: 40px;
    bottom: 25px;
    width: 40%;
    height: 1px;
    background: linear-gradient(to right, rgba(72, 219, 187, 1), rgba(255, 255, 255, 0));
}

.gartner-banner-section .banner-item .banner-content .tag {
    position: relative;
    display: inline-block;
    padding: 15px 20px;
    color: #fff;
    background: linear-gradient(94.15deg, #3EAFFF 6.46%, #48DBBB 40%, #3EAFFF 70%, #48DBBB 97.11%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gartner-banner-section .banner-item .banner-content .tag:before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 10px;
    padding: 2px;
    background: linear-gradient(145deg, #015AE6 6.46%, #FFFFFF 97.11%);
    -webkit-mask: linear-gradient(#015AE6 0 0) content-box, linear-gradient(#FFFFFF 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.gartner-banner-section .banner-item .banner-content .sub-title {
    color: rgb(255 255 255 / 70%);
    margin-top: 30px;
    font-weight: 400;
    margin-bottom: 20px;
}

.gartner-banner-section .banner-item .banner-content h1 {
    color: #fff;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 30px;
    color: #fff;
    background: linear-gradient(94.15deg, #3EAFFF 6.46%, #014BC0 40%, #48DBBB 70%, #013280 97.11%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.gartner-banner-section .banner-item .banner-content .date {
    color: rgb(255 255 255 / 70%);
    margin-top: 30px;
    font-weight: 400;
    margin-bottom: 20px;
}

.gartner-banner-section .banner-item .about-banner {
    position: relative;
    padding: 10px 40px 40px;
    color: #fff;
}


.gartner-banner-section .banner-item .about-banner h2 {
    color: #fff;
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 40px;
}

.gartner-banner-section .banner-item .about-banner p {
    color: #fff;
    margin-bottom: 0;
}

@media (max-width: 768px) {

    .gartner-banner-section .banner-item .banner-content {
        padding: 40px 20px;
        text-align: center;
    }

    .gartner-banner-section .banner-item .about-banner {
        padding: 40px 20px;
        text-align: center;
    }

    .gartner-banner-section .banner-item .banner-content:before {
        left: 0;
        right: 0;
        margin: 0 auto;
    }
}

.section-pg-01 {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center bottom;
    z-index: 1;
}

.section-pg-01:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(3, 19, 40, 0) 6.5%, #031328 88.5%);
    z-index: -1;
}

.section-pg-01:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(177.5deg, rgba(0, 42, 98, 0.8) 56.5%, rgba(1, 90, 230, 0.8) 83.5%, rgba(0, 31, 67, 0.8) 126.5%),
        linear-gradient(0deg, #031328, #031328);
    opacity: 0.5;
    z-index: -2;
}

.section-pg-01 p {
    color: #fff;
}

.section-pg-02 {
    position: relative;
    z-index: 1;
    background-color: #031328;
    overflow: hidden;
}

.section-pg-02:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/gartner-v2/bg-g-1.png);
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 0.25;
}

.section-pg-02 .wrap {
    position: relative;
    padding: 50px 50px;
    border-top: 2px solid transparent;
    border-image: linear-gradient(0.25turn, rgb(255 249 34 / 0%), rgb(72 219 187 / 60%), rgba(56, 2, 155, 0));
    border-image-slice: 1;
    width: 100%;
    z-index: 1;
}

.section-pg-02 .wrap .profile-card {
    text-align: center;
    margin-top: -110px;
    margin-bottom: 50px;
}

.section-pg-02 .wrap .profile-info {
    position: relative;
    background-color: #031328;
    border-radius: 12px;
    border: 2px solid rgb(255 255 255 / 15%);
    display: inline-flex;
    text-align: center;
    margin: 0 auto;
    align-items: center;
}

.section-pg-02 .wrap .profile-info .pic img {
    width: 107px;
    flex-shrink: 0;
    display: block;
    margin-top: -13px;

}

.section-pg-02 .wrap .profile-info .detail {
    padding: 10px 10px;
    text-align: left;
}

.section-pg-02 .wrap .profile-info .detail h4 {
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 18px;
    margin-bottom: 18px;
}

.section-pg-02 .wrap .profile-info .detail h6 {
    color: rgb(255 255 255 / 70%);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 12px;
    margin-bottom: 0;
}

.section-pg-02 .wrap .date {
    color: #3EAFFF;
    margin-bottom: 15px;
}

.section-pg-02 .wrap .img-box img {
    border-radius: 20px;
}

.section-pg-02 .wrap .key-title {
    color: #48DBBB;
    margin-bottom: 20px;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 16px;
}

.section-pg-02 .wrap .key-highlight-item {
    position: relative;
    background: rgb(255 255 255 / 5%);
    padding: 30px 30px;
    border: 2px solid rgb(255 255 255 / 15%);
    height: 100%;
}

.section-pg-02 .wrap [class*=col]:first-child .key-highlight-item {
    border-radius: 15px 0 0 15px;
}

.section-pg-02 .wrap [class*=col]:last-child .key-highlight-item {
    border-radius: 0 15px 15px 0;
}

.section-pg-02 .wrap .key-highlight-item .icon {
    margin-bottom: 20px;
}

.section-pg-02 .wrap .key-highlight-item p {
    color: #fff;
    margin-bottom: 0;
}

@media (max-width: 768px) {

    .section-pg-02 .wrap {
        padding: 50px 20px;
    }

}

.section-pg-03 {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.section-pg-03:before {
    position: absolute;
    content: "";
    top: -5px;
    right: 0;
    width: 200px;
    height: 200px;
    background-image: url(../images/gartner-v2/shape-3.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.section-pg-03 .our-team-list .owl-carousel .owl-stage {
    display: flex;
}

.section-pg-03 .our-team-list .team-card {
    position: relative;
    z-index: 1;
    background-color: rgb(255 255 255 / 12%);
    border-radius: 25px;
    border: 1px solid rgb(255 255 255 / 40%);
    padding: 30px 30px;
    height: 100%;
    overflow: hidden;
}

.section-pg-03 .our-team-list .team-card:before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    top: -40%;
    right: -40%;
    background: radial-gradient(50% 50% at 50% 50%, #A18CFF 0%, rgba(161, 140, 255, 0) 100%);
    width: 100%;
    height: 100%;
    opacity: 0.35;
}

.section-pg-03 .our-team-list .team-card .img {
    margin-bottom: 30px;
}

.section-pg-03 .our-team-list .team-card .img img{
   width: 120px;
}

.section-pg-03 .our-team-list .team-card .profile-info h4 {
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 20px;
    margin-bottom: 18px;
}

.section-pg-03 .our-team-list .team-card .profile-info h6 {
    color: rgb(255 255 255 / 70%);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 12px;
    margin-bottom: 0;
}


.section-pg-03 .our-team-list .owl-carousel {
    position: relative;
    z-index: 1;
}

.section-pg-03 .our-team-list .owl-carousel .owl-nav button.owl-prev,
.section-pg-03 .our-team-list .owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 40%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    border: 2px solid rgb(255 255 255 / 30%);
    background-color: rgb(255 255 255 / 20%);
    color: #48DBBB;
    border-radius: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: all 0.3s ease-in-out;
}

.section-pg-03 .our-team-list .owl-carousel .owl-nav button.owl-prev:hover,
.section-pg-03 .our-team-list .owl-carousel .owl-nav button.owl-next:hover {
    background-color: rgb(255 255 255 / 30%);
    color: #48DBBB;
    border: 2px solid rgb(255 255 255 / 40%);
}

.section-pg-03 .our-team-list .owl-carousel .owl-nav button.owl-prev {
    left: -5%;
}

.section-pg-03 .our-team-list .owl-carousel .owl-nav button.owl-next {
    right: -5%;
}

.section-pg-04 {
    position: relative;
    z-index: 1;
    background-color: #031328;
}

.section-pg-04 .marquee-container {
    position: relative;
    white-space: nowrap;
    width: 100%;
    z-index: 1;
    overflow: hidden;
}

.section-pg-04 .marquee-container:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/gartner-v2/pattern-1.png);
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.section-pg-04 .marquee-container .scroll-marquee-text {
    display: inline-block;
    animation: marquee 15s linear infinite;
}

.section-pg-04 .marquee-container .scroll-marquee-text img {
    width: 50px;
    margin-right: 10px;
}

.section-pg-04 .marquee-container .scroll-marquee-text h4 {
    color: #fff;
    font-size: 42px;
    display: inline-block;
    font-weight: 400;
    margin-right: 50px;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.section-pg-05 {
    position: relative;
    background-color: #fff;
    z-index: 1;
    overflow: hidden;
}

.section-pg-05:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/gartner-v2/bg-g-1.png);
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.section-pg-06 {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.section-pg-06:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 350px;
    height: 100%;
    background-image: url(../images/gartner-v2/shape-4.png);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.section-pg-06:after {
    position: absolute;
    content: "";
    top: 60%;
    right: 0;
    width: 350px;
    height: 100%;
    background-image: url(../images/gartner-v2/shape-5.png);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.section-pg-06 .overlay-pic img {
    position: absolute;
    width: 180px; /* Adjust as per your design */
}

.section-pg-06 .overlay-pic .pic-1 {
    left: 4%;
    top: 10%;
}

.section-pg-06 .overlay-pic .pic-2 {
    right: 4%;
    top: 10%;
}

.section-pg-06 .overlay-pic .pic-3 {
    left: 8%;
    bottom: 8%;
}

.section-pg-06 .overlay-pic .pic-4 {
    right: 10%;
    bottom: 8%;
}

.section-pg-06 .wrap {
    position: relative;
    background: rgb(255 255 255 / 6%);
    border-radius: 25px;
    padding: 50px 50px;
    border: 2px solid rgb(255 255 255 / 15%);
    backdrop-filter: blur(40px);
    z-index: 1;
}

.section-pg-06 .wrap .divider-line {
    margin: 0 auto;
    width: 60%;
    height: 2px;
    background: linear-gradient(to right,
        rgba(255, 255, 255, 0.01) 0%,
        rgba(255, 255, 255, 0.1) 20%,
        rgba(72, 219, 187, 0.5) 35%,
        rgba(72, 219, 187, 1) 50%,
        rgba(72, 219, 187, 0.5) 65%,
        rgba(255, 255, 255, 0.1) 80%,
        rgba(255, 255, 255, 0) 100%);
}

.section-pg-06 .wrap .item {
    position: relative;
    padding: 30px 0;
}

.section-pg-06 .wrap .item .content h5 {
    color: #fff;
    margin-bottom: 12px;
    font-weight: 500;
}

.section-pg-06 .wrap .item .content p {
    color: #fff;
    margin-bottom: 0;
}

.section-pg-06 .call-to-action{
    position: relative;
    z-index: 1;
}

.section-pg-06 .call-to-action:before{
    position: absolute;
    content: "";
    bottom: -80px;
    left: 0;
    right: 0;
    width: 100%;
    height: 260px;
    background-image: url(../images/gartner-v2/shape-7.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.section-pg-06 .call-to-action h4{
    font-size: 20px;
}

.section-pg-06 .call-to-action h4 strong {
    color: #48DBBB;
}

@media screen and (max-width: 768px) {
    .section-pg-06 .overlay-pic {
        display: none;
    }
}

.section-pg-07 {
    position: relative;
    overflow: hidden;
}

.section-pg-07:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 350px;
    height: 350px;
    background-image: url(../images/gartner-v2/shape-6.png);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.section-pg-07 .wrap {
    background-color: #fff;
    position: relative;
    z-index: 1;
    border-radius: 20px;
    padding: 50px 50px;
    overflow: hidden;
}

.section-pg-07 .wrap:before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    top: -40%;
    right: -40%;
    background: radial-gradient(50% 50% at 50% 50%, #A18CFF 0%, rgba(161, 140, 255, 0) 100%);
    width: 100%;
    height: 100%;
    opacity: 0.25;
}

.section-pg-07 .wrap .form-wrap-box {
    position: relative;
    background-color: #fff;
    padding: 30px 30px;
    border-radius: 20px;
    border: 2px solid rgb(62 175 255 / 40%);
}

.section-pg-07 .wrap ul li {
    padding: 6px 0;
    position: relative;
    padding-left: 30px;
}

.section-pg-07 .wrap ul li:before {
    content: "\f14a";
    position: absolute;
    left: 0;
    top: 5px;
    font-family: "Font Awesome 5 Free";
    font-size: 18px;
    font-weight: 900;
    color: #48DBBB;
}

@media (max-width: 768px) {

    .section-pg-07 .wrap {
        padding: 50px 20px;
    }
}

.footer-section-v2 {
    position: relative;
    z-index: 1;
    background-color: #091F3B;
    padding: 20px 0;
}

.footer-section-v2 .copyright {
    color: #fff;
    font-weight: 400;
}

.social-links {
    text-align: right;
}

.social-links a {
    color: #fff;
    display: inline-block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    background-color: rgb(62 175 255 / 20%);
    border-radius: 50%;
    text-align: center;
}

@media (max-width: 768px) {
    .social-links {
        text-align: center;
    }
}