@font-face{
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src:
        url("/fonts/Manrope/static/Manrope-Regular.ttf") format("truetype");
}
@font-face{
    font-family: "Manrope";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src:
        url("/fonts/Manrope/static/Manrope-Medium.ttf") format("truetype");
}
@font-face{
    font-family: "Manrope";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src:
        url("/fonts/Manrope/static/Manrope-SemiBold.ttf") format("truetype");
}
@font-face{
    font-family: "Manrope";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src:
        url("/fonts/Manrope/static/Manrope-Bold.ttf") format("truetype");
}

body{
    font-family: "Manrope";
    color: #2b2b2b;
}
.container-xl{
    padding-left: 100px;
    padding-right: 100px;
}
.container-fluid>.container-xl{
    padding-top: 25px;
    padding-bottom: 25px;
}
ul{
    list-style: none;
    padding-left: 0;
}
.btn_blue{
    text-decoration: none;
    font-weight: 800;
    transition-duration: .3s;
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    position: relative;
    height: 60px;
    font-size: 1.15rem;
     -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(to right top, #001BA0, #00C9EC);
    color: #fff;
    transition-duration: .3s;
    background-size: auto 140%;
    background-position: 0 100%;
}
.btn_blue:hover {
    color: #fff;
    text-decoration: none;
    background-position: 0 0;
    background-color: rgba(0, 201, 236, .9);
}
.top-bar{
    background-color: #fff;
    padding-top: 6px;
    padding-bottom: 6px;
    border-bottom: 1px solid whitesmoke;
}
.top-bar ul{
    font-size: 14px;
    display: flex;
    align-items: center;
    margin-bottom: 0; 
}
.top-bar ul li{
    display: flex;
    align-items: center;
}
.top-bar ul li i{
    margin-right: 5px;
}
.top-bar ul li a{
    text-decoration: none;
    color: #2b2b2b;
}
header.container-fluid{
    background-color: #fff;
    padding-top: 12px;
    padding-bottom: 12px;
}
header.container-fluid #dsk-logo svg{
    width: 120px;
}
header.container-fluid #dsk-logo svg path:not(:last-of-type),
header.container-fluid #dsk-logo svg rect {
    fill: #171717;
}
#dsk-menu-voices li a{
    color: #2b2b2b;
    text-decoration: none;
}
#dsk-menu-voices li>a{
    padding: 20px;
}
.top-bar li a:hover,
#dsk-menu-voices li a:hover{
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: #024be2;
}
.lang {
    position: relative;
    cursor: pointer;
    z-index: 1000;
    perspective: 2000px;
    padding-left: 17px;
}
.lang label {
    cursor: pointer;
}
.lang #lang_picker {
    position: absolute;
    top: 20px;
    right: 0;
    opacity: 0;
    transform: rotateX(-15deg);
    transition-duration: .3s;
    pointer-events: none;
    padding-top: 10px;
}
.lang.open #lang_picker {
    opacity: 1;
    transform: rotateX(0);
    pointer-events: auto;
}
.lang #lang_picker .lang_wrapper {
    box-shadow: 0 0 10px rgba(0, 120, 201, .35);
    padding: 15px 25px;
    background-color: #fff;
}
.lang #lang_picker .lang_wrapper a {
    display: flex;
    margin-bottom: 10px;
    color: #2b2b2b;
}
.lang #lang_picker .lang_wrapper a span {
    margin-right: 10px;
}
#mob-menu > .row {
        padding-left: 112px;
        padding-right: 112px;
        align-items: center;
        height: 100dvh;
        z-index: 15;
        position: relative;
}
 #mob-menu .mobile_menu_wrapper {
        background-color: #fff;
        overflow: scroll;
        width: 420px;
        transform: translateX(740px);
        height: 100dvh;
        position: fixed;
        right: 0;
        z-index: 99999;
        top: 0;
        bottom: 0;
        transition: 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99);
        flex-direction: column;
        padding: 56px;
        padding-bottom: 0;
        padding-top: 90px;
}
.open_mobile_menu {
    cursor: pointer;
    height: 25px;
    display: flex;
    align-items: center;
}
.open_mobile_menu .mobile_menu_icon {
    width: 32px;
    height: 2px;
    display: block;
    background-color: #171717;
    position: relative;
}
.open_mobile_menu .mobile_menu_icon::after,
.open_mobile_menu .mobile_menu_icon::before {
    content: "";
    width: 32px;
    height: 2px;
    background-color: #171717;
    position: absolute;
    transition-duration: .3s;
}
.open_mobile_menu .mobile_menu_icon::before {
    bottom: 7.5px;
}
.open_mobile_menu .mobile_menu_icon::after {
    bottom: -7.5px;
}
footer{
    background-color:#171717;
    color:#fff;
    padding-top:100px;
    padding-bottom:50px
}
footer>.container-xl{
    padding:0
}
footer .badgesWrapper{
    display:flex;
    margin-left:-4px;
    margin-top:16px

}footer .badgesWrapper a{
    display:flex;
    align-items:flex-end
}
footer .badgesWrapper a img{
    display:block
}
footer .logo img{
    width:90px
}
footer .contatti_wrapper{
    display:grid;
    grid-template-columns:repeat(2, 50%);
    align-items:end
}
footer .contatti_wrapper>div{
    display:flex;
    align-items:center;
}
footer .contatti_wrapper>div a{
    color:#c3c3c3;
    margin-left:10px;
    transition-duration:.3s;
    text-decoration: none;
}
footer .contatti_wrapper>div a:hover{
    color:#fff
}
/* Footer Legal Section */
#footer-links .legal-links a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

#footer-links .legal-links a:hover {
    opacity: 0.7;
}

#footer-links .legal-links span {
    font-weight: 600;
    margin-bottom: 6px;
    display: inline-block;
}

footer .info_wrapper h5{
    font-weight:800;
    font-size:1.4rem


}footer .info_wrapper h6{
    margin-top:5px;
    margin-bottom:30px
}
footer .info_wrapper .contatti_wrapper{
    display:none
}
footer .link_wrapper{
    display:grid;
    grid-template-columns:repeat(2, 50%)
}
footer .link_wrapper>div{
    display:grid;
    grid-template-rows:repeat(5, 40px)
}
footer .link_wrapper>div span{
    font-size:1.05rem;
    font-weight:800;
    align-self:center
}
footer .link_wrapper>div a{
    color:#c3c3c3;
    align-self:end;
    transition-duration:.3s
}
footer .link_wrapper>div a:first-letter{
    text-transform:capitalize
}
footer .link_wrapper>div a:hover{
    color:#fff
}
footer .first{
    margin-bottom:50px
}
footer .last{
    margin-top:50px
}
footer .last small{
    text-align:center;
    color:#717171
}
footer .rowBadges{
    display:none;
    justify-content:center
}
footer .rowBadges .badgesWrapper{
    margin-left:2px
}
@media screen and (min-width: 992px) {
    #dsk-menu-voices li > a {
        padding: 15px;
        transition: padding 0.3s ease;
    }
    
    header.container-fluid.header-scrolled #dsk-menu-voices li > a {
        padding: 10px;
    }
}
@media screen and (max-width: 1439.98px){
    .container-xl {
        padding-left: 75px;
        padding-right: 75px;
    }
    footer .info_wrapper .badgesWrapper{
        display:none
    }
    footer .link_wrapper{
        max-height:200px
    }
    footer .first{
        margin-bottom:40px
    }
    footer .rowBadges{
        display:flex
    }
    footer .contatti_wrapper{
        display:none
    }
    footer .info_wrapper .contatti_wrapper{
        display:grid;grid-template-columns:repeat(3, 33.3333333333%);
        grid-row-gap:15px;margin-bottom:30px
    }
}
@media screen and (max-width: 1199.98px){
    .container-xl {
        padding-left: 75px;
        padding-right: 75px;
    }
    header.container-fluid #dsk-logo svg {
        width: 110px;
        /* margin-left:30px; */
    }
    #dsk-menu-voices li>a{
        padding: 20px 10px;
    }
    footer .info_wrapper .contatti_wrapper{
        grid-template-columns:3fr
    }
    footer .link_wrapper>div{
        grid-template-rows:repeat(5, 32px)
    }
}
@media screen and (max-width: 991.98px){
    #mob-menu .mobile_menu_wrapper button.chiudi {
        padding-right: 0;
        position: absolute;
        top: 40px;
        right: 48px;
        background-color: unset;
        border: 0;
        z-index: 1;
        opacity: 0;
        transition: opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99);
        font-size: 23px;
    }
    #mob-menu .mobile_menu_wrapper button.chiudi:hover {
        opacity: 1;
    }
    #mob-menu .mobile_menu_wrapper img.logo_menu {
        height: 30px;
        margin-bottom: 50px;
        display: block;
    }
    #mob-menu .mobile_menu_wrapper ul {
        display: flex;
        text-transform: uppercase;
        align-items: center;
        flex-direction: column;
    }

    #mob-menu .mobile_menu_wrapper.open .mobile_ul_wrapper > ul {
        opacity: 0;
        transition: opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    }
    #mob-menu .mobile_menu_wrapper.open .mobile_ul_wrapper > ul > li {
        border-bottom: 1px solid rgba(175, 160, 147, 0.6);
    }
    #mob-menu .mobile_menu_wrapper.open .mobile_ul_wrapper > ul > li.bg-blue {
        color: #fff;
        background-color: #fff;
        border: 2px solid #142a60;
        margin-top: 20px;
    }
    #mob-menu .mobile_menu_wrapper.open .mobile_ul_wrapper > ul > li.open {
        border-bottom: 0;
    }
    #mob-menu .mobile_menu_wrapper.open .mobile_ul_wrapper > ul > li > a {
        padding: 16px 0;
    }
    #mob-menu .mobile_menu_wrapper.open .mobile_ul_wrapper > ul > li.bg-blue a {
        text-align: center;
        color: #142a60;
        padding: 12px 0;
    }
    #mob-menu .mobile_menu_wrapper ul:first-of-type {
        font-size: 1.375rem;
    }
    #mob-menu .mobile_menu_wrapper ul:last-of-type {
        font-size: 1.2rem;
        margin-top: 40px;
    }
    #mob-menu .mobile_menu_wrapper ul + a.tipo_1 {
        width: 100%;
        left: 0;
        position: absolute;
        border-radius: 0;
        bottom: 0;
        text-transform: unset;
        font-weight: 400;
    }
    #mob-menu .mobile_menu_wrapper ul + a.tipo_1 img {
        margin-right: 16px;
    }
    #mob-menu .mobile_menu_wrapper ul li {
        transition-duration: 0.25s;
        border-bottom: 1px solid transparent;
        width: 100%;
        opacity: 0;
        transition: opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    }
    #mob-menu .mobile_menu_wrapper ul li a {
        font-weight: 500;
        transition-duration: 0.25s;
        text-transform: capitalize;
        z-index: 2;
        position: relative;
        width: 100%;
        letter-spacing: 0.25px;
        color: #2b2b2b;
        text-align: left;
        width: 100%;
        height: 100%;
        display: block;
        text-decoration: none;
    }
    #mob-menu .mobile_ul_wrapper > ul > li > ul > li > a:hover,
    #mob-menu .mobile_menu_wrapper ul li a:hover {
        text-decoration: underline;
    }
    #mob-menu .mobile_ul_wrapper > ul {
        padding-left: 0;
        padding-bottom: 40px;
    }
    #mob-menu .mobile_ul_wrapper > ul > li.subVoice {
        position: relative;
        padding-right: 30px;
    }
    #mob-menu .mobile_ul_wrapper > ul > li.subVoice svg {
        position: absolute;
        top: 13px;
        right: 0px;
        width: 32px;
        height: 32px;
        cursor: pointer;
        padding: 5px;
        transition: all 0.3s;
    }
    #mob-menu .mobile_ul_wrapper > ul > li.subVoice > ul {
        margin-top: 0px;
    }
    #mob-menu .mobile_ul_wrapper > ul > li.subVoice > ul svg {
        top: 8px;
        width: 30px;
        height: 30px;
    }
    #mob-menu .mobile_ul_wrapper > ul > li.subVoice.open svg,
    #mob-menu .mobile_ul_wrapper > ul > li.subVoice svg.open {
        transform: rotate(-180deg);
    }
    #mob-menu .mobile_ul_wrapper > ul > li > ul > li > ul,
    #mob-menu .mobile_ul_wrapper > ul > li > ul {
        display: none;
        border-left: 2px solid #71503e;
        padding-left: 20px;
    }
    #mob-menu .mobile_ul_wrapper > ul > li > ul > li > ul > li,
    #mob-menu .mobile_ul_wrapper > ul > li > ul > li {
        padding: 15px 0px 0px 0px !important;
        font-size: 16px;
        line-height: 19px;
    }
    #mob-menu .mobile_ul_wrapper > ul > li > ul > li.subSubTplVoice {
        border-bottom: 1px solid #d8d8d8;
        padding: 12px 0px 10px 0px !important;
    }
    #mob-menu .mobile_ul_wrapper > ul > li > ul > li > ul > li:last-of-type,
    #mob-menu .mobile_ul_wrapper > ul > li > ul > li:last-of-type {
        padding-bottom: 10px !important;
    }
    #mob-menu .mobile_menu_wrapper.open {
        transform: translateX(0);
        display: flex;
        flex-direction: column;
    }
    #mob-menu .mobile_menu_wrapper.open .mobile_ul_wrapper > ul {
        opacity: 1;
        transition-delay: 0.28s;
    }
    #mob-menu .mobile_menu_wrapper.open .mobile_ul_wrapper > ul li {
        opacity: 1;
        position: relative;
    }
    #mob-menu .mobile_menu_wrapper.open .mobile_ul_wrapper > ul li:nth-child(11) {
        transition-delay: 0.76s;
    }
    #mob-menu .mobile_menu_wrapper.open .mobile_ul_wrapper > ul li:nth-child(10) {
        transition-delay: 0.69s;
    }
    #mob-menu .mobile_menu_wrapper.open .mobile_ul_wrapper > ul li:nth-child(9) {
        transition-delay: 0.62s;
    }
    #mob-menu .mobile_menu_wrapper.open .mobile_ul_wrapper > ul li:nth-child(8) {
        transition-delay: 0.56s;
    }
    #mob-menu .mobile_menu_wrapper.open .mobile_ul_wrapper > ul li:nth-child(7) {
        transition-delay: 0.49s;
    }
    #mob-menu .mobile_menu_wrapper.open .mobile_ul_wrapper > ul li:nth-child(6) {
        transition-delay: 0.42s;
    }
    #mob-menu .mobile_menu_wrapper.open .mobile_ul_wrapper > ul li:nth-child(5) {
        transition-delay: 0.35s;
    }
    #mob-menu .mobile_menu_wrapper.open .mobile_ul_wrapper > ul li:nth-child(4) {
        transition-delay: 0.28s;
    }
    #mob-menu .mobile_menu_wrapper.open .mobile_ul_wrapper > ul li:nth-child(3) {
        transition-delay: 0.21s;
    }
    #mob-menu .mobile_menu_wrapper.open .mobile_ul_wrapper > ul li:nth-child(2) {
        transition-delay: 0.14s;
    }
    #mob-menu .mobile_menu_wrapper.open .mobile_ul_wrapper > ul li:nth-child(1) {
        transition-delay: 0.07s;
    }
    #mob-menu .mobile_menu_wrapper.open button.chiudi {
        opacity: 0.8;
        transition-delay: 0.42s;
    }
    #mob-menu .mobile_menu_wrapper.open button.chiudi img {
        width: 16px;
        height: 16px;
    }
    #mob-menu .mobile_menu_wrapper.open > a {
        margin-top: -50px;
        width: max-content;
    }
    #mob-menu .mob-lang{
        display: grid !important;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        column-gap: 10px;
        row-gap: 20px;
    }
    #mob-menu .mob-lang a{
        color: #2b2b2b;
        text-decoration: none;
        font-weight: 500;
    }
    .backdrop,
    .mobile_menu_backdrop {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1040;
        width: 100vw;
        height: 100vh;
        background-color: #060503;
        pointer-events: none;
        opacity: 0;
        transition-duration: 0.2s;
    }
    .backdrop.open,
    .mobile_menu_backdrop.open {
        opacity: 0.5;
        pointer-events: auto;
        cursor: pointer;
    }
    footer .info_wrapper .contatti_wrapper{
        grid-template-columns:repeat(3, 33.3333333333%)
    }
    footer .link_wrapper{
        margin-top:30px;
        min-height:170px
    }
    footer .last small{
        font-size:.9rem
    }
    footer .rowBadges .badgesWrapper{
        margin-top:8px
    }
    footer .logo img{
        width:80px
    }
}
@media screen and (max-width: 767.98px) {
    .container-xl {
        padding-left: 50px;
        padding-right: 50px;
    }
    footer{
        padding-top:75px;
        padding-bottom:30px
    }
    footer .logo img{
        width:75px
    }
}
@media screen and (max-width: 575.98px) {
    .container-xl {
        padding-left: 0px;
        padding-right: 0px;
    }
    .open_mobile_menu .mobile_menu_icon {
        width: 25px;
    }
    .open_mobile_menu .mobile_menu_icon::after,
    .open_mobile_menu .mobile_menu_icon::before {
        width: 25px;
    }
    .open_mobile_menu .mobile_menu_icon::after {
        bottom: -6.5px;
    }
    .open_mobile_menu .mobile_menu_icon::before {
        bottom: 6.5px;
    }
    footer{
        padding-top:50px;
        padding-bottom:20px
    }
    footer .logo img{
        width:70px
    }
    footer .info_wrapper .contatti_wrapper{
        grid-template-columns:3fr;
        margin-bottom:0
    }
    footer .link_wrapper{
        grid-template-columns: 100%;
    }
}
@media screen and (max-width: 489.98px) {
	#mob-menu .mobile_menu_wrapper {
		width: 90vw;
		padding: 40px;
		padding-bottom: 0;
		padding-top: 90px;
	}
	#mob-menu .mobile_menu_wrapper button.chiudi {
		right: 40px;
	}
}
@media screen and (max-width: 391.98px) {
	#mob-menu .mobile_menu_wrapper {
		padding: 30px;
		padding-bottom: 0;
		padding-top: 90px;
	}
}





















h1, h2{
    font-weight: 600 !important;
}
.bg-black{
    background-color: #010101;
}
.text-gray{
    color: gray;
}
.top-curved-section{
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
}
.bottom-curved-section{
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}
.pre-title{
    width: max-content;
    padding: 3px 6px;
    background-color: #024be2;
    color: #fff;
    font-weight: 400;
}
.section-title{
    width: 700px;
    max-width: 100%;
    margin: 0 auto;
    font-weight: 600;
}
#section-callbot-examples .section-title{
    width: 750px;
}
.section-summary{
    width: 725px;
    max-width: 100%;
    margin: 0 auto;
}
#header-section{
    /* background-color: var(#15414d #15414d);
    background: linear-gradient(180deg, #ace8b100 0%, #024BE2 100%); */
    background: linear-gradient(180deg, #024BE2 0%, #013293 70%);
    height: 87vh;
    min-height: 575px;
    display: flex;
    align-items: center;
    color: #fff;
}
#header-section-overlay{
    content: '';
    display: block;
    background-image: url(../img/Pattern_01.avif);
    position: absolute;
    left: 0;
    bottom: -45px;
    width: 100%;
    height: 87vh;
    min-height: 575px;
    background-repeat: repeat;
    background-position: left bottom;
    background-size: 250px;
    opacity: 0.15;
}
#header-section .pre-title{
    background-color: #008AF8;
}
#header-section .section-title{
    font-weight: 600;
    width: 950px;
}
#header-section .section-summary{
    color: #dfdfdf;
    font-size: 18px;
}
.vertical-line{
    -webkit-mask-image: -webkit-gradient(linear, 100% top, left bottom, from(rgba(0, 0, 0, 1)), to(rgba(0, 0, 0, 0)));
}
.vertical-line+div+.vertical-line{
    -webkit-mask-image: -webkit-gradient(linear, 0% top, 100% bottom, from(rgba(0, 0, 0, 1)), to(rgba(0, 0, 0, 0)));
}
.vertical-line>div{
    background-color: rgb(0, 145, 255);
}
.vertical-line>div:nth-of-type(even){
    width: 2px;
    height: 16px;
}
.vertical-line>div:nth-of-type(odd){
    width: 2px;
    height: 10px;
}
.vertical-line>div+div{
    margin-left: 0.6px;
    margin-right: 0.6px;
}
#callbotButton{
    /* background-color: #024be2; */
    background-color: #008af8;
    border-radius: 35px;
    border: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9;
    margin: 0 auto;
    padding: 8px 20px;
    color: #fff;
    box-shadow: 1px 2px 5px 0px rgba(0,0,0,0.45);
    transition: all .3s;
}
#callbotButton:hover{
    /* background-color: #0149d7; */
    background-color: #017de2;
}
.gl-callbot-icon{
    /* background-color: #012979; */
    background-color: #0171ca;
    border-radius: 50%;
    display: flex;
    align-items: center;
    padding: 12px;
    width: 40px;
    height: 40px;
    margin-left: 12px;
    transition: all .3s;
}
#callbotButton:hover .gl-callbot-icon{
    background-color: #016ac0;
}
#section-callbot-usp{
    background-color: #F8F9FC;
    margin-top: -40px;
}
#section-callbot-usp .card{
    border-color: rgb(238 238 238);
}
#section-callbot-usp .card:hover{
    border-color: rgb(216, 216, 216);
}
#section-callbot-usp .card p{
    color: #858484;
}
#section-callbot-usp .card>div{
    width: 70%;
    margin-left: auto;
    margin-right: 0;
    overflow: hidden;
    height: 180px;
}
#section-callbot-usp .card.su-misura>div img{
    height: 210px;
}
#section-callbot-usp .card.custom>div img{
    height: 170px;
}
#section-callbot-usp .card.sempre-operativo>div img{
    height: 250px;
}
#section-callbot-usp .card.conversazione>div img{
    height: 180px;
}
#section-callbot-examples{
    background: linear-gradient(#1a1a1a 0%, #010101 100%);
    position: relative;
    color: #fff;
}
#section-callbot-examples-overlay{
    content: '';
    display: block;
    background-image: url(../img/Pattern_01.avif);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: repeat;
    background-position: left top;
    background-size: 250px;
    opacity: 0.15;
}
#section-callbot-examples .d-grid{
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
#section-callbot-examples .card{
    border: 1px solid rgb(35, 35, 35);
    border-radius: 0;
}
#section-callbot-examples .card svg{
    fill: #024DE6;
    width: 26px;
    height: 26px;
}
#section-callbot-examples .card p{
    margin-bottom: 0;
    color: #8a8a8a;
}

#section-callbot-deploy img.position-sticky{
    top: 15px;
    left: 0;
}

#section-callbot-improvements .position-sticky{
    top: 0;
    left: 0;
}
#section-callbot-improvements ul li{
    color: #858484;
}
#section-callbot-improvements ul li strong{
    color: #2B2B2B;
    font-weight: 600;
}
#section-callbot-improvements ul li:before{
    content: '';
    background-image: url(../img/icona-freccia_01.svg);
    background-repeat: no-repeat;
    background-size: 13px 13px;
    width: 22px;
    height: 12px;
    display: inline-block;
}
#section-callbot-improvements ul li+li{
    margin-top: 10px;
}
#section-callbot-improvements h4{
    font-weight: 600;
}

.card-deploy h5{
    font-weight: 600;
}
.card-deploy>div>div:not(.line){
    border: 1px solid #024BE2;
    color: #024BE2;
    text-align: center;
    width: 120px;
    padding: 9px 0px;
    border-radius: 10px;
}
.card-deploy>div>div.line{
    height: 100px;
    width: 1px;
    background-color: #024BE2;
    text-align: center;
    margin: 8px auto;
}
#section-related-services{
    background-color: rgb(248, 248, 248);
}
#section-related-services .swiper{
    overflow: visible;
}
#section-related-services .swiper-slide{
    background-color: #fff;
    border-radius: 15px;
}
#section-related-services .rounded-circle{
    background-color: #024BE2;
    width: 50px;
    height: 50px;
}
#section-related-services h6{
    margin-top: 35px;
}
#section-related-services .swiper-button-box{
    width: 105px;
}
#section-related-services .swiper-button-prev,
#section-related-services .swiper-button-next{
    border: 1px solid rgb(203, 203, 203);
    border-radius: 50%;
    color: #000000;
}
#section-related-services .swiper-button-prev svg,
#section-related-services .swiper-button-next svg{
    height: 18px;
    width: 18px;
}
#section-related-services .swiper-slide a.small{
    color: #024BE2;
}
#cta-prefooter{
    background-color: #212121;
    color:#fff;
}
@media (max-width: 992px){
    #section-callbot-examples .d-grid{
        grid-template-columns: 1fr 1fr 1fr;
    }
}
@media (max-width: 850px){
    #section-callbot-examples .d-grid{
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px){
    .card-deploy>div:first-of-type{
        display: flex;
        align-items: center;
    }
    .card-deploy>div>div.line{
        height: 1px;
        width: 100%;
    }
    .card-deploy+.card-deploy{
        margin-top: 45px;
    }
    .card-deploy h5{
        margin-top: 20px;
    }
}
@media (max-width: 576px){
    .w-mob-100{
        width: 100%;
    }
    .top-curved-section{
        border-top-left-radius: 25px;
        border-top-right-radius: 25px;
    }
    .bottom-curved-section{
        border-bottom-left-radius: 25px;
        border-bottom-right-radius: 25px;
    }
    #header-section .section-summary{
        font-size: 17.5px;
    }
}