@font-face {
    font-family: "Verlag";
    src: url("../fonts/Verlag.ttf");
    font-weight: 300;
}
@font-face {
    font-family: "Verlag";
    src: url("../fonts/Verlag-Bold.otf");
    font-weight: 400;
}
@font-face {
    font-family: "Verlag";
    src: url("../fonts/Verlag-Black.ttf");
    font-weight: 450;
}


* {
    box-sizing: border-box;
}

body {
    margin: 0;
    width: 100%;
    color: #333;
    font-size: 25px;
    line-height: 30px;
    font-family: "Verlag";
    font-weight: 300;
} 

.fix-size {
    max-width: 1920px;
    width: auto;
    margin: 0 auto;
    padding: 0 50px;
}


/* ------------HEADER------------ */


.header {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: fixed;
    z-index: 5;
    transition: top 0.3s;
}

.header .header-wrapp-blue {
    background: #45C3EB;
}
    
.header .contacts {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 1700px;
    width: 100%;
    height: 67px;
    margin: 0 auto;
    padding: 0 30px;
}

.header .tel-and-mail {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-left: 8%;
    align-items: center;
}

.header .tel-and-mail img {
    margin-right: 20px;
    width: 26px;
    height: 26px;
}

.header .tel-and-mail .phone,
.header .tel-and-mail .email {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    text-decoration: none;
    font-size: calc( (100vw - 744px)/(1920 - 744) * (20 - 16) + 16px);
    color: #000000;
}

.header .tel-and-mail .phone {
    margin-right: 40px;
}

.header .tel-and-mail .email img {
    padding-top: 2px;
}

.header .social {
    display: flex;
    flex-direction: row;
}

.header .social a {
    text-decoration: none;
    padding: 10px;
    border-left: 1px solid rgba(51, 51, 51, 0.3);
}

.header .social img {
    display: block;
    width: 40px;
    height: 40px;
    padding: 5px 5px;    
    background-color: #454545;
    border-radius: 49px;
    transition: all ease-out 0.3s;
}

.header .social a:hover img {
    transform: scale(1.1);
}

.header .social a:nth-last-child(-n+2) {
    border-right: 1px solid rgba(51, 51, 51, 0.3);
}

.button-donate {
    background: #A30000;
    border: 1px solid #A30000;
    border-radius: 5px;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    text-transform: uppercase;
    color: #FFFFFF;
    width: 170px;
    height: 50px;
    margin-left: 20px;
    padding: 17px 26px;
    align-self: center;
    cursor: pointer;
    transition: all ease-out 0.5s;
}

.button-donate:hover {
    transform: scale(1.1);
}

.header .header-wrapp-white {
    background: #F5F5F5;
    box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.1);
}

.header .header-navigation {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 1700px;
    width: 100%;
    height: 100px;
    padding: 0 30px;
    margin: 0 auto;
}

.header .header-wrapp-white .logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: auto;
    text-decoration: none;
    color: #000000;
}

.header .header-wrapp-white .logo img {
    width: calc( (100vw - 744px)/(1920 - 744) * (130 - 103) + 103px);
}

.header .header-wrapp-white .logo p {
    font-size: calc( (100vw - 320px)/(1920 - 320) * (31 - 20) + 20px);
    line-height:  calc( (100vw - 320px)/(1920 - 320) * (37 - 24) + 24px);
}

.header .header-wrapp-white .logo b {
    font-weight: 450;   
} 

.header .header-navigation .navigation {
    display: flex;
    flex-direction: row;
}

.header .header-navigation .nav-bar {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

.header .header-navigation .list {
    text-decoration: none;
    font-weight: 400;
    font-size: 22px;
    color: #000000;
    display: block;
    padding: 35px 15px;
}

.header .header-navigation .nav-bar:last-child {
    padding-right: 0;
}

.header .header-navigation .navigation .list:hover {
    background: #45C3EB;
}


.header .header-wrapp-white .header-navigation-mob {
    display: none;
}


/* ------------MOB BURGER MENU------------ */

.header-mob {
    display: none;
}

.header .header-mob img {
    width: 21px;
}

.header-mob-menu {
    position: fixed;
    justify-content: flex-end;
    top: 0;
    z-index: 999;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
    display: none;
}

.header-mob-menu.active {
    display: flex;
}

.header-mob-menu .menu {
    width: 35%;
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
}

.header-mob-menu .menu-close {
    position: absolute;
    left: -7%;
    top: 2%;
}

.header-mob-menu .menu-close svg {
    width: 40px;
    background: #A30000;
    border-radius: 34px;
    padding: 10px;
}

.header-mob-menu .burger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 37px;
}

.header-mob-menu .burger-menu li {
    width: 100%;
    padding: 12px 0 17px 37px;
    border-bottom: 1px solid rgba(51, 51, 51, 0.3);
}

.header-mob-menu .burger-menu .list {
    text-decoration: none;
    font-size: 16px;
    line-height:  19px;
    font-weight: bolder;
    color: #000000;
    transition: all ease-out 0.3s;
}

.header-mob-menu .burger-menu .list:hover {
    transition: all ease-out 0.3s;
    font-size: 17px;
}


.header-mob-menu .social {
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-self: center;
    width: 70%;
}

.header-mob-menu .social a {
    text-decoration: none;
}

.header-mob-menu .social a:last-child {
    margin-right: 0;
}

.header-mob-menu .social img {
    display: block;
    width: 30px;
    height: 30px;
    padding: 5px 5px;    
    background-color: #454545;
    border-radius: 49px;
    transition: all ease-out 0.3s;
}

.header-mob-menu .social a:hover img {
    transform: scale(1.1);
}


.fade-in-right {
	-webkit-animation: fade-in-right .5s ease-in-out both;
	animation: fade-in-right .5s ease-in-out both;
}
 @-webkit-keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}


/* ------------MAIN------------ */


.title {
    font-weight: 400;
    font-size: calc( (100vw - 320px)/(1920 - 320) * (60 - 20) + 20px);
    line-height:  calc( (100vw - 320px)/(1920 - 320) * (81 - 30) + 30px);
    color: #45C3EB;
    text-transform: uppercase;
}

.text {
    font-size: calc( (100vw - 744px)/(1920 - 744) * (25 - 18) + 18px);
    line-height:  calc( (100vw - 320px)/(1920 - 320) * (30 - 16) + 20px);
}

.strong {
    font-weight: 400;
    color: #333;
}

.button {
    width: calc( (100vw - 320px)/(1920 - 320) * (207 - 80) + 80px);
    height:  calc( (100vw - 320px)/(1920 - 320) * (62 - 24) + 24px);
    font-size: calc( (100vw - 320px)/(1920 - 320) * (20 - 8) + 10px);
    line-height:  calc( (100vw - 320px)/(1920 - 320) * (24 - 10) + 12px);
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    border-radius: 5px;
    cursor: pointer;
    transition: all ease-out 0.5s;
}



.main {
    position: relative;
    top: 148px;
}

.main .main-wrapp {
    background-image: url(../images/photo/main_img.jpg);
    background-repeat: no-repeat;
    background-position: right center;
    margin-bottom: 130px;
    background-size: contain;
}

.main::before {
    display: block;
    content: '';
    position: absolute;
    background: #ffffff;
    z-index: 1;
    width: 100%;
    height: 8px;
    top: -2px;
}

.main .main-container {
    display: flex; 
}

.main .main-container .wrapp {
    position: relative;
    height: auto;
    min-height: 550px;
    width: 50%;
    object-fit: cover;
    top: 3px;
}

.main .text-block {
    display: flex;
    flex-direction: column;
}

.main .main-container .text-block {
    justify-content: center;
    margin-left: 6%;
    position: absolute;
    top: 3%;
    width: 41%;
}

.main .main-container .main-title {
    font-weight: 450;
    font-size: calc( (100vw - 744px)/(1920 - 744) * (75 - 45) + 45px);
    line-height: calc( (100vw - 744px)/(1920 - 744) * (100 - 60) + 60px);
    max-width: 750px;
    color: #000000;
    margin-bottom: 38px;
}

.main .main-container .main-title span {
    color: #45C3EB;
    white-space: nowrap;
}

.main .main-container .text {
    margin-bottom: 56px;
    width: 75%;
}

.main .main-container .button-block {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
	gap: 20px;
}

.main .main-container .button-block .button {
    background: #A30000;
    border: 1px solid #A30000;
    margin-right: 3%;
    margin-left: 0;
}

.main .main-container .button-block .button:hover {
    transform: scale(1.1);
}

.main .main-container .button-block a {
    width: 65px;
    height: 65px;
    border-radius: 35px;
    text-align: center;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    /*margin-right: 3%;*/
}

.main .main-container .button-block img {
    border-radius: 1px;
    width: 27px;
    height: 26px;
    margin-top: 19px;
    margin-left: 7px;
}

.main .main-container .button-block .video {
    width: auto;
    font-weight: 400;
    font-size: calc( (100vw - 320px)/(1920 - 320) * (22 - 10) + 12px);
    line-height: 26px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    align-self: center;
    text-align: center;
}

.main .info-container {
    display: flex;
    flex-direction: row;
    margin-bottom: 115px;
}

.main .info-container .photo-block {
    /*display: flex;*/
    /*flex-direction: row;*/
    /*flex-wrap: wrap;*/
    max-width: 797px;
}

.main .info-container .photo-block img {
    max-width: 48%;
    width: 100%;
    height: auto;
    margin-right: 2%;
    margin-bottom: 2%;
    filter: grayscale(100%);
    transition: .3s;
	float: left;
}

.main .info-container .photo-block img:hover {
    filter: none;
}

.main .info-container .text-block {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    max-width: 55%;
    margin-left: 2%;
}

.main .info-container .title {
    display: none;
}

.main .info-container .text-block .title {
    display: block;
    margin-bottom: 50px;
}

.main .info-container .text {
    margin: 40px 0;
    max-width: 100%;
}

.main .info-container .strong {
    margin: 0 0 0 77px;
}

.main .info-container .text-block .strong:last-child {
    text-transform: uppercase;
}

.main .projects .projects-block {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0 10px 25px;
}

.main .projects .text-block {
    max-width: 415px;
    margin-right: 15px;
    width: 35%;
    height: auto;
    z-index: 1;
}

.main .projects .projects-block .title {
    color: #F1D021;
    padding-left: 21px;
    border-left: 8px solid #F1D021;
}

.main .projects .strong {
    margin: 40px 0;
}

.main .projects .button {
    width: 277px;
    height: 62px;
    border: 3px solid #F1D021;
    color: #F1D021;
    background-color: #FFFFFF;
}

.main .projects .button:hover {
    transform: scale(1.1);
    background-color: #F1D021;
    border: 3px solid #FFFFFF;
    color: #FFFFFF;
}




.main .projects .slider {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 70%;
}

.slider__wrapper {
    overflow: hidden;
}

.main .projects .slider__items {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    width: 100%;
}

.main .projects .slider__items .slider__item {
    display: flex;
    flex-direction: column;
    padding-right: 30px;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
}

.main .projects .slider__items .slider__item img:first-of-type {
    filter: grayscale(100%);
    transition: .3s;
}


.main .projects .slider__items .slider__item .strong {
    font-size: calc( (100vw - 744px)/(1920 - 744) * (25 - 14) + 14px);
    line-height: calc( (100vw - 744px)/(1920 - 744) * (42 - 24) + 24px);
    text-transform: uppercase;
    margin-top: 22px;
    margin-bottom: 5px;
}

.main .projects .slider__items .slider__item:hover img:first-of-type {
    transform: scale(1.03);
    filter: none;
    box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.4);
}

.main .projects .slider__items .slider__item:hover .strong {
    color: #F1D021;
}

.slider__control {
    background-color: transparent;
    background: transparent;
}

.slider__control:hover, .slider__control:focus {
    background-color: transparent;
    background: transparent;
}

.slider__control[data-slide="next"]::before {
    background-image: url(../images/arrow_next.svg);
}

.slider__control[data-slide="prev"] {
    left: -40px;
}

.slider__control[data-slide="prev"]::before {
    background-image: url(../images/arrow_prev.svg);
}

.slider__control[data-slide="next"]{
    display: none;
}

.slider__indicators {
    top: -50px;
    bottom: auto;
}

.slider__indicators li {
    background-color: #D9D9D9;
    width: 13px;
    height: 11px;
    margin-right: 7px;
    margin-left: 7px;
    border-radius: 50%;
}

.slider__indicators li.active {
    background-color: #959494;
}


.main .projects .slider-mob {
    display: none;
}

.main .projects .slider__items .slider__item-mob {
    display: flex;
    flex-direction: row;
    padding: 0;
    flex: 0 0 100%;
    max-width: 100%;
    height: fit-content;
}

.main .projects .slider__items .slider__item-mob > div{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0 14px;
    border-right: 1px solid #F1D021;
    width: 50%;
}

.main .projects .slider__items .slider__item-mob img:first-of-type {
    filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4));
}

.main .projects .slider__items .slider__item-mob .text{
    padding-left: 14px;
    align-self: center;
}

.main .projects .slider__items .slider__item-mob .strong {
    color: #F1D021;
    margin: 15px 0 0;
    padding: 0;
    text-align: center;
}

.main .projects {
    z-index: 1;
    position: relative;
    background: linear-gradient(180deg, #fffcfc 71.4%, rgba(255, 255, 100, 0) 100%);
    padding-bottom: 90px;
}

.main .map {
    width: 100%;
    height: auto;
    position: relative;
}

.main .map .wrapp {
    position: relative;
    height: auto;
    width: 100%;
    margin-top: -23%;
}

.main .map .wrapp .map-wrapp {
    width: 100%;
    height: auto;
}

.main .map .map-title {
    position: absolute;
    z-index: 1;
    right: 0;
    top: 32%;
    max-width: 764px;
    height: auto;
    font-weight: 400;
    font-size: calc( (100vw - 744px)/(1920 - 744) * (50 - 30) + 30px);
    line-height: calc( (100vw - 744px)/(1920 - 744) * (76 - 40) + 40px);
    text-transform: uppercase;
    background: rgba(69, 195, 235, 0.8);
    box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.25);
    border-radius: 4px 0px 0px 4px;
    color: #FFFFFF;
    text-align: right;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border: none;
    padding: 35px 89px 34px 64px;
}

.main .map .cambodia {
    position: absolute;
    bottom: 27%;
    right: 30%;
    width: 4%;
    height: auto;
    transition: .3s ease-in-out;
}

.main .map .indonesia {
    position: absolute;
    width: 26.8%;
    height: auto;
    bottom: 9.9%;
    right: 9.5%;
    transform: rotate(-5deg);
    transition: .3s ease-in-out;
}

.main .map .ukraine {
    position: absolute;
    height: auto;
    top: 38.2%;
    left: 20.2%;
    width: 10%;
    transition: .3s ease-in-out;
}

.main .map .kenya {
    position: absolute;
    height: auto;
    width: 6%;
    bottom: 11.5%;
    left: 28.5%;
    transition: .3s ease-in-out;
}

.main .map .ukraine:hover,
.main .map .kenya:hover,
.main .map .cambodia:hover,
.main .map .indonesia:hover {
    filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.63)) saturate(1.1);
    transform: scale(1.15);
    transition: .3s ease-in-out;
    z-index: 2;
}

.main .map .indonesia:hover {
    transform: rotate(-5deg) scale(1.15);
}


.main .map .globe {
    position: absolute;
    bottom: 0;
    left: 0;
    border-left: none;
    width: 13%;
    height: auto;
}

.main .map .pin {
    width: 10px;
    height: 15px;
    position: absolute;
}
.main .map .first {
    bottom: 7%;
    left: 7.2%;
}
.main .map .second {
    bottom: 5%;
    left: 7.5%;
}
.main .map .third {
    bottom: 5.9%;
    left: 9.6%;
}
.main .map .fourth {
    bottom: 5%;
    left: 10.1%;
}


/* ------------START MODAL------------ */


.main .map .modal-container {
    position: fixed;
    top: 0;
    z-index: 10;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.2);
    display: none;
  }
  
  .main .map .modal-container.active {
    display: flex;
  }
  
  .main .map .modal { 
    width: 32%;
    height: auto;
    position: relative;
    background: #F5F5FA;
    border-radius: 7px;
    margin: auto;
    padding: 23px 23px 23px 36px;
}

.main .map .modal-container .pic {
    height: auto;
    float: left;
    margin-right: 21px;
}

.main .map .modal-container .strong {
    font-weight: 400;
    font-size: 23px;
    color: #333;
    margin-bottom: 6px;
    text-align: center;
}

.main .map .modal-container .text {
    font-size: 20px;
    line-height: 27px;
    text-align: justify;
}

.main .map .modal-container .link {
    font-weight: 400;
    font-size: 20px;
    line-height: 27px;
    color: #45C3EB;
    text-decoration: none;
    float: right;
    margin-top: 5px;
}


/* ------------END MODAL------------ */


.main .team-container {
    text-align: center;
    margin-top: 25px;
}

.main .team-container .line {
    width: 90%;
    height: 1px;
}

.main .team-container .team {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 60px 0;
}

.main .team-container .team img {
    min-height: 230px;
    min-width: 230px;
    max-width: 500px;
    max-height: 500px;
    width: 100%;
    height: auto;
    align-self: flex-start;
}

.main .team-container .text-block {
    text-align: left;  
    margin-left: 40px;
    max-width: 975px; 
}

.main .team-container .name {
    font-size: 33px;
}

.main .team-container .text {
    margin-bottom: 25px;
}

.main .team-container .text:last-child {
    margin-bottom: 0
}

.main .team-container .strong {
    margin-bottom: 30px;
    line-height: 44px;
}

.main .team-container .text-block .mob-text {
    display: none;
}

#text, #text2, #text3, #text4 {
    display: none;
}

.main .team-container .text-block .mob-text button{
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    cursor: pointer;
    border: none;
    font-size: calc( (100vw - 744px)/(1920 - 744) * (25 - 18) + 18px);
    line-height:  calc( (100vw - 320px)/(1920 - 320) * (30 - 16) + 16px);
    background: transparent;
    color: #45C3EB;
    box-sizing: border-box;
    padding: 0;
}


.main .help-container {
    background: #EEF1F4;
    padding-bottom: 5px;
    padding-top: 32px;
    border-bottom: 2px dashed rgba(0, 0, 0, 0.5);
}

.main .help-container .title {
    color: #F1D021;
    margin-left: 5%;
}

.main .help-container .help-block {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-left: 5%;
}

.main .help-container .text-block {
    margin-right: 5%;
    max-width: 585px;
    height: auto;
    width: 60%;
}

.main .help-container .text {
    line-height: 170%;
    margin-bottom: 43px;
}

.main .help-container .strong {
    font-size: calc( (100vw - 320px)/(1920 - 320) * (30 - 14) + 14px);
    line-height:  calc( (100vw - 320px)/(1920 - 320) * (40 - 20) + 20px);
    margin: 16px 0 35px;
}

.main .help-container .text-block span {
    font-weight: 400;
}

.main .help-container .button {
    background: #F1D021;
    border: 3px solid #F1D021;
    margin-bottom: 200px;
}

.main .help-container .button:hover {
    transform: scale(1.1);
    background: #EEF1F4;
    color: #F1D021;
    border: 3px solid #F1D021;
}

.main .help-container .photo-block {
    width: auto;
    max-width: 1060px;
    min-width: 275px;
}

.main .help-container .text-block .photo-none {
    display: none;
}

.main .help-container .photo-block img {
    filter: drop-shadow(9px 9px 30px rgba(0, 0, 0, 0.4));
    position: relative;
}

.main .help-container .img_1 {
    top: -3vw;
    width: calc((100vw - 744px)/(1920 - 744) * (355 - 135) + 135px);
    height: auto;
    max-width: 432px;
}

.main .help-container .img_2 {
    width: calc((100vw - 744px)/(1920 - 744) * (505 - 192) + 192px);
    height: auto;
    max-width: 615px;
}

.main .help-container .img_3 {
    right: -18.7vw;
    width: calc((100vw - 744px)/(1920 - 744) * (328 - 124) + 124px);
    height: auto;
    max-width: 400px;
}

.main .help-container .img_4 {
    top: -7vw;
    right: -19vw;
    width: calc((100vw - 744px)/(1920 - 744) * (329 - 125) + 125px);
    height: auto;
    max-width: 401px;
}

.main .sponsors {
    margin-top: 8px;
    padding: 58px 0 100px 92px;
    border-bottom: 2px dashed rgba(0, 0, 0, 0.5);
    border-top: 2px dashed rgba(0, 0, 0, 0.5);
}

.main .sponsors .title {
    color: #333333;
    padding-left: 31px;
    border-left: 8px solid #333333;
}

.main .sponsors-block {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 66px;
}

.main .sponsors .card-breezzo {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-right: 36px;
    width: 605px;
}

.main .sponsors .text-block {
    justify-content: flex-start;
    width: 275px;
    margin-left: 7%;
}

.main .sponsors .card-breezzo .text-block a {
    text-decoration: none;
    color: #4ABDA2;
    cursor: pointer;
    font-size: calc( (100vw - 320px)/(1920 - 320) * (24 - 14) + 14px);
    line-height:  calc( (100vw - 320px)/(1920 - 320) * (32 - 16) + 16px);
}

.main .sponsors .card-breezzo a:hover {
    text-decoration:underline;
}

.main .sponsors .card:last-child {
    margin-right: 0;
}

.main .sponsors .accent-title {
    font-weight: 400;
    font-size: calc( (100vw - 320px)/(1920 - 320) * (30 - 16) + 16px);
    line-height: calc( (100vw - 320px)/(1920 - 320) * (41 - 21) + 21px); 
    color: #4ABDA2;
}

.main .sponsors .strong {
    font-weight: 450;
    margin-bottom: 10%;
}

.main .sponsors .card-other .sponsors-logo {
    font-weight: 400;
    font-size: 30px;
    line-height: 41px;
    text-align: center;
    color: rgba(51, 51, 51, 0.4);
    background: #D9D9D9; 
    width: 270px;
    height: 270px;
    border-radius: 135px;
    padding-top: 69px;
    margin-right: 15px;
}

.main .sponsors .card-other {
    display: flex;
    justify-content: space-between;
    max-width: 908px;
    width: 100%;
}


.main .press-room {
    margin-top: 6px;
    padding: 100px 30px;
    border-top: 2px dashed rgba(0, 0, 0, 0.5);
    text-align: center;
}

.main .press-room .title {
    color: #F1D021;
    line-height: 170%;
}

.main .press-block {
    max-width: 1100px;
    text-align: left;
    margin: 0 auto;
    padding-top: 12px;
}

.main .press-block .pdf {
    max-width: 130px;
    min-width: 57px;
}

.main .press-block .line {
    width: 100%;
    height: 2px;
}

.main .press-block .releases {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 25px;
    margin-bottom: 15px;
}

.main .press-block .releases:first-child {
    margin-top: 0;
}

.main .press-block .releases:last-child {
    margin-bottom: 0;
}

.main .press-block .text-block {
    margin-left: 28px;
    max-width: 943px;
}

.main .press-block .text-block .mob-press-img-none {
    display: none;   
}

.main .press-block .subtitle {
    font-size: 33px;
    line-height: 170%;
    margin-left: 160px;
}

.main .press-block .subtitle-strong {
    font-weight: 400;
    font-size: calc( (100vw - 320px)/(1920 - 320) * (24 - 14) + 14px);
    line-height: calc( (100vw - 320px)/(1920 - 320) * (29 - 16) + 16px); 
    color: #F1D021;
    margin-bottom: 14px;
    text-decoration: none;
}

.main .press-block .subtitle-strong:hover {
    text-decoration: underline;
}

.main .press-block .text {
    color: #909090;
}

.main .press-block .strong {
    line-height: 170%;
    margin-bottom: 3%;
    color: #333;
}


/* ------------FOOTER------------ */


.footer {
    position: relative;
    top: 190px;
}

.footer .footer-wrapp {
    background: #333333;
}

.footer .title {
    line-height: 170%;
    color: #FFFFFF;
    padding-top: 38px;
    text-align: center;
}

.footer .fix-size {
    max-width: 1800px;
    padding: 0 20px;
}

.footer .footer-block {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 37px;
    padding-bottom: 20px;
}

.footer .contact {
    display: flex;
    flex-direction: column;
    max-width: 548px;
    width: 100%;
    margin-right: 15px;
}

.footer .contact a {
    font-weight: 300;
    text-decoration: none;
    font-size: calc( (100vw - 320px)/(1920 - 320) * (24 - 12) + 12px);
    line-height: calc( (100vw - 320px)/(1920 - 320) * (29 - 14) + 14px);    
    text-align: left;
    color: #FFFFFF;
    padding-bottom: 37px;
}

.footer .contact a:hover{
    color: #45C3EB;
}

.footer .contact span {
    font-weight: 400;
    color: #FFFFFF;
}

.footer .form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    max-width: 548px;
    width: 100%;
}

.footer .form .input {
    box-sizing: border-box;
    width: 100%;
    height: 50px;
    border: 2px solid #FFFFFF;
    background: #333333;
    border-radius: 5px;
    font-family: "Verlag";
    font-weight: 400;
    font-size: calc( (100vw - 320px)/(1920 - 320) * (20 - 10) + 10px);
    line-height: calc( (100vw - 320px)/(1920 - 320) * (24 - 12) + 12px);
    text-align: left;
    color: #FFFFFF;
    padding-left: 27px;
    margin-bottom: 14px;
}

.footer .form .message {
    min-height: 130px;
    resize: none;
    padding-top: 10px;
    margin-bottom: 19px;
}

.footer .form .input::placeholder {
    color: #FFFFFF;
    opacity: 1;
}

.footer .form .input:hover {
    border: 2px solid #45C3EB;
}

.footer .form .message:hover {
    border: 2px solid #45C3EB;
}

.footer .form .input:hover::placeholder {
    color: #45C3EB;
}

.footer .form .button {
    background: #F1D021;
    border: none;
}

.footer .form .button:hover {
    transform: scale(1.1);
}

.footer .line-none,
.footer .social-media-none {
    display: none;
}

.footer .social-media {
    display: flex;
    flex-direction: column;
    max-width: 548px;
    width: 100%;
}

.footer .social-media .media {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: row-reverse;
    text-decoration: none;
    background: #252525;
    border-radius: 40px 4px 4px 40px;
    font-weight: 400;
    font-size: calc( (100vw - 744px)/(1920 - 744) * (24 - 12) + 12px);
    line-height: calc( (100vw - 744px)/(1920 - 744) * (29 - 14) + 14px);
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 45px;
}

.footer .social-media .media svg {
    margin-right: 18%;
}

.footer .social-media .media path {
    fill: #FFFFFF;
}

.footer .social-media .media:hover {
    color: #45C3EB;
}

.footer .social-media .media:hover path {
    fill: #45C3EB;
}

footer .basement-none {
    display: none;
}

footer .basement {
    margin: 22px 0;
}

.footer .basement .text {
    font-size: calc( (100vw - 320px)/(1920 - 320) * (20 - 10) + 10px);
    text-align: center;
    color: #000000;
}

.footer .basement .text a,
.footer .basement-none .text a {
    text-align: center;
    text-decoration: none;
    margin-right: 10px;
    color: #000000;
    transition: 0.3s ease-in-out;
}

.footer .basement-none .text a {
    color: #909090;
}

.footer .basement .text a:last-child,
.footer .basement-none .text a:last-child {
    margin-right: 0;
}