* {
    margin: 0;
    padding: 0;
    border: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

.section-container {
    width: 100%;
    margin: auto;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    color: #343434;
}

.section-container__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 86px;
    font-size: 23px;
    font-weight: 400;
    opacity: 60%;
    margin: 0;
}

.section-container__header span {
    width: 815px;
    margin: auto;
}

@media (max-width: 860px) {
    .section-container__header span {
        width: 538px;
    }
}

@media (max-width: 585px) {
    .section-container__header span {
        width: 260px;
        font-weight: 300;
    }
}

@media (max-width: 520px) {
    .section-container__header span {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.section-container__videos-container {
    width: 100%;
    padding: 40px 0 35px;
    background-color: #f7f7f8;
}

.section-container__videos-container .videos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 17px;
    width: 815px;
    margin: auto;
}

@media (max-width: 860px) {
    .section-container__videos-container .videos {
        width: 538px;
    }
}

@media (max-width: 585px) {
    .section-container__videos-container .videos {
        width: 260px;
    }
}

@media (max-width: 520px) {
    .section-container__videos-container .videos .video {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.section-container__videos-container .videos p {
    width: 260px;
    max-width: 260px;
    margin-top: 18px;
    font-size: 14px;
    opacity: 90%;
}

@media (max-width: 520px) {
    .section-container__videos-container .videos p {
        margin-top: 8px;
    }
}

.section-container__videos-container .videos .player {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    width: 260px;
    height: 147px;
    border-radius: 5px;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(52, 52, 52, 0.45)), color-stop(17.07%, #aab2b8));
    background: linear-gradient(360deg, rgba(52, 52, 52, 0.45) 0%, #aab2b8 17.07%);
    cursor: pointer;
}

.section-container__videos-container .videos .player img {
    pointer-events: none;
}

.section-container__videos-container .videos .player:hover .overlay {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.section-container__videos-container .videos .overlay {
    display: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 5px;
    background: rgba(52, 52, 52, 0.3);
    pointer-events: none;
}

.section-container__videos-container .videos .overlay__button-play {
    position: relative;
}

.section-container__videos-container .videos .overlay__button-play img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.section-container__videos-container .videos .overlay__button-play img[src*="button-play-1.png"] {
    -webkit-transform: translate(-35%, -50%);
    transform: translate(-35%, -50%);
}

.popup-modal {
    display: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(52, 52, 52, 0.6);
    z-index: 10000;
}

.popup-modal__video-container {
    position: relative;
    max-height: 524px;
    max-width: 816px;
    height: 70vh;
    width: 70vw;
    background-color: #fff;
    opacity: unset;
}

@media (max-width: 1120px) {
    .popup-modal__video-container {
        height: 60vh;
    }
}

@media (max-width: 920px) {
    .popup-modal__video-container {
        height: 40vh;
    }
}

@media (max-width: 720px) {
    .popup-modal__video-container {
        height: 30vh;
    }
}

@media (max-width: 490px) {
    .popup-modal__video-container {
        height: 147px;
        width: 260px;
    }
}

.popup-modal__video-container .popup-player {
    width: 100%;
    height: 100%;
}

.popup-modal__video-container .chevron-left,
.popup-modal__video-container .chevron-right {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    border: 2px solid transparent;
    border-radius: 100px;
    background-color: transparent;
    cursor: pointer;
}

@media (max-width: 650px) {
    .popup-modal__video-container .chevron-left,
    .popup-modal__video-container .chevron-right {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 375px) {
    .popup-modal__video-container .chevron-left,
    .popup-modal__video-container .chevron-right {
        display: none;
    }
}

.popup-modal__video-container .chevron-left::after,
.popup-modal__video-container .chevron-right::after {
    content: "";
    position: absolute;
    display: block;
    top: 25%;
    width: 32px;
    height: 32px;
    border-bottom: 4px solid;
    border-right: 4px solid;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    color: #fff;
}

@media (max-width: 650px) {
    .popup-modal__video-container .chevron-left::after,
    .popup-modal__video-container .chevron-right::after {
        width: 15px;
        height: 15px;
    }
}

.popup-modal__video-container .chevron-right {
    right: -140px;
}

@media (max-width: 1130px) {
    .popup-modal__video-container .chevron-right {
        right: -80px;
    }
}

@media (max-width: 650px) {
    .popup-modal__video-container .chevron-right {
        right: -60px;
    }
}

.popup-modal__video-container .chevron-right::after {
    left: 25%;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.popup-modal__video-container .chevron-left {
    left: -140px;
}

@media (max-width: 1130px) {
    .popup-modal__video-container .chevron-left {
        left: -80px;
    }
}

@media (max-width: 650px) {
    .popup-modal__video-container .chevron-left {
        left: -60px;
    }
}

.popup-modal__video-container .chevron-left::after {
    right: 25%;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

.carousel {
    position: relative;
}

.carousel__header {
    width: 100%;
    height: 550px;
    margin: auto;
    padding: 75px 0 40px;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 50px;
    color: #343434;
    opacity: 60%;
    display: none;
}

@media (max-width: 1150px) {
    .carousel__header {
        height: 440px;
        font-size: 45px;
    }
}

@media (max-width: 920px) {
    .carousel__header {
        height: 360px;
        padding-top: 65px;
        font-size: 40px;
    }
}

@media (max-width: 720px) {
    .carousel__header {
        height: 270px;
        padding-top: 60px;
        font-size: 30px;
    }
}

@media (max-width: 520px) {
    .carousel__header {
        width: 260px;
        margin: auto;
        padding-top: 55px;
        font-size: 23px;
    }
}

.carousel__track-container {
    position: relative;
    left: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 470px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    overflow: hidden;
}

@media (max-width: 920px) {
    .carousel__track-container {
        top: 65px;
        width: 700px;
    }
}

@media (max-width: 720px) {
    .carousel__track-container {
        top: -10px;
        width: 500px;
    }
}

@media (max-width: 520px) {
    .carousel__track-container {
        width: 330px;
    }
}

@media (max-width: 420px) {
    .carousel__track-container {
        width: 260px;
    }
}

.carousel__track {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider__header {
    font-size: 48px;
    font-weight: 300;
    color: #000;
    text-align: left;
}

.slider__desc {
    font-size: 20px;
    font-weight: 300;
    color: #000;
    margin-bottom: 50px;
    height: 115px;
}

.carousel__slide {
    position: absolute;
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    width: 512px;
    height: 439px;
    -webkit-transition: all .2s;
    transition: all .2s;
    opacity: 0;
}

.slider__options--container {
    height: calc(8 * (50px + 16px));
    overflow: hidden;
}

.slider__options--track {
    transition: 0.3s;
}

.carousel__nav-up,
.carousel__nav-down {
    width: 30px;
    height: 30px;
    border: 5px solid #CFD6DB;
    border-left: none;
    border-bottom: none;
    opacity: 0.9;
    position: relative;
    margin: 0 auto;
    left: 0;
    right: 0;
    cursor: pointer;
    transition: 0.3s;
}

.carousel__nav-up:hover,
.carousel__nav-down:hover {
    border-color: #DB00B6;
    opacity: 1;
}

.slider__container {
    display: flex;
    align-items: center;
}

.carousel__nav-up {
    top: 0;
    transform: rotate(-45deg);
}

.carousel__nav-down {
    bottom: 0;
    transform: rotate(-225deg);
}

@media (max-width: 1150px) {
    .carousel__slide {
        width: 580px;
        height: 350px;
    }
}

@media (max-width: 920px) {
    .carousel__slide {
        width: 430px;
        height: 280px;
    }
}

@media (max-width: 720px) {
    .carousel__slide {
        width: 300px;
        height: 170px;
    }
}

@media (max-width: 520px) {
    .carousel__slide {
        width: 260px;
        height: 147px;
    }
}

.carousel__item {
    height: 100%;
    width: 100%;
    border-radius: 5px;
}

.slider__option {
    width: 80%;
    margin: 8px auto;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFF;
    font-size: 18px;
    font-weight: 500;
    color: #000;
    transition: 0.3s;
    cursor: pointer;
}

.slider__option:hover {
    background-color: rgba(52, 81, 96, 0.2);
}

.slider__option--active {
    color: #FFF;
    background: rgba(52, 81, 96, 0.6);
}

.slider__option--active:hover {
    background: rgba(52, 81, 96, 0.6);
}

.carousel__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    width: 100%;
    margin: 40px auto;
}

@media (max-width: 1150px) {
    .carousel__nav {
        height: 120px;
    }
}

@media (max-width: 920px) {
    .carousel__nav {
        height: 110px;
    }
}

@media (max-width: 720px) {
    .carousel__nav {
        height: 65px;
    }
}

@media (max-width: 520px) {
    .carousel__nav {
        height: 55px;
    }
}

.carousel__indicator {
    width: 12px;
    height: 12px;
    margin-right: 11px;
    border-radius: 100%;
    background-color: #EAEEF1;
    cursor: pointer;
    z-index: 1;
}

@media (max-width: 720px) {
    .carousel__indicator {
        width: 10px;
        height: 10px;
    }
}

.carousel__indicator:hover {
    background-color: #c7cace;
}

.carousel .indicator-active {
    background-color: #DB00B6;
}

.carousel .slide-active {
    -webkit-transform: translateX(0%) scale(1);
    transform: translateX(0%) scale(1);
    z-index: 1;
    opacity: 1;
}

.carousel .previous {
    -webkit-transform: translateX(-20%) scale(0.83);
    transform: translateX(-20%) scale(0.83);
    cursor: pointer;
    opacity: 0.5;
}

@media (max-width: 420px) {
    .carousel .previous {
        display: none;
    }
}

.carousel .next {
    -webkit-transform: translateX(20%) scale(0.83);
    transform: translateX(20%) scale(0.83);
    cursor: pointer;
    opacity: 0.5;
}

@media (max-width: 420px) {
    .carousel .next {
        display: none;
    }
}

.carousel .slide-overlay::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    background: transparent;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.carousel .slide-overlay:hover::after {
    background: rgba(255, 255, 255, 0.5);
}

.carousel__button-left,
.carousel__button-right {
    position: absolute;
    top: 50%;
    width: 70px;
    height: 70px;
    border: 2px solid transparent;
    border-radius: 100px;
    background-color: transparent;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 2;
    display: none;
}

@media (max-width: 720px) {
    .carousel__button-left,
    .carousel__button-right {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 720px) {
    .carousel__button-left,
    .carousel__button-right {
        display: none;
    }
}

.carousel__button-left:hover::after,
.carousel__button-right:hover::after {
    color: black;
}

.carousel__button-left::after,
.carousel__button-right::after {
    content: "";
    display: block;
    position: absolute;
    top: 25%;
    width: 32px;
    height: 32px;
    border-bottom: 4px solid;
    border-right: 4px solid;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    color: #012638;
    opacity: 40%;
    -webkit-transition: all .2s;
    transition: all .2s;
}

.carousel__button-right {
    right: 30px;
}

.carousel__button-right::after {
    left: 25%;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.carousel__button-left {
    left: 30px;
}

.carousel__button-left::after {
    right: 25%;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

@media (max-width: 1199px) {
    .carousel__slide {
        width: 400px;
        height: calc(0.86 * 400px);
    }
    .slider__desc {
        margin-bottom: 25px;
    }
    .carousel {
        bottom: 50px;
    }
    .slider__header {
        height: 104px;
    }
}

@media (max-width: 991px) {
    .hero__container {
        padding-top: 50px !important;
    }
    .carousel__item {
        height: 100% !important;
    }
    .hero {
        overflow: visible !important;
    }
    #hero-bg-image {
        position: relative;
        top: 1px;
    }
    .carousel {
        width: 100% !important;
    }
    .carousel__nav {
        height: auto;
    }
    .slider__section {
        z-index: 9999;
        position: relative;
    }
    .slider__option {
        width: 100%;
        padding: 0 10px;
    }
    .form__container {
        width: auto !important;
    }
    .photo__container {
        margin-bottom: 30px;
    }
    .badge-new {
        z-index: 99999 !important;
    }
}

@media (max-width: 689px) {
    .form {
        width: 100%;
        margin-right: 0;
    }
    .pricing__action--submit {
        margin-top: 10px;
    }
    .form__desc {
        width: 100%;
        margin-top: 30px;
    }
    .carousel__nav {
        margin: 0;
    }
    .agreement--form {
        margin-top: 40px;
    }
    .contact__header {
        width: auto;
        font-size: 36px;
    }
    .contact__paragraph {
        font-size: 26px;
    }
    .photo__container {
        width: auto;
    }
    .text__container {
        width: auto;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .slider__desc {
        margin-bottom: 80px;
    }
    .section-heading {
        margin-top: 60px !important;
        margin-bottom: 40px !important;
    }
}

@media (max-width: 520px) {
    .carousel__track-container {
        width: auto;
    }
    .carousel__slide {
        width: 350px;
        height: calc(0.86 * 350px);
    }
    .slider__header {
        font-size: 36px;
        height: auto;
    }
    .slider__desc {
        font-size: 16px;
        height: auto;
        margin-bottom: 20px;
    }
    .partnerlanging__header,
    .section-heading {
        font-size: 38px !important;
    }
    .slider__option {
        font-size: 16px;
    }
    .capability {
        font-size: 14px;
    }
    .form__header h2 {
        font-size: 30px;
    }
    .form__header h4 {
        font-size: 20px;
    }
    .contact__header {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .carousel__slide {
        width: 280px;
        height: calc(0.86 * 280px);
    }
    .carousel {
        bottom: 0;
    }
    .carousel__track-container {
        top: 0;
        height: 300px;
    }
    .carousel__nav {
        margin-bottom: 30px;
    }
    .slider__header {
        font-size: 30px;
    }
    .slider__desc {
        height: 110px;
    }
    .hero-title__span:nth-child(2) {
        font-size: 36px !important;
    }
}

@media (max-width: 420px) {
    .carousel__button-left,
    .carousel__button-right {
        display: block;
    }
    .carousel__button-right {
        right: 10px;
    }
    .carousel__button-left {
        left: 10px;
    }
    .slider__header {
        height: 60px;
    }
    .capabilities__row {
        flex-direction: column;
    }
    .capability {
        width: auto;
        padding: 10px;
        height: 100px;
    }
    .capability:nth-child(3n) {
        background: #F4F7F8;
    }
}

@media (max-width: 400px) {
    .logo__wrapper {
        flex-direction: column;
        padding: 20px 10px 10px;
    }
    .hero-title__span:nth-child(2) {
        font-size: 28px !important;
    }
}

@media (max-width: 380px) {
    .captcha-container {
        transform: scale(0.8);
    }
    .carousel__slide {
        width: 250px;
        height: calc(0.86 * 250px);
    }
}