* {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'SF Pro Display';
    font-weight: normal;
    color: #2F4364;
    background: #fff;
    overflow-x: hidden;
}

@font-face {
    font-family: 'Clash Display';
    src: url('../fonts/ClashDisplay-Medium.woff2') format('woff2'),
        url('../fonts/ClashDisplay-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('../fonts/SFProDisplay-Semibold.woff2') format('woff2'),
        url('../fonts/SFProDisplay-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('../fonts/SFProDisplay-RegularItalic.woff2') format('woff2'),
        url('../fonts/SFProDisplay-RegularItalic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('../fonts/SFProDisplay-Regular.woff2') format('woff2'),
        url('../fonts/SFProDisplay-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('../fonts/SFProDisplay-Medium.woff2') format('woff2'),
        url('../fonts/SFProDisplay-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('../fonts/SFProDisplay-Heavy.woff2') format('woff2'),
        url('../fonts/SFProDisplay-Heavy.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('../fonts/SFProDisplay-Bold.woff2') format('woff2'),
        url('../fonts/SFProDisplay-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('../fonts/SFProDisplay-Black.woff2') format('woff2'),
        url('../fonts/SFProDisplay-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
p {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    color: #000;
    font-family: 'Clash Display';
}

:focus {
    outline: none !important;
    text-decoration: none;
}


ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

iframe {
    max-width: 100%;
}

label {
    display: inline-block;
}

textarea {
    width: 100%;
    height: 130px;
    border: 1px solid rgba(8, 20, 44, 0.4);
    outline: none;
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 400;
    color: #707070;
    resize: none;
    border-radius: 5px;
    transition: 0.2s ease all;
    background: #ffffff;
}

.btns {
    font-family: 'Clash Display';
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    background-color: #095BE2;
    border-radius: 8px;
    padding: 15px 30px;
    display: inline-block;
}

.container {
    padding: 0 22px;
}

h2 {
    font-weight: 900;
    font-size: 22px;
    color: #0B2151;
}

p {
    font-size: 16px;
    line-height: 22px;
}

a:hover {
    text-decoration: none;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    color: #095BE2;
}
.btns:hover {
    color: #ededed;
    background-color: #0F9DDA;
}

@media (min-width:768px) {
    .container {
        padding: 0 30px;
    }

    h2 {
        font-size: 36px;
    }

    p {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (min-width:1200px) {
    .container {
        padding: 0 15px;
        max-width: 1200px;
    }

    .btns {
        font-size: 18px;
        padding: 15px 30px;
        line-height: 20px;
    }

    h2 {
        font-size: 46px;
    }
}


.page-header {
    padding-top: 30px;
    position: relative;
    z-index: 9;
}

.header-wrap {
    background: #DBF1FD;
    border: 1px solid #B4D4E6;
    border-radius: 12px;
    padding: 17px 20px;
}

.logo img {
    margin: 0 auto;
    display: block;
}

.right-header {
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.nav-primary ul li a {
    color: #142549;
    font-family: 'Clash Display';
    font-weight: 400;
    font-size: 16px;
}

@media (min-width: 768px) {
        
    .header-wrap {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo img {
        margin: 0;
    }

    .right-header {
        padding-top: 0;
        gap: 48px;
    }

}

@media (min-width: 1200px) {
    
    .nav-primary ul li a:hover {
        color: #095BE2;
    }
}

.masthead {
    padding: 30px 0;
}

.masthead__img {
    margin: 0 auto;
    max-width: 180px;
}

.masthead__details {
    text-align: center;
    padding-top: 20px;
}

.masthead__details h1 {
    color: #0B2151;
    font-weight: 500;
    font-size: 30px;
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 10px;
}

.masthead__details h1 span {
    font-weight: 800;
    text-transform: uppercase;
}

.masthead__details p {
    color: #2F4364;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 20px;
}

.masthead__chats {
    overflow: hidden;
    margin: 0 -25px;
    padding-top: 30px;
}

.chats {
    margin-top: 0;
    padding: 0 25px;
    display: flex;
    justify-content: flex-end;
}

.chats h3 {
    font-size: 18px;
    color: #0B2151;
    font-family: "Bree Serif", serif;
    font-weight: 400;
    margin-bottom: 5px;
}

.chats p {
    font-size: 15px;
    color: #2F4364;
    font-weight: 400;
    margin-bottom: 0;
}

.chats p span {
    display: block;
    font-family: "Bree Serif", serif;
    color: #263238;
    font-size: 16px;
}

.chats__people {
    background: #fff;
    box-shadow: 0 0 25px rgba(199,207,227,0.5);
    padding: 10px 25px;
    border-radius: 10px;
    margin-left: 30px;
    margin-bottom: 36px;
    position: relative;
    display: inline-block;
}

.chats__ai {
    background: #D3DBEE;
    padding: 10px 25px;
    border-radius: 10px;
    margin-right: 15px;
    margin-bottom: 36px;
    position: relative;
    display: inline-block;
}

.chats__img {
    position: absolute;
    right: -20px;
    bottom: -20px;
}

.chats__ai .chats__img {
    left: -20px;
}

.masthead__code {
    overflow: hidden;
    font-size: 11px;
    width: 330px;
    margin: 0 auto;
    letter-spacing: 0.1em;

}

.masthead__code img {
    width: 100%;
}

.masthead__code img.line-2 {
    margin-top: -15px;
}


@media (min-width: 1200px) {

    .masthead__content {
        position: relative;
    }
    
    .masthead {
        padding: 45px 0;
    }

    .masthead__img {
        margin: 0 auto;
        max-width: 440px;
        padding-right: 74px;
    }

    .masthead__details {
        padding-top: 0;
    }

    .masthead__details h1 {
        font-size: 76px;
        gap: 20px;
    }
    
    .masthead__details p {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .masthead__code {
        position: absolute;
        left: 0;
        top: 140px;
    }

    .masthead__chats {
        overflow: hidden;
        margin: 0 -25px;
        padding-top: 36px;
        width: 467px;
        position: absolute;
        right: 0;
        top: 0;
    }
}




/* icon-cards */

.icon-cards {
    background: #F4F7FE;
    padding: 60px 0 85px;
}

.heading {
    padding: 30px 0;
}

.dot-border {
    width: 0;
    height: 2px;
    border-top: 2px dashed #6F81A9;
    opacity: 0.3;
    margin-left: -80px;
    transition: all ease-in-out 2s;
}

.active-section .dot-border {
    width: calc(100% + 160px);
    transition: all ease-in-out 2s;
}

.row--center {
    justify-content: center;
    padding-bottom: 25px;
}

.icon-card-item {
    margin-top: 20px;
    position: relative;
}

.icon-card {
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 20px 20px;
    box-shadow: 0 0 25px rgba(199, 207, 227, 0.5);
}

.icon-card__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: #0F9DDA;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-card h4 {
    margin: 0 0 7px;
    padding: 0;
    text-align: center;
    font-size: 20px;
    line-height: 1.2em;
    color: #0B2151;
    font-family: 'SF Pro Display';
    font-weight: bold;
}

.icon-card ul {
    margin: 0 0;
    padding: 0;
}

.icon-card ul li {
    margin: 8px 0;
    padding: 8px 0 8px 42px;
    font-size: 18px;
    line-height: 1.3em;
    color: #2F4364;
    font-family: 'SF Pro Display';
    font-weight: normal;
    background: url(../img/Tick.png) 0 center no-repeat;
}


@media (min-width: 1200px) {
    .icon-card {
        padding: 25px 20px 18px;
    }
    
    .icon-card__icon {
        margin: 0 auto 20px;
    }

    .icon-card h4 {
        margin: 0 0 7px;
        font-size: 27px;
    }

    .icon-card-item::before {
        content: "";
        position: absolute;
        right: 0;
        top: -50px;
        width: 2px;
        height: 0;
        border-right: 2px dashed #6F81A9;
        opacity: 0.5;
        transition: all ease-in-out 2.5s;
    }

    .active-section .icon-card-item::before {
        height: calc(100% + 110px);
        transition: all ease-in-out 2.5s;
    }
    
    .icon-card-item:last-child:before {
        display: none;
    }
}


/* logo-slider */

.logo-slider {
    padding: 60px 0;
}

.js-logo-slider {
    padding: 25px 0;
}

.js-logo-slider .slick-slide{
    margin: 0 15px;
}

.logo-slider-item img {
    display: block;
    margin: 0 auto;
}

@media (min-width: 1200px) {
    .logo-slider {
        padding: 80px 0;
    }
}

/* tab-section  */

.tab-section {
    background: #F4F7FE;
    padding: 60px 0;
}

.tab_area {
    padding-top: 40px;
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.tabs li a {
    color: #566783;
    background: #fff;
    border-radius: 8px;
    padding: 12px 18px;
    display: block;
}

.tabs li.active a {
    background: #095BE2;
    color: #fff;
}

.tab_content {
    padding-top: 30px;
}

.tab_details h2 {
    color: #0B2151;
    font-weight: 700;
    margin-bottom: 10px;
}

.tab__chat {
    margin-top: 30px;
    background: #fff;
    box-shadow: 0 0 25px rgba(199,207,227,0.5);
    padding: 10px 25px;
    border-radius: 10px;
    margin-left: 30px;
    margin-bottom: 36px;
    position: relative;
    display: inline-block;
}

.tab__chat h3 {
    font-size: 18px;
    color: #0B2151;
    font-weight: 600;
    margin-bottom: 5px;
}

.tab__chat p {
    font-size: 15px;
    color: #2F4364;
    font-weight: 400;
    margin-bottom: 0;
}


.chat-avatar {
    position: absolute;
    left: -16px;
    bottom: -16px;
}

.tab_image {
    height: 284px;
}

.tab_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

@media (min-width: 768px) {
    .tab_area {
        display: flex;
        flex-wrap: wrap;
    }

    .tabs {
        width: 230px;
        display: block;
    }

    .tabs li {
        padding-left: 30px;
        width: 100%;
        padding-bottom: 15px;
        position: relative;
    }

    .tabs li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 1px;
        height: 100%;
        background: #105FE2;
        opacity: 0.5;
    }

    .tabs li:first-child::before {
        height: 50%;
        top: 50%;
    }

    .tabs li:last-child::before {
        height: 50%;
    }

    .tabs li::after {
        content: '';
        position: absolute;
        left: -9px;
        top: 50%;
        transform: translate(0, -50%);
        margin-top: -7.5px;
        width: 20px;
        height: 20px;
        background: #F4F7FE;
        border-radius: 50%;
        border: 1px solid rgba(16,95,226,0.5);
    }

    .tabs li:last-child {
        padding-bottom: 10px;
    }

    .tabs li.active::after,
    .tabs li.active1::after {
        border-color: #105FE2;
    }

    .tabs li.active::before,
    .tabs li.active1::before {
        opacity: 1;
    }

    .tabs li a {
        display: block;
        position: relative;
    }

    .tabs li.active a::after,
    .tabs li.active1 a::after {
        content: '';
        position: absolute;
        left: -33px;
        top: 50%;
        margin-top: 0px;
        transform: translate(0, -50%);
        width: 8px;
        height: 8px;
        background: #095BE2;
        border-radius: 50%;
        z-index: 1;
        
    } 

    .tabs li.active:last-child a::after {
        margin-top: -2px;
        
    } 

    .tab_container {
        width: calc(100% - 230px);
        padding: 0 0 0 20px;
    }

    .tab_content {
        padding: 0;
    }
}

@media (min-width: 1200px) {
    .tab_container {
        padding-left: 35px;
    }

    .tab_flex{
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .tab_image {
        width: 430px;
        height: 369px;
    }

    .tab_details {
        width: calc(100% - 430px);
        padding-right: 25px;
    }

    .tab__chat {
        margin: 45px 30px 0 20px;
        padding: 15px 22px 25px 20px;
    }

    .tab__chat p {
        font-size: 16px;
    }
}

/* page footer */


.page-footer {
    position: relative;
}

.footer-top {    
    padding: 50px 0 30px;
    text-align: center;
}

.page-footer:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: rgba(9, 91, 226, 0.2);
    filter: blur(304px);
}

.footer-logo a {
    margin: 0 auto;
    display: table;
}

.footer-bottom {
    background-color: #162D5A;
    padding: 20px 0;
}

.footer-bottom ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px 42px;
}

.footer-bottom ul li a,
.footer-bottom ul li {
    font-size: 16px;
    font-family: 'SF Pro Display';
    color: #fff;    
    font-weight: normal;
}

.footer-logo a {
    margin: 0 auto 30px;
    max-width: 250px;
    display: table;
}

.footer-social-icon {
    margin: 30px 0 0;
}

.footer-social-icon ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 30px;
}

.footer-social-icon ul li a {
    font-size: 30px;
    color: #1160E2;
} 

.footer-logo-btn {
    display: block;
    position: relative;
}

.footer-logo-btn:after {
    content: "";
    position: absolute;
    left: 0;
    width: calc(50% - 102px);
    height: 1px;
    top: 50%;
    transform: translate(0, -50%);
    background: rgb(20,40,79);
    background: linear-gradient(90deg, rgba(20,40,79,0) 0%, rgba(20,40,79,1) 100%);
}

.footer-logo-btn:before {
    content: "";
    position: absolute;
    right: 0;
    width: calc(50% - 102px);
    height: 1px;
    top: 50%;
    transform: translate(0, -50%);
    background: rgb(20,40,79);
    background: linear-gradient(270deg, rgba(20,40,79,0) 0%, rgba(20,40,79,1) 100%);
}

@media(min-width: 1200px) {
    .footer-top {
        padding: 107px 0 55px;
    }

    .footer-bottom ul li,
    .footer-bottom ul li a {
        font-size: 18px;
    }

    .footer-bottom ul {
        justify-content: flex-start;
    }

    .footer-bottom ul li:last-child {
        margin-left: auto;
    }

    .footer-social-icon {
        margin: 50px 0 0;
    }

    .footer-logo-btn:after,
    .footer-logo-btn:before {
        width: calc(50% - 125px);
    }

    .footer-social-icon ul li a:hover {
        color: #162d5a;
    }

    .footer-logo a {
        margin: 0 auto 50px;
        max-width: unset;
    }

    .footer-bottom ul li a:hover {
        color: #92bbff;
    }
}



/* case-cards */

.case-cards {
    padding: 50px 0;
}

.case-cards .heading h2 {
    line-height: 1em;
}

.case-cards .heading h2 {
    line-height: 1em;
    font-size: 30px;
    font-weight: 700;
}

.case-card-link {
    display: block;
    background-color: #fff;
    border-radius: 20px;
    padding: 10px 10px 26px;
    box-shadow: 0 0 25px rgba(199,207,227,0.5);
    font-family: 'SF Pro Display';
}

.js-case-card-slider .slick-slide {
    padding: 20px 15px;
    position: relative;
}

.js-case-card-slider {
    margin: 0 -15px 30px;
    padding: 0 0 86px;
    position: relative;
}

.js-case-card-slider:after {
    content: "";
    position: absolute;
    bottom: 81px;
    height: 1px;
    border-top: 2px dashed #6F81A9;
    left: 50%;
    width: calc(100vw - 44px);
    transform: translate(-50%, 0);
    opacity: 0.5;
    max-width: 1240px;
}

.case-card-image {
    border-radius: 15px;
    margin: 0 0 15px;
    overflow: hidden;
}

.case-card-link h3 {
    font-weight: 600;
    color: #0B2151;
    font-size: 20px;
    font-weight: 28px;
    font-family: 'SF Pro Display';
    margin: 0 0 13px;
}

.case-card-link p {
    font-weight: 500;
    line-height: 1em;
    color: #2F4364;
    font-size: 16px;
    font-weight: 28px;
    font-family: 'SF Pro Display';
}

.text-btns {
    font-size: 16px;
    color: #095BE2;
    font-weight: 600;
    font-family: 'SF Pro Display';
    background: transparent;
    padding: 0;
    border: none;
    line-height: 1em;
    margin: 15px 0 0;
}

.js-case-card-slider:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, 0);
    width: 1px;
    height: 100%;
    border-right: 2px dashed #6F81A9;
    opacity: 0.5;
}

.case-cards-top-content {
    padding: 0 22px;
    max-width: 1284px;
    margin: 0 auto;
}

@media(min-width: 768px) {
    .case-cards .heading h2 {
        font-size: 45px;
    }

    .js-case-card-slider:after {
        bottom: 76px;
    }

    .js-case-card-slider:before {
        height: calc(100% - 78px);
    }

    .js-case-card-slider .slick-track {
        display: flex;
    }

    .js-case-card-slider .slick-slide {
        height: auto;
    }

    .case-card-link {
        height: 100%;
        position: relative;
        padding: 10px 10px 57px;
    }

    .case-card-link .text-btns {
        position: absolute;
        bottom: 25px;
        left: 10px;
    }

    .case-cards {
        padding: 80px 0 50px;
    }
}

@media(min-width: 1200px) {
    .case-cards .heading h2 {
        font-size: 56px;
    }

    .js-case-card-slider:before {
        display: none;
    }
    
    .js-case-card-slider:after {
        bottom: 85px;
    }

    .js-case-card-slider .slick-slide:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 1px;
        height: 0;
        border-right: 2px dashed #6F81A9;
        opacity: 0.5;
        display: block;
        transition: all ease 0.8s;
    }

    .js-case-card-slider .slick-slide:after {
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        width: 1px;
        height: 0;
        border-right: 2px dashed #6F81A9;
        display: block;
        opacity: 0.5;
        transition: all ease 0.3s;
    }

    .js-case-card-slider .slick-slide.slick-current + .slick-active:after {
        height: 100%;
    }

    .js-case-card-slider .slick-slide.slick-current + .slick-active:before {
        height: 100%;
    }

    .case-card-link:hover {
        box-shadow: 0 0 25px rgba(132, 144, 173, 0.5);
    }
}

/* case-cards */



/* workflow */

.workflow {
    margin: 50px auto 0;
    max-width: 1360px;
    background-color: #F4F7FE;
    border-radius: 40px;
    border: 1px solid #D0D7E8;
    width: calc(100% - 44px);
    position: relative;
    padding: 30px 22px;
    overflow: hidden;
}

.workflow-col {
    position: relative;
    padding-left: 50px;
    margin: 0 0 25px;
}

.workflow-col:last-child {
    margin: 0;
}

.workflow-col p {
    font-size: 18px;
    color: #0D0C0A;
    font-weight: 500;
}

.workflow-col:before {
    content: "";
    position: absolute;
    width: 36px;
    height: 36px;
    background-color: #0B2151;
    border-radius: 50px;
    left: 0;
    top: -6px;
    opacity: 0.1;
}

.workflow-col:after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 50px;
    left: 8px;
    top: 2px;
    border: 6px solid #0B2151;
}

.workflow .heading p {
    font-size: 18px;
}

.workflow-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.workflow-wrapper {
    position: relative;
    z-index: 1;
}

.workflow-list {
    position: relative;
}

.workflow-list:after {
    content: "";
    position: absolute;
    width: 1px;
    height: calc(100% - 16px);
    border-left: 2px dashed #6F81A9;
    left: 17px;
    top: 14px;
    opacity: 0.5;
    z-index: -1;
}

.workflow .heading {
    padding: 0;
    margin: 0 0 30px;
}

@media(min-width: 768px) {
    .workflow-col p {
        font-size: 20px;
    }

    .workflow .heading p {
        font-size: 22px;
        margin: 10px 0 0;
    }

    .workflow-col {
        padding-left: calc(50% + 52px);
        margin-left: auto;
        margin-bottom: 37px;
    }

    .workflow-col:nth-child(even) {
        margin-left: unset;
        padding-left: 0;
        padding-right: calc(50% + 52px);
    }

    .workflow-col:before {
        width: 65px;
        height: 65px;
        top: -12px;
        left: 50%;
        transform: translate(-50%, 0);
    }

    .workflow-col:after {
        width: 35px;
        height: 35px;
        top: 3px;
        border: 10px solid #0B2151;
        left: 50%;
        transform: translate(-50%, 0);
    }

    .workflow-list:after {
        left: 50%;
        transform: translate(-50%, 0);
    }

    .workflow {
        padding: 50px 32px 58px;
        margin-top: 100px;
    }

    .workflow .heading {
        margin: 0 0 45px;
    }
}

@media(min-width: 1200px) {
    .workflow-col p {
        font-size: 25px;
        line-height: 33px;
    }

    .workflow .heading p {
        font-size: 26px;
    }

    .workflow .heading h2 {
        font-size: 56px;
    }

    .workflow .heading {
        margin: 0 0 70px;
    }

    .workflow-list:after {
        top: -34px;
        height: calc(100% + 33px);
    }

    .workflow .heading p {
        font-size: 35px;
    }
}


/* image-text */

.image-text {
    padding: 50px 0;
    background: #F4F7FE;
}

.image-text__col {
    padding: 20px 0 10px;
    color: #2F4364;
}

.image-text__image {
    width: 100%;
    height: 200px;
    margin-bottom: 15px;
}

.image-text__image img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 20px;
    object-fit: cover;
}

.dot-border-verticle {
    width: 100%;
    height: 2px;
    border-top: 2px dashed #6F81A9;
    opacity: 0.3;
    transition: all ease-in-out 2s;
}

.image-text__text h4 {
    margin: 0 0 15px;
    padding: 0;
    font-size: 25px;
    line-height: 1.2em;
    color: #0B2151;
    font-family: "Big Shoulders Text", sans-serif;
    font-weight: bold;
}

.image-text__text p {
    margin: 0 0 10px;
    padding: 0;
    font-size: 16px;
    line-height: 1.5em;
    color: #0B2151;
    font-family: "Syne", sans-serif;
    font-weight: normal;
}

.image-text__wrap {
    padding-top: 15px;
}

@media (min-width: 768px) {
    .image-text__col {
        display: flex;
        align-items: flex-start;
        flex-wrap: wrap;
        padding: 15px 0;
    }

    .image-text__image {
        width: 50%;
        height: 250px;
        margin-bottom: 0;
        padding-right: 20px;
    }

    .image-text__text {
        width: 50%;
        margin-bottom: 0;
        padding-left: 20px;
    }

    .image-text__col--reverse {
        flex-direction: row-reverse;
    }

    .image-text__col--reverse .image-text__image {
        padding-right: 0;
        padding-left: 20px;
    }

    .image-text__col--reverse .image-text__text {
        padding-left: 0;
        padding-right: 20px;
    }

    .border-none {
        display: none;
    }

    .image-text__col--reverse {
        padding-bottom: 30px;
    }
}

@media (min-width: 1200px) {
    .image-text__col {
        padding: 15px 0;
    }

    .image-text__image {
        height: 250px;
        padding-right: 30px;
    }

    .image-text__text {
        padding-left: 30px;
    }

    .image-text__col--reverse .image-text__image {
        padding-right: 0;
        padding-left: 30px;
    }

    .image-text__col--reverse .image-text__text {
        padding-left: 0;
        padding-right: 30px;
    }

    .image-text__col--reverse {
        padding-bottom: 40px;
    }

    .image-text__text p {
        font-size: 17px;
        line-height: 1.5em;
    }

    .image-text__text h4 {
        margin: 0 0 15px;
        font-size: 26px;
    }

    .image-text__wrap {
        padding-top: 20px;
    }
}


/* text-column */

.text-column {
    position: relative;
    padding-bottom: 50px;
    color: #2F4364;
}

.text-column__text h2,
.text-column__text p,
.text-column__btn {
    padding: 20px 0;
}

.text-column__text p {
    font-size: 18px;
    line-height: 1.5em;
}

.text-box {
    padding-top: 20px;
}

.text-box__col {
    position: relative;
    padding: 18px 20px;
    border-radius: 10px;
    min-height: 148px;
    z-index: 1;
    margin: 0 0 20px 0;
    background: linear-gradient(135deg,  #d3f7ff 0%,#ffabd8 100%);
}

.box01 {
    background: linear-gradient(135deg,  #d3f7ff 0%,#ffabd8 100%);
}

.box02 {
    background: linear-gradient(135deg,  #F9FFD3 0%,#ABFFF0 100%);
}

.box03 {
    background: linear-gradient(135deg,  #FFF0D3 0%,#FFC19E 100%);
}

.box04 {
    background: linear-gradient(135deg,  #F1E9A2 0%,#A4ED82 100%);
}

.box05 {
    background: linear-gradient(135deg,  #FFDED3 0%,#ABC8FF 100%);
}

.text-box__col h4 {
    margin: 0 0 6px;
    padding: 0;
    font-size: 25px;
    line-height: 1.2em;
    color: #0B2151;
    font-family: 'SF Pro Display';
    font-weight: bold;
}

.text-box__col p {
    margin: 0 0;
    padding: 0;
    font-size: 18px;
    line-height: 1.25em;
    color: #2F4364;
    font-family: 'SF Pro Display';
    font-weight: normal;
    position: relative;
    z-index: 2;
}

.text-box__col img {
    position: absolute;
    right: 10px;
    bottom: 10px;
}

@media (min-width: 768px) {
    .text-box {
        display: flex;
        align-items: flex-start;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 20px 10px;
    }

    .text-box__col {
        width: calc(50% - 10px);
        margin: 0;

    }

    .box05 {
        width: 100%;
        min-height: 100px;
    }

    .box03,
    .box04 {
        min-height: 124px;
    }

}

@media (min-width: 1200px) {
    .text-column {
        padding-bottom: 120px;
        padding-top: 20px;
    }

    .text-column__wrap {
        display: flex;
        align-items: flex-start;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .text-column__text {
        width: 50%;
        padding: 10px 70px 15px 0;
        position: relative;
    }

    .text-box {
        width: 50%;
        padding-left: 16px;
        padding-top: 0;
    }

    .active-section .text-column__wrap .dot-border {
        width: calc(100% + 100px);
        margin-left: -60px;
    }

    .text-column__text p {
        font-size: 20px;
    }

    .text-column__text::before {
        content: "";
        position: absolute;
        right: 60px;
        top: -25px;
        width: 2px;
        height: 0;
        border-right: 2px dashed #6F81A9;
        opacity: 0.5;
        transition: all ease-in-out 2.5s;
    }

    .active-section .text-column__text::before {
        height: calc(100% + 50px);
        transition: all ease-in-out 2.5s;
    }

    .text-column__text::after {
        content: "";
        position: absolute;
        left: -25px;
        top: -25px;
        width: 2px;
        height: 0;
        border-right: 2px dashed #6F81A9;
        opacity: 0.5;
        transition: all ease-in-out 2.5s;
    }

    .active-section .text-column__text::after {
        height: calc(100% + 50px);
        transition: all ease-in-out 2.5s;
    }

}



/* quote-form */

.quote-form {
    position: relative;
    padding: 50px 0;
    z-index: 1;
}

.quote-graphic {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
}

.quote-form__wrap {
    background: #fff;
    box-shadow: 0 10px 50px rgba(199, 207, 227, 0.60);
    padding: 15px;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.quote-form__info {
    padding: 15px 0;
}

.quote-form__info h4 {
    margin: 0 0 15px;
    padding: 0;
    font-size: 30px;
    line-height: 1.2em;
    color: #0B2151;
    font-family: 'SF Pro Display';
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.quote-form__info p {
    margin: 0 0;
    padding: 0;
    font-size: 22px;
    line-height: 1.25em;
    color: #2F4364;
    font-family: 'SF Pro Display';
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.quote-form__info ul {
    margin: 0 0;
    padding: 0;
}

.quote-form__info ul li {
    margin: 8px 0;
    padding: 8px 0 8px 42px;
    font-size: 18px;
    line-height: 1.3em;
    color: #2F4364;
    font-family: 'SF Pro Display';
    font-weight: normal;
    background: url(../img/Tick.png) 0 center no-repeat;
}

.quote-form__form {
    background: #F4F7FE;
    border-radius: 15px;
    padding: 20px;
}

.quote-form__form p {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 500;
}

.form-col {
    margin-bottom: 22px;
}

.form-col input {
    width: 100%;
    height: 44px;
    border: 1px solid rgba(111, 129, 169, 0.5);
    background: #FFFFFF;
    font-size: 16px;
    color: #6F81A9;
    line-height: 1em;
    font-weight: normal;
    margin: 0;
    padding: 0 15px;
    font-family: 'SF Pro Display';
    border-radius: 8px;
}

.form-col input:focus {
    border: 1px solid #0F9DDA;
}

.form-col input[type="submit"] {
    width: auto;
    height: 48px;
    border: none;
    background: #095BE2;
    font-size: 18px;
    color: #fff;
    line-height: 1.3em;
    font-weight: 500;
    margin: 0;
    padding: 0 30px;
    font-family: 'SF Pro Display'; 
    text-align: center;
    cursor: pointer;
    border-radius: 8px;
}

.quote-form__form .form-info p {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: normal;
}

.form-info p a {
    padding-bottom: 10px;
    color: #095BE2;
    text-decoration: underline;
    font-weight: 700;
    font-family: 'SF Pro Display'; 
}

@media (min-width: 768px) {
    .quote-form__wrap {
        padding: 15px;
    }
}

@media (min-width: 1200px) {
    .quote-form {
        padding: 80px 0;
    }

    .quote-form__wrap {
        max-width: 950px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
    }

    .quote-form__info {
        padding: 15px 20px 0 15px;
        width: 50%;
    }

    .quote-form__form {
        margin-left: 10px;
        padding: 20px;
        width: calc(50% - 10px)
    }

    .form-col input[type="submit"]:hover {
        color: #ededed;
        background-color: #0F9DDA;
    }

    .quote-graphic {
        top: -100px;
        height: 800px;
    }
}



/* .abouts */

.abouts  {
    padding: 50px 0;
}

.about-image {
    margin-top: 30px;
    height: 304px;
}

.about-image img {
    border-radius: 15px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text__top {
    font-size: 16px;
    font-weight: 400;
    background: linear-gradient(135deg,  #008aa9 0%,#ea007e 100%);
      background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 20px 0 0 0;
}

.about-text__bottom {
    font-size: 16px;
    font-weight: 400;
    background: linear-gradient(135deg,  #6A11FB 0%,#162110 100%);
      background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-chat {
    margin-top: 30px;
    background: #fff;
    box-shadow: 0 0 25px rgba(199,207,227,0.5);
    padding: 10px 25px;
    border-radius: 10px;
    margin-bottom: 36px;
    position: relative;
    display: inline-block;
    margin-left: 30px;
    margin-right: 10px;
}

.about-chat h3 {
    font-size: 18px;
    color: #0B2151;
    font-weight: 600;
    margin-bottom: 5px;
}

.about-chat p {
    font-size: 15px;
    color: #2F4364;
    font-weight: 400;
    margin-bottom: 0;
}

.about-avatar {
    position: absolute;
    right: -20px;
    bottom: -20px;
}

.about-message {
    overflow: hidden;
}

.chats {
    overflow: hidden;
}

.chats--ai {
    justify-content: flex-start;
    flex-wrap: wrap;
    position: relative;
}

.chats__ai-code {
    background: #14223A;
    padding: 10px 25px;
    border-radius: 10px;
    margin-bottom: 36px;
    position: relative;
    display: inline-block;
    height: 118px;
    width: 261px;
}

.object {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.chats__ai-code .chats__img {
    left: -20px;
}

.chats__top {
    position: absolute;
    top: 0;
    margin-right: 0;
}

@media (min-width: 768px) {

    .about-text__top {
        font-size: 22px;
    }
    
    .about-text__bottom {
        font-size: 22px;
    }
}

@media (min-width: 1200px) {
    .about-flex {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: space-between;
    }

    .about-message {
        display: block;
    }
    

    .abouts  {
        padding:80px 0;
    }
    
    .about-flex {
        padding-top: 60px;
    }

    .about-image {
        width: 545px;
        height: 500px;
        margin: 0;
    }

    .about-text {
        width: 584px;
    }

    .about-text__top {
        margin: 0;
    }

}

