/* Base CSS */
@import url('https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');

.alignleft {
    float: left;
    margin-right: 15px;
}

.alignright {
    float: right;
    margin-left: 15px;
}

.aligncenter {
    display: block;
    margin: 0 auto 15px;
}

a:focus {
    outline: 0 solid
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 15px;
    color: #000000;
    font-family: 'Cabin', sans-serif;
}

body {
    color: #656565;
    font-weight: 400;
    font-family: 'Cabin', sans-serif;
}

.selector-for-some-widget {
    box-sizing: content-box;
}

a:hover {
    text-decoration: none
}

@media (min-width:1400px) {

    .container {
        max-width: 1200px;
    }

    .container-lg {
        max-width: 1360px;
    }
}

/*---------------------- Header area start ----------------------*/

.menu-close {
    font-size: 16px;
    position: absolute;
    top: 12px;
    left: 12px;
    cursor: pointer;
    transition: .4s;
    border: 1px solid #1F2148;
    color: #1F2148;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.menu-close:hover {
    color: #fff;
    background: #EF7373;
    border-color: #EF7373;
}

.offcanvas-area {
    position: fixed;
    right: -100%;
    height: 100%;
    width: 300px;
    background: #F5FCFF;
    z-index: 6;
    padding-top: 35px;
    -webkit-transition: .4s;
    transition: .4s;
    visibility: hidden;
    top: 0;
    overflow-y: auto;
    padding-bottom: 30px;
}

.offcanvas-area.active {
    right: 0;
    visibility: visible;
}

.offcanvas-area .main-menu ul li a {
    font-size: 17px;
    color: #3D424E;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .3s;
    line-height: 1.2;
    border-bottom: 1px solid #dddddd9e;
    padding: 11px 20px;
    text-decoration: none;
}

.offcanvas-area .main-menu ul > li:first-child > a {
    border-top: 1px solid #dddddd9e;
}

.offcanvas-area .main-menu ul li a:hover, .offcanvas-area .main-menu ul li a[aria-expanded="true"] {
    color: #86b7fe;
}.offcanvas-area .main-menu ul li a[aria-expanded="true"] i{
    transform: rotate(180deg);
}

.offcanvas-menu .main-menu ul {
    display: block;
    padding-top: 70px;
    list-style: none;
    padding-left: 0;
    margin-bottom: 55px;
}

.offcanvas-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .4s;
    transition: .4s;
    z-index: 5;
}

.offcanvas-overlay.active {
    opacity: .4;
    visibility: visible;
}

.menu-open {
    font-size: 27px;
    color: #242527;
    display: none;
    cursor: pointer;
    position: relative;
    top: 1px;
    margin-left: 20px;
    margin-right: 3px;
    transition: .3s;
}

.menu-open:hover {
    color: #86b7fe;
}

.offcanvas-menu .common-btn {
    font-size: 17px;
    padding: 10px 30px;
    border-radius: 12px;
}


.offcanvas-area .main-menu .subb-menu a {
    font-size: 15px;
    margin: 0px;
    padding-left: 35px;
    margin-left: 0;
}

.offcanvas-area .main-menu .subb-menu a:last-child {
    margin-bottom: 0;
}

.header {
    border-bottom: 1px solid #F5F5F5;
    padding: 15px 0;
    position: relative;
    z-index: 4;
}

.header-nav li a {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    text-align: start;
    color: #656565;
    text-decoration: none;
    transition: .3s;
    display: inline-flex;
    align-items: center;
}

.header-nav ul li:hover>a {
    color: #73B2EF;
}

.header-nav ul li a i {
    color: #73B2EF;
    margin-left: 8px;
    font-size: 15px;
}

.header-nav ul li {
    position: relative;
    padding: 12px 0;
}

.header-nav ul li ul {
    position: absolute;
    list-style: none;
    left: 0;
    top: 130%;
    background: #fff;
    box-shadow: 1px 0px 19px #ddddddcf;
    border-radius: 10px;
    transition: .3s;
    padding: 14px 22px;
    min-width: 194px;
    opacity: 0;
    visibility: hidden;
    z-index: 4;
}

.header-nav ul li ul li {
    padding: 3px 0;
}

.header-nav>ul>li {
    margin-left: 38px;
}

.header-nav ul li ul::after {
    position: absolute;
    top: -16px;
    left: 22px;
    content: '';
    background: #fff;
    width: 18px;
    height: 18px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.header-nav ul li:hover ul {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.common-btn {
    background: #EF7373;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    color: #FFFFFF;
    text-decoration: none;
    display: inline-flex;
    padding: 15px 28px;
    transition: .3s;
}

.common-btn i {
    position: relative;
    left: 3px;
    font-size: 15px;
    line-height: 1;
    top: 1px;
}

.common-btn:hover {
    background: #73B2EF;
    color: #fff;
}

.common-btn.small {
    font-weight: 600;
    padding: 11px 16px;
}

/*---------------------- Header area end ----------------------*/


/*---------------------- Hero area start ----------------------*/
.hero-area {
    padding-top: 50px;
    padding-bottom: 0;
    position: relative;
    z-index: 1;
}

.common-content h2 {
    font-weight: 700;
    font-size: 42px;
    line-height: 110%;
    margin-bottom: 25px;
}

.hero-content p {
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 20px;
}

.hero-content-list li {
    font-weight: 400;
    font-size: 20px;
    line-height: 1.2;
    color: #000000;
    display: flex;
    margin-bottom: 17px;
}

.hero-content-list li span {
    color: #73B2EF;
    font-size: 15px;
    line-height: 1;
    position: relative;
    top: 5px;
    margin-right: 16px;
    flex: 0 0 auto;
}

.hero-content {
    padding-top: 70px;
}

.hero-content-list {
    padding-top: 13px;
    padding-bottom: 10px;
    padding-left: 15px;
}

.list-check li {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    color: #8E8E8E;
    margin-right: 16px;
    margin-top: 10px;
}

.list-check li i {
    font-size: 15px;
    margin-right: 8px;
    color: #73B2EF;
}

.hero-form-box {
    background: #FFFFFF;
    box-shadow: 0px 14px 84px rgba(0, 0, 0, 0.07);
    border-radius: 30px;
    padding: 28px;
    max-width: 475px;
    margin: 0 auto;
}

.form-input label {
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #000000;
    display: block;
    margin-bottom: 10px;
}

.form-input {
    margin-bottom: 25px;
}

.form-control {
    background: #F7F8F9;
    border-radius: 10px;
    height: 55px;
    border: 0;
    outline: none;
    box-shadow: unset !important;
    font-style: italic;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #B9B9B9;
    padding: 15px 17px;
}

.form-control:focus {
    color: #212529;
    background-color: #f7f8f9;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
}

.iti.iti--allow-dropdown {
    width: 100%;
}

.iti--allow-dropdown .iti__flag-container, .iti--separate-dial-code .iti__flag-container {
    right: auto;
    left: 6px;
}

.form-select {
    background-color: #F7F8F9;
    border-radius: 10px;
    border: 0;
    height: 55px;
    padding: 16px 16px;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #1E1E1E;
    background-image: url(../img/icons/chev.png);
    background-size: 13px 9px;
}

.form-check {
    display: flex;
    margin-bottom: 20px;
}

.form-check label {
    font-weight: 600;
    font-size: 12px;
    line-height: 15px;
    color: #000000;
    float: none;
    margin-left: 10px;
}

.form-check-input {
    background: #FFFFFF;
    border: 1px solid #73B2EF;
    border-radius: 3px !important;
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    margin-right: 1px;
    position: relative;
    top: -2px;
}

.hero-form-submit button {
    background: #73B2EF;
    border-radius: 45px;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    color: #FFFFFF;
    border: 0;
    padding: 16px 35px;
    transition: .3s;
}

.hero-form-submit button:hover {
    background: #222;
}

.iti--allow-dropdown input, .iti--allow-dropdown input[type="text"], .iti--allow-dropdown input[type="tel"], .iti--separate-dial-code input, .iti--separate-dial-code input[type="text"], .iti--separate-dial-code input[type="tel"] {
    padding-right: 6px;
    padding-left: 58px;
    margin-left: 0;
}

.title-tag {
    background: #F1F1F1;
    border-radius: 100px;
    display: inline-flex;
    padding: 5px;
    margin-bottom: 23px;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.1;
    color: #000000;
    align-items: center;
    padding-right: 16px;
}

.title-tag span {
    flex: 0 0 auto;
    margin-right: 9px;
    max-width: 30px;
}

.header-shape {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.brands-wrapper {
    background: rgba(115, 178, 239, 0.07);
    border-radius: 40px;
    padding: 32px 40px;
    margin-bottom: 50px;
    margin-top: -40px;
    position: relative;
    z-index: -1;
    text-align: center;
}

.brands-wrapper img {
    mix-blend-mode: multiply;
}

.shape-1 {
    position: absolute;
    left: 0;
    top: 10px;
    max-width: 200px;
    z-index: -1;
}

/*---------------------- Hero area end ----------------------*/


/*---------------------- Scale area start ----------------------*/
.scale-area {
    padding-top: 30px;
    padding-bottom: 90px;
    position: relative;
    z-index: 1;
}

.content-title {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #73B2EF;
    margin-bottom: 18px;
}

.common-content h3 span {
    color: #EF7373;
}

.common-content h3 {
    font-weight: 700;
    font-size: 40px;
    line-height: 140%;
    color: #121127;
    margin-bottom: 18px;
}

.common-content p {
    font-weight: 400;
    font-size: 18px;
    line-height: 180%;
    color: rgba(18, 17, 39, 0.72);
}

.text-sky-blue {
    color: #73B2EF !important;
}

.text-purple {
    color: #9B73EF !important;
}

.text-red {
    color: #EF7373 !important;
}

.scale-box {
    border: 1px solid rgba(18, 17, 39, 0.12);
    border-radius: 12px;
    padding: 32px 24px;
    margin-bottom: 20px;
    transition: .3s;
}

.scale-box:hover {
    box-shadow: 0px 14px 84px rgba(0, 0, 0, 0.07);
    border-color: transparent;
}

.scale-boxes {
    padding-top: 33px;
}

.scale-box h4 {
    font-weight: 700;
    font-size: 28px;
    line-height: 120%;
    margin-bottom: 15px;
}

.scale-box p {
    font-weight: 400;
    font-size: 16px;
    line-height: 170%;
    color: rgba(18, 17, 39, 0.56);
    margin: 0;
}

/*---------------------- Scale area end ----------------------*/


/*---------------------- Engagement area start ----------------------*/
.engagement-content {
    max-width: 360px;
    margin: 0 auto;
}

.common-list {
    padding-left: 10px;
    list-style: none;
    padding-top: 6px;
}

.common-list li {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    color: rgba(18, 17, 39, 0.72);
    margin-bottom: 14px;
}

.common-list li span {
    background: #73B2EF;
    width: 20px;
    height: 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #fff;
    padding-top: 2px;
    flex: 0 0 auto;
    margin-right: 8px;
}

.engagement-wrapper {
    background: #F5FAFE;
    border-radius: 50px;
    padding: 90px 60px;
}

.engagement-slider-item {
    border-radius: 28px;
    overflow: hidden;
}

.engagement-wrapper .owl-nav button.owl-prev,
.engagement-wrapper .owl-nav button.owl-next {
    background: #86b7fe !important;
    color: #fff !important;
}

.engagement-wrapper .owl-nav button.owl-prev:hover,
.engagement-wrapper .owl-nav button.owl-next:hover {
    background: #1F2148 !important;
    color: #fff !important;
}

.engagement-wrapper .owl-nav button {
    display: flex;
    position: absolute;
    top: 47%;
    left: -22px;
    transform: translateY(-50%);
}

.engagement-wrapper .owl-nav button {
    margin: 0 !important;
}

.engagement-wrapper .owl-nav button.owl-next {
    position: absolute;
    right: -22px;
    left: auto;
}

.owl-dots button {
    width: 12px;
    height: 12px;
    background: rgba(239, 115, 115, 0.3) !important;
    border-radius: 50px;
    margin: 0 5px;
    transition: 0.3s !important;
}

.owl-dots button.active {
    background: #EF7373 !important;
    border-radius: 6px !important;
    width: 22px;
}

.owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.owl-item.active.center .testimonial-slide {
    box-shadow: 30px 29px 40px rgba(0, 0, 0, 0.05);
    border-color: transparent;
}

/*---------------------- Engagement area end ----------------------*/


/*---------------------- Collab area start ----------------------*/
.collab-box {
    padding: 28px;
    border-radius: 10px;
    transition: .3s;
    margin-bottom: 20px;
}

.collab-box:hover {
    background: #FFFFFF;
    box-shadow: 0px 14px 84px rgba(0, 0, 0, 0.07);
}

.collab-box-icon {
    margin-bottom: 13px;
}

.collab-box h5 {
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    color: #242527;
    margin-bottom: 8px;
}

.collab-box p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #8E8E8E;
    margin: 0;
}

.collab-thumb {
    text-align: center;
    padding-top: 65px;
    padding-left: 30px;
}

.collab-area {
    padding-top: 30px;
    padding-bottom: 120px;
}

/*---------------------- Collab area end ----------------------*/


/*---------------------- Maintain area start ----------------------*/
.maintain-area {
    background: #F5FAFE;
    padding-top: 120px;
    padding-bottom: 1px;
}

.video-wrapper {
    max-width: 890px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    margin-bottom: -65px;
}

.maintain-video {
    position: relative;
    padding-top: 100px;
}

.v-shape-1 {
    position: absolute;
    top: 0;
    right: 50px;
}

.v-shape-2 {
    position: absolute;
    bottom: 65px;
    left: 10px;
}

/*---------------------- Maintain area end ----------------------*/


/*---------------------- Feature area start ----------------------*/
.features-area {
    padding-top: 160px;
    padding-bottom: 80px;
}

.features-cards {
    padding-top: 60px;
}

.features-card {
    background: #FFFFFF;
    box-shadow: 0px 14px 84px rgba(0, 0, 0, 0.07);
    border-radius: 10px;
    padding: 28px 36px;
    height: 100%;
}

.features-cards .col-md-4 {
    margin-bottom: 28px;
}

.features-card-icon {
    min-height: 60px;
    margin-bottom: 12px;
}

.features-card h5 {
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    color: #242527;
    margin-bottom: 8px;
}

.features-card p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #8E8E8E;
    margin-bottom: 0;
}

/*---------------------- Feature area end ----------------------*/


/*---------------------- Testimonial area start ----------------------*/

.common-content.text-block {
    max-width: 392px;
}

.common-content.text-block p {
    color: #000;
    line-height: 1.5;
}

.common-content.text-block p span {
    color: #EF7373;
    font-weight: 700;
}

.testimonial-slide {
    border-radius: 14.805px;
    background: #FFFFFF;
    padding: 29px 27px;
    border: 1px solid #dddddd9e;
}

.testimonial-slide-profile {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-slide-profile-thumb {
    width: 60px;
    height: 60px;
    border-radius: 50px;
    outline: none;
    flex: 0 0 auto;
    margin-right: 15px;
}

.testimonial-slide-profile-thumb img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.testimonial-slide-profile-content h6 {
    font-weight: 700;
    font-size: 18px;
    line-height: 145%;
    color: #1F2148;
    margin: 0;
}

.testimonial-slide-profile-content h6 span {
    display: block;
    color: #2C2F62;
    font-weight: 400;
}

.testimonial-slide-content p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #2C2F62;
    margin-bottom: 13px;
    min-height: 44px;
}

.testimonial-slide-content h5 {
    font-weight: 700;
    font-size: 20px;
    line-height: 130%;
    margin: 0;
    color: #1F2148;
}

.testimonial-wrapper.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.testimonial-wrapper .owl-item {
    opacity: 0;
    transition: opacity 500ms;
}

.testimonial-wrapper .owl-item.active {
    opacity: 1;
}

.testimonial-area {
    background: #F5FAFE;
    padding-top: 150px;
    padding-bottom: 100px;
}

.testimonial-wrapper .owl-nav {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    display: flex;
    align-items: center;
}

.testimonial-wrapper.owl-carousel {
    padding-top: 65px;
    margin-top: 20px;
}

.owl-nav button {
    width: 45px;
    height: 45px;
    display: flex;
    font-size: 25px !important;
    align-items: center;
    justify-content: center;
    background: #fff !important;
    color: #73B2EF !important;
    border-radius: 50px !important;
    margin-left: 15px;
    transition: .3s !important;
}

.owl-nav button:hover {
    background: #86b7fe !important;
    color: #fff !important;
}

.owl-nav button.owl-prev {
    background: #86b7fe !important;
    color: #fff !important;
}

.owl-nav button.owl-prev:hover {
    background: #1F2148 !important;
}

.owl-nav button.owl-prev i {
    transform: rotate(-90deg);
    margin-left: 9px;
}

.owl-nav button.owl-next i {
    transform: rotate(90deg);
    margin-right: 9px;
}

/*---------------------- Testimonial area end ----------------------*/


/*---------------------- CTA area start ----------------------*/
.cta-area {
    padding: 90px 0;
}

.cta-wrapper {
    background: url(../img/bg/cta-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 20px;
    padding: 65px 40px;
}

.common-btn.btn-white {
    color: #242527;
    background: #fff;
}

.common-btn.btn-white:hover {
    background-color: #EF7373;
    color: #fff;
}

/*---------------------- CTA area end ----------------------*/


/*---------------------- Footer area start ----------------------*/

.footer-social {
    margin-top: 10px;
    border-top: 1px solid #D9D9D9;
    padding-top: 14px;
}

.footer-social a {
    font-size: 19px;
    margin-right: 12px;
    color: #000;
    line-height: 1;
    transition: .3s;
}

.footer-social a:hover {
    color: #73B2EF;
}

.footer-item {
    margin-bottom: 30px;
}

.footer-item h5 {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    color: #242527;
    margin-bottom: 18px;
    padding-left: 15px;
}

.footer-item ul li a {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #8E8E8E;
    text-decoration: none;
    transition: .3s;
    display: block;
    margin-bottom: 11px;
    letter-spacing: .3px;
}

.footer-item ul {
    margin: 0;
    padding: 0;
    list-style: none;
    padding-left: 15px;
}

.footer-item ul li a:hover {
    color: #73B2EF;
}

.footer {
    padding-top: 40px;
    background: #F5FAFE;
    padding-bottom: 19px;
}

/*---------------------- Footer area end ----------------------*/


/*---------------------- Copyright area start ----------------------*/
.copyright {
    border-top: 1px solid rgba(217, 217, 217, 0.4);
    background: #F5FAFE;
    padding: 20px 0;
}

.copyright p {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #8E8E8E;
    margin: 0;
}

.copyright p a {
    color: #8E8E8E;
    text-decoration: none;
    transition: .3s;
}

.copyright p a:hover {
    color: #EF7373;
}

/*---------------------- Copyright area end ----------------------*/