.container {
  position: relative;
}

@media screen and (min-width: 1601px) {
  .container {
    width: 100%;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 1600px) {
  .container {
    width: 100%;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 1480px) {
  .container {
    width: 100%;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 1200px) {
  .container {
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 1024px) {
  .container {
    width: 100%;
    max-width: calc(100% - 60px);
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 768px) {
  .container {
    width: 100%;
    max-width: calc(100% - 30px);
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
  }
}
:root {
  --color-black: #000000;
  --color-blue: #0047BB;
  --color-light-blue: #64B3E8;
  --color-blue-dark: #002F6C;
  --color-yellow: #CCA36E;
  --color-yellow-dark: #ad7d48;
  --color-white: #F2F2F2;
  --transparent: #FFFFFF00;
}

html {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  right: 0;
  padding: 0;
  margin: 0;
}

.color-yellow {
  color: var(--color-yellow);
}

.color-white {
  color: var(--color-white);
}

body {
  font-weight: 400;
  font-family: "Geologica";
  line-height: 1.2;
  -webkit-text-size-adjust: 100%;
  padding: 0;
  margin: 0;
  position: relative;
  top: 0;
  width: 100%;
  background: var(--color-white);
}
body.modal-open {
  overflow: hidden;
}

#bx-panel {
  display: none !important;
  z-index: 2000 !important;
}

header {
  background: white;
  position: fixed;
  z-index: 1000;
  top: 0;
  width: 100%;
}
header .header-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
header .header-wrapper .header-btn {
  margin-left: auto;
  cursor: pointer;
  display: flex;
  align-items: center;
}
header .header-wrapper .header-btn .btn-wrapper {
  background: #044da4;
  border-radius: 300px;
  font-weight: 600;
  transition: all 0.3s;
  color: white;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .header-wrapper .header-socials {
  margin-left: auto;
}
header .header-wrapper .header-socials .social-item {
  opacity: 0.7;
  cursor: pointer;
  transition: all 0.3s;
}
header .header-wrapper .header-socials .social-item:hover {
  opacity: 1;
}
header .header-wrapper .header-menu {
  display: flex;
  align-items: center;
  padding: 12px 0;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}
header .header-wrapper .header-menu svg {
  fill: var(--color-blue-dark);
  width: 30px;
  height: 30px;
}
header .header-wrapper .header-menu.active svg {
  fill: var(--color-blue);
}
header .header-wrapper .header-menu.active .menu-dropdown {
  height: fit-content;
  opacity: 1;
  transition: all 0.5s;
}
header .header-wrapper .header-menu.active .menu-dropdown .dropdown-item {
  font-size: 20px;
  height: 22px;
}
header .header-wrapper .menu-dropdown {
  height: 0;
  top: 100%;
  position: absolute;
  right: 0;
  display: flex;
  z-index: -1000;
  background: rgba(0, 47, 108, 0.8);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 20px;
  color: white;
  transition: all 0.5s;
  opacity: 0;
}
header .header-wrapper .menu-dropdown .dropdown-items {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
header .header-wrapper .menu-dropdown .dropdown-items .dropdown-item {
  color: white;
  text-decoration: none;
  height: 0;
  font-size: 0;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 250px;
  white-space: nowrap;
  cursor: pointer;
  opacity: 0.7;
}
header .header-wrapper .menu-dropdown .dropdown-items .dropdown-item.active, header .header-wrapper .menu-dropdown .dropdown-items .dropdown-item:hover {
  opacity: 1;
}

footer {
  background: url("/local/images/masterflota/podl_b.png");
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
  border-top: 4px solid var(--color-yellow);
  position: relative;
}
footer .footer-content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  color: white;
  line-height: 1.5;
}
footer .footer-content .footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
footer .footer-content .footer-column .link {
  text-decoration: none;
  color: white;
  transition: all 0.3s;
}
footer .footer-content .footer-column .link:hover {
  color: var(--color-yellow);
}
footer .footer-content .footer-column .footer-btn {
  cursor: pointer;
  position: relative;
}
footer .footer-content .footer-column .footer-btn .btn-wrapper {
  background: var(--color-yellow);
  border-radius: 300px;
  font-weight: 600;
  transition: all 0.3s;
  position: absolute;
  width: 100%;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
}
footer .footer-content .footer-column .footer-btn:hover .btn-wrapper {
  background: var(--color-yellow-dark);
  transform: scale(1.1);
}

.section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#mainSection {
  background: url("/local/images/masterflota/podl_b.png");
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
#mainSection .section-wrapper {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}
#mainSection .section-wrapper .column-main {
  display: flex;
  flex-direction: column;
  position: relative;
}
#mainSection .section-wrapper .column-main .banner {
  overflow: hidden;
  border-radius: 30px;
  height: fit-content;
}
#mainSection .section-wrapper .column-main .banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
#mainSection .section-wrapper .column-main .btn-mobile {
  display: none;
}
#mainSection .section-wrapper .column-adv {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#mainSection .section-wrapper .column-adv .places {
  background: white;
}
#mainSection .section-wrapper .column-adv .places .place-title {
  font-weight: 600;
  color: var(--color-blue-dark);
}
#mainSection .section-wrapper .column-adv .places .places-list {
  display: flex;
  flex-direction: column;
}
#mainSection .section-wrapper .column-adv .places .places-list .place-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  color: var(--color-blue-dark);
}
#mainSection .section-wrapper .column-adv .appl-accept {
  background: #044a9e;
}
#mainSection .section-wrapper .column-adv .appl-accept .appl-accept-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: white;
}
#mainSection .section-wrapper .column-adv .appl-accept .appl-accept-wrapper .appl-accept-text {
  display: flex;
  flex-direction: column;
}
#mainSection .section-wrapper .column-adv .appl-accept .appl-accept-wrapper .appl-accept-text .appl-accept-title {
  font-weight: 600;
}
#mainSection .section-wrapper .column-adv .appl-accept .appl-accept-wrapper .appl-accept-text .appl-accept-date {
  font-weight: 400;
}
#mainSection .section-wrapper .btns {
  display: flex;
  flex-direction: row;
  align-items: center;
}
#mainSection .section-wrapper .btns .btn {
  position: relative;
}
#mainSection .section-wrapper .btns .btn .btn-wrapper {
  margin-left: auto;
  background: var(--color-yellow);
  border-radius: 300px;
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
  color: white;
  text-align: center;
  text-decoration: none;
  position: absolute;
  width: 100%;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}
#mainSection .section-wrapper .btns .btn:hover .btn-wrapper {
  background: var(--color-yellow-dark);
  transform: scale(1.05);
}

#history {
  background: url("/local/images/masterflota/podl_w.png");
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: 100%;
  position: relative;
}
#history .section-title {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
}
#history .section-title .yearsHistory {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
}
#history .section-title .yearHistory {
  font-size: 20px;
  color: var(--color-blue-dark);
  opacity: 0.7;
  cursor: pointer;
}
#history .section-title .yearHistory.active {
  opacity: 1;
}
#history .section-title .title-text {
  color: var(--color-blue-dark);
  font-size: 50px;
}
#history .section-title .slider-arrows {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
#history .section-title .slider-arrows .arrow {
  background: transparent;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  border: 2px solid transparent;
}
#history .section-title .slider-arrows .arrow .arrow-image {
  width: 10px;
  height: 10px;
  border: 2px solid #32557f;
  border-left: 0;
  border-top: 0;
}
#history .section-title .slider-arrows .arrow.arrow-prev .arrow-image {
  transform: rotate(135deg);
  margin-left: 5px;
}
#history .section-title .slider-arrows .arrow.arrow-next .arrow-image {
  transform: rotate(315deg);
  margin-right: 5px;
}
#history .section-title .slider-arrows .arrow.inactive {
  opacity: 0.6;
  pointer-events: none;
}
#history .section-title .slider-arrows .arrow:not(.inactive):hover {
  border: 2px solid var(--color-blue-dark);
}
#history .section-wrapper {
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}
#history .section-wrapper .swiper-wrapper {
  height: stretch;
}
#history .section-wrapper .swiper-slide {
  position: relative;
  height: stretch;
}
#history .section-wrapper .swiper-slide .slide-wrapper {
  position: relative;
  overflow: hidden;
}
#history .section-wrapper .swiper-slide .slide-wrapper .bg-main {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 1;
}
#history .section-wrapper .swiper-slide .slide-wrapper .bg-adw {
  position: absolute;
  top: 0;
  right: 0;
  height: fit-content;
  z-index: 1;
}
#history .section-wrapper .swiper-slide .slide-wrapper .column-main {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: white;
}
#history .section-wrapper .swiper-slide .slide-wrapper .column-adv {
  position: absolute;
  z-index: 3;
  display: flex;
  top: 0;
  align-items: center;
  justify-content: center;
}
#history .section-wrapper .swiper-slide .slide-wrapper .column-adv img {
  height: 100%;
  object-fit: cover;
}

#callingSection {
  background: url("/local/images/masterflota/podl_b1.png");
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

#contPart {
  background: url("/local/images/masterflota/podl_w.png");
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: 100%;
  position: relative;
}
#contPart .section-title {
  font-weight: 600;
  color: var(--color-blue-dark);
}
#contPart .section-wrapper {
  position: relative;
  overflow: hidden;
}
#contPart .section-wrapper .bg-main {
  position: absolute;
  top: 0;
  left: 0;
  height: fit-content;
  z-index: 1;
}
#contPart .section-wrapper .bg-adw {
  position: absolute;
  top: 0;
  right: 0;
  height: fit-content;
  z-index: 1;
}
#contPart .section-wrapper .column-main {
  position: relative;
  height: inherit;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
}
#contPart .section-wrapper .column-main .text {
  line-height: 1.3;
}
#contPart .section-wrapper .column-main .btns {
  position: relative;
}
#contPart .section-wrapper .column-main .btn {
  margin-left: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-yellow);
  border-radius: 300px;
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
  color: white;
  text-decoration: none;
}
#contPart .section-wrapper .column-main .btn:hover {
  background: var(--color-yellow-dark);
}
#contPart .section-wrapper .column-adv {
  position: absolute;
  z-index: 3;
  display: flex;
  top: 0;
  align-items: center;
  justify-content: center;
}
#contPart .section-wrapper .column-adv img {
  height: 100%;
  object-fit: cover;
}

#video {
  background: url("/local/images/masterflota/podl_w.png");
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: 100%;
  position: relative;
}
#video .section-title {
  font-weight: 600;
  color: var(--color-blue-dark);
}
#video .section-wrapper {
  position: relative;
}

#gallery {
  background: url("/local/images/masterflota/bg-gal.jpg");
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: 100%;
  position: relative;
}
#gallery .section-title {
  font-weight: 600;
  color: white;
}
#gallery .section-wrapper {
  position: relative;
}
#gallery #sliderGallery .swiper-slide {
  height: 140px;
}
#gallery #sliderGallery .swiper-slide .slade-wrapper {
  height: inherit;
  border-radius: 30px;
  overflow: hidden;
  border: 2px solid white;
}
#gallery #sliderGallery .swiper-slide .slade-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#nominations {
  background: url("/local/images/masterflota/podl_w.png");
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: 100%;
  position: relative;
  border-top: 4px solid var(--color-yellow);
}
#nominations .section-title {
  font-weight: 600;
  color: var(--color-blue-dark);
}
#nominations .section-wrapper {
  position: relative;
}
#nominations .section-wrapper .nominations-list {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}
#nominations .section-wrapper .nominations-list .nomination-item {
  position: relative;
  background: url("/local/images/masterflota/podl_b.png");
  background-attachment: local;
  background-size: cover;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
#nominations .section-wrapper .nominations-list .nomination-item .image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: white;
  border-radius: 50%;
}
#nominations .section-wrapper .nominations-list .nomination-item .image img {
  object-fit: cover;
}
#nominations .section-wrapper .nominations-list .nomination-item .nomination-name {
  color: white;
  text-align: center;
}
#nominations .section-wrapper .btns {
  display: none;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
#nominations .section-wrapper .btns .btn {
  color: var(--color-blue-dark);
  text-decoration: none;
  transition: all 0.3s;
  text-align: center;
}
#nominations .section-wrapper .btns .btn:hover {
  background: var(--color-blue);
  border-color: var(--color-blue);
  color: white;
}
#nominations .section-wrapper .nomination-slogan {
  color: var(--color-yellow-dark);
  font-style: italic;
  text-align: center;
}

#programm {
  background: url("/local/images/masterflota/podl_b1.png");
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  border-top: 4px solid var(--color-yellow);
}
#programm .section-content {
  display: flex;
  flex-direction: column;
}
#programm .section-content .program-tabs .program-tab {
  font-weight: 300;
}
#programm .btns {
  display: block;
  position: relative;
  height: 50px;
}
#programm .btns .btn {
  position: absolute;
  margin-left: auto;
  background: var(--color-yellow);
  border-radius: 300px;
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
  color: white;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
#programm .btns .btn:hover {
  background: var(--color-yellow-dark);
}

#news {
  background: url("/local/images/masterflota/podl_b1.png");
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  border-top: 4px solid var(--color-yellow);
}
#news .section-title {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
}
#news .section-title .title-text {
  color: white;
}
#news .section-title .slider-arrows {
  display: flex;
  flex-direction: row;
  align-items: center;
}
#news .section-title .slider-arrows .arrow {
  background: var(--color-light-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
#news .section-title .slider-arrows .arrow .arrow-image {
  border: 2px solid #32557f;
  border-left: 0;
  border-top: 0;
}
#news .section-title .slider-arrows .arrow.arrow-prev .arrow-image {
  transform: rotate(135deg);
}
#news .section-title .slider-arrows .arrow.arrow-next .arrow-image {
  transform: rotate(315deg);
}
#news .section-title .slider-arrows .arrow.inactive {
  opacity: 0.6;
  pointer-events: none;
}
#news .section-title .slider-arrows .arrow:not(.inactive):hover {
  background: var(--color-blue-dark);
  color: white;
}
#news .section-content {
  position: relative;
  display: flex;
  flex-direction: column;
}
#news .section-content .news-detail {
  display: none;
  position: absolute;
  left: -2px;
  right: 0;
  top: -2px;
  bottom: 0;
  width: calc(100% - 2px);
  height: calc(100% - 1px);
  /* height: inherit; */
  overflow: hidden;
  z-index: 2;
  border: 2px solid white;
  background: url("/local/images/masterflota/podl_b1.png");
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
}
#news .section-content .news-detail.active {
  display: block;
}
#news .section-content .news-detail .news-detail-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 0;
  align-items: stretch;
  height: fit-content;
  overflow: unset;
  position: relative;
}
#news .section-content .news-detail .news-detail-wrapper .modal-btn-close {
  opacity: 0.6;
  z-index: 10001;
  cursor: pointer;
  display: none;
  top: 0px;
  position: relative;
  border-radius: 50%;
  background: #dadada;
  width: 40px;
  height: 40px;
  margin: 10px auto;
}
#news .section-content .news-detail .news-detail-wrapper .modal-btn-close.active {
  display: block;
}
#news .section-content .news-detail .news-detail-wrapper .modal-btn-close:hover {
  opacity: 1;
}
#news .section-content .news-detail .news-detail-wrapper .modal-btn-close:before, #news .section-content .news-detail .news-detail-wrapper .modal-btn-close:after {
  position: absolute;
  content: " ";
  background-color: var(--color-blue-dark);
  top: 18px;
  left: 7px;
  width: 25px;
  height: 3px;
}
#news .section-content .news-detail .news-detail-wrapper .modal-btn-close:before {
  transform: rotate(45deg);
}
#news .section-content .news-detail .news-detail-wrapper .modal-btn-close:after {
  transform: rotate(-45deg);
}
#news .section-content .news-detail .news-detail-wrapper .detail-text {
  background: url(/local/images/masterflota/bg-2.jpg);
  background-size: cover;
}
#news .section-content .news-detail .news-detail-wrapper .detail-text a {
  color: white;
  text-decoration: underline;
  transition: all 0.3s;
  font-style: italic;
}
#news .section-content .news-detail .news-detail-wrapper .detail-text a:hover {
  color: var(--color-yellow);
}
#news .section-content .news-detail .news-detail-wrapper .detail-text .detail-text-wrapper {
  color: white;
}
#news .section-content .news-detail .news-detail-wrapper .detail-text .detail-text-wrapper .detail-text-title {
  color: white;
  font-weight: 600;
}
#news .section-content .news-detail .news-detail-wrapper .detail-text .detail-text-wrapper .detail-text-desc {
  font-weight: 300;
  color: white;
}
#news .section-content .news-detail .news-detail-wrapper .detail-image {
  position: relative;
  border-left: 2px solid white;
}
#news .section-content .news-detail .news-detail-wrapper .detail-image img {
  object-fit: cover;
  max-width: 100%;
  width: auto;
  height: 100%;
}
#news .section-content #sliderNews {
  width: 100%;
}
#news .section-content #sliderNews .swiper-wrapper {
  height: unset;
  align-items: stretch;
}
#news .section-content #sliderNews .swiper-wrapper .swiper-slide {
  display: block;
  height: inherit;
}
#news .section-content #sliderNews .swiper-wrapper .swiper-slide .slide-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
#news .section-content #sliderNews .swiper-wrapper .swiper-slide .slide-wrapper .slide-content {
  border: 2px solid white;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
}
#news .section-content #sliderNews .swiper-wrapper .swiper-slide .slide-wrapper .slide-content .slide-image {
  overflow: hidden;
  width: 100%;
}
#news .section-content #sliderNews .swiper-wrapper .swiper-slide .slide-wrapper .slide-content .slide-image img {
  width: 100%;
  object-fit: cover;
}
#news .section-content #sliderNews .swiper-wrapper .swiper-slide .slide-wrapper .slide-content .slide-text {
  color: white;
}
#news .section-content #sliderNews .swiper-wrapper .swiper-slide .slide-wrapper .slide-btn {
  text-align: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid white;
  background: var(--color-blue);
}
#news .section-content #sliderNews .swiper-wrapper .swiper-slide .slide-wrapper .slide-btn:hover {
  background: white;
  color: var(--color-blue-dark);
}
#news .btns {
  display: block;
  position: relative;
  height: 50px;
}
#news .btns .btn {
  position: absolute;
  margin-left: auto;
  background: var(--color-yellow);
  border-radius: 300px;
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
  color: white;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
#news .btns .btn:hover {
  background: var(--color-yellow-dark);
}

#media {
  background: url("/local/images/masterflota/podl_w.png");
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  height: fit-content;
}
#media .section-title {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
}
#media .section-title .yearsMedia {
  display: flex;
  flex-direction: row;
  align-items: center;
}
#media .section-title .yearMedia {
  color: var(--color-blue-dark);
  opacity: 0.7;
  cursor: pointer;
}
#media .section-title .yearMedia.active {
  opacity: 1;
}
#media .section-title .title-text {
  color: var(--color-blue-dark);
}
#media .section-title .slider-arrows {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
#media .section-title .slider-arrows .arrow {
  background: transparent;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  border: 2px solid transparent;
}
#media .section-title .slider-arrows .arrow .arrow-image {
  width: 10px;
  height: 10px;
  border: 2px solid #32557f;
  border-left: 0;
  border-top: 0;
}
#media .section-title .slider-arrows .arrow.arrow-prev .arrow-image {
  transform: rotate(135deg);
  margin-left: 5px;
}
#media .section-title .slider-arrows .arrow.arrow-next .arrow-image {
  transform: rotate(315deg);
  margin-right: 5px;
}
#media .section-title .slider-arrows .arrow.inactive {
  opacity: 0.6;
  pointer-events: none;
}
#media .section-title .slider-arrows .arrow:not(.inactive):hover {
  border: 2px solid var(--color-blue-dark);
}
#media .section-wrapper {
  overflow: hidden;
  position: relative;
  margin-top: 30px;
}
#media .section-wrapper .swiper-wrapper {
  height: stretch;
}
#media .section-wrapper .swiper-slide {
  position: relative;
}
#media .section-wrapper .swiper-slide .slide-wrapper {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}
#media .section-wrapper .swiper-slide .slide-wrapper .media-item {
  position: relative;
}
#media .section-wrapper .swiper-slide .slide-wrapper .media-item .image {
  position: absolute;
  top: 0;
  left: 0;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
#media .section-wrapper .swiper-slide .slide-wrapper .media-item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content {
  background: url("/local/images/masterflota/podl_b.png");
  background-attachment: local;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .media-text-title {
  color: white;
  font-weight: 600;
}
#media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .media-text-content {
  margin-bottom: auto;
  overflow-y: hidden;
}
#media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .media-text-content ul {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
  margin: 0;
}
#media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .media-text-content ul li {
  color: white;
}
#media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .media-text-content ul li a {
  color: white;
  transition: all 0.3s;
}
#media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .media-text-content ul li a:hover {
  color: var(--color-yellow);
}
#media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .content-bottom {
  display: flex;
  position: relative;
  justify-content: flex-end;
  align-items: center;
}
#media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .content-bottom .arrow-down {
  border: 2px solid white;
  border-left: 0;
  border-top: 0;
  transform: rotate(45deg);
  position: relative;
  transition: all 0.3s;
  cursor: pointer;
}
#media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .content-bottom .arrow-down.arrow-mob {
  display: none;
}
#media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .content-bottom .arrow-down:hover {
  border-color: var(--color-yellow);
}
#media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content.opened {
  height: fit-content;
  border-bottom-left-radius: 30px;
}
#media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content.opened .media-text-content {
  overflow: unset;
  height: fit-content;
}
#media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content.opened .content-bottom .arrow-down {
  transform: rotate(225deg);
  bottom: 0;
}

#partners {
  background: url("/local/images/masterflota/podl_b1.png");
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  border-top: 4px solid var(--color-yellow);
}
#partners .section-title {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
}
#partners .section-title .title-text {
  color: white;
}
#partners .section-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  justify-content: flex-start;
  gap: 30px;
}
#partners .section-wrapper .partners-block {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
#partners .section-wrapper .partners-block .partners-block-title {
  color: white;
}
#partners .section-wrapper .partners-block .partners-block-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
#partners .section-wrapper .partners-block .partners-block-list .list-item {
  position: relative;
  overflow: hidden;
}
#partners .section-wrapper .partners-block .partners-block-list .list-item img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
}
#partners .section-wrapper .partners-block .partners-block-list .list-item.partner-add {
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  text-decoration: none;
  background: var(--color-blue);
  transition: all 0.3s;
}
#partners .section-wrapper .partners-block .partners-block-list .list-item.partner-add:hover {
  background: var(--color-blue-dark);
}

#contacts {
  background: url("/local/images/masterflota/podl_w.png");
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: 100%;
  position: relative;
}
#contacts .section-title {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
}
#contacts .section-title .title-text {
  color: var(--color-blue-dark);
}
#contacts .section-wrapper {
  width: 100%;
}
#contacts .section-wrapper .contacts-list {
  display: flex;
  flex-wrap: wrap;
}
#contacts .section-wrapper .contacts-list .contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
#contacts .section-wrapper .contacts-list .contact-item .image {
  border-radius: 300px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: hidden;
}
#contacts .section-wrapper .contacts-list .contact-item .image img {
  width: 100%;
  object-fit: cover;
}
#contacts .section-wrapper .contacts-list .contact-item div {
  text-align: center;
  color: var(--color-blue-dark);
}
#contacts .section-wrapper .contacts-list .contact-item a {
  color: var(--color-blue-dark);
  text-decoration: none;
}
#contacts .section-wrapper .contacts-list .contact-item .contact-name {
  font-weight: 600;
}
#contacts .section-wrapper .contacts-list .contact-item .contact-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
#contacts .section-wrapper .contacts-list .contact-item .contact-info .contact-phone {
  margin-top: auto;
}

.section-title {
  font-size: 1.8em;
  font-weight: 600;
}

@media screen and (min-width: 1480px) {
  body {
    font-size: 20px;
    height: 100%;
    padding-top: 50px;
  }
  .modal {
    display: none;
  }
  .modal.active {
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.75);
    display: block;
    height: 100vh;
  }
  .modal.active .bg-filter {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(22, 22, 22, 0.7607843137);
    filter: blur(10px);
    display: block;
    z-index: 1;
  }
  .modal.active .modal-wrapper {
    position: relative;
    padding: 30px 0;
    height: calc(100vh - 60px);
  }
  .modal.active .modal-wrapper#infoModal {
    width: fit-content;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0;
    border: 1px solid #ccc;
    background: white;
    position: relative;
    height: fit-content;
  }
  .modal.active .modal-wrapper#infoModal .modal-title {
    background: var(--color-link);
    text-align: center;
    color: white;
  }
  .modal.active .modal-wrapper#infoModal .modal-content {
    color: var(--color-link);
    display: flex;
    flex-direction: column;
  }
  .modal.active .modal-wrapper#infoModal .modal-content .content-text {
    font-family: Montserrat;
  }
  .modal.active .modal-wrapper#infoModal .modal-content .btn {
    width: fit-content;
    margin-left: auto;
    text-align: center;
  }
  .modal.active .modal-wrapper .container {
    height: 100%;
    overflow: hidden;
  }
  .modal.active .modal-close {
    position: absolute;
    opacity: 0.6;
    z-index: 10001;
    cursor: pointer;
    width: 50px;
    height: 50px;
    top: 25px;
    right: 0;
  }
  .modal.active .modal-close:hover {
    opacity: 1;
  }
  .modal.active .modal-close:before, .modal.active .modal-close:after {
    position: absolute;
    content: " ";
    background-color: #dadada;
    width: 30px;
    height: 2px;
  }
  .modal.active .modal-close:before {
    transform: rotate(45deg);
  }
  .modal.active .modal-close:after {
    transform: rotate(-45deg);
  }
  .modal.active .modal-title {
    color: white;
    font-weight: 600;
  }
  .modal.active .modal-content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 20px;
    height: 100%;
  }
  .modal.active .modal-content .main-slider-wrapper {
    width: 80%;
    height: calc(100% - 80px);
    margin-left: auto;
    margin-right: auto;
  }
  .modal.active .modal-content .main-slider-wrapper .swiperModalMain {
    height: 100%;
  }
  .modal.active .modal-content .main-slider-wrapper .swiperModalMain .swiper-slide {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .modal.active .modal-content .main-slider-wrapper .swiperModalMain .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .modal.active .modal-content .swiperModalThumbs {
    width: 560px;
    height: 60px;
  }
  .modal.active .modal-content .swiperModalThumbs .swiper-slide {
    width: 100px;
    height: inherit;
  }
  .modal.active .modal-content .swiperModalThumbs .swiper-slide:not(.swiper-slide-thumb-active) {
    filter: grayscale(100%);
  }
  .modal.active .modal-content .swiperModalThumbs img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  header {
    border-bottom: 4px solid var(--color-yellow);
  }
  header .header-wrapper {
    gap: 20px;
  }
  header .header-wrapper .header-logo {
    padding: 10px 0;
  }
  header .header-wrapper .header-logo img.logo-main {
    height: 65px;
    display: block;
  }
  header .header-wrapper .header-logo img.logo-mobile {
    height: 0;
    display: none;
  }
  header .header-wrapper .header-btn {
    height: 50px;
    width: 200px;
  }
  header .header-wrapper .header-btn .btn-wrapper {
    padding: 10px 20px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header .header-wrapper .header-btn:hover .btn-wrapper {
    transform: scale(1.1);
  }
  header .header-wrapper .header-socials img {
    width: 35px;
    height: 35px;
  }
  header .header-wrapper .header-menu {
    height: 60px;
  }
  footer {
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
    padding-top: 80px;
    padding-bottom: 60px;
    margin-top: -100px;
  }
  footer .section-title {
    margin-bottom: 30px;
    font-size: 50px;
  }
  footer .footer-content {
    font-size: 20px;
    gap: 30px;
  }
  footer .footer-content .footer-column {
    width: calc(50% - 15px);
    gap: 20px;
  }
  footer .footer-content .footer-column .footer-btn {
    width: 250px;
    height: 30px;
  }
  footer .footer-content .footer-column .footer-btn .btn-wrapper {
    padding: 5px 50px;
    font-size: 20px;
  }
  footer .footer-content .footer-column.company {
    gap: 3px;
  }
  .section {
    height: 800px;
    justify-content: flex-start;
  }
  #mainSection {
    margin-top: 40px;
    padding: 0 0 80px 0;
    align-items: center !important;
    justify-content: center !important;
  }
  #mainSection .section-wrapper {
    gap: 30px;
  }
  #mainSection .section-wrapper .column-main {
    width: 650px;
    gap: 25px;
  }
  #mainSection .section-wrapper .column-main .banner {
    height: 460px;
  }
  #mainSection .section-wrapper .column-main .btns {
    justify-content: space-between;
  }
  #mainSection .section-wrapper .column-main .btns .btn {
    width: 312px;
    height: 45px;
    font-size: 20px;
  }
  #mainSection .section-wrapper .column-adv {
    width: 465px;
    gap: 25px;
  }
  #mainSection .section-wrapper .column-adv .places {
    border-radius: 30px;
    padding: 25px;
    height: 290px;
  }
  #mainSection .section-wrapper .column-adv .places .place-title {
    font-size: 30px;
  }
  #mainSection .section-wrapper .column-adv .places .places-list {
    gap: 10px;
    font-size: 20px;
    margin-top: 15px;
  }
  #mainSection .section-wrapper .column-adv .places .places-list .place-item {
    gap: 15px;
    font-size: 20px;
  }
  #mainSection .section-wrapper .column-adv .places .places-list .place-item .icon {
    width: 30px;
  }
  #mainSection .section-wrapper .column-adv .places .places-list .place-item .icon img {
    width: 30px;
  }
  #mainSection .section-wrapper .column-adv .appl-accept {
    border: 4px solid white;
    border-radius: 30px;
    height: 157px;
    align-items: center;
    justify-content: center;
    display: flex;
  }
  #mainSection .section-wrapper .column-adv .appl-accept .appl-accept-wrapper {
    gap: 20px;
  }
  #mainSection .section-wrapper .column-adv .appl-accept .appl-accept-icon {
    width: 135px;
  }
  #mainSection .section-wrapper .column-adv .appl-accept .appl-accept-text {
    gap: 10px;
  }
  #mainSection .section-wrapper .column-adv .appl-accept .appl-accept-text .appl-accept-title {
    font-size: 30px;
  }
  #mainSection .section-wrapper .column-adv .appl-accept .appl-accept-text .appl-accept-date {
    font-size: 20px;
  }
  #mainSection .section-wrapper .btns-mobile {
    display: none;
  }
  #history {
    margin-top: -80px;
    padding: 0 0 80px 0;
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
    border-top: 4px solid var(--color-yellow);
  }
  #history .section-title .title-text {
    font-size: 50px;
    line-height: 100%;
    margin-top: 82px;
  }
  #history .section-wrapper {
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    margin-top: 28px;
    height: 530px;
  }
  #history .section-wrapper .slide-wrapper {
    position: relative;
    height: 530px;
  }
  #history .section-wrapper .bg-main {
    width: 960px;
    height: 530px;
  }
  #history .section-wrapper .bg-adw {
    width: 180px;
  }
  #history .section-wrapper .column-main {
    max-width: 960px;
    gap: 25px;
    padding: 20px 20px 20px 42px;
    justify-content: flex-start !important;
  }
  #history .section-wrapper .column-main .slide-title {
    color: var(--color-yellow);
    font-weight: 600;
    font-size: 30px;
  }
  #history .section-wrapper .column-main .slide-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block {
    display: flex;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-text {
    flex-direction: column;
    width: 750px;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-text .content-title {
    color: var(--color-yellow);
    font-weight: 600;
    font-size: 30px;
    margin-bottom: 12px;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-text .content-text {
    font-size: 20px;
    font-weight: 300;
    color: white;
    text-align: justify;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-infografic {
    width: 750px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 40px;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-infografic .ifografic-title {
    color: var(--color-yellow);
    font-weight: 600;
    font-size: 30px;
    max-width: 240px;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-infografic .infografic-value .i-val {
    color: var(--color-yellow);
    font-weight: 600;
    font-size: 40px;
    text-align: right;
    white-space: nowrap;
    line-height: 1;
    padding-bottom: 5px;
    vertical-align: baseline;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-infografic .infografic-value .i-text {
    text-align: left;
    font-size: 20px;
    font-weight: 300;
    color: white;
    padding-left: 22px;
    vertical-align: bottom;
    padding-bottom: 5px;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-infografic .infografic-values {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-infografic .infografic-values .infografic-value {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: flex-start;
    gap: 12px;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-infografic .infografic-values .infografic-value .i-val {
    color: var(--color-yellow);
    font-weight: 600;
    font-size: 40px;
    text-align: right;
    white-space: nowrap;
    line-height: 1;
    width: 180px;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-infografic .infografic-values .infografic-value .i-text {
    text-align: left;
    font-size: 20px;
    font-weight: 300;
    color: white;
    flex-grow: 1;
    width: 350px;
  }
  #history .section-wrapper .column-adv {
    width: 20%;
    height: calc(100% - 40px);
    right: 180px;
    transform: translateX(50%);
    margin: 20px 0;
  }
  #callingSection {
    margin-top: -80px;
    padding: 0 0 80px 0;
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
    border-top: 4px solid var(--color-yellow);
  }
  #callingSection .slider-arrows.arrows-mobile {
    display: none;
  }
  #callingSection .section-title {
    margin-top: 82px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
  #callingSection .section-title .title-text {
    color: white;
    font-size: 50px;
    line-height: 100%;
  }
  #callingSection .section-title .slider-arrows {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
  }
  #callingSection .section-title .slider-arrows .arrow {
    background: var(--color-light-blue);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
  }
  #callingSection .section-title .slider-arrows .arrow .arrow-image {
    width: 10px;
    height: 10px;
    border: 2px solid #32557f;
    border-left: 0;
    border-top: 0;
  }
  #callingSection .section-title .slider-arrows .arrow.arrow-prev .arrow-image {
    transform: rotate(135deg);
    margin-left: 5px;
  }
  #callingSection .section-title .slider-arrows .arrow.arrow-next .arrow-image {
    transform: rotate(315deg);
    margin-right: 5px;
  }
  #callingSection .section-title .slider-arrows .arrow.inactive {
    opacity: 0.6;
    pointer-events: none;
  }
  #callingSection .section-title .slider-arrows .arrow:not(.inactive):hover {
    background: var(--color-blue-dark);
    color: white;
  }
  #callingSection .section-slider {
    margin-top: 28px;
    width: 1140px;
    height: 530px;
    border: 2px solid white;
    border-radius: 30px;
    background: url("/local/images/masterflota/plashka obr.png");
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
  }
  #callingSection .section-slider .swiper-wrapper {
    height: 530px;
    align-items: stretch;
  }
  #callingSection .section-slider .swiper-wrapper .swiper-slide {
    height: 530px;
  }
  #callingSection .section-slider .slider-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    padding: 0;
    overflow: hidden;
    height: 530px;
  }
  #callingSection .section-slider .slider-content .slider-text {
    width: 55%;
    display: flex;
    flex-direction: column;
    gap: 25px;
    color: white;
    padding: 20px 20px 20px 42px;
  }
  #callingSection .section-slider .slider-content .slider-text .text-title {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-left: 30px;
  }
  #callingSection .section-slider .slider-content .slider-text .text-title:before {
    content: "";
    position: absolute;
    top: -3px;
    left: 0;
    display: block;
    background: url("/local/images/masterflota/kanat 1.svg");
    background-repeat: no-repeat;
    width: 12px;
    height: 100%;
    background-size: cover;
  }
  #callingSection .section-slider .slider-content .slider-text .text-title .text-name {
    font-size: 30px;
    font-weight: 600;
  }
  #callingSection .section-slider .slider-content .slider-text .text-title .line-mobile {
    display: none;
  }
  #callingSection .section-slider .slider-content .slider-text .text-title .text-position {
    font-size: 20px;
    font-weight: 400;
  }
  #callingSection .section-slider .slider-content .slider-text .text-calling {
    font-weight: 200;
    position: relative;
    line-height: 100%;
    text-align: justify;
  }
  #callingSection .section-slider .slider-content .slider-text .text-calling .kov {
    position: absolute;
    content: "";
    width: 40px;
    height: 40px;
    display: inline-block;
    background: url("/local/images/masterflota/kov.svg");
    background-repeat: no-repeat;
    background-size: contain;
  }
  #callingSection .section-slider .slider-content .slider-text .text-calling .kov.kov-open {
    left: 0;
    top: 10px;
  }
  #callingSection .section-slider .slider-content .slider-text .text-calling .kov.kov-close {
    transform: rotate(180deg);
    margin-left: 10px;
    bottom: 10px;
  }
  #callingSection .section-slider .slider-content .slider-text .text-calling p:first-child {
    text-indent: 50px;
  }
  #callingSection .section-slider .slider-content .slider-stamp {
    display: none;
    position: absolute;
    top: 30px;
    right: 20%;
    width: 20%;
    height: 20%;
    opacity: 0.5;
  }
  #callingSection .section-slider .slider-content .slider-photo {
    position: absolute;
    bottom: 0;
    right: 0px;
    /* height: 80%; */
    width: 40%;
    z-index: 5;
  }
  #callingSection .section-slider .slider-content .slider-photo img {
    width: 100%;
    object-fit: cover;
  }
  #video {
    margin-top: -80px;
    padding: 0 0 80px 0;
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
    border-top: 4px solid var(--color-yellow);
    background-size: cover;
    background-position: center;
  }
  #video .section-title {
    margin-top: 82px;
    font-size: 50px;
    margin-bottom: 28px;
    color: var(--color-blue-dark);
  }
  #video .section-content .video {
    width: 800px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 30px;
    overflow: hidden;
    height: 0;
    padding-top: 450px;
    position: relative;
    margin-bottom: 28px;
  }
  #video .section-content .video .video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  #video .section-content .video .video-wrapper img {
    width: 100%;
    min-height: 100%;
    object-fit: cover;
  }
  #video .section-content .video-desc {
    width: 470px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: var(--color-blue-dark);
    font-size: 20px;
  }
  #video .section-content .video-slogan {
    font-family: "Calibri", sans-serif;
    margin-top: 30px;
    color: var(--color-yellow-dark);
    font-style: italic;
    font-size: 40px;
    text-align: center;
  }
  #gallery {
    margin-top: -80px;
    padding: 0 0 80px;
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
    border-top: 4px solid var(--color-yellow);
    background-size: cover;
  }
  #gallery .container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 80px);
  }
  #gallery .section-title {
    font-size: 50px;
    margin-top: 82px;
    margin-bottom: 20px;
    line-height: 100%;
  }
  #gallery .section-content {
    margin-top: auto;
    position: relative;
  }
  #gallery .section-content .gallery-arrows {
    position: absolute;
    top: 85px;
    width: 100%;
    z-index: 1;
  }
  #gallery .section-content .gallery-arrows .slider-btn {
    background: var(--color-light-blue);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
  }
  #gallery .section-content .gallery-arrows .slider-btn::after {
    display: none;
  }
  #gallery .section-content .gallery-arrows .slider-btn .arrow-image {
    width: 10px;
    height: 10px;
    border: 2px solid #32557f;
    border-left: 0;
    border-top: 0;
  }
  #gallery .section-content .gallery-arrows .slider-btn.swiper-button-prev .arrow-image {
    transform: rotate(135deg);
    margin-left: 5px;
  }
  #gallery .section-content .gallery-arrows .slider-btn.swiper-button-next .arrow-image {
    transform: rotate(315deg);
    margin-right: 5px;
  }
  #gallery .section-content .gallery-arrows .slider-btn.inactive {
    opacity: 0.6;
    pointer-events: none;
  }
  #gallery .section-content .gallery-arrows .slider-btn:not(.inactive):hover {
    background: var(--color-blue-dark);
    color: white;
  }
  #gallery .section-content #sliderGallery {
    width: calc(100% - 100px);
    z-index: 2;
  }
  #gallery .section-content #sliderGallery .swiper-slide {
    cursor: pointer;
  }
  #nominations {
    margin-top: -80px;
    padding: 0 0 80px 0;
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
    border-top: 4px solid var(--color-yellow);
  }
  #nominations .section-title {
    margin-top: 124px;
    font-size: 50px;
    margin-bottom: 40px;
  }
  #nominations .section-wrapper .nominations-list {
    gap: 15px;
  }
  #nominations .section-wrapper .nominations-list .nomination-item {
    background: url("/local/images/masterflota/plashka_nom.png");
    width: 370px;
    border-top-left-radius: 300px;
    border-bottom-left-radius: 300px;
    border-top-right-radius: 80px;
    border-bottom-right-radius: 80px;
    height: 143px;
    gap: 8px;
  }
  #nominations .section-wrapper .nominations-list .nomination-item .image {
    width: 120px;
    height: 120px;
    margin-left: 12px;
  }
  #nominations .section-wrapper .nominations-list .nomination-item .image img {
    width: 120px;
    height: 120px;
  }
  #nominations .section-wrapper .nominations-list .nomination-item .nomination-name {
    width: calc(100% - 144px);
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    word-wrap: break-word;
  }
  #nominations .section-wrapper .btns {
    margin-top: 30px;
    gap: 50px;
  }
  #nominations .section-wrapper .btns .btn {
    border: 2px solid var(--color-blue-dark);
    padding: 5px 20px;
    border-radius: 300px;
    width: calc(50% - 25px);
  }
  #nominations .section-wrapper .nomination-slogan {
    margin-top: 40px;
    font-family: "Calibri", sans-serif;
    color: var(--color-yellow-dark);
    font-style: italic;
    font-size: 40px;
    text-align: center;
  }
  #programm {
    margin-top: -80px;
    padding: 0 0 80px 0;
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
  }
  #programm .section-title {
    margin-top: 82px;
    color: white;
    font-size: 50px;
    line-height: 100%;
  }
  #programm .section-content {
    margin-top: 28px;
    gap: 20px;
  }
  #programm .section-content .program-tabs {
    width: calc(100% - 4px);
    border: 2px solid white;
    border-radius: 300px;
    background: var(--color-blue-dark);
    overflow: hidden;
    height: 58px;
    position: relative;
    margin-top: 42px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-direction: horizontal;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  #programm .section-content .program-tabs::-webkit-scrollbar {
    display: none;
  }
  #programm .section-content .program-tabs .programm-tabs-list {
    width: 100%;
    position: absolute;
    height: 60px;
    top: -2px;
    bottom: -2px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    left: 0;
    transition: all 0.3s;
  }
  #programm .section-content .program-tabs .programm-tabs-list .program-tab {
    cursor: pointer;
    width: 25%;
    padding: 0 20px;
    color: white;
    font-size: 16px;
    border: 2px solid transparent;
    border-radius: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 58px;
    text-align: center;
    transition: all 0.3s;
  }
  #programm .section-content .program-tabs .programm-tabs-list .program-tab.active {
    border-color: white;
    background: var(--color-blue);
  }
  #programm .section-content .program-tabs .programm-tabs-list .program-tab:last-child {
    border-right: 0;
  }
  #programm .section-content .program-tabs .programm-tabs-list .program-tab:first-child {
    border-left: 0;
  }
  #programm .section-content .program-tabs .programm-tabs-wrapper {
    overflow-x: unset;
    height: calc(100% + 4px);
    top: -2px;
    position: absolute;
    margin: 0;
    /*
    .program-tab {
      //width: 25%;
      height: 58px;
      padding: 0 10px;
      font-size: 16px;
      font-weight: 600;
      color: white;
      text-align: center;
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid transparent;
      transition: all .3s;
      cursor: pointer;
      &.swiper-slide-thumb-active, .swiper-slide-active {
        border: 2px solid white;
        border-radius: 300px;
        background: var(--color-blue);
      }
      &:last-child {
        border-right: transparent;
      }
      .slide-wrapper {
        height: 58px;
        max-width: 240px;
        min-width: 190px;
      }
    }

     */
  }
  #programm .section-content .program-tabs .programm-tabs-wrapper:before {
    display: none;
  }
  #programm .section-content .program-content {
    width: calc(100% - 4px);
    height: 330px;
    position: relative;
    border: 2px solid white;
    border-radius: 30px;
    overflow: hidden;
  }
  #programm .section-content .program-content .content-item {
    width: 100%;
    height: 100%;
    transition: all 0.3s;
  }
  #programm .section-content .program-content .content-item .program-item-wrapper {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    height: inherit;
  }
  #programm .section-content .program-content .content-item .program-item-wrapper .program-item-text {
    background: url("/local/images/masterflota/bg-2.jpg");
    width: 544px;
    padding: 20px 20px 20px 42px;
    font-size: 20px;
    font-weight: 400;
    line-height: 120%;
    color: white;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  #programm .section-content .program-content .content-item .program-item-wrapper .program-item-text ul {
    padding-left: 18px;
    margin-top: 0;
  }
  #programm .section-content .program-content .content-item .program-item-wrapper .program-item-text p {
    margin-top: 0;
  }
  #programm .section-content .program-content .content-item .program-item-wrapper .program-item-image {
    width: 540px;
    position: relative;
    height: inherit;
    border-left: 2px solid white;
  }
  #programm .section-content .program-content .content-item .program-item-wrapper .program-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #programm .section-content .btns {
    width: 100%;
    height: 60px;
  }
  #programm .section-content .btns .btn {
    width: 100%;
    font-size: 30px;
    height: 60px;
  }
  #programm .section-content .btns .btn:hover {
    font-size: 30px !important;
  }
  #contPart {
    margin-top: -80px;
    padding: 0 0 80px 0;
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
    border-top: 4px solid var(--color-yellow);
  }
  #contPart .section-title {
    margin-top: 124px;
    font-size: 50px;
    margin-bottom: 28px;
    line-height: 100%;
  }
  #contPart .section-wrapper {
    width: 1140px;
    border-radius: 30px;
    height: 530px;
  }
  #contPart .section-wrapper .bg-main {
    width: 960px;
    height: 530px;
  }
  #contPart .section-wrapper .bg-adw {
    width: 180px;
    height: 530px;
  }
  #contPart .section-wrapper .column-main {
    padding: 20px;
    max-width: 960px;
    gap: 40px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #contPart .section-wrapper .column-main .text {
    font-size: 30px;
    width: 60%;
  }
  #contPart .section-wrapper .column-main .btns {
    width: 70%;
  }
  #contPart .section-wrapper .column-main .btns .btn {
    font-size: 20px;
    padding: 10px 20px;
  }
  #contPart .section-wrapper .column-adv {
    width: 180px;
    height: calc(100% - 60px);
    right: 180px;
    margin: 30px 0;
    transform: translateX(50%);
  }
  #news {
    margin-top: -80px;
    padding: 0 0 80px 0;
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
  }
  #news.news-show {
    height: fit-content;
  }
  #news .section-title {
    margin-top: 124px;
  }
  #news .section-title .title-text {
    font-size: 50px;
  }
  #news .section-title .slider-arrows {
    gap: 20px;
  }
  #news .section-title .slider-arrows .arrow {
    width: 30px;
    height: 30px;
  }
  #news .section-title .slider-arrows .arrow .arrow-image {
    width: 10px;
    height: 10px;
  }
  #news .section-title .slider-arrows .arrow.arrow-prev .arrow-image {
    margin-left: 5px;
  }
  #news .section-title .slider-arrows .arrow.arrow-next .arrow-image {
    margin-right: 5px;
  }
  #news .section-content {
    gap: 25px;
    margin-top: 28px;
  }
  #news .section-content .news-detail {
    border-radius: 25px;
  }
  #news .section-content .news-detail.active {
    position: relative !important;
    height: fit-content;
    margin-bottom: 82px;
  }
  #news .section-content .news-detail .news-detail-wrapper {
    flex-direction: row;
    gap: 25px;
    flex-wrap: wrap;
    position: relative;
    padding: 20px;
  }
  #news .section-content .news-detail .news-detail-wrapper .detail-text-title {
    display: flex;
    align-items: flex-end;
    font-size: 30px;
    color: white;
    width: calc(50% - 40px);
    line-height: 1.2;
    order: 1;
  }
  #news .section-content .news-detail .news-detail-wrapper .detail-image {
    order: 2;
    height: auto;
    width: calc(50% - 40px);
    overflow: hidden;
    border: 2px solid white;
    border-radius: 25px;
  }
  #news .section-content .news-detail .news-detail-wrapper .detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  #news .section-content .news-detail .news-detail-wrapper .detail-text {
    width: calc(100% - 40px);
    order: 3;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.3;
    padding-bottom: 20px;
    color: white;
    background: transparent;
  }
  #news .section-content .news-detail .news-detail-wrapper .detail-btns {
    order: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  #news .section-content .news-detail .news-detail-wrapper .detail-btns .modal-btn-close {
    margin: 10px auto;
    width: 30px;
    height: 30px;
    position: relative;
  }
  #news .section-content .news-detail .news-detail-wrapper .detail-btns .modal-btn-close:before, #news .section-content .news-detail .news-detail-wrapper .detail-btns .modal-btn-close:after {
    width: 20px;
    height: 2px;
    left: 5px;
    top: 14px;
  }
  #news .section-content #sliderNews {
    height: 530px;
  }
  #news .section-content #sliderNews .swiper-wrapper {
    height: 530px !important;
  }
  #news .section-content #sliderNews .swiper-slide {
    height: 530px;
  }
  #news .section-content #sliderNews .swiper-slide .slide-wrapper {
    gap: 25px;
  }
  #news .section-content #sliderNews .swiper-slide .slide-content {
    border-radius: 30px;
    background: url("/local/images/masterflota/plashka_nov.png");
  }
  #news .section-content #sliderNews .swiper-slide .slide-content .slide-image {
    height: 265px;
    border-radius: 30px;
  }
  #news .section-content #sliderNews .swiper-slide .slide-content .slide-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  #news .section-content #sliderNews .swiper-slide .slide-content .slide-text {
    padding: 20px;
    font-size: 20px;
    line-height: 120%;
  }
  #news .section-content #sliderNews .swiper-slide .slide-btn {
    border-radius: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
  }
  #media {
    margin-top: -80px;
    padding: 0 0 160px 0;
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
    border-top: 4px solid var(--color-yellow);
  }
  #media .section-title {
    margin-top: 82px;
    margin-bottom: 28px;
  }
  #media .section-title .title-text {
    font-size: 50px;
    line-height: 100%;
  }
  #media .section-title .yearsMedia {
    gap: 22px;
  }
  #media .section-title .yearsMedia .yearMedia {
    font-size: 20px;
  }
  #media .section-wrapper {
    border-radius: 30px;
    gap: 30px;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper {
    gap: 25px;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item {
    width: calc(50% - 25px);
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .image {
    width: 174px;
    height: 174px;
    padding: 4px;
    border: 4px solid var(--color-blue);
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content {
    margin-left: 95px;
    border-radius: 0 30px 30px 0;
    height: 190px;
    padding-left: 110px;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .media-text-title {
    font-size: 30px;
    padding: 10px 0;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .media-text-content {
    height: calc(100% - 90px);
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .media-text-content ul {
    padding-left: 20px;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .media-text-content ul li {
    font-size: 20px;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .media-text-content ul li a {
    font-size: 20px;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .content-bottom {
    height: 30px;
    width: calc(100% - 20px);
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .content-bottom .arrow-down {
    width: 10px;
    height: 10px;
    bottom: 10px;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item.opened {
    height: fit-content;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item.opened .media-content {
    height: fit-content;
    border-bottom-left-radius: 30px;
  }
  #partners {
    margin-top: -80px;
    padding: 0 0 80px 0;
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
  }
  #partners .section-title {
    margin-top: 82px;
  }
  #partners .section-title .title-text {
    font-size: 50px;
    line-height: 100%;
  }
  #partners .section-wrapper {
    gap: 25px;
    margin-top: 28px;
    width: 100%;
  }
  #partners .section-wrapper .partners-block {
    flex-direction: row;
    gap: 25px;
    width: 100%;
    align-items: center;
  }
  #partners .section-wrapper .partners-block .partners-block-title {
    width: 350px;
    font-size: 30px;
    text-align: right;
  }
  #partners .section-wrapper .partners-block .partners-block-list {
    gap: 25px;
  }
  #partners .section-wrapper .partners-block .partners-block-list .list-item {
    width: 138px;
    height: 138px;
    border-radius: 30px;
    margin-right: 35px;
  }
  #partners .section-wrapper .partners-block .partners-block-list .list-item:last-child {
    margin-right: 0;
  }
  #partners .section-wrapper .partners-block .partners-block-list .list-item.partner-add {
    font-size: 20px;
  }
  #contacts {
    margin-top: -80px;
    padding: 0 0 80px 0;
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
    border-top: 4px solid var(--color-yellow);
  }
  #contacts .section-title {
    margin-top: 82px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 110px;
  }
  #contacts .section-title .title-text {
    font-size: 50px;
    margin-bottom: 22px;
  }
  #contacts .section-title .title-desc {
    font-size: 30px;
    color: var(--color-blue-dark);
  }
  #contacts .section-wrapper .contacts-list {
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    gap: 50px;
  }
  #contacts .section-wrapper .contacts-list .contact-item {
    width: calc(20% - 40px);
  }
  #contacts .section-wrapper .contacts-list .contact-item .image {
    width: 196px;
    height: 196px;
    margin-bottom: 28px;
  }
  #contacts .section-wrapper .contacts-list .contact-item div {
    font-size: 15px;
  }
  #contacts .section-wrapper .contacts-list .contact-item .contact-position {
    margin-top: 28px;
    margin-bottom: auto;
    padding-bottom: 25px;
  }
}
@media screen and (max-width: 1479px) {
  body {
    font-size: 20px;
    height: 100%;
    padding-top: 50px;
  }
  .modal {
    display: none;
  }
  .modal.active {
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.75);
    display: block;
    height: 100vh;
  }
  .modal.active .bg-filter {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(22, 22, 22, 0.7607843137);
    filter: blur(10px);
    display: block;
    z-index: 1;
  }
  .modal.active .modal-wrapper {
    position: relative;
    padding: 30px 0;
    height: calc(100vh - 60px);
  }
  .modal.active .modal-wrapper#infoModal {
    width: fit-content;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0;
    border: 1px solid #ccc;
    background: white;
    position: relative;
    height: fit-content;
  }
  .modal.active .modal-wrapper#infoModal .modal-title {
    background: var(--color-link);
    text-align: center;
    color: white;
  }
  .modal.active .modal-wrapper#infoModal .modal-content {
    color: var(--color-link);
    display: flex;
    flex-direction: column;
  }
  .modal.active .modal-wrapper#infoModal .modal-content .content-text {
    font-family: Montserrat;
  }
  .modal.active .modal-wrapper#infoModal .modal-content .btn {
    width: fit-content;
    margin-left: auto;
    text-align: center;
  }
  .modal.active .modal-wrapper .container {
    height: 100%;
    overflow: hidden;
  }
  .modal.active .modal-close {
    position: absolute;
    opacity: 0.6;
    z-index: 10001;
    cursor: pointer;
    width: 50px;
    height: 50px;
    top: 25px;
    right: 0;
  }
  .modal.active .modal-close:hover {
    opacity: 1;
  }
  .modal.active .modal-close:before, .modal.active .modal-close:after {
    position: absolute;
    content: " ";
    background-color: #dadada;
    width: 30px;
    height: 2px;
  }
  .modal.active .modal-close:before {
    transform: rotate(45deg);
  }
  .modal.active .modal-close:after {
    transform: rotate(-45deg);
  }
  .modal.active .modal-title {
    color: white;
    font-weight: 600;
  }
  .modal.active .modal-content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 20px;
    height: 100%;
  }
  .modal.active .modal-content .main-slider-wrapper {
    width: 80%;
    height: calc(100% - 80px);
    margin-left: auto;
    margin-right: auto;
  }
  .modal.active .modal-content .main-slider-wrapper .swiperModalMain {
    height: 100%;
  }
  .modal.active .modal-content .main-slider-wrapper .swiperModalMain .swiper-slide {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .modal.active .modal-content .main-slider-wrapper .swiperModalMain .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .modal.active .modal-content .swiperModalThumbs {
    width: 560px;
    height: 60px;
  }
  .modal.active .modal-content .swiperModalThumbs .swiper-slide {
    width: 100px;
    height: inherit;
  }
  .modal.active .modal-content .swiperModalThumbs .swiper-slide:not(.swiper-slide-thumb-active) {
    filter: grayscale(100%);
  }
  .modal.active .modal-content .swiperModalThumbs img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  header {
    border-bottom: 4px solid var(--color-yellow);
  }
  header .header-wrapper {
    gap: 20px;
  }
  header .header-wrapper .header-logo {
    padding: 10px 0;
  }
  header .header-wrapper .header-logo img.logo-main {
    height: 65px;
    display: block;
  }
  header .header-wrapper .header-logo img.logo-mobile {
    height: 0;
    display: none;
  }
  header .header-wrapper .header-btn {
    height: 50px;
    width: 200px;
  }
  header .header-wrapper .header-btn .btn-wrapper {
    padding: 10px 20px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header .header-wrapper .header-btn:hover .btn-wrapper {
    transform: scale(1.1);
  }
  header .header-wrapper .header-socials img {
    width: 35px;
    height: 35px;
  }
  header .header-wrapper .header-menu {
    height: 60px;
  }
  footer {
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    padding-top: 100px;
    padding-bottom: 60px;
    margin-top: -100px;
  }
  footer .section-title {
    margin-bottom: 30px;
    font-size: 50px;
    line-height: 1;
  }
  footer .footer-content {
    font-size: 20px;
    gap: 30px;
  }
  footer .footer-content .footer-column {
    width: calc(50% - 15px);
    gap: 20px;
  }
  footer .footer-content .footer-column .footer-btn {
    width: 250px;
    height: 30px;
  }
  footer .footer-content .footer-column .footer-btn .btn-wrapper {
    padding: 5px 50px;
    font-size: 20px;
  }
  footer .footer-content .footer-column.company {
    gap: 3px;
  }
  #mainSection {
    top: 0;
    padding: 100px 0 200px;
  }
  #mainSection .section-wrapper {
    gap: 30px;
  }
  #mainSection .section-wrapper .column-main {
    width: calc(60% - 15px);
    gap: 20px;
  }
  #mainSection .section-wrapper .column-main .btns {
    gap: 20px;
  }
  #mainSection .section-wrapper .column-main .btns .btn {
    width: calc(50% - 10px);
    height: 40px;
    font-size: 20px;
  }
  #mainSection .section-wrapper .column-adv {
    width: calc(40% - 15px);
    gap: 20px;
  }
  #mainSection .section-wrapper .column-adv .places {
    border-radius: 30px;
    padding: 20px;
    height: stretch;
  }
  #mainSection .section-wrapper .column-adv .places .place-title {
    font-size: 24px;
  }
  #mainSection .section-wrapper .column-adv .places .places-list {
    gap: 10px;
    font-size: 20px;
    margin-top: 20px;
  }
  #mainSection .section-wrapper .column-adv .places .places-list .place-item {
    gap: 30px;
    font-size: 16px;
  }
  #mainSection .section-wrapper .column-adv .places .places-list .place-item .icon {
    width: 30px;
  }
  #mainSection .section-wrapper .column-adv .places .places-list .place-item .icon img {
    width: 20px;
  }
  #mainSection .section-wrapper .column-adv .appl-accept {
    gap: 20px;
    border: 4px solid white;
    border-radius: 30px;
    padding: 20px;
  }
  #mainSection .section-wrapper .column-adv .appl-accept .appl-accept-wrapper {
    gap: 20px;
  }
  #mainSection .section-wrapper .column-adv .appl-accept .appl-accept-icon {
    width: 110px;
  }
  #mainSection .section-wrapper .column-adv .appl-accept .appl-accept-text {
    gap: 10px;
  }
  #mainSection .section-wrapper .column-adv .appl-accept .appl-accept-text .appl-accept-title {
    font-size: 30px;
  }
  #mainSection .section-wrapper .column-adv .appl-accept .appl-accept-text .appl-accept-date {
    font-size: 20px;
  }
  #mainSection .section-wrapper .btns-mobile {
    display: none;
  }
  #history {
    margin-top: -80px;
    padding: 0 0 80px 0;
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
    border-top: 4px solid var(--color-yellow);
  }
  #history .section-title .title-text {
    font-size: 50px;
    line-height: 100%;
    margin-top: 82px;
  }
  #history .section-wrapper {
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    margin-top: 28px;
    height: 530px;
  }
  #history .section-wrapper .slide-wrapper {
    position: relative;
    height: 530px;
  }
  #history .section-wrapper .bg-main {
    width: 960px;
    height: 530px;
  }
  #history .section-wrapper .bg-adw {
    width: 180px;
  }
  #history .section-wrapper .column-main {
    max-width: 960px;
    gap: 25px;
    padding: 20px 20px 20px 42px;
    justify-content: flex-start !important;
  }
  #history .section-wrapper .column-main .slide-title {
    color: var(--color-yellow);
    font-weight: 600;
    font-size: 30px;
  }
  #history .section-wrapper .column-main .slide-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block {
    display: flex;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-text {
    flex-direction: column;
    width: 750px;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-text .content-title {
    color: var(--color-yellow);
    font-weight: 600;
    font-size: 30px;
    margin-bottom: 12px;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-text .content-text {
    font-size: 20px;
    font-weight: 300;
    color: white;
    text-align: justify;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-infografic {
    width: 750px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 40px;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-infografic .ifografic-title {
    color: var(--color-yellow);
    font-weight: 600;
    font-size: 30px;
    max-width: 240px;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-infografic .infografic-value .i-val {
    color: var(--color-yellow);
    font-weight: 600;
    font-size: 40px;
    text-align: right;
    white-space: nowrap;
    line-height: 1;
    padding-bottom: 5px;
    vertical-align: baseline;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-infografic .infografic-value .i-text {
    text-align: left;
    font-size: 20px;
    font-weight: 300;
    color: white;
    padding-left: 22px;
    vertical-align: bottom;
    padding-bottom: 5px;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-infografic .infografic-values {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-infografic .infografic-values .infografic-value {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: flex-start;
    gap: 12px;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-infografic .infografic-values .infografic-value .i-val {
    color: var(--color-yellow);
    font-weight: 600;
    font-size: 40px;
    text-align: right;
    white-space: nowrap;
    line-height: 1;
    width: 180px;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-infografic .infografic-values .infografic-value .i-text {
    text-align: left;
    font-size: 20px;
    font-weight: 300;
    color: white;
    flex-grow: 1;
    width: 350px;
  }
  #history .section-wrapper .column-adv {
    width: 20%;
    height: calc(100% - 40px);
    right: 180px;
    transform: translateX(50%);
    margin: 20px 0;
  }
  #callingSection {
    margin-top: -100px;
    margin-bottom: -100px;
    padding: 100px 0 200px;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    border-top: 4px solid var(--color-yellow);
  }
  #callingSection .section-title {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
  #callingSection .section-title .title-text {
    color: white;
    font-size: 50px;
  }
  #callingSection .section-title .slider-arrows {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
  }
  #callingSection .section-title .slider-arrows .arrow {
    background: var(--color-light-blue);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
  }
  #callingSection .section-title .slider-arrows .arrow .arrow-image {
    width: 10px;
    height: 10px;
    border: 2px solid #32557f;
    border-left: 0;
    border-top: 0;
  }
  #callingSection .section-title .slider-arrows .arrow.arrow-prev .arrow-image {
    transform: rotate(135deg);
    margin-left: 5px;
  }
  #callingSection .section-title .slider-arrows .arrow.arrow-next .arrow-image {
    transform: rotate(315deg);
    margin-right: 5px;
  }
  #callingSection .section-title .slider-arrows .arrow.inactive {
    opacity: 0.6;
    pointer-events: none;
  }
  #callingSection .section-title .slider-arrows .arrow:not(.inactive):hover {
    background: var(--color-blue-dark);
    color: white;
  }
  #callingSection .section-slider {
    margin-top: 30px;
    width: 100%;
    border: 2px solid white;
    border-radius: 30px;
    background: url("/local/images/masterflota/pl_1.1.png");
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
  }
  #callingSection .section-slider .swiper-wrapper {
    height: max-content;
  }
  #callingSection .section-slider .swiper-wrapper .swiper-slide {
    height: unset;
  }
  #callingSection .section-slider .slider-content {
    padding: 30px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    height: 100%;
  }
  #callingSection .section-slider .slider-content .slider-text {
    width: 65%;
    display: flex;
    flex-direction: column;
    gap: 50px;
    color: white;
  }
  #callingSection .section-slider .slider-content .slider-text .text-title {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-left: 30px;
  }
  #callingSection .section-slider .slider-content .slider-text .text-title:before {
    content: "";
    position: absolute;
    top: -3px;
    left: 0;
    display: block;
    background: url("/local/images/masterflota/kanat 1.svg");
    background-repeat: no-repeat;
    width: 12px;
    height: 100%;
    background-size: cover;
  }
  #callingSection .section-slider .slider-content .slider-text .text-title .text-name {
    font-size: 30px;
    font-weight: 600;
  }
  #callingSection .section-slider .slider-content .slider-text .text-title .text-position {
    font-size: 20px;
    font-weight: 400;
  }
  #callingSection .section-slider .slider-content .slider-text .text-calling {
    font-weight: 200;
    position: relative;
  }
  #callingSection .section-slider .slider-content .slider-text .text-calling .kov {
    position: absolute;
    content: "";
    width: 50px;
    height: 50px;
    display: inline-block;
    background: url("/local/images/masterflota/kov.svg");
    background-repeat: no-repeat;
    background-size: contain;
  }
  #callingSection .section-slider .slider-content .slider-text .text-calling .kov.kov-open {
    left: 0;
    top: 0;
  }
  #callingSection .section-slider .slider-content .slider-text .text-calling .kov.kov-close {
    transform: rotate(180deg);
    margin-left: 10px;
    bottom: 0;
  }
  #callingSection .section-slider .slider-content .slider-text .text-calling p:first-child {
    text-indent: 60px;
  }
  #callingSection .section-slider .slider-content .slider-stamp {
    position: absolute;
    top: 30px;
    right: 20%;
    width: 20%;
    height: 20%;
    opacity: 0.5;
  }
  #callingSection .section-slider .slider-content .slider-photo {
    position: absolute;
    bottom: 60px;
    right: 0px;
    /* height: 80%; */
    width: 35%;
    z-index: 5;
  }
  #callingSection .section-slider .slider-content .slider-photo img {
    width: 100%;
    object-fit: cover;
  }
  #video {
    margin-top: -80px;
    padding: 0 0 80px 0;
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
    border-top: 4px solid var(--color-yellow);
    background-size: cover;
    background-position: center;
  }
  #video .section-title {
    margin-top: 82px;
    font-size: 50px;
    margin-bottom: 28px;
    color: var(--color-blue-dark);
  }
  #video .section-content .video {
    width: 800px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 30px;
    overflow: hidden;
    height: 0;
    padding-top: 450px;
    position: relative;
    margin-bottom: 28px;
  }
  #video .section-content .video .video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  #video .section-content .video .video-wrapper img {
    width: 100%;
    min-height: 100%;
    object-fit: cover;
  }
  #video .section-content .video-desc {
    width: 470px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: var(--color-blue-dark);
    font-size: 20px;
  }
  #video .section-content .video-slogan {
    font-family: "Calibri", sans-serif;
    margin-top: 30px;
    color: var(--color-yellow-dark);
    font-style: italic;
    font-size: 40px;
    text-align: center;
  }
  #gallery {
    margin-top: -100px;
    padding: 100px 0 100px;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    border-top: 4px solid var(--color-yellow);
    background-size: cover;
    background-position: center;
  }
  #gallery .section-title {
    font-size: 50px;
    margin-bottom: 20px;
  }
  #gallery .section-content {
    margin-top: 350px;
    position: relative;
    height: 260px;
  }
  #gallery .section-content .gallery-arrows {
    position: absolute;
    top: 85px;
    width: 100%;
    z-index: 1;
  }
  #gallery .section-content .gallery-arrows .slider-btn {
    background: var(--color-light-blue);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
  }
  #gallery .section-content .gallery-arrows .slider-btn::after {
    display: none;
  }
  #gallery .section-content .gallery-arrows .slider-btn .arrow-image {
    width: 10px;
    height: 10px;
    border: 2px solid #32557f;
    border-left: 0;
    border-top: 0;
  }
  #gallery .section-content .gallery-arrows .slider-btn.swiper-button-prev .arrow-image {
    transform: rotate(135deg);
    margin-left: 5px;
  }
  #gallery .section-content .gallery-arrows .slider-btn.swiper-button-next .arrow-image {
    transform: rotate(315deg);
    margin-right: 5px;
  }
  #gallery .section-content .gallery-arrows .slider-btn.inactive {
    opacity: 0.6;
    pointer-events: none;
  }
  #gallery .section-content .gallery-arrows .slider-btn:not(.inactive):hover {
    background: var(--color-blue-dark);
    color: white;
  }
  #gallery .section-content #sliderGallery {
    width: calc(100% - 100px);
    z-index: 2;
  }
  #gallery .section-content #sliderGallery .swiper-slide {
    cursor: pointer;
  }
  #contPart {
    top: 0px;
    margin-top: -100px;
    padding: 100px 0 200px;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    border-top: 4px solid var(--color-yellow);
  }
  #contPart .section-title {
    font-size: 50px;
    margin-bottom: 20px;
  }
  #contPart .section-wrapper {
    width: calc(100% - 60px);
    border-radius: 30px;
    padding: 30px;
    height: 350px;
  }
  #contPart .section-wrapper .bg-main {
    width: 80%;
    height: 100%;
  }
  #contPart .section-wrapper .bg-adw {
    width: 20%;
  }
  #contPart .section-wrapper .column-main {
    max-width: 60%;
    gap: 40px;
    margin-left: 10%;
  }
  #contPart .section-wrapper .column-main .text {
    font-size: 30px;
    width: 70%;
    margin-left: 10%;
  }
  #contPart .section-wrapper .column-main .btns {
    width: 70%;
  }
  #contPart .section-wrapper .column-main .btns .btn {
    font-size: 20px;
    padding: 10px 20px;
  }
  #contPart .section-wrapper .column-adv {
    width: 20%;
    height: calc(100% - 60px);
    right: 10%;
    margin: 30px 0;
  }
  #nominations {
    margin-top: -100px;
    padding: 100px 0 200px;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    border-top: 4px solid var(--color-yellow);
  }
  #nominations .section-title {
    font-size: 50px;
    margin-bottom: 20px;
  }
  #nominations .section-wrapper .nominations-list {
    gap: 30px;
  }
  #nominations .section-wrapper .nominations-list .nomination-item {
    width: calc(33.3% - 20px);
    border-top-left-radius: 300px;
    border-bottom-left-radius: 300px;
    border-top-right-radius: 80px;
    border-bottom-right-radius: 80px;
    height: 100px;
    gap: 30px;
  }
  #nominations .section-wrapper .nominations-list .nomination-item .image {
    width: 92px;
    height: 92px;
    margin-left: 4px;
  }
  #nominations .section-wrapper .nominations-list .nomination-item .image img {
    width: 85px;
    height: 85px;
  }
  #nominations .section-wrapper .nominations-list .nomination-item .nomination-name {
    width: calc(100% - 134px);
  }
  #nominations .section-wrapper .btns {
    margin-top: 30px;
    gap: 50px;
  }
  #nominations .section-wrapper .btns .btn {
    border: 2px solid var(--color-blue-dark);
    padding: 5px 20px;
    border-radius: 300px;
    width: calc(50% - 25px);
  }
  #nominations .section-wrapper .nomination-slogan {
    margin-top: 50px;
    font-size: 30px;
  }
  #programm {
    margin-top: -80px;
    padding: 0 0 80px 0;
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
  }
  #programm .section-title {
    margin-top: 82px;
    color: white;
    font-size: 50px;
    line-height: 100%;
  }
  #programm .section-content {
    margin-top: 28px;
    gap: 20px;
  }
  #programm .section-content .program-tabs {
    width: calc(100% - 4px);
    border: 2px solid white;
    border-radius: 300px;
    background: var(--color-blue-dark);
    overflow: hidden;
    height: 58px;
    position: relative;
    margin-top: 42px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-direction: horizontal;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  #programm .section-content .program-tabs::-webkit-scrollbar {
    display: none;
  }
  #programm .section-content .program-tabs .programm-tabs-list {
    width: 100%;
    position: absolute;
    height: 60px;
    top: -2px;
    bottom: -2px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    left: 0;
    transition: all 0.3s;
  }
  #programm .section-content .program-tabs .programm-tabs-list .program-tab {
    cursor: pointer;
    width: 25%;
    padding: 0 20px;
    color: white;
    font-size: 16px;
    border: 2px solid transparent;
    border-radius: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 58px;
    text-align: center;
    transition: all 0.3s;
  }
  #programm .section-content .program-tabs .programm-tabs-list .program-tab.active {
    border-color: white;
    background: var(--color-blue);
  }
  #programm .section-content .program-tabs .programm-tabs-list .program-tab:last-child {
    border-right: 0;
  }
  #programm .section-content .program-tabs .programm-tabs-list .program-tab:first-child {
    border-left: 0;
  }
  #programm .section-content .program-tabs .programm-tabs-wrapper {
    overflow-x: unset;
    height: calc(100% + 4px);
    top: -2px;
    position: absolute;
    margin: 0;
    /*
    .program-tab {
      //width: 25%;
      height: 58px;
      padding: 0 10px;
      font-size: 16px;
      font-weight: 600;
      color: white;
      text-align: center;
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid transparent;
      transition: all .3s;
      cursor: pointer;
      &.swiper-slide-thumb-active, .swiper-slide-active {
        border: 2px solid white;
        border-radius: 300px;
        background: var(--color-blue);
      }
      &:last-child {
        border-right: transparent;
      }
      .slide-wrapper {
        height: 58px;
        max-width: 240px;
        min-width: 190px;
      }
    }

     */
  }
  #programm .section-content .program-tabs .programm-tabs-wrapper:before {
    display: none;
  }
  #programm .section-content .program-content {
    width: calc(100% - 4px);
    height: 330px;
    position: relative;
    border: 2px solid white;
    border-radius: 30px;
    overflow: hidden;
  }
  #programm .section-content .program-content .content-item {
    width: 100%;
    height: 100%;
    transition: all 0.3s;
  }
  #programm .section-content .program-content .content-item .program-item-wrapper {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    height: inherit;
  }
  #programm .section-content .program-content .content-item .program-item-wrapper .program-item-text {
    background: url("/local/images/masterflota/bg-2.jpg");
    width: 544px;
    padding: 20px 20px 20px 42px;
    font-size: 20px;
    font-weight: 400;
    line-height: 120%;
    color: white;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  #programm .section-content .program-content .content-item .program-item-wrapper .program-item-text ul {
    padding-left: 18px;
    margin-top: 0;
  }
  #programm .section-content .program-content .content-item .program-item-wrapper .program-item-text p {
    margin-top: 0;
  }
  #programm .section-content .program-content .content-item .program-item-wrapper .program-item-image {
    width: 540px;
    position: relative;
    height: inherit;
    border-left: 2px solid white;
  }
  #programm .section-content .program-content .content-item .program-item-wrapper .program-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #programm .section-content .btns {
    width: 100%;
    height: 60px;
  }
  #programm .section-content .btns .btn {
    width: 100%;
    font-size: 30px;
    height: 60px;
  }
  #programm .section-content .btns .btn:hover {
    font-size: 30px !important;
  }
  #news {
    margin-top: -80px;
    padding: 0 0 160px 0;
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
  }
  #news.news-show {
    height: fit-content;
  }
  #news .section-title {
    margin-top: 124px;
  }
  #news .section-title .title-text {
    font-size: 50px;
  }
  #news .section-title .slider-arrows {
    gap: 20px;
  }
  #news .section-title .slider-arrows .arrow {
    width: 30px;
    height: 30px;
  }
  #news .section-title .slider-arrows .arrow .arrow-image {
    width: 10px;
    height: 10px;
  }
  #news .section-title .slider-arrows .arrow.arrow-prev .arrow-image {
    margin-left: 5px;
  }
  #news .section-title .slider-arrows .arrow.arrow-next .arrow-image {
    margin-right: 5px;
  }
  #news .section-content {
    gap: 25px;
    margin-top: 28px;
  }
  #news .section-content .news-detail {
    border-radius: 25px;
  }
  #news .section-content .news-detail.active {
    position: relative !important;
    height: fit-content;
    margin-bottom: 82px;
  }
  #news .section-content .news-detail .news-detail-wrapper {
    flex-direction: row;
    gap: 25px;
    flex-wrap: wrap;
    position: relative;
    padding: 20px;
  }
  #news .section-content .news-detail .news-detail-wrapper .detail-text-title {
    display: flex;
    align-items: flex-end;
    font-size: 30px;
    color: white;
    width: calc(50% - 40px);
    line-height: 1.2;
    order: 1;
  }
  #news .section-content .news-detail .news-detail-wrapper .detail-image {
    order: 2;
    height: auto;
    width: calc(50% - 40px);
    overflow: hidden;
    border: 2px solid white;
    border-radius: 25px;
  }
  #news .section-content .news-detail .news-detail-wrapper .detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  #news .section-content .news-detail .news-detail-wrapper .detail-text {
    width: calc(100% - 40px);
    order: 3;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.3;
    padding-bottom: 20px;
    color: white;
    background: transparent;
  }
  #news .section-content .news-detail .news-detail-wrapper .detail-btns {
    order: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  #news .section-content .news-detail .news-detail-wrapper .detail-btns .modal-btn-close {
    margin: 10px auto;
    width: 30px;
    height: 30px;
    position: relative;
  }
  #news .section-content .news-detail .news-detail-wrapper .detail-btns .modal-btn-close:before, #news .section-content .news-detail .news-detail-wrapper .detail-btns .modal-btn-close:after {
    width: 20px;
    height: 2px;
    left: 5px;
    top: 14px;
  }
  #news .section-content #sliderNews {
    height: 530px;
  }
  #news .section-content #sliderNews .swiper-wrapper {
    height: 530px !important;
  }
  #news .section-content #sliderNews .swiper-slide {
    height: 530px;
  }
  #news .section-content #sliderNews .swiper-slide .slide-wrapper {
    gap: 25px;
  }
  #news .section-content #sliderNews .swiper-slide .slide-content {
    border-radius: 30px;
    background: url("/local/images/masterflota/plashka_nov.png");
  }
  #news .section-content #sliderNews .swiper-slide .slide-content .slide-image {
    height: 265px;
    border-radius: 30px;
  }
  #news .section-content #sliderNews .swiper-slide .slide-content .slide-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  #news .section-content #sliderNews .swiper-slide .slide-content .slide-text {
    padding: 20px;
    font-size: 20px;
    line-height: 120%;
  }
  #news .section-content #sliderNews .swiper-slide .slide-btn {
    border-radius: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
  }
  #partners {
    margin-top: -100px;
    padding: 100px 0 200px;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
  }
  #partners .section-title .title-text {
    font-size: 50px;
  }
  #partners .section-wrapper {
    gap: 30px;
    margin-top: 30px;
  }
  #partners .section-wrapper .partners-block {
    flex-direction: row;
    gap: 30px;
  }
  #partners .section-wrapper .partners-block .partners-block-title {
    width: 350px;
    font-size: 30px;
    text-align: right;
  }
  #partners .section-wrapper .partners-block .partners-block-list {
    gap: 30px;
  }
  #partners .section-wrapper .partners-block .partners-block-list .list-item {
    width: 130px;
    height: 130px;
    border-radius: 30px;
  }
  #partners .section-wrapper .partners-block .partners-block-list .list-item.partner-add {
    font-size: 20px;
  }
  #contacts {
    margin-top: -100px;
    padding: 100px 0 200px;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    border-top: 4px solid var(--color-yellow);
  }
  #contacts .section-title {
    margin-bottom: 20px;
  }
  #contacts .section-title .title-text {
    font-size: 50px;
  }
  #contacts .section-wrapper {
    margin-top: 30px;
  }
  #contacts .section-wrapper .contacts-list {
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    gap: 30px;
  }
  #contacts .section-wrapper .contacts-list .contact-item {
    width: calc(20% - 24px);
  }
  #contacts .section-wrapper .contacts-list .contact-item .image {
    width: 130px;
    height: 130px;
    margin-bottom: 10px;
  }
  #contacts .section-wrapper .contacts-list .contact-item div {
    font-size: 15px;
  }
  #contacts .section-wrapper .contacts-list .contact-item .contact-position {
    margin-bottom: auto;
    padding-bottom: 20px;
  }
  #media {
    margin-top: -80px;
    padding: 80px 0 160px;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    border-top: 4px solid var(--color-yellow);
  }
  #media .section-title .title-text {
    font-size: 50px;
  }
  #media .section-title .yearsMedia {
    gap: 22px;
  }
  #media .section-title .yearsMedia .yearMedia {
    font-size: 20px;
  }
  #media .section-wrapper {
    border-radius: 30px;
    gap: 50px;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper {
    gap: 50px;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item {
    width: calc(50% - 25px);
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .image {
    width: 174px;
    height: 174px;
    padding: 4px;
    border: 4px solid var(--color-blue);
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content {
    margin-left: 95px;
    border-radius: 0 30px 30px 0;
    height: 190px;
    padding-left: 110px;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .media-text-title {
    font-size: 30px;
    padding: 10px 0;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .media-text-content {
    height: calc(100% - 90px);
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .media-text-content ul {
    padding-left: 20px;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .media-text-content ul li {
    font-size: 20px;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .media-text-content ul li a {
    font-size: 20px;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .content-bottom {
    height: 30px;
    width: calc(100% - 20px);
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .content-bottom .arrow-down {
    width: 10px;
    height: 10px;
    bottom: 10px;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item.opened {
    height: fit-content;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item.opened .media-content {
    height: fit-content;
    border-bottom-left-radius: 30px;
  }
}
@media screen and (max-width: 1200px) {
  body {
    font-size: 16px;
    height: calc(100% - 200px);
    padding-top: 50px;
  }
  header {
    border-bottom: 4px solid var(--color-yellow);
  }
  header .header-wrapper {
    gap: 20px;
  }
  header .header-wrapper .header-logo {
    padding: 10px 0;
  }
  header .header-wrapper .header-logo img.logo-main {
    height: 65px;
    display: block;
  }
  header .header-wrapper .header-logo img.logo-mobile {
    height: 0;
    display: none;
  }
  header .header-wrapper .header-btn {
    height: 50px;
    width: 200px;
  }
  header .header-wrapper .header-btn .btn-wrapper {
    padding: 10px 20px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header .header-wrapper .header-btn:hover .btn-wrapper {
    transform: scale(1.1);
  }
  header .header-wrapper .header-socials img {
    width: 35px;
    height: 35px;
  }
  header .header-wrapper .header-menu {
    height: 60px;
  }
  footer {
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    padding-top: 100px;
    padding-bottom: 60px;
    margin-top: -100px;
  }
  footer .section-title {
    margin-bottom: 30px;
    font-size: 40px;
  }
  footer .footer-content {
    font-size: 16px;
    gap: 30px;
  }
  footer .footer-content .footer-column {
    width: calc(50% - 15px);
    gap: 20px;
  }
  footer .footer-content .footer-column .footer-btn {
    width: 250px;
    height: 30px;
  }
  footer .footer-content .footer-column .footer-btn .btn-wrapper {
    padding: 5px 50px;
    font-size: 16px;
  }
  footer .footer-content .footer-column.company {
    gap: 3px;
  }
  #mainSection {
    top: 0;
    padding: 100px 0 200px;
  }
  #mainSection .section-wrapper {
    gap: 30px;
  }
  #mainSection .section-wrapper .column-main {
    width: calc(60% - 15px);
    gap: 20px;
  }
  #mainSection .section-wrapper .column-main .btns {
    gap: 20px;
  }
  #mainSection .section-wrapper .column-main .btns .btn {
    width: calc(50% - 10px);
    height: 40px;
    font-size: 16px;
  }
  #mainSection .section-wrapper .column-adv {
    width: calc(40% - 15px);
    gap: 20px;
  }
  #mainSection .section-wrapper .column-adv .places {
    border-radius: 30px;
    padding: 20px;
  }
  #mainSection .section-wrapper .column-adv .places .place-title {
    font-size: 24px;
  }
  #mainSection .section-wrapper .column-adv .places .places-list {
    gap: 10px;
    font-size: 20px;
    margin-top: 20px;
  }
  #mainSection .section-wrapper .column-adv .places .places-list .place-item {
    gap: 20px;
    font-size: 16px;
  }
  #mainSection .section-wrapper .column-adv .places .places-list .place-item .icon {
    width: 20px;
  }
  #mainSection .section-wrapper .column-adv .places .places-list .place-item .icon img {
    width: 20px;
  }
  #mainSection .section-wrapper .column-adv .appl-accept {
    gap: 20px;
    border: 4px solid white;
    border-radius: 30px;
    padding: 20px;
  }
  #mainSection .section-wrapper .column-adv .appl-accept .appl-accept-wrapper {
    gap: 20px;
  }
  #mainSection .section-wrapper .column-adv .appl-accept .appl-accept-icon {
    width: 90px;
  }
  #mainSection .section-wrapper .column-adv .appl-accept .appl-accept-text {
    gap: 10px;
  }
  #mainSection .section-wrapper .column-adv .appl-accept .appl-accept-text .appl-accept-title {
    font-size: 24px;
  }
  #mainSection .section-wrapper .column-adv .appl-accept .appl-accept-text .appl-accept-date {
    font-size: 16px;
  }
  #history {
    margin-top: -100px;
    padding: 60px 0 200px;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    border-top: 4px solid var(--color-yellow);
    background-size: cover;
    background-position: center;
  }
  #history .section-title .title-text {
    font-size: 40px;
  }
  #history .section-wrapper {
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    margin-top: 30px;
    height: fit-content;
  }
  #history .section-wrapper .slide-wrapper {
    position: relative;
    height: inherit;
  }
  #history .section-wrapper .bg-main {
    width: 80%;
    height: 100%;
  }
  #history .section-wrapper .bg-adw {
    width: 20%;
  }
  #history .section-wrapper .column-main {
    max-width: calc(80% - 160px);
    gap: 30px;
    padding: 30px;
  }
  #history .section-wrapper .column-main .slide-title {
    color: var(--color-yellow);
    font-weight: 600;
    font-size: 30px;
  }
  #history .section-wrapper .column-main .slide-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block {
    display: flex;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-text {
    flex-direction: column;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-text .content-title {
    color: var(--color-yellow);
    font-weight: 600;
    font-size: 24px;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-text .content-text {
    font-size: 16px;
    font-weight: 300;
    color: white;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-infografic {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-infografic .ifografic-title {
    color: var(--color-yellow);
    font-weight: 600;
    font-size: 24px;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-infografic .infografic-values {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-infografic .infografic-values .infografic-value {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-infografic .infografic-values .infografic-value .i-val {
    color: var(--color-yellow);
    font-weight: 600;
    font-size: 30px;
    text-align: right;
    white-space: nowrap;
    line-height: 1;
    width: 200px;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-infografic .infografic-values .infografic-value .i-text {
    text-align: left;
    font-size: 16px;
    font-weight: 300;
    color: white;
    flex-grow: 1;
    width: 250px;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-image {
    width: 100%;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-image img {
    width: 100%;
    object-fit: cover;
  }
  #history .section-wrapper .column-adv {
    width: 20%;
    height: calc(100% - 60px);
    right: 10%;
    margin: 30px 0;
  }
  #callingSection {
    margin-top: -100px;
    padding: 60px 0 180px;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    border-top: 4px solid var(--color-yellow);
  }
  #callingSection .slider-arrows.arrows-mobile {
    display: none;
  }
  #callingSection .section-title {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
  #callingSection .section-title .title-text {
    color: white;
    font-size: 40px;
  }
  #callingSection .section-title .slider-arrows {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
  }
  #callingSection .section-title .slider-arrows .arrow {
    background: var(--color-light-blue);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
  }
  #callingSection .section-title .slider-arrows .arrow .arrow-image {
    width: 10px;
    height: 10px;
    border: 2px solid #32557f;
    border-left: 0;
    border-top: 0;
  }
  #callingSection .section-title .slider-arrows .arrow.arrow-prev .arrow-image {
    transform: rotate(135deg);
    margin-left: 5px;
  }
  #callingSection .section-title .slider-arrows .arrow.arrow-next .arrow-image {
    transform: rotate(315deg);
    margin-right: 5px;
  }
  #callingSection .section-title .slider-arrows .arrow.inactive {
    opacity: 0.6;
    pointer-events: none;
  }
  #callingSection .section-title .slider-arrows .arrow:not(.inactive):hover {
    background: var(--color-blue-dark);
    color: white;
  }
  #callingSection .section-slider {
    margin-top: 30px;
    width: 100%;
    border: 2px solid white;
    border-radius: 30px;
    background: url("/local/images/masterflota/pl_1.1.png");
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
  }
  #callingSection .section-slider .swiper-wrapper {
    height: max-content;
  }
  #callingSection .section-slider .swiper-wrapper .swiper-slide {
    height: unset;
  }
  #callingSection .section-slider .slider-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    padding: 30px;
  }
  #callingSection .section-slider .slider-content .slider-text {
    width: 65%;
    display: flex;
    flex-direction: column;
    gap: 50px;
    color: white;
  }
  #callingSection .section-slider .slider-content .slider-text .text-title {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-left: 30px;
  }
  #callingSection .section-slider .slider-content .slider-text .text-title:before {
    content: "";
    position: absolute;
    top: -3px;
    left: 0;
    display: block;
    background: url("/local/images/masterflota/kanat 1.svg");
    background-repeat: no-repeat;
    width: 12px;
    height: 100%;
    background-size: cover;
  }
  #callingSection .section-slider .slider-content .slider-text .text-title .text-name {
    font-size: 30px;
    font-weight: 600;
  }
  #callingSection .section-slider .slider-content .slider-text .text-title .line-mobile {
    display: none;
  }
  #callingSection .section-slider .slider-content .slider-text .text-title .text-position {
    font-size: 20px;
    font-weight: 400;
  }
  #callingSection .section-slider .slider-content .slider-text .text-calling {
    font-weight: 200;
    position: relative;
  }
  #callingSection .section-slider .slider-content .slider-text .text-calling .kov {
    position: absolute;
    content: "";
    width: 50px;
    height: 50px;
    display: inline-block;
    background: url("/local/images/masterflota/kov.svg");
    background-repeat: no-repeat;
    background-size: contain;
  }
  #callingSection .section-slider .slider-content .slider-text .text-calling .kov.kov-open {
    left: 0;
    top: 0;
  }
  #callingSection .section-slider .slider-content .slider-text .text-calling .kov.kov-close {
    transform: rotate(180deg);
    margin-left: 10px;
    bottom: 0;
  }
  #callingSection .section-slider .slider-content .slider-text .text-calling p:first-child {
    text-indent: 60px;
  }
  #callingSection .section-slider .slider-content .slider-stamp {
    position: absolute;
    top: 30px;
    right: 20%;
    width: 20%;
    height: 20%;
    opacity: 0.5;
  }
  #callingSection .section-slider .slider-content .slider-photo {
    position: absolute;
    bottom: -30px;
    right: -30px;
    /* height: 80%; */
    width: 35%;
    z-index: 5;
  }
  #callingSection .section-slider .slider-content .slider-photo img {
    width: 100%;
    object-fit: cover;
  }
  #contPart {
    margin-top: -100px;
    padding: 100px 0 200px;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    border-top: 4px solid var(--color-yellow);
    background-size: cover;
    background-position: center;
  }
  #contPart .section-title {
    font-size: 50px;
    margin-bottom: 20px;
  }
  #contPart .section-wrapper {
    width: calc(100% - 60px);
    border-radius: 30px;
    padding: 30px;
    height: 350px;
  }
  #contPart .section-wrapper .bg-main {
    width: 80%;
  }
  #contPart .section-wrapper .bg-adw {
    width: 20%;
  }
  #contPart .section-wrapper .column-main {
    max-width: 70%;
    gap: 40px;
    margin-left: 10%;
  }
  #contPart .section-wrapper .column-main .text {
    font-size: 30px;
    width: 70%;
    margin-left: 10%;
  }
  #contPart .section-wrapper .column-main .btns {
    width: 70%;
  }
  #contPart .section-wrapper .column-main .btns .btn {
    font-size: 20px;
    padding: 10px 20px;
  }
  #contPart .section-wrapper .column-adv {
    width: 20%;
    height: calc(100% - 60px);
    right: 10%;
    margin: 30px 0;
  }
  #nominations {
    margin-top: -100px;
    padding: 100px 0 200px;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    border-top: 4px solid var(--color-yellow);
    background-size: cover;
    background-position: center;
  }
  #nominations .section-title {
    font-size: 50px;
    margin-bottom: 20px;
  }
  #nominations .section-wrapper .nominations-list {
    gap: 30px;
  }
  #nominations .section-wrapper .nominations-list .nomination-item {
    width: calc(33.3% - 20px);
    border-top-left-radius: 300px;
    border-bottom-left-radius: 300px;
    border-top-right-radius: 80px;
    border-bottom-right-radius: 80px;
    height: 100px;
    gap: 30px;
  }
  #nominations .section-wrapper .nominations-list .nomination-item .image {
    width: 92px;
    height: 92px;
    margin-left: 4px;
  }
  #nominations .section-wrapper .nominations-list .nomination-item .image img {
    width: 85px;
    height: 85px;
  }
  #nominations .section-wrapper .nominations-list .nomination-item .nomination-name {
    width: calc(100% - 134px);
  }
  #nominations .section-wrapper .btns {
    margin-top: 30px;
    gap: 50px;
  }
  #nominations .section-wrapper .btns .btn {
    border: 2px solid var(--color-blue-dark);
    padding: 5px 20px;
    border-radius: 300px;
    width: calc(50% - 25px);
  }
  #nominations .section-wrapper .nomination-slogan {
    margin-top: 50px;
    font-size: 30px;
  }
  #programm {
    margin-top: -100px;
    margin-bottom: -100px;
    padding: 100px 0 200px;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
  }
  #programm .section-title {
    color: white;
    font-size: 50px;
  }
  #programm .section-content {
    gap: 30px;
  }
  #programm .section-content .program-tabs {
    width: 100%;
    overflow-x: hidden;
  }
  #programm .section-content .program-tabs .programm-tabs-wrapper {
    display: flex;
    flex-direction: row;
    position: relative;
    width: 100%;
    align-items: stretch;
    justify-content: flex-start;
    margin-top: 30px;
  }
  #programm .section-content .program-tabs .programm-tabs-wrapper:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border: 2px solid white;
    border-radius: 300px;
    background: var(--color-blue-dark);
  }
  #programm .section-content .program-tabs .programm-tabs-wrapper .programm-tabs-list {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
  }
  #programm .section-content .program-tabs .programm-tabs-wrapper .program-tab {
    width: 25%;
    padding: 5px 10px;
    font-size: 20px;
    font-weight: 600;
    color: white;
    text-align: center;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    transition: all 0.3s;
    cursor: pointer;
  }
  #programm .section-content .program-tabs .programm-tabs-wrapper .program-tab.active {
    border: 2px solid white;
    border-radius: 300px;
    background: var(--color-blue);
  }
  #programm .section-content .program-content {
    width: calc(100% - 4px);
    height: 0;
    padding-top: 34%;
    position: relative;
    border: 2px solid white;
    border-radius: 30px;
    overflow: hidden;
  }
  #programm .section-content .program-content .content-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s;
  }
  #programm .section-content .program-content .content-item.active {
    z-index: 1;
    opacity: 1;
  }
  #programm .section-content .program-content .content-item .program-item-wrapper {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    height: inherit;
  }
  #programm .section-content .program-content .content-item .program-item-wrapper .program-item-text {
    background: url("/local/images/masterflota/bg-2.jpg");
    width: 50%;
    padding: 30px;
    font-size: 20px;
    color: white;
  }
  #programm .section-content .program-content .content-item .program-item-wrapper .program-item-image {
    width: 50%;
    position: relative;
    height: inherit;
    border-left: 2px solid white;
  }
  #programm .section-content .program-content .content-item .program-item-wrapper .program-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #programm .section-content .btns {
    width: 100%;
  }
  #programm .section-content .btns .btn {
    width: calc(100% - 40px);
    font-size: 20px;
    padding: 7px 20px;
  }
  #programm .section-content .btns .btn:hover {
    font-size: 22px !important;
  }
  #news {
    margin-top: -100px;
    padding: 100px 0 200px;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
  }
  #news .section-title .title-text {
    font-size: 50px;
  }
  #news .section-title .slider-arrows {
    gap: 20px;
  }
  #news .section-title .slider-arrows .arrow {
    width: 30px;
    height: 30px;
  }
  #news .section-title .slider-arrows .arrow .arrow-image {
    width: 10px;
    height: 10px;
  }
  #news .section-title .slider-arrows .arrow.arrow-prev .arrow-image {
    margin-left: 5px;
  }
  #news .section-title .slider-arrows .arrow.arrow-next .arrow-image {
    margin-right: 5px;
  }
  #news .section-title .modal-btn-close {
    width: 30px;
    height: 30px;
    bottom: -20px;
    right: -10px;
  }
  #news .section-title .modal-btn-close:before, #news .section-title .modal-btn-close:after {
    width: 20px;
    height: 2px;
  }
  #news .section-content {
    gap: 30px;
    margin-top: 30px;
  }
  #news .section-content .news-detail {
    border-radius: 25px;
  }
  #news .section-content .news-detail .news-detail-wrapper .detail-text {
    width: 50%;
  }
  #news .section-content .news-detail .news-detail-wrapper .detail-text .detail-text-wrapper {
    padding: 20px 0 20px 20px;
  }
  #news .section-content .news-detail .news-detail-wrapper .detail-text .detail-text-wrapper .detail-text-title {
    font-size: 30px;
    padding-bottom: 20px;
  }
  #news .section-content .news-detail .news-detail-wrapper .detail-text .detail-text-wrapper .detail-text-desc {
    padding-right: 30px;
    font-size: 20px;
    overflow: scroll;
    height: calc(100% - 60px);
    padding-bottom: 30px;
  }
  #news .section-content .news-detail .news-detail-wrapper .detail-image {
    height: 100%;
    width: calc(50% - 2px);
  }
  #news .section-content #sliderNews .swiper-slide .slide-wrapper {
    gap: 20px;
  }
  #news .section-content #sliderNews .swiper-slide .slide-content {
    border-radius: 30px;
  }
  #news .section-content #sliderNews .swiper-slide .slide-content .slide-image {
    height: 200px;
    border-radius: 30px;
  }
  #news .section-content #sliderNews .swiper-slide .slide-content .slide-text {
    padding: 20px;
    font-size: 20px;
  }
  #news .section-content #sliderNews .swiper-slide .slide-btn {
    border-radius: 300px;
    padding: 7px 10px;
  }
  #contacts {
    margin-top: -100px;
    padding: 100px 0 200px;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    border-top: 4px solid var(--color-yellow);
    background-size: cover;
    background-position: center;
  }
  #contacts .section-title {
    margin-bottom: 20px;
  }
  #contacts .section-title .title-text {
    font-size: 50px;
  }
  #contacts .section-wrapper {
    margin-top: 30px;
  }
  #contacts .section-wrapper .contacts-list {
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    gap: 30px;
  }
  #contacts .section-wrapper .contacts-list .contact-item {
    width: calc(25% - 24px);
  }
  #contacts .section-wrapper .contacts-list .contact-item .image {
    width: 130px;
    height: 130px;
    margin-bottom: 10px;
  }
  #contacts .section-wrapper .contacts-list .contact-item div {
    font-size: 15px;
  }
  #contacts .section-wrapper .contacts-list .contact-item .contact-position {
    margin-bottom: auto;
    padding-bottom: 20px;
  }
  #media {
    margin-top: -100px;
    padding: 100px 0 200px;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    border-top: 4px solid var(--color-yellow);
  }
  #media .section-title .title-text {
    font-size: 40px;
  }
  #media .section-title .yearsMedia {
    gap: 22px;
  }
  #media .section-title .yearsMedia .yearMedia {
    font-size: 20px;
  }
  #media .section-wrapper {
    border-radius: 30px;
    gap: 50px;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper {
    gap: 30px;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item {
    width: calc(50% - 15px);
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .image {
    width: 148px;
    height: 148px;
    padding: 3px;
    border: 3px solid var(--color-blue);
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content {
    margin-left: 80px;
    border-radius: 0 30px 30px 0;
    height: 160px;
    padding-left: 90px;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .media-text-title {
    font-size: 20px;
    padding: 10px 0;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .media-text-content {
    height: calc(100% - 90px);
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .media-text-content ul {
    padding-left: 20px;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .media-text-content ul li {
    font-size: 15px;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .media-text-content ul li a {
    font-size: 15px;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .content-bottom {
    height: 30px;
    width: calc(100% - 20px);
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .content-bottom .arrow-down {
    width: 10px;
    height: 10px;
    bottom: 10px;
  }
}
@media screen and (max-width: 1024px) {
  body {
    font-size: 16px;
    height: calc(100% - 200px);
    padding-top: 50px;
  }
  header {
    border-bottom: 4px solid var(--color-yellow);
  }
  header .header-wrapper {
    gap: 20px;
  }
  header .header-wrapper .header-logo {
    padding: 10px 0;
  }
  header .header-wrapper .header-logo img.logo-main {
    height: 65px;
    display: block;
  }
  header .header-wrapper .header-logo img.logo-mobile {
    height: 0;
    display: none;
  }
  header .header-wrapper .header-btn {
    height: 50px;
    width: 200px;
  }
  header .header-wrapper .header-btn .btn-wrapper {
    padding: 10px 20px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header .header-wrapper .header-btn:hover .btn-wrapper {
    transform: scale(1.1);
  }
  header .header-wrapper .header-socials img {
    width: 35px;
    height: 35px;
  }
  header .header-wrapper .header-menu {
    height: 60px;
  }
  footer {
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    padding-top: 60px;
    padding-bottom: 60px;
    margin-top: -60px;
  }
  footer .section-title {
    margin-bottom: 30px;
    font-size: 40px;
  }
  footer .footer-content {
    font-size: 16px;
    gap: 30px;
  }
  footer .footer-content .footer-column {
    width: calc(50% - 15px);
    gap: 20px;
  }
  footer .footer-content .footer-column .footer-btn {
    width: 160px;
    height: 30px;
  }
  footer .footer-content .footer-column .footer-btn .btn-wrapper {
    padding: 5px 50px;
    font-size: 16px;
  }
  footer .footer-content .footer-column.company {
    gap: 3px;
  }
  #mainSection {
    top: 0;
    padding: 60px 0 160px;
  }
  #mainSection .section-wrapper {
    gap: 20px;
    flex-direction: column;
  }
  #mainSection .section-wrapper .btns {
    gap: 20px;
  }
  #mainSection .section-wrapper .btns .btn {
    width: calc(50% - 10px);
    height: 50px !important;
  }
  #mainSection .section-wrapper .btns .btn .btn-wrapper {
    height: 50px !important;
    font-size: 20px;
  }
  #mainSection .section-wrapper .column-main {
    width: 100%;
    gap: 20px;
  }
  #mainSection .section-wrapper .column-adv {
    width: 100%;
    gap: 20px;
  }
  #mainSection .section-wrapper .column-adv .places {
    border-radius: 30px;
    padding: 20px;
  }
  #mainSection .section-wrapper .column-adv .places .place-title {
    font-size: 30px;
  }
  #mainSection .section-wrapper .column-adv .places .places-list {
    gap: 10px;
    font-size: 24px;
    margin-top: 20px;
  }
  #mainSection .section-wrapper .column-adv .places .places-list .place-item {
    gap: 30px;
    font-size: 20px;
  }
  #mainSection .section-wrapper .column-adv .places .places-list .place-item .icon {
    width: 30px;
  }
  #mainSection .section-wrapper .column-adv .places .places-list .place-item .icon img {
    width: 20px;
  }
  #mainSection .section-wrapper .column-adv .appl-accept {
    gap: 20px;
    border: 4px solid white;
    border-radius: 30px;
    padding: 20px;
  }
  #mainSection .section-wrapper .column-adv .appl-accept .appl-accept-wrapper {
    gap: 20px;
  }
  #mainSection .section-wrapper .column-adv .appl-accept .appl-accept-icon {
    width: 110px;
  }
  #mainSection .section-wrapper .column-adv .appl-accept .appl-accept-text {
    gap: 10px;
  }
  #mainSection .section-wrapper .column-adv .appl-accept .appl-accept-text .appl-accept-title {
    font-size: 40px;
  }
  #mainSection .section-wrapper .column-adv .appl-accept .appl-accept-text .appl-accept-date {
    font-size: 30px;
  }
  #mainSection .section-wrapper .btns-mobile {
    display: flex !important;
  }
  #mainSection .section-wrapper .btns-desktop {
    display: none !important;
  }
  #history {
    margin-top: -60px;
    padding: 60px 0 160px;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    border-top: 4px solid var(--color-yellow);
    background-size: cover;
    background-position: center;
  }
  #history .section-title .title-text {
    font-size: 40px;
  }
  #history .section-wrapper {
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    margin-top: 30px;
    height: fit-content;
  }
  #history .section-wrapper .slide-wrapper {
    position: relative;
    height: inherit;
  }
  #history .section-wrapper .bg-main {
    width: 100%;
    height: 100%;
  }
  #history .section-wrapper .bg-adw {
    width: 0%;
    display: none;
  }
  #history .section-wrapper .column-main {
    max-width: 100%;
    gap: 30px;
    padding: 30px;
  }
  #history .section-wrapper .column-main .slide-title {
    color: var(--color-yellow);
    font-weight: 600;
    font-size: 30px;
  }
  #history .section-wrapper .column-main .slide-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block {
    display: flex;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-text {
    flex-direction: column;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-text .content-title {
    color: var(--color-yellow);
    font-weight: 600;
    font-size: 24px;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-text .content-text {
    font-size: 16px;
    font-weight: 300;
    color: white;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-infografic {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-infografic .ifografic-title {
    color: var(--color-yellow);
    font-weight: 600;
    font-size: 24px;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-infografic .infografic-values {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-infografic .infografic-values .infografic-value {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-infografic .infografic-values .infografic-value .i-val {
    color: var(--color-yellow);
    font-weight: 600;
    font-size: 30px;
    text-align: right;
    white-space: nowrap;
    line-height: 1;
    width: 200px;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-infografic .infografic-values .infografic-value .i-text {
    text-align: left;
    font-size: 16px;
    font-weight: 300;
    color: white;
    flex-grow: 1;
    width: 250px;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-image {
    width: 100%;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-image img {
    width: 100%;
    object-fit: cover;
  }
  #history .section-wrapper .column-adv {
    display: none !important;
  }
  #callingSection {
    margin-top: -100px;
    padding: 60px 30px 180px;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    border-top: 4px solid var(--color-yellow);
    max-width: 100%;
    overflow: hidden;
  }
  #callingSection .slider-arrows.arrows-mobile {
    width: calc(100% + 30px);
    left: -15px;
    position: absolute;
    justify-content: space-between;
    top: 50%;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
  }
  #callingSection .slider-arrows.arrows-mobile .arrow {
    background: var(--color-light-blue);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
  }
  #callingSection .slider-arrows.arrows-mobile .arrow .arrow-image {
    width: 10px;
    height: 10px;
    border: 2px solid #32557f;
    border-left: 0;
    border-top: 0;
  }
  #callingSection .slider-arrows.arrows-mobile .arrow.arrow-prev .arrow-image {
    transform: rotate(135deg);
    margin-left: 5px;
  }
  #callingSection .slider-arrows.arrows-mobile .arrow.arrow-next .arrow-image {
    transform: rotate(315deg);
    margin-right: 5px;
  }
  #callingSection .slider-arrows.arrows-mobile .arrow.inactive {
    opacity: 0.6;
    pointer-events: none;
  }
  #callingSection .slider-arrows.arrows-mobile .arrow:not(.inactive):hover {
    background: var(--color-blue-dark);
    color: white;
  }
  #callingSection .section-title {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
  #callingSection .section-title .swiper-wrapper {
    height: max-content;
  }
  #callingSection .section-title .swiper-wrapper .swiper-slide {
    height: unset;
  }
  #callingSection .section-title .title-text {
    color: white;
    font-size: 40px;
  }
  #callingSection .section-title .slider-arrows {
    display: none;
  }
  #callingSection .section-slider {
    margin-top: 20px;
    width: 100%;
    border: none;
    border-radius: 0;
    padding: 0;
    background: transparent;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
  }
  #callingSection .section-slider .slider-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    padding: 0;
  }
  #callingSection .section-slider .slider-content .slider-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
    color: white;
  }
  #callingSection .section-slider .slider-content .slider-text .text-title {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-left: 0;
    margin-bottom: 10px;
  }
  #callingSection .section-slider .slider-content .slider-text .text-title:before {
    content: "";
    position: absolute;
    top: -3px;
    left: 0;
    display: none;
    background: url("/local/images/masterflota/kanat 1.svg");
    background-repeat: no-repeat;
    width: 12px;
    transform: rotate(90deg);
    height: 100%;
    background-size: cover;
  }
  #callingSection .section-slider .slider-content .slider-text .text-title .text-name {
    font-size: 30px;
    font-weight: 600;
  }
  #callingSection .section-slider .slider-content .slider-text .text-title .line-mobile {
    display: block;
    position: relative;
    width: 100%;
    height: 21px;
    margin-top: 5px;
  }
  #callingSection .section-slider .slider-content .slider-text .text-title .line-mobile:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0;
    display: block;
    background: url("/local/images/masterflota/line.svg");
    background-repeat: no-repeat;
    width: 100%;
    height: 16px;
    background-size: cover;
  }
  #callingSection .section-slider .slider-content .slider-text .text-title .text-position {
    font-size: 20px;
    font-weight: 400;
  }
  #callingSection .section-slider .slider-content .slider-text .text-calling {
    font-weight: 200;
    position: relative;
    font-size: 16px;
  }
  #callingSection .section-slider .slider-content .slider-text .text-calling .kov {
    position: absolute;
    content: "";
    width: 50px;
    height: 50px;
    display: inline-block;
    background: url("/local/images/masterflota/kov.svg");
    background-repeat: no-repeat;
    background-size: contain;
  }
  #callingSection .section-slider .slider-content .slider-text .text-calling .kov.kov-open {
    left: 0;
    top: 0;
  }
  #callingSection .section-slider .slider-content .slider-text .text-calling .kov.kov-close {
    transform: rotate(180deg);
    margin-left: 10px;
    bottom: 0;
  }
  #callingSection .section-slider .slider-content .slider-text .text-calling p:first-child {
    text-indent: 60px;
  }
  #callingSection .section-slider .slider-content .slider-stamp {
    display: none;
  }
  #callingSection .section-slider .slider-content .slider-photo {
    display: none;
  }
  #contPart {
    margin-top: -60px;
    padding: 60px 0 160px;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    border-top: 4px solid var(--color-yellow);
  }
  #contPart .section-title {
    font-size: 50px;
    margin-bottom: 20px;
  }
  #contPart .section-wrapper {
    width: calc(100% - 60px);
    border-radius: 30px;
    padding: 30px;
    height: fit-content;
  }
  #contPart .section-wrapper .bg-main {
    width: 100%;
  }
  #contPart .section-wrapper .bg-adw {
    width: 0%;
    display: none;
  }
  #contPart .section-wrapper .column-main {
    max-width: 100%;
    gap: 40px;
    margin-left: 0%;
  }
  #contPart .section-wrapper .column-main .text {
    font-size: 30px;
    width: 70%;
    margin-left: 0%;
  }
  #contPart .section-wrapper .column-main .btns {
    width: 70%;
  }
  #contPart .section-wrapper .column-main .btns .btn {
    font-size: 20px;
    padding: 10px 20px;
  }
  #contPart .section-wrapper .column-adv {
    display: none;
    width: 20%;
    height: calc(100% - 60px);
    right: 10%;
    margin: 30px 0;
  }
  #nominations {
    margin-top: -100px;
    padding: 100px 0 140px;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    border-top: 4px solid var(--color-yellow);
    background-size: cover;
    background-position: center;
  }
  #nominations .section-title {
    font-size: 50px;
    margin-bottom: 20px;
  }
  #nominations .section-wrapper .nominations-list {
    gap: 30px;
  }
  #nominations .section-wrapper .nominations-list .nomination-item {
    width: calc(50% - 20px);
    border-top-left-radius: 300px;
    border-bottom-left-radius: 300px;
    border-top-right-radius: 80px;
    border-bottom-right-radius: 80px;
    height: 100px;
    gap: 30px;
  }
  #nominations .section-wrapper .nominations-list .nomination-item .image {
    width: 92px;
    height: 92px;
    margin-left: 4px;
  }
  #nominations .section-wrapper .nominations-list .nomination-item .image img {
    width: 85px;
    height: 85px;
  }
  #nominations .section-wrapper .nominations-list .nomination-item .nomination-name {
    width: calc(100% - 134px);
  }
  #nominations .section-wrapper .btns {
    margin-top: 30px;
    gap: 50px;
  }
  #nominations .section-wrapper .btns .btn {
    border: 2px solid var(--color-blue-dark);
    padding: 5px 20px;
    border-radius: 300px;
    width: calc(50% - 25px);
  }
  #nominations .section-wrapper .nomination-slogan {
    margin-top: 50px;
    font-size: 30px;
  }
  #programm {
    margin-top: -100px;
    margin-bottom: -100px;
    padding: 100px 0 200px;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
  }
  #programm .section-title {
    color: white;
    font-size: 50px;
  }
  #programm .section-content {
    gap: 30px;
  }
  #programm .section-content .program-tabs {
    width: 100%;
    overflow-x: hidden;
  }
  #programm .section-content .program-tabs .programm-tabs-wrapper {
    display: flex;
    flex-direction: row;
    position: relative;
    width: 100%;
    align-items: stretch;
    justify-content: flex-start;
    margin-top: 30px;
  }
  #programm .section-content .program-tabs .programm-tabs-wrapper:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border: 2px solid white;
    border-radius: 300px;
    background: var(--color-blue-dark);
  }
  #programm .section-content .program-tabs .programm-tabs-wrapper .programm-tabs-list {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  #programm .section-content .program-tabs .programm-tabs-wrapper .program-tab {
    width: 25%;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    text-align: center;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    transition: all 0.3s;
    cursor: pointer;
  }
  #programm .section-content .program-tabs .programm-tabs-wrapper .program-tab.active {
    border: 2px solid white;
    border-radius: 300px;
    background: var(--color-blue);
  }
  #programm .section-content .program-content {
    width: calc(100% - 4px);
    height: 0;
    padding-top: 34%;
    position: relative;
    border: 2px solid white;
    border-radius: 30px;
    overflow: hidden;
  }
  #programm .section-content .program-content .content-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s;
  }
  #programm .section-content .program-content .content-item.active {
    z-index: 1;
    opacity: 1;
  }
  #programm .section-content .program-content .content-item .program-item-wrapper {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    height: inherit;
  }
  #programm .section-content .program-content .content-item .program-item-wrapper .program-item-text {
    background: url("/local/images/masterflota/bg-2.jpg");
    width: 50%;
    padding: 30px;
    font-size: 14px;
    color: white;
  }
  #programm .section-content .program-content .content-item .program-item-wrapper .program-item-image {
    width: 50%;
    position: relative;
    height: inherit;
    border-left: 2px solid white;
  }
  #programm .section-content .program-content .content-item .program-item-wrapper .program-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #programm .section-content .btns {
    width: 100%;
  }
  #programm .section-content .btns .btn {
    width: calc(100% - 40px);
    font-size: 20px;
    padding: 7px 20px;
  }
  #programm .section-content .btns .btn:hover {
    font-size: 22px !important;
  }
  #news {
    margin-top: -60px;
    padding: 60px 0 160px;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
  }
  #news .section-title .title-text {
    font-size: 40px;
  }
  #news .section-title .slider-arrows {
    gap: 20px;
  }
  #news .section-title .slider-arrows .arrow {
    width: 30px;
    height: 30px;
  }
  #news .section-title .slider-arrows .arrow .arrow-image {
    width: 10px;
    height: 10px;
  }
  #news .section-title .slider-arrows .arrow.arrow-prev .arrow-image {
    margin-left: 5px;
  }
  #news .section-title .slider-arrows .arrow.arrow-next .arrow-image {
    margin-right: 5px;
  }
  #news .section-title .modal-btn-close {
    width: 30px;
    height: 30px;
    bottom: -20px;
    right: -10px;
  }
  #news .section-title .modal-btn-close:before, #news .section-title .modal-btn-close:after {
    width: 20px;
    height: 2px;
  }
  #news .section-content {
    gap: 30px;
    margin-top: 30px;
  }
  #news .section-content .news-detail {
    border-radius: 25px;
  }
  #news .section-content .news-detail .news-detail-wrapper .detail-text {
    width: 50%;
  }
  #news .section-content .news-detail .news-detail-wrapper .detail-text .detail-text-wrapper {
    padding: 20px 0 20px 20px;
  }
  #news .section-content .news-detail .news-detail-wrapper .detail-text .detail-text-wrapper .detail-text-title {
    order: 2;
    font-size: 30px;
    padding-bottom: 20px;
  }
  #news .section-content .news-detail .news-detail-wrapper .detail-text .detail-text-wrapper .detail-text-desc {
    padding-right: 30px;
    font-size: 20px;
    overflow: scroll;
    height: calc(100% - 60px);
    padding-bottom: 30px;
  }
  #news .section-content .news-detail .news-detail-wrapper .detail-image {
    order: 1;
    height: 100%;
    width: calc(50% - 2px);
  }
  #news .section-content #sliderNews .swiper-slide .slide-wrapper {
    gap: 20px;
  }
  #news .section-content #sliderNews .swiper-slide .slide-content {
    border-radius: 30px;
  }
  #news .section-content #sliderNews .swiper-slide .slide-content .slide-image {
    height: 200px;
    border-radius: 30px;
  }
  #news .section-content #sliderNews .swiper-slide .slide-content .slide-text {
    padding: 20px;
    font-size: 20px;
  }
  #news .section-content #sliderNews .swiper-slide .slide-btn {
    border-radius: 300px;
    padding: 7px 10px;
  }
  #partners {
    margin-top: -60px;
    padding: 60px 0 160px;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
  }
  #partners .section-title .title-text {
    font-size: 40px;
  }
  #partners .section-wrapper {
    gap: 20px;
    margin-top: 20px;
  }
  #partners .section-wrapper .partners-block {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  #partners .section-wrapper .partners-block .partners-block-title {
    font-size: 20px;
    text-align: left;
  }
  #partners .section-wrapper .partners-block .partners-block-list {
    gap: 20px;
  }
  #partners .section-wrapper .partners-block .partners-block-list .list-item {
    width: 110px;
    height: 110px;
    border-radius: 20px;
  }
  #partners .section-wrapper .partners-block .partners-block-list .list-item.partner-add {
    font-size: 16px;
  }
  #contacts {
    margin-top: -60px;
    padding: 60px 0 160px;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    border-top: 4px solid var(--color-yellow);
    background-size: cover;
    background-position: center;
  }
  #contacts .section-title {
    margin-bottom: 20px;
  }
  #contacts .section-title .title-text {
    font-size: 40px;
  }
  #contacts .section-wrapper {
    margin-top: 20px;
  }
  #contacts .section-wrapper .contacts-list {
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    gap: 20px;
  }
  #contacts .section-wrapper .contacts-list .contact-item {
    width: calc(33.3% - 24px);
  }
  #contacts .section-wrapper .contacts-list .contact-item .image {
    width: 130px;
    height: 130px;
    margin-bottom: 10px;
  }
  #contacts .section-wrapper .contacts-list .contact-item div {
    font-size: 15px;
  }
  #contacts .section-wrapper .contacts-list .contact-item .contact-position {
    margin-bottom: auto;
    padding-bottom: 15px;
  }
  #video {
    margin-top: -60px;
    padding: 60px 0 160px;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    border-top: 4px solid var(--color-yellow);
    background-size: cover;
    background-position: center;
  }
  #video .section-title {
    font-size: 36px;
    margin-bottom: 55px;
    margin-left: 45px;
    margin-top: 0;
    color: var(--color-blue-dark);
  }
  #video .section-content .video {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 30px;
    overflow: hidden;
    height: 0;
    padding-top: 60%;
    position: relative;
    margin-bottom: 16px;
  }
  #video .section-content .video .video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  #video .section-content .video .video-wrapper img {
    width: 100%;
    min-height: 100%;
    object-fit: cover;
  }
  #video .section-content .video-desc {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: var(--color-blue-dark);
    font-size: 16px;
  }
  #video .section-content .video-slogan {
    font-family: Calibri;
    font-weight: bold;
    margin-top: 44px;
    color: var(--color-yellow-dark);
    font-style: italic;
    font-size: 20px;
    text-align: center;
    margin-bottom: 0;
  }
  #media {
    margin-top: -60px;
    padding: 60px 0 160px;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    border-top: 4px solid var(--color-yellow);
  }
  #media .section-title .title-text {
    font-size: 40px;
  }
  #media .section-title .yearsMedia {
    gap: 22px;
  }
  #media .section-title .yearsMedia .yearMedia {
    font-size: 20px;
  }
  #media .section-wrapper {
    border-radius: 30px;
    gap: 30px;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper {
    gap: 30px;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item {
    width: 100%;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .image {
    width: 148px;
    height: 148px;
    padding: 3px;
    border: 3px solid var(--color-blue);
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content {
    margin-left: 80px;
    border-radius: 0 30px 30px 0;
    height: 160px;
    padding-left: 90px;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .media-text-title {
    font-size: 20px;
    padding: 10px 0;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .media-text-content {
    height: calc(100% - 80px);
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .media-text-content ul {
    padding-left: 20px;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .media-text-content ul li {
    font-size: 16px;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .media-text-content ul li a {
    font-size: 16px;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .content-bottom {
    height: 30px;
    width: calc(100% - 20px);
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .content-bottom .arrow-down {
    width: 10px;
    height: 10px;
    bottom: 10px;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .content-bottom .arrow-down.arrow-none {
    display: block;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .content-bottom .arrow-down.arrow-desc {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 20px;
    height: calc(100% - 200px);
    padding-top: 50px;
  }
  .modal {
    display: none;
  }
  .modal.active {
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.75);
    display: block;
    height: 100vh;
  }
  .modal.active .bg-filter {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(22, 22, 22, 0.7607843137);
    filter: blur(10px);
    display: block;
    z-index: 1;
  }
  .modal.active .modal-wrapper {
    position: relative;
    padding: 60px 0 30px;
    height: calc(100vh - 90px);
  }
  .modal.active .modal-wrapper#infoModal {
    width: fit-content;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0;
    border: 1px solid #ccc;
    background: white;
    position: relative;
    height: fit-content;
  }
  .modal.active .modal-wrapper#infoModal .modal-title {
    background: var(--color-link);
    text-align: center;
    color: white;
  }
  .modal.active .modal-wrapper#infoModal .modal-content {
    color: var(--color-link);
    display: flex;
    flex-direction: column;
  }
  .modal.active .modal-wrapper#infoModal .modal-content .content-text {
    font-family: Montserrat;
  }
  .modal.active .modal-wrapper#infoModal .modal-content .btn {
    width: fit-content;
    margin-left: auto;
    text-align: center;
  }
  .modal.active .modal-wrapper .container {
    height: 100%;
    overflow: hidden;
  }
  .modal.active .modal-close {
    position: absolute;
    opacity: 0.6;
    z-index: 10001;
    cursor: pointer;
    width: 50px;
    height: 50px;
    top: 25px;
    right: 0;
  }
  .modal.active .modal-close:hover {
    opacity: 1;
  }
  .modal.active .modal-close:before, .modal.active .modal-close:after {
    position: absolute;
    content: " ";
    background-color: #dadada;
    width: 30px;
    height: 2px;
  }
  .modal.active .modal-close:before {
    transform: rotate(45deg);
  }
  .modal.active .modal-close:after {
    transform: rotate(-45deg);
  }
  .modal.active .modal-title {
    color: white;
    font-weight: 600;
  }
  .modal.active .modal-content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 20px;
    height: 100%;
  }
  .modal.active .modal-content .main-slider-wrapper {
    width: 100%;
    height: calc(100% - 80px);
    margin-left: auto;
    margin-right: auto;
  }
  .modal.active .modal-content .main-slider-wrapper .swiperModalMain {
    height: 100%;
  }
  .modal.active .modal-content .main-slider-wrapper .swiperModalMain .swiper-slide {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .modal.active .modal-content .main-slider-wrapper .swiperModalMain .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .modal.active .modal-content .swiperModalThumbs {
    width: 100%;
    height: 60px;
  }
  .modal.active .modal-content .swiperModalThumbs .swiper-slide {
    width: 20%;
    height: inherit;
  }
  .modal.active .modal-content .swiperModalThumbs .swiper-slide:not(.swiper-slide-thumb-active) {
    filter: grayscale(100%);
  }
  .modal.active .modal-content .swiperModalThumbs img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  header {
    border-bottom: 4px solid var(--color-yellow);
  }
  header .header-wrapper {
    gap: 20px;
  }
  header .header-wrapper .header-logo {
    padding: 10px 0;
  }
  header .header-wrapper .header-logo img.logo-main {
    height: 0;
    display: none;
  }
  header .header-wrapper .header-logo img.logo-mobile {
    height: 40px;
    display: block;
  }
  header .header-wrapper .header-btn {
    height: 50px;
    width: 200px;
  }
  header .header-wrapper .header-btn .btn-wrapper {
    padding: 10px 20px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header .header-wrapper .header-btn:hover .btn-wrapper {
    transform: scale(1.1);
  }
  header .header-wrapper .header-socials img {
    width: 35px;
    height: 35px;
  }
  header .header-wrapper .header-menu {
    height: 40px;
  }
  footer {
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    border-top: 4px solid var(--color-yellow);
    padding-top: 76px;
    padding-bottom: 40px;
    margin-top: -60px;
    background-size: cover;
    background-position-x: left;
  }
  footer .footer-wrapper {
    width: calc(100% - 60px);
    margin-left: auto;
    margin-right: auto;
  }
  footer .section-title {
    margin-bottom: 22px;
    font-size: 36px;
    line-height: 1;
    font-weight: 600;
  }
  footer .footer-content {
    font-size: 16px;
    gap: 22px;
    flex-wrap: wrap;
    font-weight: 300;
    line-height: 1;
  }
  footer .footer-content .footer-column {
    width: 100%;
    gap: 22px;
  }
  footer .footer-content .footer-column .footer-btn {
    width: 350px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
  }
  footer .footer-content .footer-column .footer-btn .btn-wrapper {
    padding: 0;
    font-size: 20px;
  }
  footer .footer-content .footer-column.company {
    gap: 3px;
  }
  #mainSection {
    top: 0;
    padding: 60px 0 102px;
  }
  #mainSection .section-wrapper {
    gap: 20px;
    flex-direction: column;
  }
  #mainSection .section-wrapper .btn-mobile {
    display: block !important;
    height: 50px;
    position: relative;
    width: 80%;
    margin: 0 auto;
    transition: all 0.3s;
  }
  #mainSection .section-wrapper .btn-mobile a {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    border-radius: 30px;
    height: 50px;
    border: 2px solid white;
    background: var(--color-yellow);
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
  }
  #mainSection .section-wrapper .btn-mobile:hover {
    transform: scale(1.1);
  }
  #mainSection .section-wrapper .btns {
    gap: 30px;
  }
  #mainSection .section-wrapper .btns .btn {
    width: calc(50% - 10px);
    height: 50px !important;
  }
  #mainSection .section-wrapper .btns .btn .btn-wrapper {
    height: 50px !important;
    font-size: 16px;
  }
  #mainSection .section-wrapper .column-main {
    width: 100%;
    gap: 20px;
  }
  #mainSection .section-wrapper .column-adv {
    width: 100%;
    gap: 20px;
  }
  #mainSection .section-wrapper .column-adv .places {
    border-radius: 30px;
    padding: 30px 45px;
  }
  #mainSection .section-wrapper .column-adv .places .place-title {
    font-size: 24px;
  }
  #mainSection .section-wrapper .column-adv .places .places-list {
    gap: 10px;
    font-size: 20px;
    margin-top: 20px;
  }
  #mainSection .section-wrapper .column-adv .places .places-list .place-item {
    gap: 10px;
    font-size: 16px;
    min-height: 30px;
  }
  #mainSection .section-wrapper .column-adv .places .places-list .place-item .icon {
    width: 20px;
  }
  #mainSection .section-wrapper .column-adv .places .places-list .place-item .icon img {
    width: 20px;
  }
  #mainSection .section-wrapper .column-adv .appl-accept {
    gap: 20px;
    border: 2px solid white;
    border-radius: 30px;
    padding: 8px;
  }
  #mainSection .section-wrapper .column-adv .appl-accept .appl-accept-wrapper {
    gap: 20px;
  }
  #mainSection .section-wrapper .column-adv .appl-accept .appl-accept-icon {
    width: 110px;
  }
  #mainSection .section-wrapper .column-adv .appl-accept .appl-accept-text {
    gap: 10px;
  }
  #mainSection .section-wrapper .column-adv .appl-accept .appl-accept-text .appl-accept-title {
    font-size: 30px;
  }
  #mainSection .section-wrapper .column-adv .appl-accept .appl-accept-text .appl-accept-date {
    font-size: 20px;
  }
  #mainSection .section-wrapper .btns-mobile {
    display: flex !important;
  }
  #mainSection .section-wrapper .btns-desktop {
    display: none !important;
  }
  #history {
    margin-top: -60px;
    padding: 76px 0 102px;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    border-top: 4px solid var(--color-yellow);
    background-size: cover;
    background-position: center;
  }
  #history .section-title {
    flex-direction: column !important;
    align-items: flex-start;
  }
  #history .section-title .title-text {
    font-size: 36px;
    font-weight: bold;
    margin-top: 0;
    margin-left: 42px;
  }
  #history .section-title .history-arrows {
    margin-left: auto;
    margin-top: 30px;
  }
  #history .section-wrapper {
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    margin-top: 10px;
    height: inherit;
    position: relative;
  }
  #history .section-wrapper #sliderHistory {
    height: auto;
    align-items: stretch;
  }
  #history .section-wrapper #sliderHistory .swiper-wrapper {
    align-items: stretch;
    height: unset !important;
    background: url("/local/images/masterflota/bg-2.jpg");
  }
  #history .section-wrapper #sliderHistory .swiper-wrapper .swiper-slide {
    position: relative;
    background: url("/local/images/masterflota/bg-2.jpg");
    background-size: cover;
    height: unset !important;
  }
  #history .section-wrapper .slide-wrapper {
    position: relative;
    height: unset !important;
  }
  #history .section-wrapper .bg-main {
    width: 0%;
    display: none;
  }
  #history .section-wrapper .bg-adw {
    width: 0%;
    display: none;
  }
  #history .section-wrapper .column-main {
    max-width: 100%;
    gap: 22px;
    padding: 42px;
    justify-content: flex-start !important;
    min-height: calc(100% - 84px);
    background-size: cover;
  }
  #history .section-wrapper .column-main .slide-title {
    color: var(--color-yellow);
    font-weight: 600;
    font-size: 20px;
  }
  #history .section-wrapper .column-main .slide-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    height: 100%;
    flex-grow: 1;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block {
    display: flex;
    position: relative;
    height: calc(100% - 84px);
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-text {
    flex-direction: column;
    max-width: 100%;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-text .content-title {
    color: var(--color-yellow);
    font-weight: 600;
    font-size: 20px;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-text .content-text {
    font-size: 16px;
    font-weight: 300;
    color: white;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-infografic {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-infografic .ifografic-title {
    color: var(--color-yellow);
    font-weight: 600;
    font-size: 20px;
    width: 155px;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-infografic .infografic-value .i-val {
    color: var(--color-yellow);
    font-weight: 600;
    font-size: 30px;
    text-align: right;
    white-space: nowrap;
    line-height: 1;
    padding-bottom: 5px;
    vertical-align: baseline;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-infografic .infografic-value .i-text {
    text-align: left;
    font-size: 16px;
    font-weight: 300;
    color: white;
    padding-left: 22px;
    vertical-align: bottom;
    padding-bottom: 5px;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-infografic .infografic-values {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-infografic .infografic-values .infografic-value {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 10px;
    position: relative;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-infografic .infografic-values .infografic-value .i-val {
    color: var(--color-yellow);
    font-weight: 600;
    font-size: 30px;
    text-align: right;
    white-space: nowrap;
    line-height: 1;
    width: 130px;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-infografic .infografic-values .infografic-value .i-text {
    text-align: left;
    font-size: 14px;
    font-weight: 300;
    color: white;
    width: max-content;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-image {
    width: 100%;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-image img {
    width: 100%;
    object-fit: cover;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block:last-child {
    height: 100%;
    margin-bottom: auto;
  }
  #history .section-wrapper .column-adv {
    display: none !important;
  }
  #callingSection {
    margin-top: -60px;
    padding: 76px 40px 142px;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    border-top: 4px solid var(--color-yellow);
    max-width: 100%;
    overflow: hidden;
  }
  #callingSection .slider-arrows.arrows-mobile {
    width: calc(100% + 50px);
    left: -25px;
    position: absolute;
    justify-content: space-between;
    top: 50%;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
  }
  #callingSection .slider-arrows.arrows-mobile .arrow {
    background: var(--color-light-blue);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
  }
  #callingSection .slider-arrows.arrows-mobile .arrow .arrow-image {
    width: 10px;
    height: 10px;
    border: 2px solid #32557f;
    border-left: 0;
    border-top: 0;
  }
  #callingSection .slider-arrows.arrows-mobile .arrow.arrow-prev .arrow-image {
    transform: rotate(135deg);
    margin-left: 5px;
  }
  #callingSection .slider-arrows.arrows-mobile .arrow.arrow-next .arrow-image {
    transform: rotate(315deg);
    margin-right: 5px;
  }
  #callingSection .slider-arrows.arrows-mobile .arrow.inactive {
    opacity: 0.6;
    pointer-events: none;
  }
  #callingSection .slider-arrows.arrows-mobile .arrow:not(.inactive):hover {
    background: var(--color-blue-dark);
    color: white;
  }
  #callingSection .section-title {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
  #callingSection .section-title .swiper-wrapper {
    height: max-content;
  }
  #callingSection .section-title .swiper-wrapper .swiper-slide {
    height: unset;
  }
  #callingSection .section-title .title-text {
    color: white;
    font-size: 36px;
    line-height: 1;
  }
  #callingSection .section-title .slider-arrows {
    display: none;
  }
  #callingSection .section-slider {
    margin-top: 24px;
    width: 100%;
    border: none;
    border-radius: 0;
    padding: 0;
    background: transparent;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
  }
  #callingSection .section-slider .slider-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    padding: 0;
  }
  #callingSection .section-slider .slider-content .slider-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: white;
  }
  #callingSection .section-slider .slider-content .slider-text .text-title {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-left: 0;
    margin-bottom: 10px;
  }
  #callingSection .section-slider .slider-content .slider-text .text-title:before {
    content: "";
    position: absolute;
    top: -3px;
    left: 0;
    display: none;
    background: url("/local/images/masterflota/kanat 1.svg");
    background-repeat: no-repeat;
    width: 12px;
    transform: rotate(90deg);
    height: 100%;
    background-size: cover;
  }
  #callingSection .section-slider .slider-content .slider-text .text-title .text-name {
    font-size: 20px;
    font-weight: 600;
  }
  #callingSection .section-slider .slider-content .slider-text .text-title .line-mobile {
    display: block;
    position: relative;
    width: 100%;
    height: 21px;
    margin-top: 5px;
  }
  #callingSection .section-slider .slider-content .slider-text .text-title .line-mobile:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0;
    display: block;
    background: url("/local/images/masterflota/line.svg");
    background-repeat: no-repeat;
    width: 100%;
    height: 16px;
    background-size: cover;
  }
  #callingSection .section-slider .slider-content .slider-text .text-title .text-position {
    font-size: 20px;
    font-weight: 400;
  }
  #callingSection .section-slider .slider-content .slider-text .text-calling {
    font-weight: 200;
    position: relative;
    font-size: 16px;
  }
  #callingSection .section-slider .slider-content .slider-text .text-calling .kov {
    position: absolute;
    content: "";
    width: 40px;
    height: 40px;
    display: inline-block;
    background: url("/local/images/masterflota/kov.svg");
    background-repeat: no-repeat;
    background-size: contain;
  }
  #callingSection .section-slider .slider-content .slider-text .text-calling .kov.kov-open {
    left: 0;
    top: 0;
  }
  #callingSection .section-slider .slider-content .slider-text .text-calling .kov.kov-close {
    transform: rotate(180deg);
    margin-left: 10px;
    bottom: 0;
  }
  #callingSection .section-slider .slider-content .slider-text .text-calling p:first-child {
    text-indent: 50px;
  }
  #callingSection .section-slider .slider-content .slider-stamp {
    display: none;
  }
  #callingSection .section-slider .slider-content .slider-photo {
    display: none;
  }
  #video {
    margin-top: -60px;
    padding: 76px 0 142px;
    margin-bottom: -100px;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    border-top: 4px solid var(--color-yellow);
    background-size: cover;
    background-position: center;
  }
  #video .section-title {
    font-size: 36px;
    margin-bottom: 55px;
    margin-left: 45px;
    margin-top: 0;
    color: var(--color-blue-dark);
  }
  #video .section-content .video {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 30px;
    overflow: hidden;
    height: 0;
    padding-top: 60%;
    position: relative;
    margin-bottom: 16px;
  }
  #video .section-content .video .video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  #video .section-content .video .video-wrapper img {
    width: 100%;
    min-height: 100%;
    object-fit: cover;
  }
  #video .section-content .video-desc {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: var(--color-blue-dark);
    font-size: 16px;
  }
  #video .section-content .video-slogan {
    font-family: Calibri;
    font-weight: bold;
    margin-top: 44px;
    color: var(--color-yellow-dark);
    font-style: italic;
    font-size: 20px;
    text-align: center;
    margin-bottom: 0;
  }
  #gallery {
    margin-top: -60px;
    padding: 60px 0 80px;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    border-top: 4px solid var(--color-yellow);
    background-size: cover;
    background-position: center;
  }
  #gallery .section-title {
    font-size: 36px;
    margin-bottom: 20px;
    margin-left: 45px;
  }
  #gallery .section-content {
    margin-top: 200px;
    position: relative;
    height: 124px;
  }
  #gallery .section-content .gallery-arrows {
    position: absolute;
    top: 51px;
    width: 100%;
    z-index: 1;
  }
  #gallery .section-content .gallery-arrows .slider-btn {
    background: var(--color-light-blue);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
  }
  #gallery .section-content .gallery-arrows .slider-btn::after {
    display: none;
  }
  #gallery .section-content .gallery-arrows .slider-btn .arrow-image {
    width: 10px;
    height: 10px;
    border: 2px solid #32557f;
    border-left: 0;
    border-top: 0;
  }
  #gallery .section-content .gallery-arrows .slider-btn.swiper-button-prev .arrow-image {
    transform: rotate(135deg);
    margin-left: 5px;
  }
  #gallery .section-content .gallery-arrows .slider-btn.swiper-button-next .arrow-image {
    transform: rotate(315deg);
    margin-right: 5px;
  }
  #gallery .section-content .gallery-arrows .slider-btn.inactive {
    opacity: 0.6;
    pointer-events: none;
  }
  #gallery .section-content .gallery-arrows .slider-btn:not(.inactive):hover {
    background: var(--color-blue-dark);
    color: white;
  }
  #gallery .section-content #sliderGallery {
    width: calc(100% - 100px);
    z-index: 2;
  }
  #gallery .section-content #sliderGallery .swiper-slide {
    cursor: pointer;
    height: 82px !important;
  }
  #contPart {
    margin-top: -60px;
    padding: 76px 0 102px;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    border-top: 4px solid var(--color-yellow);
    background-size: cover;
  }
  #contPart .section-title {
    font-size: 36px;
    margin-bottom: 42px;
    margin-left: 42px;
    margin-right: 66px;
    line-height: 1;
  }
  #contPart .section-wrapper {
    width: calc(100% - 40px);
    border-radius: 30px;
    padding: 20px;
    height: fit-content;
  }
  #contPart .section-wrapper .bg-main {
    width: 100%;
  }
  #contPart .section-wrapper .bg-adw {
    width: 0;
    display: none;
  }
  #contPart .section-wrapper .column-main {
    max-width: 100%;
    gap: 20px;
    margin-left: 0;
  }
  #contPart .section-wrapper .column-main .text {
    font-size: 20px;
    width: 80%;
    margin-left: 0;
  }
  #contPart .section-wrapper .column-main .btns {
    width: 70%;
  }
  #contPart .section-wrapper .column-main .btns .btn {
    font-size: 20px;
    padding: 10px 20px;
  }
  #contPart .section-wrapper .column-adv {
    display: none;
    width: 20%;
    height: calc(100% - 60px);
    right: 10%;
    margin: 30px 0;
  }
  #nominations {
    margin-top: -60px;
    padding: 76px 0 102px;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    border-top: 4px solid var(--color-yellow);
    background-size: cover;
    background-position: center;
  }
  #nominations .section-title {
    font-size: 36px;
    line-height: 1;
    margin-bottom: 40px;
    margin-left: 45px;
    margin-right: 45px;
    margin-top: 0;
  }
  #nominations .section-wrapper .nominations-list {
    gap: 20px;
  }
  #nominations .section-wrapper .nominations-list .nomination-item {
    width: calc(50% - 10px);
    border-top-left-radius: 300px;
    border-bottom-left-radius: 300px;
    border-top-right-radius: 80px;
    border-bottom-right-radius: 80px;
    height: 83px;
    gap: 10px;
  }
  #nominations .section-wrapper .nominations-list .nomination-item .image {
    width: 76px;
    height: 76px;
    margin-left: 4px;
  }
  #nominations .section-wrapper .nominations-list .nomination-item .image img {
    width: 72px;
    height: 72px;
  }
  #nominations .section-wrapper .nominations-list .nomination-item .nomination-name {
    width: calc(100% - 88px);
    font-size: 14px;
    font-weight: 600;
    text-align: left;
  }
  #nominations .section-wrapper .btns {
    margin-top: 30px;
    gap: 20px;
  }
  #nominations .section-wrapper .btns .btn {
    border: 2px solid var(--color-blue-dark);
    padding: 5px 20px;
    border-radius: 300px;
    width: calc(50% - 10px);
    font-size: 20px;
  }
  #nominations .section-wrapper .nomination-slogan {
    font-family: Calibri;
    font-weight: bold;
    font-style: italic;
    margin-top: 30px;
    margin-bottom: 0;
    font-size: 20px;
  }
  #programm {
    margin-top: -60px;
    padding: 76px 0 142px;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
  }
  #programm .section-title {
    color: white;
    font-size: 36px;
    line-height: 1;
    font-weight: 600;
    margin-bottom: 0;
    margin-left: 42px;
    margin-right: 42px;
    margin-top: 0;
  }
  #programm .section-content {
    gap: 0;
  }
  #programm .section-content .program-tabs {
    width: calc(100% - 4px);
    border: 2px solid white;
    border-radius: 300px;
    background: var(--color-blue-dark);
    overflow: hidden;
    height: 58px;
    position: relative;
    margin-top: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-direction: horizontal;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-bottom: 22px;
  }
  #programm .section-content .program-tabs::-webkit-scrollbar {
    display: none;
  }
  #programm .section-content .program-tabs .programm-tabs-list {
    width: auto;
    position: absolute;
    height: 60px;
    top: -2px;
    bottom: -2px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    left: 0;
    transition: all 0.3s;
  }
  #programm .section-content .program-tabs .programm-tabs-list .program-tab {
    white-space: nowrap;
    width: max-content;
    padding: 0 20px;
    color: white;
    font-size: 16px;
    border: 2px solid transparent;
    border-radius: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 58px;
    text-align: center;
    transition: all 0.3s;
  }
  #programm .section-content .program-tabs .programm-tabs-list .program-tab.active {
    border-color: white;
    background: var(--color-blue);
  }
  #programm .section-content .program-tabs .programm-tabs-list .program-tab:last-child {
    border-right: 0;
  }
  #programm .section-content .program-tabs .programm-tabs-list .program-tab:first-child {
    border-left: 0;
  }
  #programm .section-content .program-tabs .programm-tabs-wrapper {
    overflow-x: unset;
    height: calc(100% + 4px);
    top: -2px;
    position: absolute;
    margin: 0;
    /*
    .program-tab {
      //width: 25%;
      height: 58px;
      padding: 0 10px;
      font-size: 16px;
      font-weight: 600;
      color: white;
      text-align: center;
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid transparent;
      transition: all .3s;
      cursor: pointer;
      &.swiper-slide-thumb-active, .swiper-slide-active {
        border: 2px solid white;
        border-radius: 300px;
        background: var(--color-blue);
      }
      &:last-child {
        border-right: transparent;
      }
      .slide-wrapper {
        height: 58px;
        max-width: 240px;
        min-width: 190px;
      }
    }

     */
  }
  #programm .section-content .program-tabs .programm-tabs-wrapper:before {
    display: none;
  }
  #programm .section-content .program-content {
    width: 80%;
    height: fit-content;
    padding-top: 0;
    position: relative;
    border: none;
    border-radius: 0;
    overflow: unset;
    margin: 0 auto;
    overflow: hidden;
  }
  #programm .section-content .program-content .content-item {
    width: 100%;
    height: fit-content;
    position: relative;
    z-index: 1;
    opacity: 1;
  }
  #programm .section-content .program-content .content-item .program-item-wrapper {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: inherit;
    width: 100%;
    position: relative;
    overflow-x: hidden;
  }
  #programm .section-content .program-content .content-item .program-item-wrapper .program-item-text {
    background: none;
    width: 100%;
    padding: 30px 4px 0;
    font-size: 16px;
    color: white;
    order: 2;
  }
  #programm .section-content .program-content .content-item .program-item-wrapper .program-item-text ul {
    padding-left: 16px;
  }
  #programm .section-content .program-content .content-item .program-item-wrapper .program-item-image {
    width: calc(100% - 4px);
    order: 1;
    position: relative;
    border: 2px solid white;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    overflow: hidden;
    height: 200px;
  }
  #programm .section-content .program-content .content-item .program-item-wrapper .program-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #programm .section-content .btns {
    width: 100%;
  }
  #programm .section-content .btns .btn {
    width: 100%;
    font-size: 20px;
    padding: 0;
  }
  #programm .section-content .btns .btn:hover {
    font-size: 22px !important;
  }
  #news {
    margin-top: -60px;
    padding: 76px 0 102px;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
  }
  #news .section-title {
    margin-bottom: 42px;
    margin-top: 0;
  }
  #news .section-title .title-text {
    font-size: 36px;
    margin-left: 45px;
  }
  #news .section-title .slider-arrows {
    gap: 20px;
  }
  #news .section-title .slider-arrows .arrow {
    width: 30px;
    height: 30px;
  }
  #news .section-title .slider-arrows .arrow .arrow-image {
    width: 10px;
    height: 10px;
  }
  #news .section-title .slider-arrows .arrow.arrow-prev .arrow-image {
    margin-left: 5px;
  }
  #news .section-title .slider-arrows .arrow.arrow-next .arrow-image {
    margin-right: 5px;
  }
  #news .section-title .modal-btn-close {
    width: 30px;
    height: 30px;
    bottom: -20px;
    right: -10px;
  }
  #news .section-title .modal-btn-close:before, #news .section-title .modal-btn-close:after {
    width: 20px;
    height: 2px;
  }
  #news .section-content {
    gap: 30px;
  }
  #news .section-content .news-detail {
    border-radius: 25px;
  }
  #news .section-content .news-detail.active {
    height: fit-content;
    width: 100%;
    position: relative;
    margin-bottom: 0;
  }
  #news .section-content .news-detail .news-detail-wrapper {
    padding: 20px;
    width: calc(100% - 40px);
    flex-wrap: wrap;
  }
  #news .section-content .news-detail .news-detail-wrapper .detail-text-title {
    order: 2;
    width: 100%;
    font-size: 16px;
    line-height: 1;
    padding-bottom: 0;
    margin-bottom: 0;
    color: white;
  }
  #news .section-content .news-detail .news-detail-wrapper .detail-text {
    order: 3;
    width: 100%;
    font-size: 16px;
    overflow: unset;
    height: fit-content;
    padding-bottom: 0;
    color: white;
    background: none;
    line-height: 1;
  }
  #news .section-content .news-detail .news-detail-wrapper .detail-image {
    order: 1;
    height: auto;
    width: 100%;
    border: 2px solid white;
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 22px;
  }
  #news .section-content .news-detail .news-detail-wrapper .detail-image img {
    height: calc(100% + 2px);
    object-fit: cover;
  }
  #news .section-content .news-detail .news-detail-wrapper .detail-btns {
    width: 100%;
    order: 4;
  }
  #news .section-content #sliderNews {
    height: unset !important;
  }
  #news .section-content #sliderNews .swiper-wrapper {
    height: unset !important;
  }
  #news .section-content #sliderNews .swiper-slide .slide-wrapper {
    gap: 20px;
  }
  #news .section-content #sliderNews .swiper-slide .slide-content {
    border-radius: 30px;
    border: 0 !important;
    background-size: cover;
    background: none;
    gap: 20px;
    flex-grow: unset !important;
  }
  #news .section-content #sliderNews .swiper-slide .slide-content .slide-image {
    width: calc(100% - 4px) !important;
    border: 2px solid white;
    height: 265px;
    border-radius: 30px;
  }
  #news .section-content #sliderNews .swiper-slide .slide-content .slide-image img {
    height: 100%;
    min-width: 100%;
    object-fit: cover;
  }
  #news .section-content #sliderNews .swiper-slide .slide-content .slide-text {
    padding: 20px;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.2;
  }
  #news .section-content #sliderNews .swiper-slide .slide-btn {
    border-radius: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    font-size: 20px;
    font-weight: bold;
  }
  #contacts {
    margin-top: -60px;
    padding: 60px 0 102px;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    border-top: 4px solid var(--color-yellow);
    background-size: cover;
    background-position: center;
  }
  #contacts .section-title {
    margin-bottom: 45px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  #contacts .section-title .title-text {
    font-size: 36px;
    line-height: 1;
    margin-left: 45px;
  }
  #contacts .section-title .title-desc {
    font-size: 20px;
    margin-left: 45px;
    color: var(--color-blue-dark);
  }
  #contacts .section-wrapper {
    margin-top: 20px;
    margin-left: 45px;
    margin-right: 45px;
    width: calc(100% - 90px);
  }
  #contacts .section-wrapper .contacts-list {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
  }
  #contacts .section-wrapper .contacts-list .contact-item {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 30px;
  }
  #contacts .section-wrapper .contacts-list .contact-item .image {
    width: 93px;
    height: 93px;
    margin-bottom: 10px;
  }
  #contacts .section-wrapper .contacts-list .contact-item .contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: calc(100% - 160px);
    text-align: center;
  }
  #contacts .section-wrapper .contacts-list .contact-item .contact-info div {
    text-align: left;
    width: 100%;
  }
  #contacts .section-wrapper .contacts-list .contact-item div {
    font-size: 15px;
  }
  #contacts .section-wrapper .contacts-list .contact-item .contact-position {
    width: 100%;
    padding-bottom: 15px;
  }
  #media {
    margin-top: -60px;
    padding: 76px 0 102px;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    border-top: 4px solid var(--color-yellow);
  }
  #media .section-title {
    flex-wrap: wrap;
  }
  #media .section-title .title-text {
    font-size: 36px;
    margin-bottom: 42px;
    margin-left: 45px;
    margin-right: auto;
    line-height: 1;
  }
  #media .section-title .media-arrows {
    width: 350px;
    justify-content: flex-end;
    margin: 0 auto;
  }
  #media .section-title .yearsMedia {
    gap: 22px;
  }
  #media .section-title .yearsMedia .yearMedia {
    font-size: 20px;
  }
  #media .section-wrapper {
    border-radius: 30px;
    gap: 22px;
  }
  #media .section-wrapper .swiper {
    width: 350px;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper {
    gap: 22px;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item {
    width: 100%;
    height: 112px;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .image {
    width: 100px;
    height: 100px;
    padding: 3px;
    border: 3px solid var(--color-blue);
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content {
    margin-left: 50px;
    border-radius: 0 20px 20px 0;
    height: 112px;
    padding-left: 70px;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .media-text-title {
    font-size: 16px;
    padding: 5px 0;
    font-weight: 600;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .media-text-content {
    height: fit-content;
    font-weight: 300;
    max-height: calc(100% - 50px);
    margin-bottom: 0;
    margin-right: 20px;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .media-text-content ul {
    padding-left: 16px;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .media-text-content ul li {
    font-size: 16px;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .media-text-content ul li a {
    font-size: 16px;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .content-bottom {
    height: 30px;
    width: calc(100% - 20px);
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .content-bottom .arrow-down {
    width: 10px;
    height: 10px;
    bottom: 10px;
  }
  #partners {
    margin-top: -60px;
    padding: 76px 0 102px;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
  }
  #partners .section-title {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  #partners .section-title .title-text {
    font-size: 36px;
    margin-left: 45px;
  }
  #partners .section-wrapper {
    gap: 20px;
    margin-top: 42px;
  }
  #partners .section-wrapper .partners-block {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  #partners .section-wrapper .partners-block .partners-block-title {
    font-size: 20px;
    text-align: left;
  }
  #partners .section-wrapper .partners-block .partners-block-list {
    gap: 20px;
  }
  #partners .section-wrapper .partners-block .partners-block-list .list-item {
    width: 104px;
    height: 104px;
    border-radius: 20px;
  }
  #partners .section-wrapper .partners-block .partners-block-list .list-item.partner-add {
    font-size: 16px;
  }
}
@media screen and (max-width: 400px) {
  body {
    font-size: 16px;
    height: calc(100% - 200px);
    padding-top: 50px;
  }
  .modal {
    display: none;
  }
  .modal.active {
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.75);
    display: block;
    height: 100vh;
  }
  .modal.active .bg-filter {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(22, 22, 22, 0.7607843137);
    filter: blur(10px);
    display: block;
    z-index: 1;
  }
  .modal.active .modal-wrapper {
    position: relative;
    padding: 60px 0 30px;
    height: calc(100vh - 90px);
  }
  .modal.active .modal-wrapper#infoModal {
    width: fit-content;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0;
    border: 1px solid #ccc;
    background: white;
    position: relative;
    height: fit-content;
  }
  .modal.active .modal-wrapper#infoModal .modal-title {
    background: var(--color-link);
    text-align: center;
    color: white;
  }
  .modal.active .modal-wrapper#infoModal .modal-content {
    color: var(--color-link);
    display: flex;
    flex-direction: column;
  }
  .modal.active .modal-wrapper#infoModal .modal-content .content-text {
    font-family: Montserrat;
  }
  .modal.active .modal-wrapper#infoModal .modal-content .btn {
    width: fit-content;
    margin-left: auto;
    text-align: center;
  }
  .modal.active .modal-wrapper .container {
    height: 100%;
    overflow: hidden;
  }
  .modal.active .modal-close {
    position: absolute;
    opacity: 0.6;
    z-index: 10001;
    cursor: pointer;
    width: 50px;
    height: 50px;
    top: 25px;
    right: 0;
  }
  .modal.active .modal-close:hover {
    opacity: 1;
  }
  .modal.active .modal-close:before, .modal.active .modal-close:after {
    position: absolute;
    content: " ";
    background-color: #dadada;
    width: 30px;
    height: 2px;
  }
  .modal.active .modal-close:before {
    transform: rotate(45deg);
  }
  .modal.active .modal-close:after {
    transform: rotate(-45deg);
  }
  .modal.active .modal-title {
    color: white;
    font-weight: 600;
  }
  .modal.active .modal-content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 20px;
    height: 100%;
  }
  .modal.active .modal-content .main-slider-wrapper {
    width: 100%;
    height: calc(100% - 80px);
    margin-left: auto;
    margin-right: auto;
  }
  .modal.active .modal-content .main-slider-wrapper .swiperModalMain {
    height: 100%;
  }
  .modal.active .modal-content .main-slider-wrapper .swiperModalMain .swiper-slide {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .modal.active .modal-content .main-slider-wrapper .swiperModalMain .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .modal.active .modal-content .swiperModalThumbs {
    width: 100%;
    height: 60px;
  }
  .modal.active .modal-content .swiperModalThumbs .swiper-slide {
    width: 20%;
    height: inherit;
  }
  .modal.active .modal-content .swiperModalThumbs .swiper-slide:not(.swiper-slide-thumb-active) {
    filter: grayscale(100%);
  }
  .modal.active .modal-content .swiperModalThumbs img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  header {
    border-bottom: 4px solid var(--color-yellow);
    width: 100%;
    max-width: 100%;
  }
  header .header-wrapper {
    gap: 10px;
  }
  header .header-wrapper .header-logo {
    padding: 10px 0;
  }
  header .header-wrapper .header-logo img.logo-main {
    height: 0;
    display: none;
  }
  header .header-wrapper .header-logo img.logo-mobile {
    height: 40px;
    display: block;
  }
  header .header-wrapper .header-btn {
    height: 30px;
    width: fit-content;
  }
  header .header-wrapper .header-btn .btn-wrapper {
    padding: 0 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
  }
  header .header-wrapper .header-btn:hover .btn-wrapper {
    transform: scale(1.1);
  }
  header .header-wrapper .header-socials img {
    width: 30px;
    height: 30px;
  }
  header .header-wrapper .header-menu {
    height: 30px;
  }
  footer {
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    border-top: 4px solid var(--color-yellow);
    padding-top: 42px;
    padding-bottom: 40px;
    margin-top: -60px;
    background-size: cover;
    background-position-x: left;
  }
  footer .footer-wrapper {
    width: calc(100% - 60px);
    margin-left: auto;
    margin-right: auto;
  }
  footer .section-title {
    margin-bottom: 22px;
    font-size: 28px;
    line-height: 1;
    font-weight: 600;
  }
  footer .footer-content {
    font-size: 14px;
    gap: 18px;
    flex-wrap: wrap;
    font-weight: 300;
    line-height: 1;
  }
  footer .footer-content .footer-column {
    width: 100%;
    gap: 18px;
  }
  footer .footer-content .footer-column .footer-btn {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
  }
  footer .footer-content .footer-column .footer-btn .btn-wrapper {
    padding: 0;
    font-size: 16px;
  }
  footer .footer-content .footer-column.company {
    gap: 3px;
  }
  #mainSection {
    top: 0;
    padding: 60px 0 102px;
  }
  #mainSection .section-wrapper {
    gap: 20px;
    flex-direction: column;
  }
  #mainSection .section-wrapper .btn-mobile {
    display: block !important;
    height: 40px;
    position: relative;
    width: 80%;
    margin: 0 auto;
    transition: all 0.3s;
  }
  #mainSection .section-wrapper .btn-mobile a {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    border-radius: 30px;
    height: 40px;
    border: 2px solid white;
    background: var(--color-yellow);
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
  }
  #mainSection .section-wrapper .btn-mobile:hover {
    transform: scale(1.1);
  }
  #mainSection .section-wrapper .btns {
    gap: 20px;
  }
  #mainSection .section-wrapper .btns .btn {
    width: calc(50% - 10px);
    height: 40px !important;
  }
  #mainSection .section-wrapper .btns .btn .btn-wrapper {
    height: 40px !important;
    font-size: 14px;
  }
  #mainSection .section-wrapper .column-main {
    width: 100%;
    gap: 20px;
  }
  #mainSection .section-wrapper .column-adv {
    width: 100%;
    gap: 20px;
  }
  #mainSection .section-wrapper .column-adv .places {
    border-radius: 30px;
    padding: 20px 30px;
  }
  #mainSection .section-wrapper .column-adv .places .place-title {
    font-size: 20px;
  }
  #mainSection .section-wrapper .column-adv .places .places-list {
    gap: 10px;
    font-size: 16px;
    margin-top: 20px;
  }
  #mainSection .section-wrapper .column-adv .places .places-list .place-item {
    gap: 10px;
    font-size: 14px;
    min-height: 30px;
  }
  #mainSection .section-wrapper .column-adv .places .places-list .place-item .icon {
    width: 20px;
  }
  #mainSection .section-wrapper .column-adv .places .places-list .place-item .icon img {
    width: 20px;
  }
  #mainSection .section-wrapper .column-adv .appl-accept {
    gap: 20px;
    border: 2px solid white;
    border-radius: 30px;
    padding: 8px;
  }
  #mainSection .section-wrapper .column-adv .appl-accept .appl-accept-wrapper {
    gap: 20px;
  }
  #mainSection .section-wrapper .column-adv .appl-accept .appl-accept-icon {
    width: 90px;
  }
  #mainSection .section-wrapper .column-adv .appl-accept .appl-accept-text {
    gap: 10px;
  }
  #mainSection .section-wrapper .column-adv .appl-accept .appl-accept-text .appl-accept-title {
    font-size: 20px;
  }
  #mainSection .section-wrapper .column-adv .appl-accept .appl-accept-text .appl-accept-date {
    font-size: 14px;
  }
  #mainSection .section-wrapper .btns-mobile {
    display: flex !important;
  }
  #mainSection .section-wrapper .btns-desktop {
    display: none !important;
  }
  #history {
    margin-top: -60px;
    padding: 42px 0 102px;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    border-top: 4px solid var(--color-yellow);
    background-size: cover;
    background-position: center;
  }
  #history .section-title {
    flex-direction: column !important;
    align-items: flex-start;
  }
  #history .section-title .title-text {
    font-size: 28px;
    font-weight: bold;
    margin-top: 0;
    margin-left: 30px;
  }
  #history .section-title .history-arrows {
    margin-left: auto;
    margin-top: 20px;
    gap: 0;
  }
  #history .section-title .history-arrows .yearsHistory {
    gap: 10px;
  }
  #history .section-title .history-arrows .yearsHistory .yearHistory {
    font-size: 16px;
  }
  #history .section-wrapper {
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    margin-top: 10px;
    height: inherit;
    position: relative;
  }
  #history .section-wrapper #sliderHistory {
    height: auto;
    align-items: stretch;
  }
  #history .section-wrapper #sliderHistory .swiper-wrapper {
    align-items: stretch;
    height: unset !important;
    background: url("/local/images/masterflota/bg-2.jpg");
  }
  #history .section-wrapper #sliderHistory .swiper-wrapper .swiper-slide {
    position: relative;
    background: url("/local/images/masterflota/bg-2.jpg");
    background-size: cover;
    height: unset !important;
  }
  #history .section-wrapper .slide-wrapper {
    position: relative;
    height: unset !important;
  }
  #history .section-wrapper .bg-main {
    width: 0%;
    display: none;
  }
  #history .section-wrapper .bg-adw {
    width: 0%;
    display: none;
  }
  #history .section-wrapper .column-main {
    max-width: 100%;
    gap: 22px;
    padding: 20px 30px;
    justify-content: flex-start !important;
    min-height: calc(100% - 60px);
    background-size: cover;
  }
  #history .section-wrapper .column-main .slide-title {
    color: var(--color-yellow);
    font-weight: 600;
    font-size: 20px;
  }
  #history .section-wrapper .column-main .slide-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    height: 100%;
    flex-grow: 1;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block {
    display: flex;
    position: relative;
    height: calc(100% - 60px);
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-text {
    flex-direction: column;
    max-width: 100%;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-text .content-title {
    color: var(--color-yellow);
    font-weight: 600;
    font-size: 16px;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-text .content-text {
    font-size: 14px;
    font-weight: 300;
    color: white;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-infografic {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-infografic .ifografic-title {
    color: var(--color-yellow);
    font-weight: 600;
    font-size: 16px;
    width: 155px;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-infografic .infografic-value .i-val {
    color: var(--color-yellow);
    font-weight: 600;
    font-size: 20px;
    text-align: right;
    white-space: nowrap;
    line-height: 1;
    padding-bottom: 5px;
    vertical-align: baseline;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-infografic .infografic-value .i-text {
    text-align: left;
    font-size: 14px;
    font-weight: 300;
    color: white;
    padding-left: 22px;
    vertical-align: bottom;
    padding-bottom: 5px;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-infografic .infografic-values {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-infografic .infografic-values .infografic-value {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 10px;
    position: relative;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-infografic .infografic-values .infografic-value .i-val {
    color: var(--color-yellow);
    font-weight: 600;
    font-size: 30px;
    text-align: right;
    white-space: nowrap;
    line-height: 1;
    width: 130px;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-infografic .infografic-values .infografic-value .i-text {
    text-align: left;
    font-size: 14px;
    font-weight: 300;
    color: white;
    width: max-content;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-image {
    width: 100%;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-image img {
    width: 100%;
    object-fit: cover;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block:last-child {
    height: 100%;
    margin-bottom: auto;
  }
  #history .section-wrapper .column-adv {
    display: none !important;
  }
  #callingSection {
    margin-top: -60px;
    padding: 42px 30px 142px;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    border-top: 4px solid var(--color-yellow);
    max-width: 100%;
    overflow: hidden;
  }
  #callingSection .slider-arrows.arrows-mobile {
    width: calc(100% + 40px);
    left: -20px;
    position: absolute;
    justify-content: space-between;
    top: 50%;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
  }
  #callingSection .slider-arrows.arrows-mobile .arrow {
    background: var(--color-light-blue);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
  }
  #callingSection .slider-arrows.arrows-mobile .arrow .arrow-image {
    width: 8px;
    height: 8px;
    border: 2px solid #32557f;
    border-left: 0;
    border-top: 0;
  }
  #callingSection .slider-arrows.arrows-mobile .arrow.arrow-prev .arrow-image {
    transform: rotate(135deg);
    margin-left: 5px;
  }
  #callingSection .slider-arrows.arrows-mobile .arrow.arrow-next .arrow-image {
    transform: rotate(315deg);
    margin-right: 5px;
  }
  #callingSection .slider-arrows.arrows-mobile .arrow.inactive {
    opacity: 0.6;
    pointer-events: none;
  }
  #callingSection .slider-arrows.arrows-mobile .arrow:not(.inactive):hover {
    background: var(--color-blue-dark);
    color: white;
  }
  #callingSection .section-title {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
  #callingSection .section-title .swiper-wrapper {
    height: max-content;
  }
  #callingSection .section-title .swiper-wrapper .swiper-slide {
    height: unset;
  }
  #callingSection .section-title .title-text {
    color: white;
    font-size: 28px;
    line-height: 1;
  }
  #callingSection .section-title .slider-arrows {
    display: none;
  }
  #callingSection .section-slider {
    margin-top: 24px;
    width: 100%;
    border: none;
    border-radius: 0;
    padding: 0;
    background: transparent;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
  }
  #callingSection .section-slider .slider-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    padding: 0;
  }
  #callingSection .section-slider .slider-content .slider-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: white;
  }
  #callingSection .section-slider .slider-content .slider-text .text-title {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-left: 0;
    margin-bottom: 10px;
  }
  #callingSection .section-slider .slider-content .slider-text .text-title:before {
    content: "";
    position: absolute;
    top: -3px;
    left: 0;
    display: none;
    background: url("/local/images/masterflota/kanat 1.svg");
    background-repeat: no-repeat;
    width: 12px;
    transform: rotate(90deg);
    height: 100%;
    background-size: cover;
  }
  #callingSection .section-slider .slider-content .slider-text .text-title .text-name {
    font-size: 20px;
    font-weight: 600;
  }
  #callingSection .section-slider .slider-content .slider-text .text-title .line-mobile {
    display: block;
    position: relative;
    width: 100%;
    height: 21px;
    margin-top: 5px;
  }
  #callingSection .section-slider .slider-content .slider-text .text-title .line-mobile:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0;
    display: block;
    background: url("/local/images/masterflota/line.svg");
    background-repeat: no-repeat;
    width: 100%;
    height: 16px;
    background-size: cover;
  }
  #callingSection .section-slider .slider-content .slider-text .text-title .text-position {
    font-size: 20px;
    font-weight: 400;
  }
  #callingSection .section-slider .slider-content .slider-text .text-calling {
    font-weight: 200;
    position: relative;
    font-size: 16px;
  }
  #callingSection .section-slider .slider-content .slider-text .text-calling .kov {
    position: absolute;
    content: "";
    width: 40px;
    height: 40px;
    display: inline-block;
    background: url("/local/images/masterflota/kov.svg");
    background-repeat: no-repeat;
    background-size: contain;
  }
  #callingSection .section-slider .slider-content .slider-text .text-calling .kov.kov-open {
    left: 0;
    top: 0;
  }
  #callingSection .section-slider .slider-content .slider-text .text-calling .kov.kov-close {
    transform: rotate(180deg);
    margin-left: 10px;
    bottom: 0;
  }
  #callingSection .section-slider .slider-content .slider-text .text-calling p:first-child {
    text-indent: 50px;
  }
  #callingSection .section-slider .slider-content .slider-stamp {
    display: none;
  }
  #callingSection .section-slider .slider-content .slider-photo {
    display: none;
  }
  #video {
    margin-top: -60px;
    padding: 42px 0 142px;
    margin-bottom: -100px;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    border-top: 4px solid var(--color-yellow);
    background-size: cover;
    background-position: center;
  }
  #video .section-title {
    font-size: 28px;
    margin-bottom: 55px;
    margin-left: 30px;
    margin-top: 0;
    color: var(--color-blue-dark);
  }
  #video .section-content .video {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 30px;
    overflow: hidden;
    height: 0;
    padding-top: 60%;
    position: relative;
    margin-bottom: 16px;
  }
  #video .section-content .video .video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  #video .section-content .video .video-wrapper img {
    width: 100%;
    min-height: 100%;
    object-fit: cover;
  }
  #video .section-content .video-desc {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: var(--color-blue-dark);
    font-size: 14px;
  }
  #video .section-content .video-slogan {
    font-family: Calibri;
    font-weight: bold;
    margin-top: 30px;
    color: var(--color-yellow-dark);
    font-style: italic;
    font-size: 16px;
    text-align: center;
    margin-bottom: 0;
  }
  #gallery {
    margin-top: -60px;
    padding: 42px 0 80px;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    border-top: 4px solid var(--color-yellow);
    background-size: cover;
    background-position: center;
  }
  #gallery .section-title {
    font-size: 28px;
    margin-bottom: 20px;
    margin-left: 30px;
  }
  #gallery .section-content {
    margin-top: 200px;
    position: relative;
    height: 124px;
  }
  #gallery .section-content .gallery-arrows {
    position: absolute;
    top: 51px;
    width: 100%;
    z-index: 1;
  }
  #gallery .section-content .gallery-arrows .slider-btn {
    background: var(--color-light-blue);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
  }
  #gallery .section-content .gallery-arrows .slider-btn::after {
    display: none;
  }
  #gallery .section-content .gallery-arrows .slider-btn .arrow-image {
    width: 10px;
    height: 10px;
    border: 2px solid #32557f;
    border-left: 0;
    border-top: 0;
  }
  #gallery .section-content .gallery-arrows .slider-btn.swiper-button-prev .arrow-image {
    transform: rotate(135deg);
    margin-left: 5px;
  }
  #gallery .section-content .gallery-arrows .slider-btn.swiper-button-next .arrow-image {
    transform: rotate(315deg);
    margin-right: 5px;
  }
  #gallery .section-content .gallery-arrows .slider-btn.inactive {
    opacity: 0.6;
    pointer-events: none;
  }
  #gallery .section-content .gallery-arrows .slider-btn:not(.inactive):hover {
    background: var(--color-blue-dark);
    color: white;
  }
  #gallery .section-content #sliderGallery {
    width: calc(100% - 100px);
    z-index: 2;
  }
  #gallery .section-content #sliderGallery .swiper-slide {
    cursor: pointer;
    height: 82px !important;
  }
  #contPart {
    margin-top: -60px;
    padding: 42px 0 102px;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    border-top: 4px solid var(--color-yellow);
    background-size: cover;
  }
  #contPart .section-title {
    font-size: 28px;
    margin-bottom: 30px;
    margin-left: 30px;
    margin-right: 30px;
    line-height: 1;
  }
  #contPart .section-wrapper {
    width: calc(100% - 40px);
    border-radius: 30px;
    padding: 20px;
    height: fit-content;
  }
  #contPart .section-wrapper .bg-main {
    width: 100%;
  }
  #contPart .section-wrapper .bg-adw {
    width: 0;
    display: none;
  }
  #contPart .section-wrapper .column-main {
    max-width: 100%;
    gap: 20px;
    margin-left: 0;
  }
  #contPart .section-wrapper .column-main .text {
    font-size: 16px;
    width: 80%;
    margin-left: 0;
  }
  #contPart .section-wrapper .column-main .btns {
    width: 70%;
  }
  #contPart .section-wrapper .column-main .btns .btn {
    font-size: 20px;
    padding: 10px 20px;
  }
  #contPart .section-wrapper .column-adv {
    display: none;
    width: 20%;
    height: calc(100% - 60px);
    right: 10%;
    margin: 30px 0;
  }
  #nominations {
    margin-top: -60px;
    padding: 42px 0 102px;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    border-top: 4px solid var(--color-yellow);
    background-size: cover;
    background-position: center;
  }
  #nominations .section-title {
    font-size: 28px;
    line-height: 1;
    margin-bottom: 30px;
    margin-left: 30px;
    margin-right: 30px;
    margin-top: 0;
  }
  #nominations .section-wrapper .nominations-list {
    gap: 20px;
  }
  #nominations .section-wrapper .nominations-list .nomination-item {
    width: 100%;
    border-top-left-radius: 300px;
    border-bottom-left-radius: 300px;
    border-top-right-radius: 80px;
    border-bottom-right-radius: 80px;
    height: 83px;
    gap: 10px;
  }
  #nominations .section-wrapper .nominations-list .nomination-item .image {
    width: 76px;
    height: 76px;
    margin-left: 4px;
  }
  #nominations .section-wrapper .nominations-list .nomination-item .image img {
    width: 72px;
    height: 72px;
  }
  #nominations .section-wrapper .nominations-list .nomination-item .nomination-name {
    width: calc(100% - 88px);
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    align-items: center;
    display: flex;
    justify-content: center;
  }
  #nominations .section-wrapper .btns {
    margin-top: 30px;
    gap: 20px;
  }
  #nominations .section-wrapper .btns .btn {
    border: 2px solid var(--color-blue-dark);
    padding: 5px 20px;
    border-radius: 300px;
    width: calc(50% - 10px);
    font-size: 16px;
  }
  #nominations .section-wrapper .nomination-slogan {
    font-family: Calibri;
    font-weight: bold;
    font-style: italic;
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 16px;
  }
  #programm {
    margin-top: -60px;
    padding: 42px 0 142px;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
  }
  #programm .section-title {
    color: white;
    font-size: 28px;
    line-height: 1;
    font-weight: 600;
    margin-bottom: 0;
    margin-left: 30px;
    margin-right: 30px;
    margin-top: 0;
  }
  #programm .section-content {
    gap: 0;
  }
  #programm .section-content .program-tabs {
    width: calc(100% - 4px);
    border: 2px solid white;
    border-radius: 300px;
    background: var(--color-blue-dark);
    overflow: hidden;
    height: 58px;
    position: relative;
    margin-top: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-direction: horizontal;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-bottom: 22px;
  }
  #programm .section-content .program-tabs::-webkit-scrollbar {
    display: none;
  }
  #programm .section-content .program-tabs .programm-tabs-list {
    width: auto;
    position: absolute;
    height: 60px;
    top: -2px;
    bottom: -2px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    left: 0;
    transition: all 0.3s;
  }
  #programm .section-content .program-tabs .programm-tabs-list .program-tab {
    white-space: nowrap;
    width: max-content;
    padding: 0 20px;
    color: white;
    font-size: 14px;
    border: 2px solid transparent;
    border-radius: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 58px;
    text-align: center;
    transition: all 0.3s;
  }
  #programm .section-content .program-tabs .programm-tabs-list .program-tab.active {
    border-color: white;
    background: var(--color-blue);
  }
  #programm .section-content .program-tabs .programm-tabs-list .program-tab:last-child {
    border-right: 0;
  }
  #programm .section-content .program-tabs .programm-tabs-list .program-tab:first-child {
    border-left: 0;
  }
  #programm .section-content .program-tabs .programm-tabs-wrapper {
    overflow-x: unset;
    height: calc(100% + 4px);
    top: -2px;
    position: absolute;
    margin: 0;
    /*
    .program-tab {
      //width: 25%;
      height: 58px;
      padding: 0 10px;
      font-size: 16px;
      font-weight: 600;
      color: white;
      text-align: center;
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid transparent;
      transition: all .3s;
      cursor: pointer;
      &.swiper-slide-thumb-active, .swiper-slide-active {
        border: 2px solid white;
        border-radius: 300px;
        background: var(--color-blue);
      }
      &:last-child {
        border-right: transparent;
      }
      .slide-wrapper {
        height: 58px;
        max-width: 240px;
        min-width: 190px;
      }
    }

     */
  }
  #programm .section-content .program-tabs .programm-tabs-wrapper:before {
    display: none;
  }
  #programm .section-content .program-content {
    width: 80%;
    height: fit-content;
    padding-top: 0;
    position: relative;
    border: none;
    border-radius: 0;
    overflow: unset;
    margin: 0 auto;
    overflow: hidden;
  }
  #programm .section-content .program-content .content-item {
    width: 100%;
    height: fit-content;
    position: relative;
    z-index: 1;
    opacity: 1;
  }
  #programm .section-content .program-content .content-item .program-item-wrapper {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: inherit;
    width: 100%;
    position: relative;
    overflow-x: hidden;
  }
  #programm .section-content .program-content .content-item .program-item-wrapper .program-item-text {
    background: none;
    width: 100%;
    padding: 30px 4px 0;
    font-size: 14px;
    color: white;
    order: 2;
  }
  #programm .section-content .program-content .content-item .program-item-wrapper .program-item-text ul {
    padding-left: 16px;
  }
  #programm .section-content .program-content .content-item .program-item-wrapper .program-item-image {
    width: calc(100% - 4px);
    order: 1;
    position: relative;
    border: 2px solid white;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    overflow: hidden;
    height: 200px;
  }
  #programm .section-content .program-content .content-item .program-item-wrapper .program-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #programm .section-content .btns {
    width: 100%;
    height: 40px;
  }
  #programm .section-content .btns .btn {
    width: 100%;
    font-size: 16px;
    padding: 0;
    height: 40px;
  }
  #programm .section-content .btns .btn:hover {
    font-size: 18px !important;
  }
  #news {
    margin-top: -60px;
    padding: 42px 0 102px;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
  }
  #news .section-title {
    margin-bottom: 30px;
    margin-top: 0;
  }
  #news .section-title .title-text {
    font-size: 28px;
    margin-left: 30px;
  }
  #news .section-title .slider-arrows {
    gap: 20px;
  }
  #news .section-title .slider-arrows .arrow {
    width: 30px;
    height: 30px;
  }
  #news .section-title .slider-arrows .arrow .arrow-image {
    width: 10px;
    height: 10px;
  }
  #news .section-title .slider-arrows .arrow.arrow-prev .arrow-image {
    margin-left: 5px;
  }
  #news .section-title .slider-arrows .arrow.arrow-next .arrow-image {
    margin-right: 5px;
  }
  #news .section-title .modal-btn-close {
    width: 30px;
    height: 30px;
    bottom: -20px;
    right: -10px;
  }
  #news .section-title .modal-btn-close:before, #news .section-title .modal-btn-close:after {
    width: 20px;
    height: 2px;
  }
  #news .section-content {
    gap: 30px;
  }
  #news .section-content .news-detail {
    border-radius: 25px;
  }
  #news .section-content .news-detail.active {
    height: fit-content;
    width: 100%;
    position: relative;
    margin-bottom: 0;
  }
  #news .section-content .news-detail .news-detail-wrapper {
    padding: 20px;
    width: calc(100% - 40px);
    flex-wrap: wrap;
  }
  #news .section-content .news-detail .news-detail-wrapper .detail-text-title {
    order: 2;
    width: 100%;
    font-size: 16px;
    line-height: 1;
    padding-bottom: 0;
    margin-bottom: 0;
    color: white;
  }
  #news .section-content .news-detail .news-detail-wrapper .detail-text {
    order: 3;
    width: 100%;
    font-size: 16px;
    overflow: unset;
    height: fit-content;
    padding-bottom: 0;
    color: white;
    background: none;
    line-height: 1;
  }
  #news .section-content .news-detail .news-detail-wrapper .detail-image {
    height: auto;
    width: 100%;
    border: 2px solid white;
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 22px;
  }
  #news .section-content .news-detail .news-detail-wrapper .detail-image img {
    height: calc(100% + 2px);
    object-fit: cover;
  }
  #news .section-content .news-detail .news-detail-wrapper .detail-btns {
    width: 100%;
    order: 4;
  }
  #news .section-content #sliderNews {
    height: unset !important;
  }
  #news .section-content #sliderNews .swiper-wrapper {
    height: unset !important;
  }
  #news .section-content #sliderNews .swiper-slide .slide-wrapper {
    gap: 10px;
  }
  #news .section-content #sliderNews .swiper-slide .slide-content {
    border: 0 !important;
    background-size: cover;
    background: none;
    gap: 10px;
    flex-grow: unset !important;
    border-radius: 0 !important;
    margin-bottom: 20px;
  }
  #news .section-content #sliderNews .swiper-slide .slide-content .slide-image {
    width: calc(100% - 4px) !important;
    border: 2px solid white;
    height: 200px;
    border-radius: 30px;
  }
  #news .section-content #sliderNews .swiper-slide .slide-content .slide-image img {
    height: 100%;
    min-width: 100%;
    object-fit: cover;
  }
  #news .section-content #sliderNews .swiper-slide .slide-content .slide-text {
    padding: 0px;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.2;
  }
  #news .section-content #sliderNews .swiper-slide .slide-btn {
    border-radius: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    font-size: 16px;
    font-weight: bold;
    padding: 0;
  }
  #contacts {
    margin-top: -60px;
    padding: 42px 0 102px;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    border-top: 4px solid var(--color-yellow);
    background-size: cover;
    background-position: center;
  }
  #contacts .section-title {
    margin-bottom: 30px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  #contacts .section-title .title-text {
    font-size: 28px;
    line-height: 1;
    margin-left: 30px;
  }
  #contacts .section-title .title-desc {
    font-size: 16px;
    margin-left: 30px;
    color: var(--color-blue-dark);
  }
  #contacts .section-wrapper {
    margin-top: 20px;
    margin-left: 20px;
    margin-right: 20px;
    width: calc(100% - 40px);
  }
  #contacts .section-wrapper .contacts-list {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
  }
  #contacts .section-wrapper .contacts-list .contact-item {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
  }
  #contacts .section-wrapper .contacts-list .contact-item .image {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
  }
  #contacts .section-wrapper .contacts-list .contact-item .contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: calc(100% - 80px);
    text-align: center;
  }
  #contacts .section-wrapper .contacts-list .contact-item .contact-info div {
    text-align: left;
    width: 100%;
  }
  #contacts .section-wrapper .contacts-list .contact-item div {
    font-size: 12px;
  }
  #contacts .section-wrapper .contacts-list .contact-item .contact-position {
    width: 100%;
    padding-bottom: 12px;
  }
  #contacts .section-wrapper .contacts-list .contact-item a {
    font-size: 11px;
  }
  #media {
    margin-top: -60px;
    padding: 42px 0 102px;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    border-top: 4px solid var(--color-yellow);
  }
  #media .section-title {
    flex-wrap: wrap;
  }
  #media .section-title .title-text {
    font-size: 28px;
    margin-bottom: 30px;
    margin-left: 30px;
    margin-right: auto;
    line-height: 1;
  }
  #media .section-title .media-arrows {
    width: 100%;
    gap: 0;
    justify-content: flex-end;
    margin: 0 auto;
  }
  #media .section-title .yearsMedia {
    gap: 10px;
  }
  #media .section-title .yearsMedia .yearMedia {
    font-size: 14px;
  }
  #media .section-wrapper {
    border-radius: 30px;
    gap: 22px;
    margin-top: 20px !important;
  }
  #media .section-wrapper .swiper {
    width: 100%;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper {
    gap: 22px;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item {
    width: 100%;
    height: 112px;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .image {
    width: 100px;
    height: 100px;
    padding: 3px;
    border: 3px solid var(--color-blue);
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content {
    margin-left: 50px;
    border-radius: 0 20px 20px 0;
    height: 112px;
    padding-left: 70px;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .media-text-title {
    font-size: 14px;
    padding: 5px 0;
    font-weight: 600;
    margin-right: 20px;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .media-text-content {
    height: fit-content;
    font-weight: 300;
    max-height: calc(100% - 50px);
    margin-bottom: 0;
    word-wrap: break-word;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .media-text-content ul {
    padding-left: 16px;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .media-text-content ul li {
    font-size: 14px;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .media-text-content ul li a {
    font-size: 14px;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .content-bottom {
    height: 30px;
    width: calc(100% - 20px);
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .content-bottom .arrow-down {
    width: 10px;
    height: 10px;
    bottom: 10px;
  }
  #partners {
    margin-top: -60px;
    padding: 42px 0 102px;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
  }
  #partners .section-title {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  #partners .section-title .title-text {
    font-size: 28px;
    margin-left: 30px;
  }
  #partners .section-wrapper {
    gap: 20px;
    margin-top: 30px;
    width: 100%;
  }
  #partners .section-wrapper .partners-block {
    width: 100%;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  #partners .section-wrapper .partners-block .partners-block-title {
    width: 100%;
    font-size: 16px;
    text-align: left;
  }
  #partners .section-wrapper .partners-block .partners-block-list {
    gap: 20px;
  }
  #partners .section-wrapper .partners-block .partners-block-list .list-item {
    width: 80px;
    height: 80px;
    border-radius: 20px;
  }
  #partners .section-wrapper .partners-block .partners-block-list .list-item.partner-add {
    font-size: 14px;
  }
}
@media screen and (max-width: 300px) {
  body {
    font-size: 16px;
    height: calc(100% - 200px);
    padding-top: 50px;
  }
  .modal {
    display: none;
  }
  .modal.active {
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.75);
    display: block;
    height: 100vh;
  }
  .modal.active .bg-filter {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(22, 22, 22, 0.7607843137);
    filter: blur(10px);
    display: block;
    z-index: 1;
  }
  .modal.active .modal-wrapper {
    position: relative;
    padding: 60px 0 30px;
    height: calc(100vh - 90px);
  }
  .modal.active .modal-wrapper#infoModal {
    width: fit-content;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0;
    border: 1px solid #ccc;
    background: white;
    position: relative;
    height: fit-content;
  }
  .modal.active .modal-wrapper#infoModal .modal-title {
    background: var(--color-link);
    text-align: center;
    color: white;
  }
  .modal.active .modal-wrapper#infoModal .modal-content {
    color: var(--color-link);
    display: flex;
    flex-direction: column;
  }
  .modal.active .modal-wrapper#infoModal .modal-content .content-text {
    font-family: Montserrat;
  }
  .modal.active .modal-wrapper#infoModal .modal-content .btn {
    width: fit-content;
    margin-left: auto;
    text-align: center;
  }
  .modal.active .modal-wrapper .container {
    height: 100%;
    overflow: hidden;
  }
  .modal.active .modal-close {
    position: absolute;
    opacity: 0.6;
    z-index: 10001;
    cursor: pointer;
    width: 50px;
    height: 50px;
    top: 25px;
    right: 0;
  }
  .modal.active .modal-close:hover {
    opacity: 1;
  }
  .modal.active .modal-close:before, .modal.active .modal-close:after {
    position: absolute;
    content: " ";
    background-color: #dadada;
    width: 30px;
    height: 2px;
  }
  .modal.active .modal-close:before {
    transform: rotate(45deg);
  }
  .modal.active .modal-close:after {
    transform: rotate(-45deg);
  }
  .modal.active .modal-title {
    color: white;
    font-weight: 600;
  }
  .modal.active .modal-content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 20px;
    height: 100%;
  }
  .modal.active .modal-content .main-slider-wrapper {
    width: 100%;
    height: calc(100% - 80px);
    margin-left: auto;
    margin-right: auto;
  }
  .modal.active .modal-content .main-slider-wrapper .swiperModalMain {
    height: 100%;
  }
  .modal.active .modal-content .main-slider-wrapper .swiperModalMain .swiper-slide {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .modal.active .modal-content .main-slider-wrapper .swiperModalMain .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .modal.active .modal-content .swiperModalThumbs {
    width: 100%;
    height: 60px;
  }
  .modal.active .modal-content .swiperModalThumbs .swiper-slide {
    width: 20%;
    height: inherit;
  }
  .modal.active .modal-content .swiperModalThumbs .swiper-slide:not(.swiper-slide-thumb-active) {
    filter: grayscale(100%);
  }
  .modal.active .modal-content .swiperModalThumbs img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  header {
    border-bottom: 4px solid var(--color-yellow);
    width: 100%;
    max-width: 100%;
  }
  header .header-wrapper {
    gap: 10px;
  }
  header .header-wrapper .header-logo {
    padding: 10px 0;
  }
  header .header-wrapper .header-logo img.logo-main {
    height: 0;
    display: none;
  }
  header .header-wrapper .header-logo img.logo-mobile {
    height: 40px;
    display: block;
  }
  header .header-wrapper .header-btn {
    height: 30px;
    width: fit-content;
  }
  header .header-wrapper .header-btn .btn-wrapper {
    padding: 0 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
  }
  header .header-wrapper .header-btn:hover .btn-wrapper {
    transform: scale(1.1);
  }
  header .header-wrapper .header-socials img {
    width: 30px;
    height: 30px;
  }
  header .header-wrapper .header-menu {
    height: 30px;
  }
  footer {
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    border-top: 4px solid var(--color-yellow);
    padding-top: 42px;
    padding-bottom: 40px;
    margin-top: -60px;
    background-size: cover;
    background-position-x: left;
  }
  footer .footer-wrapper {
    width: calc(100% - 60px);
    margin-left: auto;
    margin-right: auto;
  }
  footer .section-title {
    margin-bottom: 22px;
    font-size: 28px;
    line-height: 1;
    font-weight: 600;
  }
  footer .footer-content {
    font-size: 14px;
    gap: 18px;
    flex-wrap: wrap;
    font-weight: 300;
    line-height: 1;
  }
  footer .footer-content .footer-column {
    width: 100%;
    gap: 18px;
  }
  footer .footer-content .footer-column .footer-btn {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
  }
  footer .footer-content .footer-column .footer-btn .btn-wrapper {
    padding: 0;
    font-size: 16px;
  }
  footer .footer-content .footer-column.company {
    gap: 3px;
  }
  #mainSection {
    top: 0;
    padding: 60px 0 102px;
  }
  #mainSection .section-wrapper {
    gap: 20px;
    flex-direction: column;
  }
  #mainSection .section-wrapper .btn-mobile {
    display: block !important;
    height: 40px;
    position: relative;
    width: 80%;
    margin: 0 auto;
    transition: all 0.3s;
  }
  #mainSection .section-wrapper .btn-mobile a {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    border-radius: 30px;
    height: 40px;
    border: 2px solid white;
    background: var(--color-yellow);
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
  }
  #mainSection .section-wrapper .btn-mobile:hover {
    transform: scale(1.1);
  }
  #mainSection .section-wrapper .btns {
    gap: 20px;
  }
  #mainSection .section-wrapper .btns .btn {
    width: calc(50% - 10px);
    height: 40px !important;
  }
  #mainSection .section-wrapper .btns .btn .btn-wrapper {
    height: 40px !important;
    font-size: 14px;
  }
  #mainSection .section-wrapper .column-main {
    width: 100%;
    gap: 20px;
  }
  #mainSection .section-wrapper .column-adv {
    width: 100%;
    gap: 20px;
  }
  #mainSection .section-wrapper .column-adv .places {
    border-radius: 30px;
    padding: 20px 30px;
  }
  #mainSection .section-wrapper .column-adv .places .place-title {
    font-size: 20px;
  }
  #mainSection .section-wrapper .column-adv .places .places-list {
    gap: 10px;
    font-size: 16px;
    margin-top: 20px;
  }
  #mainSection .section-wrapper .column-adv .places .places-list .place-item {
    gap: 10px;
    font-size: 14px;
    min-height: 30px;
  }
  #mainSection .section-wrapper .column-adv .places .places-list .place-item .icon {
    width: 20px;
  }
  #mainSection .section-wrapper .column-adv .places .places-list .place-item .icon img {
    width: 20px;
  }
  #mainSection .section-wrapper .column-adv .appl-accept {
    gap: 20px;
    border: 2px solid white;
    border-radius: 30px;
    padding: 8px;
  }
  #mainSection .section-wrapper .column-adv .appl-accept .appl-accept-wrapper {
    gap: 20px;
  }
  #mainSection .section-wrapper .column-adv .appl-accept .appl-accept-icon {
    width: 90px;
  }
  #mainSection .section-wrapper .column-adv .appl-accept .appl-accept-text {
    gap: 10px;
  }
  #mainSection .section-wrapper .column-adv .appl-accept .appl-accept-text .appl-accept-title {
    font-size: 20px;
  }
  #mainSection .section-wrapper .column-adv .appl-accept .appl-accept-text .appl-accept-date {
    font-size: 14px;
  }
  #mainSection .section-wrapper .btns-mobile {
    display: flex !important;
  }
  #mainSection .section-wrapper .btns-desktop {
    display: none !important;
  }
  #history {
    margin-top: -60px;
    padding: 42px 0 102px;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    border-top: 4px solid var(--color-yellow);
    background-size: cover;
    background-position: center;
  }
  #history .section-title {
    flex-direction: column !important;
    align-items: flex-start;
  }
  #history .section-title .title-text {
    font-size: 28px;
    font-weight: bold;
    margin-top: 0;
    margin-left: 30px;
  }
  #history .section-title .history-arrows {
    margin-left: auto;
    margin-top: 20px;
    gap: 0;
  }
  #history .section-title .history-arrows .yearsHistory {
    gap: 10px;
  }
  #history .section-title .history-arrows .yearsHistory .yearHistory {
    font-size: 16px;
  }
  #history .section-wrapper {
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    margin-top: 10px;
    height: inherit;
    position: relative;
  }
  #history .section-wrapper #sliderHistory {
    height: auto;
    align-items: stretch;
  }
  #history .section-wrapper #sliderHistory .swiper-wrapper {
    align-items: stretch;
    height: unset !important;
    background: url("/local/images/masterflota/bg-2.jpg");
  }
  #history .section-wrapper #sliderHistory .swiper-wrapper .swiper-slide {
    position: relative;
    background: url("/local/images/masterflota/bg-2.jpg");
    background-size: cover;
    height: unset !important;
  }
  #history .section-wrapper .slide-wrapper {
    position: relative;
    height: unset !important;
  }
  #history .section-wrapper .bg-main {
    width: 0%;
    display: none;
  }
  #history .section-wrapper .bg-adw {
    width: 0%;
    display: none;
  }
  #history .section-wrapper .column-main {
    max-width: 100%;
    gap: 22px;
    padding: 20px 30px;
    justify-content: flex-start !important;
    min-height: calc(100% - 60px);
    background-size: cover;
  }
  #history .section-wrapper .column-main .slide-title {
    color: var(--color-yellow);
    font-weight: 600;
    font-size: 20px;
  }
  #history .section-wrapper .column-main .slide-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    height: 100%;
    flex-grow: 1;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block {
    display: flex;
    position: relative;
    height: calc(100% - 60px);
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-text {
    flex-direction: column;
    max-width: 100%;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-text .content-title {
    color: var(--color-yellow);
    font-weight: 600;
    font-size: 16px;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-text .content-text {
    font-size: 14px;
    font-weight: 300;
    color: white;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-infografic {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-infografic .ifografic-title {
    color: var(--color-yellow);
    font-weight: 600;
    font-size: 16px;
    width: 155px;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-infografic .infografic-value .i-val {
    color: var(--color-yellow);
    font-weight: 600;
    font-size: 20px;
    text-align: right;
    white-space: nowrap;
    line-height: 1;
    padding-bottom: 5px;
    vertical-align: baseline;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-infografic .infografic-value .i-text {
    text-align: left;
    font-size: 14px;
    font-weight: 300;
    color: white;
    padding-left: 22px;
    vertical-align: bottom;
    padding-bottom: 5px;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-infografic .infografic-values {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-infografic .infografic-values .infografic-value {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 10px;
    position: relative;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-infografic .infografic-values .infografic-value .i-val {
    color: var(--color-yellow);
    font-weight: 600;
    font-size: 30px;
    text-align: right;
    white-space: nowrap;
    line-height: 1;
    width: 130px;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-infografic .infografic-values .infografic-value .i-text {
    text-align: left;
    font-size: 14px;
    font-weight: 300;
    color: white;
    width: max-content;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-image {
    width: 100%;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block.block-image img {
    width: 100%;
    object-fit: cover;
  }
  #history .section-wrapper .column-main .slide-text .slide-content-block:last-child {
    height: 100%;
    margin-bottom: auto;
  }
  #history .section-wrapper .column-adv {
    display: none !important;
  }
  #callingSection {
    margin-top: -60px;
    padding: 42px 30px 142px;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    border-top: 4px solid var(--color-yellow);
    max-width: 100%;
    overflow: hidden;
  }
  #callingSection .slider-arrows.arrows-mobile {
    width: calc(100% + 40px);
    left: -20px;
    position: absolute;
    justify-content: space-between;
    top: 50%;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
  }
  #callingSection .slider-arrows.arrows-mobile .arrow {
    background: var(--color-light-blue);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
  }
  #callingSection .slider-arrows.arrows-mobile .arrow .arrow-image {
    width: 8px;
    height: 8px;
    border: 2px solid #32557f;
    border-left: 0;
    border-top: 0;
  }
  #callingSection .slider-arrows.arrows-mobile .arrow.arrow-prev .arrow-image {
    transform: rotate(135deg);
    margin-left: 5px;
  }
  #callingSection .slider-arrows.arrows-mobile .arrow.arrow-next .arrow-image {
    transform: rotate(315deg);
    margin-right: 5px;
  }
  #callingSection .slider-arrows.arrows-mobile .arrow.inactive {
    opacity: 0.6;
    pointer-events: none;
  }
  #callingSection .slider-arrows.arrows-mobile .arrow:not(.inactive):hover {
    background: var(--color-blue-dark);
    color: white;
  }
  #callingSection .section-title {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
  #callingSection .section-title .swiper-wrapper {
    height: max-content;
  }
  #callingSection .section-title .swiper-wrapper .swiper-slide {
    height: unset;
  }
  #callingSection .section-title .title-text {
    color: white;
    font-size: 28px;
    line-height: 1;
  }
  #callingSection .section-title .slider-arrows {
    display: none;
  }
  #callingSection .section-slider {
    margin-top: 24px;
    width: 100%;
    border: none;
    border-radius: 0;
    padding: 0;
    background: transparent;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
  }
  #callingSection .section-slider .slider-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    padding: 0;
  }
  #callingSection .section-slider .slider-content .slider-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: white;
  }
  #callingSection .section-slider .slider-content .slider-text .text-title {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-left: 0;
    margin-bottom: 10px;
  }
  #callingSection .section-slider .slider-content .slider-text .text-title:before {
    content: "";
    position: absolute;
    top: -3px;
    left: 0;
    display: none;
    background: url("/local/images/masterflota/kanat 1.svg");
    background-repeat: no-repeat;
    width: 12px;
    transform: rotate(90deg);
    height: 100%;
    background-size: cover;
  }
  #callingSection .section-slider .slider-content .slider-text .text-title .text-name {
    font-size: 20px;
    font-weight: 600;
  }
  #callingSection .section-slider .slider-content .slider-text .text-title .line-mobile {
    display: block;
    position: relative;
    width: 100%;
    height: 21px;
    margin-top: 5px;
  }
  #callingSection .section-slider .slider-content .slider-text .text-title .line-mobile:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0;
    display: block;
    background: url("/local/images/masterflota/line.svg");
    background-repeat: no-repeat;
    width: 100%;
    height: 16px;
    background-size: cover;
  }
  #callingSection .section-slider .slider-content .slider-text .text-title .text-position {
    font-size: 20px;
    font-weight: 400;
  }
  #callingSection .section-slider .slider-content .slider-text .text-calling {
    font-weight: 200;
    position: relative;
    font-size: 16px;
  }
  #callingSection .section-slider .slider-content .slider-text .text-calling .kov {
    position: absolute;
    content: "";
    width: 40px;
    height: 40px;
    display: inline-block;
    background: url("/local/images/masterflota/kov.svg");
    background-repeat: no-repeat;
    background-size: contain;
  }
  #callingSection .section-slider .slider-content .slider-text .text-calling .kov.kov-open {
    left: 0;
    top: 0;
  }
  #callingSection .section-slider .slider-content .slider-text .text-calling .kov.kov-close {
    transform: rotate(180deg);
    margin-left: 10px;
    bottom: 0;
  }
  #callingSection .section-slider .slider-content .slider-text .text-calling p:first-child {
    text-indent: 50px;
  }
  #callingSection .section-slider .slider-content .slider-stamp {
    display: none;
  }
  #callingSection .section-slider .slider-content .slider-photo {
    display: none;
  }
  #video {
    margin-top: -60px;
    padding: 42px 0 142px;
    margin-bottom: -100px;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    border-top: 4px solid var(--color-yellow);
    background-size: cover;
    background-position: center;
  }
  #video .section-title {
    font-size: 28px;
    margin-bottom: 55px;
    margin-left: 30px;
    margin-top: 0;
    color: var(--color-blue-dark);
  }
  #video .section-content .video {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 30px;
    overflow: hidden;
    height: 0;
    padding-top: 60%;
    position: relative;
    margin-bottom: 16px;
  }
  #video .section-content .video .video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  #video .section-content .video .video-wrapper img {
    width: 100%;
    min-height: 100%;
    object-fit: cover;
  }
  #video .section-content .video-desc {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: var(--color-blue-dark);
    font-size: 14px;
  }
  #video .section-content .video-slogan {
    font-family: Calibri;
    font-weight: bold;
    margin-top: 30px;
    color: var(--color-yellow-dark);
    font-style: italic;
    font-size: 16px;
    text-align: center;
    margin-bottom: 0;
  }
  #gallery {
    margin-top: -60px;
    padding: 42px 0 80px;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    border-top: 4px solid var(--color-yellow);
    background-size: cover;
    background-position: center;
  }
  #gallery .section-title {
    font-size: 28px;
    margin-bottom: 20px;
    margin-left: 30px;
  }
  #gallery .section-content {
    margin-top: 200px;
    position: relative;
    height: 124px;
  }
  #gallery .section-content .gallery-arrows {
    position: absolute;
    top: 51px;
    width: 100%;
    z-index: 1;
  }
  #gallery .section-content .gallery-arrows .slider-btn {
    background: var(--color-light-blue);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
  }
  #gallery .section-content .gallery-arrows .slider-btn::after {
    display: none;
  }
  #gallery .section-content .gallery-arrows .slider-btn .arrow-image {
    width: 10px;
    height: 10px;
    border: 2px solid #32557f;
    border-left: 0;
    border-top: 0;
  }
  #gallery .section-content .gallery-arrows .slider-btn.swiper-button-prev .arrow-image {
    transform: rotate(135deg);
    margin-left: 5px;
  }
  #gallery .section-content .gallery-arrows .slider-btn.swiper-button-next .arrow-image {
    transform: rotate(315deg);
    margin-right: 5px;
  }
  #gallery .section-content .gallery-arrows .slider-btn.inactive {
    opacity: 0.6;
    pointer-events: none;
  }
  #gallery .section-content .gallery-arrows .slider-btn:not(.inactive):hover {
    background: var(--color-blue-dark);
    color: white;
  }
  #gallery .section-content #sliderGallery {
    width: calc(100% - 100px);
    z-index: 2;
  }
  #gallery .section-content #sliderGallery .swiper-slide {
    cursor: pointer;
    height: 82px !important;
  }
  #contPart {
    margin-top: -60px;
    padding: 42px 0 102px;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    border-top: 4px solid var(--color-yellow);
    background-size: cover;
  }
  #contPart .section-title {
    font-size: 28px;
    margin-bottom: 30px;
    margin-left: 30px;
    margin-right: 30px;
    line-height: 1;
  }
  #contPart .section-wrapper {
    width: calc(100% - 40px);
    border-radius: 30px;
    padding: 20px;
    height: fit-content;
  }
  #contPart .section-wrapper .bg-main {
    width: 100%;
  }
  #contPart .section-wrapper .bg-adw {
    width: 0;
    display: none;
  }
  #contPart .section-wrapper .column-main {
    max-width: 100%;
    gap: 20px;
    margin-left: 0;
  }
  #contPart .section-wrapper .column-main .text {
    font-size: 16px;
    width: 80%;
    margin-left: 0;
  }
  #contPart .section-wrapper .column-main .btns {
    width: 70%;
  }
  #contPart .section-wrapper .column-main .btns .btn {
    font-size: 20px;
    padding: 10px 20px;
  }
  #contPart .section-wrapper .column-adv {
    display: none;
    width: 20%;
    height: calc(100% - 60px);
    right: 10%;
    margin: 30px 0;
  }
  #nominations {
    margin-top: -60px;
    padding: 42px 0 102px;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    border-top: 4px solid var(--color-yellow);
    background-size: cover;
    background-position: center;
  }
  #nominations .section-title {
    font-size: 28px;
    line-height: 1;
    margin-bottom: 30px;
    margin-left: 30px;
    margin-right: 30px;
    margin-top: 0;
  }
  #nominations .section-wrapper .nominations-list {
    gap: 20px;
  }
  #nominations .section-wrapper .nominations-list .nomination-item {
    width: 100%;
    border-top-left-radius: 300px;
    border-bottom-left-radius: 300px;
    border-top-right-radius: 80px;
    border-bottom-right-radius: 80px;
    height: 83px;
    gap: 10px;
  }
  #nominations .section-wrapper .nominations-list .nomination-item .image {
    width: 76px;
    height: 76px;
    margin-left: 4px;
  }
  #nominations .section-wrapper .nominations-list .nomination-item .image img {
    width: 72px;
    height: 72px;
  }
  #nominations .section-wrapper .nominations-list .nomination-item .nomination-name {
    width: calc(100% - 88px);
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    align-items: center;
    display: flex;
    justify-content: center;
  }
  #nominations .section-wrapper .btns {
    margin-top: 30px;
    gap: 20px;
  }
  #nominations .section-wrapper .btns .btn {
    border: 2px solid var(--color-blue-dark);
    padding: 5px 20px;
    border-radius: 300px;
    width: calc(50% - 10px);
    font-size: 16px;
  }
  #nominations .section-wrapper .nomination-slogan {
    font-family: Calibri;
    font-weight: bold;
    font-style: italic;
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 16px;
  }
  #programm {
    margin-top: -60px;
    padding: 42px 0 142px;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
  }
  #programm .section-title {
    color: white;
    font-size: 28px;
    line-height: 1;
    font-weight: 600;
    margin-bottom: 0;
    margin-left: 30px;
    margin-right: 30px;
    margin-top: 0;
  }
  #programm .section-content {
    gap: 0;
  }
  #programm .section-content .program-tabs {
    width: calc(100% - 4px);
    border: 2px solid white;
    border-radius: 300px;
    background: var(--color-blue-dark);
    overflow: hidden;
    height: 58px;
    position: relative;
    margin-top: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-direction: horizontal;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-bottom: 22px;
  }
  #programm .section-content .program-tabs::-webkit-scrollbar {
    display: none;
  }
  #programm .section-content .program-tabs .programm-tabs-list {
    width: auto;
    position: absolute;
    height: 60px;
    top: -2px;
    bottom: -2px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    left: 0;
    transition: all 0.3s;
  }
  #programm .section-content .program-tabs .programm-tabs-list .program-tab {
    white-space: nowrap;
    width: max-content;
    padding: 0 20px;
    color: white;
    font-size: 14px;
    border: 2px solid transparent;
    border-radius: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 58px;
    text-align: center;
    transition: all 0.3s;
  }
  #programm .section-content .program-tabs .programm-tabs-list .program-tab.active {
    border-color: white;
    background: var(--color-blue);
  }
  #programm .section-content .program-tabs .programm-tabs-list .program-tab:last-child {
    border-right: 0;
  }
  #programm .section-content .program-tabs .programm-tabs-list .program-tab:first-child {
    border-left: 0;
  }
  #programm .section-content .program-tabs .programm-tabs-wrapper {
    overflow-x: unset;
    height: calc(100% + 4px);
    top: -2px;
    position: absolute;
    margin: 0;
    /*
    .program-tab {
      //width: 25%;
      height: 58px;
      padding: 0 10px;
      font-size: 16px;
      font-weight: 600;
      color: white;
      text-align: center;
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid transparent;
      transition: all .3s;
      cursor: pointer;
      &.swiper-slide-thumb-active, .swiper-slide-active {
        border: 2px solid white;
        border-radius: 300px;
        background: var(--color-blue);
      }
      &:last-child {
        border-right: transparent;
      }
      .slide-wrapper {
        height: 58px;
        max-width: 240px;
        min-width: 190px;
      }
    }

     */
  }
  #programm .section-content .program-tabs .programm-tabs-wrapper:before {
    display: none;
  }
  #programm .section-content .program-content {
    width: 80%;
    height: fit-content;
    padding-top: 0;
    position: relative;
    border: none;
    border-radius: 0;
    overflow: unset;
    margin: 0 auto;
    overflow: hidden;
  }
  #programm .section-content .program-content .content-item {
    width: 100%;
    height: fit-content;
    position: relative;
    z-index: 1;
    opacity: 1;
  }
  #programm .section-content .program-content .content-item .program-item-wrapper {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: inherit;
    width: 100%;
    position: relative;
    overflow-x: hidden;
  }
  #programm .section-content .program-content .content-item .program-item-wrapper .program-item-text {
    background: none;
    width: 100%;
    padding: 30px 4px 0;
    font-size: 14px;
    color: white;
    order: 2;
  }
  #programm .section-content .program-content .content-item .program-item-wrapper .program-item-text ul {
    padding-left: 16px;
  }
  #programm .section-content .program-content .content-item .program-item-wrapper .program-item-image {
    width: calc(100% - 4px);
    order: 1;
    position: relative;
    border: 2px solid white;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    overflow: hidden;
    height: 200px;
  }
  #programm .section-content .program-content .content-item .program-item-wrapper .program-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #programm .section-content .btns {
    width: 100%;
    height: 40px;
  }
  #programm .section-content .btns .btn {
    width: 100%;
    font-size: 16px;
    padding: 0;
    height: 40px;
  }
  #programm .section-content .btns .btn:hover {
    font-size: 18px !important;
  }
  #news {
    margin-top: -60px;
    padding: 42px 0 102px;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
  }
  #news .section-title {
    margin-bottom: 30px;
    margin-top: 0;
  }
  #news .section-title .title-text {
    font-size: 28px;
    margin-left: 30px;
  }
  #news .section-title .slider-arrows {
    gap: 20px;
  }
  #news .section-title .slider-arrows .arrow {
    width: 30px;
    height: 30px;
  }
  #news .section-title .slider-arrows .arrow .arrow-image {
    width: 10px;
    height: 10px;
  }
  #news .section-title .slider-arrows .arrow.arrow-prev .arrow-image {
    margin-left: 5px;
  }
  #news .section-title .slider-arrows .arrow.arrow-next .arrow-image {
    margin-right: 5px;
  }
  #news .section-title .modal-btn-close {
    width: 30px;
    height: 30px;
    bottom: -20px;
    right: -10px;
  }
  #news .section-title .modal-btn-close:before, #news .section-title .modal-btn-close:after {
    width: 20px;
    height: 2px;
  }
  #news .section-content {
    gap: 30px;
  }
  #news .section-content .news-detail {
    border-radius: 25px;
  }
  #news .section-content .news-detail.active {
    height: fit-content;
    width: 100%;
    position: relative;
    margin-bottom: 0;
  }
  #news .section-content .news-detail .news-detail-wrapper {
    padding: 20px;
    width: calc(100% - 40px);
    flex-wrap: wrap;
  }
  #news .section-content .news-detail .news-detail-wrapper .detail-text-title {
    order: 2;
    width: 100%;
    font-size: 16px;
    line-height: 1;
    padding-bottom: 0;
    margin-bottom: 0;
    color: white;
  }
  #news .section-content .news-detail .news-detail-wrapper .detail-text {
    order: 3;
    width: 100%;
    font-size: 16px;
    overflow: unset;
    height: fit-content;
    padding-bottom: 0;
    color: white;
    background: none;
    line-height: 1;
  }
  #news .section-content .news-detail .news-detail-wrapper .detail-image {
    height: auto;
    width: 100%;
    border: 2px solid white;
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 22px;
  }
  #news .section-content .news-detail .news-detail-wrapper .detail-image img {
    height: calc(100% + 2px);
    object-fit: cover;
  }
  #news .section-content .news-detail .news-detail-wrapper .detail-btns {
    width: 100%;
    order: 4;
  }
  #news .section-content #sliderNews {
    height: unset !important;
  }
  #news .section-content #sliderNews .swiper-wrapper {
    height: unset !important;
  }
  #news .section-content #sliderNews .swiper-slide .slide-wrapper {
    gap: 10px;
  }
  #news .section-content #sliderNews .swiper-slide .slide-content {
    border: 0 !important;
    background-size: cover;
    background: none;
    gap: 10px;
    flex-grow: unset !important;
    border-radius: 0 !important;
    margin-bottom: 20px;
  }
  #news .section-content #sliderNews .swiper-slide .slide-content .slide-image {
    width: calc(100% - 4px) !important;
    border: 2px solid white;
    height: 200px;
    border-radius: 30px;
  }
  #news .section-content #sliderNews .swiper-slide .slide-content .slide-image img {
    height: 100%;
    min-width: 100%;
    object-fit: cover;
  }
  #news .section-content #sliderNews .swiper-slide .slide-content .slide-text {
    padding: 0px;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.2;
  }
  #news .section-content #sliderNews .swiper-slide .slide-btn {
    border-radius: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    font-size: 16px;
    font-weight: bold;
    padding: 0;
  }
  #contacts {
    margin-top: -60px;
    padding: 42px 0 102px;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    border-top: 4px solid var(--color-yellow);
    background-size: cover;
    background-position: center;
  }
  #contacts .section-title {
    margin-bottom: 30px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  #contacts .section-title .title-text {
    font-size: 28px;
    line-height: 1;
    margin-left: 30px;
  }
  #contacts .section-title .title-desc {
    font-size: 16px;
    margin-left: 30px;
    color: var(--color-blue-dark);
  }
  #contacts .section-wrapper {
    margin-top: 20px;
    margin-left: 20px;
    margin-right: 20px;
    width: calc(100% - 40px);
  }
  #contacts .section-wrapper .contacts-list {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
  }
  #contacts .section-wrapper .contacts-list .contact-item {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
  }
  #contacts .section-wrapper .contacts-list .contact-item .image {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
  }
  #contacts .section-wrapper .contacts-list .contact-item .contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: calc(100% - 80px);
    text-align: center;
  }
  #contacts .section-wrapper .contacts-list .contact-item .contact-info div {
    text-align: left;
    width: 100%;
  }
  #contacts .section-wrapper .contacts-list .contact-item div {
    font-size: 12px;
  }
  #contacts .section-wrapper .contacts-list .contact-item .contact-position {
    width: 100%;
    padding-bottom: 12px;
  }
  #contacts .section-wrapper .contacts-list .contact-item a {
    font-size: 11px;
  }
  #media {
    margin-top: -60px;
    padding: 42px 0 102px;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    border-top: 4px solid var(--color-yellow);
  }
  #media .section-title {
    flex-wrap: wrap;
  }
  #media .section-title .title-text {
    font-size: 28px;
    margin-bottom: 30px;
    margin-left: 30px;
    margin-right: auto;
    line-height: 1;
  }
  #media .section-title .media-arrows {
    width: 100%;
    gap: 0;
    justify-content: flex-end;
    margin: 0 auto;
  }
  #media .section-title .yearsMedia {
    gap: 10px;
  }
  #media .section-title .yearsMedia .yearMedia {
    font-size: 14px;
  }
  #media .section-wrapper {
    border-radius: 30px;
    gap: 22px;
    margin-top: 20px !important;
  }
  #media .section-wrapper .swiper {
    width: 100%;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper {
    gap: 22px;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item {
    width: 100%;
    height: 112px;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .image {
    width: 100px;
    height: 100px;
    padding: 3px;
    border: 3px solid var(--color-blue);
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content {
    margin-left: 50px;
    border-radius: 0 20px 20px 0;
    height: 112px;
    padding-left: 70px;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .media-text-title {
    font-size: 14px;
    padding: 5px 0;
    font-weight: 600;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .media-text-content {
    height: fit-content;
    font-weight: 300;
    max-height: calc(100% - 50px);
    margin-bottom: 0;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .media-text-content ul {
    padding-left: 16px;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .media-text-content ul li {
    font-size: 14px;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .media-text-content ul li a {
    font-size: 14px;
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .content-bottom {
    height: 30px;
    width: calc(100% - 20px);
  }
  #media .section-wrapper .swiper-slide .slide-wrapper .media-item .media-content .content-bottom .arrow-down {
    width: 10px;
    height: 10px;
    bottom: 10px;
  }
  #partners {
    margin-top: -60px;
    padding: 42px 0 102px;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
  }
  #partners .section-title {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  #partners .section-title .title-text {
    font-size: 28px;
    margin-left: 30px;
  }
  #partners .section-wrapper {
    gap: 20px;
    margin-top: 30px;
    width: 100%;
  }
  #partners .section-wrapper .partners-block {
    width: 100%;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  #partners .section-wrapper .partners-block .partners-block-title {
    width: 100%;
    font-size: 16px;
    text-align: left;
  }
  #partners .section-wrapper .partners-block .partners-block-list {
    gap: 20px;
  }
  #partners .section-wrapper .partners-block .partners-block-list .list-item {
    width: 80px;
    height: 80px;
    border-radius: 20px;
  }
  #partners .section-wrapper .partners-block .partners-block-list .list-item.partner-add {
    font-size: 14px;
  }
}

/*# sourceMappingURL=styles_new2.css.map */
