*, html, body {
    padding: 0;
    margin: 0;
    text-decoration: none;
    outline: none;
    box-sizing: border-box;
}
body {
    color: white;
}

@font-face {
    font-family: "Proxima Nova";
    font-style: normal;
    font-weight: 900;
    src: url("../fonts/ProximaNova-Black-BasicLatin.eot") format("truetype");
}

@font-face {
    font-family: "Proxima Nova";
    font-style: normal;
    font-weight: 900;
    src: url("../fonts/ProximaNova-Black-BasicLatin.ttf") format("truetype");
}

@font-face {
    font-family: "Proxima Nova";
    font-style: normal;
    font-weight: 900;
    src: url("../fonts/ProximaNova-Black-BasicLatin.woff") format("truetype");
}

@font-face {
    font-family: "Proxima Nova";
    font-style: normal;
    font-weight: 900;
    src: url("../fonts/ProximaNova-Black-BasicLatin.woff2") format("truetype");
}

@font-face {
    font-family: "Proxima Nova";
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/ProximaNova-Regular_2607783814.eot") format("truetype");
}

@font-face {
    font-family: "Proxima Nova";
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/ProximaNova-Regular_2607783814.ttf") format("truetype");
}

@font-face {
    font-family: "Proxima Nova";
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/ProximaNova-Regular_2607783814.woff") format("truetype");
}

@font-face {
    font-family: "Proxima Nova";
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/ProximaNova-Regular_2607783814.woff2") format("truetype");
}

@font-face {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/OpenSans-Regular.ttf") format("truetype");
}
@font-face {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: bold;
    src: url("../fonts/OpenSans-Bold.ttf") format("truetype");
}

/*/ BUTTONS /*/
.button-primary {
    padding: 15px 30px;
    font-family: 'Proxima Nova', sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 16px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    background: #000;
    transition: 0.3s;
    border: 2px solid black;
    /*width: 196px;*/
    height: 48px;
}

.button-primary:hover {
    background: #fff;
    color: black;
}

@media only screen and (max-width: 800px) {
    .button-primary {
        height: 40px;
        padding: 11px 30px;
        font-size: 14px;
    }
}

/*/ HEADER /*/
.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 50px;
    background: #FFF;
    color: black;
}

@media only screen and (max-width: 800px) {
    .header-wrapper {
        margin: 0 40px;
    }
}

.header-logo-wrapper {
    gap: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1px 0;
}

@media only screen and (max-width: 800px) {
    .header-logo-wrapper {
        gap: 20px;
        margin: 15px 0;
    }
}

.header-logo-softserve {
    max-width: 150px;
    margin: 25px 0;
}

.header-links-wrapper {
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 800px) {
    .header-logo-softserve {
        max-width: 80px;
        margin: 18px 0;
    }

    .header-links-wrapper {
        flex-flow: column;
        gap: 20px;
        margin: 20px;
    }
}

.header-link {
    font-family: Proxima Nova, sans-serif;
    font-size: 16px;
    font-weight: 400!important;
    line-height: 20px;
    letter-spacing: 0px;
    text-align: center;
    text-decoration: underline;
    color: black;
    margin: 0 20px;
    display: block;
    width: 209px;
}

.header-link:active {
    font-weight: 900!important;
    color: black;
}

.active {
    font-weight: 900!important;
    color: black;
}

.header-link:focus {
    font-weight: 900!important;
    color: black;
}

.header-link:hover {
    color: black;
    transition: 0.1s;
}

.navbar {
    padding: 0!important;
}

.navbar-collapse {
    justify-content: end;
}

.toggler-icon {
    width: 30px;
    height: 30px;
}

/*/ SECTION /*/

.main-wrapper {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

@media only screen and (min-width: 1000px) {
    .block-wrapper {
        max-width: 866px;
        min-width: 866px;
        display: flex;
        flex-flow: column;
    }
}

.banner-wrapper {
    width: 100%;
    background-image: url("../images/banner-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-flow: column;
    background-position-y: bottom;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 800px) {
    .banner-wrapper {
        background-image: url("../images/banner-sm.png");
        background-position-x: center;
    }
}

.banner-text-wrapper {
    padding: 166px 0 234px;
    display: flex;
    flex-flow: column;
}

.banner-main-title {
    font-family: 'Proxima Nova', sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 100px;
    line-height: 87px;
    text-transform: uppercase;
    color: #FFFFFF;
    width: 100%;
    text-align: left;
    margin-top: 25px;
}

.title-sm {
    display: none;
}

.title-lg {
    display: block;
}

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

    .banner-text-wrapper {
        max-width: 365px;
        padding: 85px 0 195px;
        margin-left: 30px;
    }

    .banner-main-title {
        font-size: 96px;
        line-height: 90px;
    }

    .title-lg {
        display: none;
    }

    .title-sm {
        display: block;
    }
}

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

    .banner-main-title {
        font-size: 80px;
        line-height: 80px;
    }
}

.banner-subtitle-wrapper {
    margin-top: 20px;
    display: flex;
}

@media only screen and (max-width: 800px) {
    .banner-subtitle-wrapper {
        margin-top: 10px;
    }
}
.subtitles-wrapper {
    margin-top: 25px;
}

.banner-subtitle-icon {
    width: 23px;
    height: 23px;
}

.banner-subtitle-text {
    margin: 0 20px 0 10px;
    font-family: 'Proxima Nova', sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 27px;
    line-height: 27px;
    color: #FFFFFF;
    text-transform: uppercase;
    vertical-align: center;
}

@media only screen and (max-width: 800px) {
    .banner-subtitle-text {
        font-size: 26px;
        line-height: 31px;
    }

    .navigating {
        max-width: 310px;
    }
}

@media only screen and (max-width: 480px) {
    .banner-subtitle-text {
        font-size: 14px;
        line-height: 19px;
        margin: 0 10px;
    }

    .banner-subtitle-icon {
        width: 15px;
        height: 15px;
    }
}

.content-wrapper {
    width: 100%;
    position: relative;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 800px) {
    .content-wrapper {
        width: 100%;
        padding: 0 40px;
    }
}

@media only screen and (max-width: 340px) {
    .content-wrapper {
        padding: 0 20px;
    }
}

.main-info-wrapper {
    max-width: 893px;
    margin: 100px 0 30px;
    display: flex;
    justify-content: center;
}

@media only screen and (max-width: 800px) {
    .main-info-wrapper {
        margin: 85px 0 160px;
        align-items: flex-start;
        flex-flow: column;
    }

    .main-info-img-become-lg {
        top: 480px!important;
    }
}

.become-info-wrapper {
    margin-bottom: 210px;
}

.main-info-description-wrapper {
    display: flex;
    flex-flow: column;
}

@media only screen and (max-width: 800px) {
    .main-info-description-wrapper {

    }
}

.become-info-wrapper {
    margin-right: 256px;
    position: relative;
}

@media only screen and (max-width: 800px) {
    .become-info-wrapper {
        margin-right: 0;
        position: relative;
    }
}

.main-info-img-lg {
    width: 148px;
    margin-left: 167px;
}

.main-info-img-sm {
    display: none;
}

.main-info-img-become-lg {
    width: 513px;
    position: absolute;
    right: 0;
    top: 400px;
}


@media only screen and (max-width: 800px) {
    .main-info-img-lg {
        display: none;
    }

    .main-info-img-sm {
        display: block;
        width: 100%;
        margin-top: 50px;
    }


    .main-info-img-become-lg {
        max-width: 260px;
    }
}

.main-info-description {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #000000;
    max-width: 592px;
}

.short-description {
    max-width: 546px;
}

@media only screen and (max-width: 800px) {
    .main-info-description {
        font-size: 13px;
        line-height: 20px;
    }
}

.description-link {
    color: black;
    font-weight: 700;
    text-decoration: underline;
}

@media only screen and (max-width: 800px) {
    .description-link {

    }
}

.main-info-title {
    font-family: 'Proxima Nova', sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 40px;
    line-height: 40px;
    text-transform: uppercase;
    color: #000000;
    text-align: left;
    width: 100%;
    display: inline;
}

@media only screen and (max-width: 800px) {
    .main-info-title {
        font-size: 30px;
        line-height: 30px;
        max-width: 280px;
    }
}

.main-info-points-big {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 34px;
    text-transform: uppercase;
    color: black;
}

.main-info-points-sm {
    display: none;
}

.blue-point {
    color: #5567FF;
    margin: 0 10px;
}

@media only screen and (max-width: 800px) {
    .main-info-points-big {
        display: none;
    }

    .main-info-points-sm {
        display: block;
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 700;
        font-size: 12px;
        line-height: 24px;
        text-transform: uppercase;
        color: black;
    }

    .blue-point {
        margin: 0 4px;
    }
}

.title-margin {
    margin: 0 0 44px;
    max-width: 533px;
}

@media only screen and (max-width: 800px) {
    .title-margin {

    }
}

.become-title {
    max-width: 658px;
    margin-top: 40px;
}

.register-form-wrapper {
    display: flex;
    flex-flow: column;
    justify-content: center;
    max-width: 848px;
    width: 100%;
    align-items: center;
    margin-top: -50px;
}

.register-form-wrapper .become-title {
    text-align: center;
}

.hbspt-form {
    width: 100%;
    margin-bottom: 200px;
}

.title-margin-form {
    margin: 120px 0 44px;
}


.button-wrapper {
    margin: 50px 0 120px;
    width: 100%;
}

@media only screen and (max-width: 800px) {
    .button-wrapper {
        margin: 34px 0 50px;
        width: 100%;
    }

    .register-form-wrapper {
        margin-top: -220px;
    }
}

.main-circle-image {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150px;
}

@media only screen and (max-width: 800px) {
    .main-circle-image {
        display: none;
    }
}

.main-circle-image-right {
    display: none;
}

@media only screen and (max-width: 800px) {
    .main-circle-image-right {
        display: block;
        position: absolute;
        bottom: 178px;
        right: 0;
        width: 75px;
    }
}

.items-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

@media only screen and (max-width: 800px) {
    .items-wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 18px;
    }
}

@media only screen and (max-width: 400px) {
    .items-wrapper {
        gap: 10px;
    }
}

.item-wrapper {
    display: flex;
    margin-bottom: 60px;
}

@media only screen and (max-width: 800px) {
    .item-wrapper {
        display: flex;
        flex-flow: column;
        margin-bottom: 4px;
    }

    .item-wrapper img{
        width: 80px;
    }
}

.item-description {
    max-width: 158px;
    color: black;
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    margin-left: 25px;
}

@media only screen and (max-width: 800px) {
    .item-description {
        max-width: 158px;
        font-size: 14px;
        line-height: 20px;
        margin: 20px 0 0;

    }
}

@media only screen and (max-width: 420px) {
    .item-description {
        max-width: 130px;
        font-size: 12px;

    }
}


.donate-wrapper {
    background: #F1A55E;
    width: 856px;
    min-height: 272px;
    margin-top: 100px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 800px) {
    .donate-wrapper {
        width: 100%;
    }
}

.donate-description {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    text-align: center;
    color: #FFFFFF;
    max-width: 636px;
    margin-bottom: 40px;
    padding: 0 40px;
}

@media only screen and (max-width: 800px) {
    .donate-description {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 25px;
    }
}

.agenda-wrapper {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
    padding-right: 18px;
}

.agenda-content {
    width: 100%;
    max-width: 850px;
    position: relative;
    height: 100%;
}

@media only screen and (max-width: 800px) {
    .agenda-content {
        width: 100%;
        max-width: 100%;
    }
}

.swiper {
    width: 100%;
    height: 100%;
    overflow: visible!important;
}

.swiper-button-next {
    right: -50px!important;
    top: 50%!important;
    transform: translateY(125%);
    color: #000!important;
}

.swiper-button-prev {
    left: -50px!important;
    top: 50%!important;
    transform: translateY(125%);
    color: #000!important;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 800px) {
    .swiper {
        width: 100%;
        height: 100%;
        overflow: visible!important;
    }

    .swiper-button-next {
        display: none!important;
    }

    .swiper-button-prev {
        display: none!important;
    }

    .swiper-slide {
        text-align: center;
        font-size: 18px;
        background: white;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.agenda-title-wrapper {
    background: #9579FF;
    height: 60px;
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.agenda-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 28px;
    text-transform: uppercase;
    color: #000000;
    width: 100%;
    text-align: left;
    margin-top: 35px;
}

@media only screen and (max-width: 800px) {
    .agenda-subtitle {
        font-size: 16px;
        line-height: 28px;
    }
}

.agenda-title-text {
    font-family: 'Proxima Nova', sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 26px;
    text-transform: uppercase;
    color: #FFFFFF;
    width: 100%;
    text-align: left;
    margin-left: 20px;
}

.agenda-body-wrapper {
    width: 100%;
    margin-bottom: 40px;
}

.agenda-part {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 100px;
    padding: 15px 100px 53px 0;
    border-bottom: 1px solid #000;
}

.agenda-part:last-child {
    padding: 53px 100px 53px 0;
    border-bottom: none;
}

@media only screen and (max-width: 800px) {
    .agenda-part:last-child {
        gap: 0;
        flex-flow: column;
        padding: 25px 0;
        min-height: 140px;
    }
}

.agenda-part-time {
    font-family: 'Proxima Nova', sans-serif;
    font-size: 26px;
    font-weight: 900;
    line-height: 26px;
    text-align: center;
    width: 100%;
    color: #000;
    flex: 0 1 180px;
    max-width: 190px;
}

@media only screen and (max-width: 800px) {
    .agenda-title {
        display: block;
        max-width: 100%;
        text-align: initial;
    }

    .agenda-part {
        gap: 0;
        flex-flow: column;
        padding: 25px 0;
        min-height: 286px;
    }

    .agenda-part-time {
        flex: 0 1 100%;
        max-width: 100%;
        font-size: 15px;
        font-weight: 900;
        line-height: 15px;
        text-align: initial;
    }
}

.description-wrapper {
    display: flex;
    flex-flow: column;
    flex: 0 1 calc(100% - 190px);
    max-width: calc(100% - 190px);
}

@media only screen and (max-width: 800px) {
    .description-wrapper {
        flex: 0 1 100%;
        max-width: 98%;
    }
}

.agenda-part-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 28px;
    text-align: left;
    color: #000;
}

@media only screen and (max-width: 800px) {
    .agenda-part-title {
        font-family: 'Open Sans', sans-serif;
        font-size: 12px;
        font-weight: 700;
        line-height: 20px;
        text-align: left;
        color: #000;
        margin-top: 5px;
    }
}

.agenda-part-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    margin: 15px 0 0;
    color: #000;
    max-width: 470px;
}

@media only screen and (max-width: 800px) {
    .agenda-part-description {
        font-family: 'Open Sans', sans-serif;
        font-size: 12px;
        font-weight: 400;
        line-height: 23px;
        text-align: left;
        margin: 15px 0 0;
        color: #000;
        max-width: 470px;
    }
}

.swiper-pagination-bullet {
    width: 16px!important;
    height: 16px!important;
    margin: 0 8px!important;
}

@media screen and (max-width: 800px) {
    .swiper-pagination-bullet {
        width: 12px!important;
        height: 12px!important;
    }
}

.swiper-pagination-bullet-active {
    background: #5730BF!important;
}

.agenda-button {
    display: none;
    font-size: 15px;
    line-height: 20px;
    padding: 10px;
}

@media screen and (max-width: 800px) {
    .agenda-button {
        display: block;
        margin: 66px 0 44px 0;
    }
}

.element-icons {
    max-width: 500px;
    margin: 120px 0;
}

@media screen and (max-width: 1280px) {
    .element-icons {
        max-width: 290px;
        margin: 0 0;
    }
}

.lines-background {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.bg-lines {
    position: absolute;
}

.bg-lines-sm {
    display: none;
}

@media screen and (max-width: 800px) {
    .bg-lines {
       display: none;
    }

    .bg-lines-sm {
        display: block;
        position: absolute;
        right: 0;
    }
}

.form-wrapper {
    width: 100%;
    display: flex;
    flex-flow: column;
    z-index: 100;
    position: relative;
}

@media screen and (max-width: 800px) {
    .form-wrapper {
        width: 100%;
        padding: 0 40px;
    }
}

.committee-bg-elements {
    position: absolute;
    right: 0px;
    bottom: 0;
    width: 190px;
    z-index: -1;
}

@media screen and (max-width: 800px) {
    .committee-bg-elements {
        right: 40px;
        bottom: -100px;
        width: 180px;
    }
}

.slider-container {
    width: 100%;
    padding: 0 225px;
    z-index: 100;
    position: relative;
}

.slider-container.committee {
    margin-bottom: 120px;
    margin-top: 196px;
}

.slider-container.speakers {
    margin-bottom: 120px;
    margin-top: 80px;
    /*display: none;*/
}

@media screen and (max-width: 1280px) {
    .slider-container {
        padding: 0 100px;
    }

    .slider-container.committee {
        margin-bottom: 80px;
    }
}

@media screen and (max-width: 800px) {
    .slider-container {
        padding: 0 40px;
    }

    .slider-container.speakers {
        margin-bottom: 110px;
        display: block;
    }
}

.slider-title {
    font-size: 40px;
    line-height: 49px;
    color: #000;
    font-weight: 900;
    margin-bottom: 45px;
    font-family: 'Proxima Nova', sans-serif;
    text-transform: uppercase;
    text-align: center;
}

@media screen and (max-width: 800px) {
    .slider-title {
        font-size: 30px;
        line-height: 35px;
    }
}

.slider-wrapper {
    width: 100%;
    gap: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    /*overflow: auto;*/
}

/*.slider-container.speakers .slider-wrapper {*/
/*    justify-content: flex-start;*/
/*}*/

.slider-wrapper::-webkit-scrollbar {
    display: none;
}

@media screen and (max-width: 1280px) {
    .slider-wrapper {
        width: calc(100% + 200px);
        margin-left: -100px;
    }

    .slider-container.speakers .slider-wrapper {
        justify-content: center;
    }
}

@media screen and (max-width: 800px) {
    .slider-wrapper {
        width: calc(100% + 80px);
        margin-left: -40px;
    }

    .slider-wrapper::-webkit-scrollbar {
        display: none;
    }
}

.slider-item {
    /*padding: 45px 50px;*/
    /*background-color: rgba(236, 237, 240, 1);*/
    /*border-radius: 15px;*/
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    /*flex: 0 1 228px;*/
    /*max-width: 288px;*/
    /*min-width: 228px;*/
}

.speaker {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}

.slider-item-committee {
    padding: 45px 20px 30px 20px;
}

.slider-container.speakers .slider-item {
    flex: 0 1 314px;
    max-width: 314px;
    min-width: 314px;
}

@media screen and (max-width: 800px) {
    .slider-item:first-child {
        margin-left: calc(228px * 4 - 60px);
    }

    .slider-item:last-child {
        margin-right: 228px;
    }

    .slider-container.speakers .slider-item:last-child {
        margin-right: 314px;
    }

    .slider-container.speakers .slider-item:first-child {
        margin-left: calc(314px * 5 - 60px);
    }
}

@media screen and (max-width: 425px) {
    .slider-item:last-child {
        margin-right: calc(228px / 2 - 40px);
    }

    .slider-container.speakers .slider-item:last-child {
        margin-right: calc(314px / 2 + 10px);
    }
}

.slider-item-image {
    width: 185px;
    height: 185px;
    margin-bottom: 24px;
}

.slider-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.slider-item-title {
    font-size: 16px;
    line-height: 22px;
    color: #000;
    font-weight: 800;
    margin-bottom: 10px;
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
}

.slide-item-description {
    font-size: 16px;
    line-height: 20px;
    color: rgba(0, 0, 0, 1);
    font-weight: 400;
    font-family: 'Open Sans', sans-serif;
    width: 210px;
    min-height: 40px;
    text-align: center;
}

.committee-description {
    min-height: 60px;
}

.slide-item-links {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 33px;
}

.slider-link {
    width: 33px;
    height: 33px;
}

.slider-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.speakers-slider-wrapper {
    display: block;
}

@media screen and (max-width: 800px) {
    .speakers-slider-wrapper {
        display: none;
    }
}

.speakers-wrapper {
    display: flex;
    /*flex-flow: column;*/
    justify-content: center;
    align-items: center;
    margin-top: 80px;
    flex-wrap: wrap;
    gap: 112px;
}

.speakers-container {
    margin: 150px 0;
}

@media screen and (max-width: 800px) {
    .speakers-container {
        flex-wrap: wrap;
    }

    .speakers-wrapper {
        gap: 35px;
        margin-top: 35px;
    }
}

.swiper-slide-speakers {
    display: flex!important;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.speakers-next:after {
    padding-bottom: 95px;
}

.speakers-prev:after {
    padding-bottom: 95px;
}

.partners-container {
    width: 100%;
}

@media screen and (max-width: 800px) {
    .partners-container {
        padding: 0 40px;
    }
}

.partners-title {
    font-size: 40px;
    line-height: 49px;
    color: #000;
    font-weight: 900;
    font-family: 'Proxima Nova', sans-serif;
    margin-bottom: 45px;
    text-transform: uppercase;
}

@media screen and (max-width: 800px) {
    .partners-title {
        font-size: 30px;
    }
}

.partners-wrapper {
    width: 100%;
    gap: 95px;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.partners-wrapper a{
    display: flex;
    align-items: end;
}

@media screen and (max-width: 800px) {
    .partners-wrapper {
        gap: 65px;
    }
}

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

    .partners-wrapper a{
        display: flex;
        align-items: end;
        width: calc(50% - 75px);
    }

    .partners-item {
        /*flex: 0 1 calc(50% - 65px);*/
        /*max-width: calc(50% - 65px);*/
        width: 100%;
        display: flex;
        /*justify-content: center;*/
    }

    .partners-item img {
        object-fit: contain;
    }
}

@media screen and (max-width: 425px) {
    .partners-item img {
        width: 100%;
    }
}

.card-header {
    background: linear-gradient(180deg, #D80056 -2.39%, #B40047 22.49%, #5B0024 75.36%, #000 128.23%)!important;
    height: 67px;
    display: flex;
    align-items: center;
}

.btn-link:focus {
    text-decoration: none!important;
}

.accordion {
    width: 100%;
    margin-bottom: 575px;
}

.card {
    border: 0!important;
}

.card-body {
    margin: 40px 0 10px;
    gap: 45px;
}

.accordion {
    display: flex;
    flex-flow: column;
    gap: 100px;
}

.speaker-wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 44px;
}

@media screen and (max-width: 800px) {
    .speaker-wrapper {
        display: flex;
        justify-content: space-between;
        flex-flow: column;
        margin-top: 44px;
    }

    .card-body {
        margin: 0px 0 60px;
        gap: 45px;
    }

    .speaker-text {
        margin-bottom: 30px;
    }

    .accordion {
        gap: 80px;
        margin-bottom: 0;
    }
}

.speaker-name {
    color: #000;
    font-family: Open Sans, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px; /* 116.667% */
    margin-bottom: 5px!important;
}

.speaker-theme {
    color: #000;
    font-family: Open Sans, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 40px;
    max-width: 414px;
}

.btn-link {
    color: #FFF!important;
    font-feature-settings: 'salt' on;
    font-family: Proxima Nova, sans-serif;
    font-size: 40px!important;
    font-style: normal;
    font-weight: 900!important;
    line-height: 40px; /* 100% */
    text-transform: uppercase;
}

.card-header {
    position: relative;
}

.btn-link .arrow-down {
    width: 17px;
    position: absolute;
    right: 40px;
    top: 45%;
    transform: rotate(0deg);
    transition: 0.5s;
}


.btn-link.collapsed .arrow-down {
    width: 17px;
    position: absolute;
    right: 40px;
    top: 45%;
    transform: rotate(-90deg);
}


@media screen and (max-width: 800px) {
    .btn-link {
        color: #FFF !important;
        font-feature-settings: 'salt' on;
        font-family: Proxima Nova, sans-serif;
        font-size: 17px !important;
        font-style: normal;
        font-weight: 900!important;
        line-height: 40px; /* 100% */
        text-transform: uppercase;
    }

    .btn {
        padding: 0 !important;
    }

    .speaker-theme {
        font-size: 17px;
        margin-bottom: 30px;
    }

    .archive-element-img {
        display: none;
    }
}

@media screen and (max-width: 450px) {
    .btn-link {
        font-size: 14px !important;
    }

    iframe {
        max-width: 300px;
        height: 180px;
    }

    .card-body {
        margin: 0;
        padding: 0!important;
    }
}

.archive-element-img {
    width: 548px;
    position: absolute;
    bottom: 200px;
    left: 0;
}

@media screen and (max-width: 395px) {
    .btn-link {
        font-size: 12px !important;
    }
}

.archive-element-img {
    width: 548px;
    position: absolute;
    bottom: 200px;
    left: 0;
}

.home-element-img {
    position: absolute;
    bottom: -2px;
    left: 9%;
}

@media screen and (max-width: 800px) {
    .home-element-img {
        display: none;
    }
}

footer {
    padding: 40px 70px;
    width: 100%;
    background: black;
    display: flex!important;
    justify-content: center;
}

.footer-wrapper {
    width: 893px;
    display: flex;
    justify-content: space-between;
}

.footer-logo-softserve {
    max-width: 150px;
    max-height: 24px;
    margin: 0;
}

.footer-social-wrapper {
    display: flex;
    align-items: center;
    gap: 38px;
}

.social-icon {
    width: 33px;
    height: 33px;
}

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

    footer {
        padding: 40px;
    }
    /*.footer-wrapper {*/
    /*    padding: 40px 70px;*/
    /*    display: flex;*/
    /*    flex-flow: column;*/
    /*    justify-content: center;*/
    /*    align-items: center;*/
    /*    background: black;*/
    /*}*/

    .footer-logo-softserve {
        max-width: 122px;
        max-height: 31px;
        margin: 0;
    }

    .social-icon {
        width: 31px;
        height: 31px;
    }

    .footer-social-wrapper {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .footer-logo-softserve {
        margin-right: 15px;
    }
}
