body {
  font-family: 'Inter', sans-serif;
  width: 100%;
  position: relative;
  overflow-x: hidden;
  /* скрывает горизонтальный скролл */
  overflow-y: auto;
  /* вертикальный скролл будет по необходимости */
}

body::-webkit-scrollbar {
  display: none;
}

.our-contacts .row {
  --bs-gutter-x: 1.5rem !important;
}


.row {
  --bs-gutter-x: 0rem !important;
}

a {
  text-decoration: none;
}

ol,
ul {
  padding-left: 0rem !important;
}

.main-container {
  max-width: 1250px;
  margin: auto;
}

.header {
  position: fixed;
  top: -2px;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 10px;
}

.header-content .logo img {
  width: 180px;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 45px;
}

.certification-and-quality .main-container{
  padding: 0px 15px;
}


.main-navigation>.main-navigation-ul {
  display: flex;
  align-items: center;
  gap: 25px;
}

.main-navigation li {
  text-transform: uppercase;
}

.main-navigation a {
  position: relative;
  text-decoration: none;
  color: #000;
  font-size: 16px;
  letter-spacing: 0.5px;
  padding: 4px 6px;
  display: block;
  text-transform: uppercase;
}

/* .main-navigation a:after {
      content: "";
      position: absolute;
      background-color: #306baa;
      height: 3px;
      width: 0;
      left: 0;
      bottom: 0px;
      transition: 0.3s;
    } */

.main-navigation a:hover {
  color: #306baa;
}

.main-navigation a:hover:after {
  width: 100%;
}

.main-navigation a.active {
  color: #306baa;
  font-weight: 600;
}

.main-navigation a.active:after {
  width: 100%;
}

.dropdown {
  position: relative;
  cursor: pointer;
}

.dropdown>ul {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  max-width: 220px;
  padding: 6px 0;
  background: #fff;
  -webkit-box-shadow: 0px 5px 10px 2px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 5px 10px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 5px 10px 2px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 9999;
  display: block;
}

.dropdown>ul li {
  padding: 8px 10px;

}

.dropdown>ul li a {
  font-size: 16px;
  color: #000;
}

.dropdown>ul li a:hover {
  color: #306baa;
}

.dropdown:hover>ul {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.languages-content ul {
  display: flex;
  align-items: center;
  gap: 10px;
}

.languages-content img {
  width: 38px;
  height: 22px;
  object-fit: cover;
  border: 1px solid #b3b3b3;
  border-radius: 2px;
}

.languages-active {
  border: 2px solid #306baa !important;
}

.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  z-index: 1001;
}

.burger div {
  width: 28px;
  height: 3px;
  background: #000;
  transition: 0.3s;
}

.burger.active div:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active div:nth-child(2) {
  opacity: 0;
}

.burger.active div:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.slider-video {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
  margin-top: 70px;
}

.slide-video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide-video.active {
  opacity: 1;
  z-index: 1;
}

.slide-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-video .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.497);
  z-index: 0;
}

.slide-content {
  position: absolute;
  left: 3%;
  top: 17%;
  z-index: 99;
  width: 62%;
  background-color: #ffffff12;
  border-radius: 15px;
  padding: 43px;
  color: white;
  backdrop-filter: blur(3px);
}

.slide-content h1 {
  font-size: 30px;
  margin-bottom: 10px;
}

.slider-video .main-container {
  padding: 15px;
}

.slide-content p {
  font-size: 19px;
}

.slide-content-two {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 25px;
}

.flip-card {
  position: relative;
  width: 180px;
  height: 161px;
  perspective: 1000px;
  cursor: pointer;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  background-color: #ffffff43;
  border-radius: 8px;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}



.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 8px;

}



.logo-staff-img {
  position: absolute;
  right: 12px;
  width: 55px;
  height: 55px;
  object-fit: contain;
  z-index: 9;
}

.flip-card-front .slide-content-two-img {
  width: 94px;
  height: 94px;
  margin-top: 15px;
  text-align: center;
}

.flip-card-front h6 {
  color: white;
  font-size: 20px;
  margin-top: 10px;
  font-weight: 500;
}

.flip-card-back {
  background-color: #ffffff43;
  transform: rotateY(180deg);
}

.flip-card-back {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flip-card-back a {
  color: #0d6efd;
  font-size: 19px;
}

.about-us-block {
  position: relative;
  background-color: #0c4c91;
}

.about-us-block-two {
  position: relative;
  background-color: #ffffff;
}

.partners-grid {
  margin-top: 50px;
}

.partners-section {
  padding: 0px 20px;
  text-align: center;
  margin-top: 90px;
  margin-bottom: 150px;
}

.partners-section h2 {
  color: #213B6B;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.024px;
  text-transform: uppercase;
}

.partner-card img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.partner-card img:hover {
  transform: scale(1.2);

}

.about-us-block-two .about-us-info h2 {
  color: #0c4c91;
}

.about-us-block-two .about-us-info p {
  color: #0c4c91;
}

.about-us-block-two .about-us-info a {
  background-color: #0c4c91;
  color: #ffffff;
}

.about-us-info .main-container {
  max-width: 900px !important;
  padding: 15px;
}

.about-us-info h2 {
  color: white;
  font-size: 32px;
  text-align: left;
}

.about-us-info p {
  color: white;
  font-size: 20px;
  text-align: left;
}

.about-us-info a {
  display: inline-block;
  /* чтобы работал transform */
  background-color: white;
  color: #0c4c91;
  text-align: end;
  padding: 15px 44px;
  font-size: 19px;
  font-weight: 600;
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
  transform: translateY(0px);
  transition: all 0.3s ease;
  border-radius: 6px;
  /* плавная анимация */
}

.about-us-info a:hover {
  box-shadow: rgba(0, 0, 0, 0.3) 0px 22px 70px 4px;
  transform: translateY(-10px);
}

.about-us-info-div {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.about-us-block-right {
  background: url("https://asman-oil-company.kg/Asman/img/99.jpg") no-repeat center/cover;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-us-block-two .about-us-block-right {
  background: url("https://asman-oil-company.kg/Asman/img/1068.jpg") no-repeat center/cover;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-us-block-two .about-us-info h2 {
  text-align: left;
}

.about-us-block-two .about-us-info p {
  text-align: left;
}

.services-block {
  padding: 100px 0px;
}

.mainText {
  color: #213B6B;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.024px;
  text-transform: uppercase;
}

/* нечётные карточки (1, 3, 5 ...) */
.services-block .row .gf:nth-child(odd) {
  background-color: #11274E;
}

/* чётные карточки (2, 4, 6 ...) */
.services-block .row .gf:nth-child(even) {
  background-color: #ffffff;
}

.services-block .row .gf .services-block-cards-h6 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.24px;
  text-transform: uppercase;
  width: 95%;
}

.services-block .row .gf:nth-child(odd) .services-block-cards-h6 {
  color: #8BEFFF;
}

.services-block .row .gf:nth-child(even) .services-block-cards-h6 {
  color: #213B6B;
}

.services-block .row .gf .services-block-cards-p {
  font-size: 16px;
  letter-spacing: -0.016px;
  width: 90%;
}

.services-block .row .gf:nth-child(odd) .services-block-cards-p {
  color: #FFF;
}

.services-block .row .gf:nth-child(even) .services-block-cards-p {
  color: #213B6B;
}

.services-block-cards {
  padding: 40px;
  width: 100%;
}

.services-block-cards .img img {
  width: 140px;
  height: 127px;
}

.services-block-two {
  width: 100%;
  height: 550px;
  background: url("https://asman-oil-company.kg/Asman/img/1068%20(1).jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 2;
}

.blokBegushB {
  padding: 90px;
  height: 100%;
  height: 550px;
  background-color: rgb(0 65 145 / 78%);
}

.blokCounter2 {
  margin-bottom: 40px;
}

.NumCounter {
  color: #FFF;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  font-style: normal;
}

.colorW {
  color: white !important;
}

.imgCounter {
  width: 100px;
  height: 100px;
}

.shadow_null{
  -webkit-box-shadow: 0px 3px 19px 5px rgba(34, 60, 80, 0.2);
  -moz-box-shadow: 0px 3px 19px 5px rgba(34, 60, 80, 0.2);
  box-shadow: 0px 3px 19px 5px rgba(34, 60, 80, 0.2);
}

.our-contacts {
  padding: 140px 15px;
}

.our-contacts .our-contacts-cards {
  background-color: #213B6B;
  padding: 50px 15px;
  text-align: center;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.our-contacts-cards h6 {
  color: #FFF;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.22px;
}

.our-contacts-cards p a {
  color: #FFF;
  text-align: center;
  font-size: 18px;
  letter-spacing: -0.16px;
  margin-top: 6px;
}

.map {

  padding: 15px;
}

.map iframe {
  width: 100%;
  height: 450px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid black;
}

/*  */

.form-wrap {
  background: rgba(255, 255, 255, 1);
  width: 100%;
  max-width: 850px;
  padding: 50px;
  margin: 0 auto;
  position: relative;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
}

.main-contact-div .form-wrap {
  margin: 100px auto !important;
}


.form-wrap:before {
  content: "";
  width: 90%;
  height: calc(100% + 60px);
  left: 0;
  right: 0;
  margin: 0 auto;
  position: absolute;
  top: -30px;
  background: #004191;
  z-index: -1;
  opacity: 0.8;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
}

.form-control:focus {
  border-color: #0055bd;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
  -moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
}

.form-group {
  margin-bottom: 25px;
}

.form-group>label {
  display: block;
  font-size: 18px;
  color: #000;
}

textarea.form-control {
  height: 160px;
  padding-top: 15px;
  resize: none;
  margin-top: 5px;
}

.form-control {
  height: 50px;
  background: #ecf0f4;
  border-color: transparent;
  padding: 0 15px;
  font-size: 16px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-top: 5px;
}

/*  */


/* tabs */
.documents_tab {
  position: relative;
  margin-top: 130px;
  border: 1px solid #cecece;
  border-radius: 10px;
  padding: 25px;
  -webkit-box-shadow: 4px 3px 19px 0px rgba(34, 60, 80, 0.2);
  -moz-box-shadow: 4px 3px 19px 0px rgba(34, 60, 80, 0.2);
  box-shadow: 4px 3px 19px 0px rgba(34, 60, 80, 0.2);
}

.tabs-block {
  display: grid;
  grid-template-columns: 3fr 9fr;
  /* col-3 / col-9 */
  gap: 20px;
  margin-top: 30px;
}

/* Левая колонка (tab-bar) */
.tab-bar {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  background: #ffffff;
  position: sticky;
  top: 100px;
  /* липнет на 100px от верха */
  align-self: start;
  height: max-content;
}

.tablink {
  padding: 14px;
  border: none;
  background: #f6f6f675;
  color: #000000;
  cursor: pointer;
  transition: background 0.3s;
  font-size: 16px;
  text-align: left;
  white-space: nowrap;
  border-radius: 8px;
  border: 1px solid rgba(168, 168, 168, 0.463);
}

.tablink.active {
  background: #3163a1;
  /* активная вкладка */
  color: #ffffff;
}

/* Правая колонка (контент) */
.tab-bar-content {
  padding: 20px;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.documents_tab-div h2 {
  color: #213B6B;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
}

.documents_tab-div p {
  font-size: 18px;
  margin-bottom: 30px;
}

.tab-content h2 {
  color: #213B6B;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.tab-content p {
  font-size: 17px;
  line-height: 1.6;
  color: #333;
}

.tab-content img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #cecece;
}

.download-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #213B6B;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

.download-btn:hover {
  background: #213B6B;
  transform: translateY(-2px);
}

.download-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.tab-content-download {
  display: flex;
  justify-content: end;
  margin-top: 20px;
}

.documents-blocks {
  margin-top: 100px;
}

/* tabs */


/* Staff */
.wrap-staff {
  padding: 160px 15px 0px 15px;
}

.staff-div {
  margin-bottom: 30px;
  text-align: center
}

.staff-div h1 {
  font-size: 28px;
  margin-bottom: 8px
}

.staff-div p {
  color: #666;
  font-size: 16px
}

.wrap-staff .director {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(223, 223, 223, 0.662);
}

.wrap-staff .director img {
  width: 290px;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
  background: #ddd;
}

.wrap-staff .director-info h2 {
  margin-bottom: 6px
}

.wrap-staff .director-info .role {
  color: #0077b6;
  font-weight: 600;
  margin-bottom: 6px
}

.wrap-staff .director-info p {
  margin: 0;
  color: #555;
  font-size: 14px
}

/* Сотрудники cards */
.wrap-staff .team {
  margin-top: 50px;
}

.wrap-staff .team h3 {
  margin-bottom: 16px;
  font-size: 25px;
  text-align: center
}

.wrap-staff .team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.wrap-staff .card {
  background: #fff;
  border-radius: 12px;
  padding: 15px 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  text-align: center !important;
  transition: transform .2s ease, box-shadow .2s ease;
}

.wrap-staff .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.wrap-staff .card .card-staff-img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  background: #eee;
  margin-bottom: 12px;
  text-align: center !important;
  border-radius: 10px;
}

.team-main-text {
  color: #213B6B;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.024px;
  text-transform: uppercase;
}

.wrap-staff .card h4 {
  margin: 0;
  font-size: 18px
}

.wrap-staff .card p {
  margin: 4px 0 0;
  color: #666;
  font-size: 14px
}

/* Staff */


/*  */
#certificates {
  padding: 150px 0px 20px 0px;
}

#certificates .main-container {
  padding: 15px;
}

#certificates .section-title h2 {
  color: #213B6B;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
}

.certificates .section-title p {
  font-size: 18px;
  margin-bottom: 30px;
}


.cert-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.certificates-card-flips {
  perspective: 1000px;
  width: 100%;
  height: 510px;
  min-height: 160px;
  cursor: pointer;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(.2, .9, .3, 1);
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(2, 6, 23, 0.6);
}

.certificates-card-flips.flipped .card-inner {
  transform: rotateY(180deg);
}

.card-face {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card-front {
  background: linear-gradient(135deg, #3f6bb1, #3958a4);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  justify-content: flex-end;
  color: white;
}

.cert-thumb {
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
  border-radius: 8px
}

.cert-title {
  font-weight: 700;
  font-size: 16px
}

.cert-meta {
  font-size: 13px;
  opacity: 0.9
}

.card-back {
  transform: rotateY(180deg);
  /* background: rgb(30, 30, 30); */
  background: linear-gradient(135deg, #3f6bb1, #3958a4);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 14px;
  gap: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: #e6eef8;
}

.back-actions {
  margin-top: 6px;
  display: flex;
  gap: 8px;
  width: 100%
}

.card-inner .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(217, 217, 217, 0.3);
}

.btn:active {
  transform: translateY(1px)
}

.btn-download {
  margin-left: auto
}


/*  */



/*  */
.certification-and-quality {
  padding: 120px 0px 20px 0px;
}

.row55 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.row55 svg {
  text-align: center;
  max-width: 20rem;
}

.certification-and-quality-svg-mobaile{
  display: none;
}
/*  */



/*  */
.faq-main-block {
  padding: 100px 15px 10px 15px;
}

.faq-header {
  text-align: center;
  padding: 50px 20px 20px 20px;
}

.faq-header h1 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #0b3d91;
}

.faq-header p {
  font-size: 18px;
  color: #555;
}

.faq-container {

  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}



.faq-question {
  /* width: 98%; */
  padding: 20px;
  cursor: pointer;
  position: relative;
  font-weight: bold;
  font-size: 18px;
  transition: background 0.3s;
}

/* .faq-question:hover {
      background: #f0f0f0;
    } */

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 24px;
  color: #0b3d91;
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  content: '-';
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background: #f9f9f9;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 20px;
}

.faq-contact {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  background: #eaf0fb;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.faq-contact h3 {
  color: #0b3d91;
  margin-bottom: 10px;
}

.faq-contact p {
  color: #555;
  margin-bottom: 20px;
}

.faq-contact a {
  display: inline-block;
  background: #0b3d91;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.faq-contact a:hover {
  background: #062763;
}

@media(max-width: 600px) {
  .faq-header h1 {
    font-size: 28px;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-answer {
    font-size: 14px;
  }
}

/*  */





.footer {
  position: relative;
  bottom: 0px;
  margin-top: 100px;
}

.footer .main-container {
  padding: 10px;
}

.footer-start {
  background-color: #3f6bb1;
  padding: 30px 0px;
}

.footer-start ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.footer-start ul li a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
}

.footer-center {
  background-color: #3958a4;
  padding: 45px 0px;
}

.footer-center h6 {
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
}

.footer-center h6 a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

.footer-center-socialMedia {
  margin-top: 50px;
}

.footer-center-socialMedia img {
  width: 65px;
  height: 65px;
}

.footer-bottom {
  background: #306baa;
  padding: 10px;
  text-align: center;
}

.footer-bottom p {
  color: #fff;
  font-size: 16px;
  margin: 0;
}

/* Preloader стили */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  /* или другой фон */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  pointer-events: none;
}

.preloader img {
  width: 270px;
  height: auto;
}

/*ANIMATE LOADER*/
.animate_preload {
  width: 180px;
  height: auto;
  position: absolute;
  bottom: 20%;
  left: -20%;
  animation: move-diagonal 3s 0.5s forwards;
}

@keyframes move-diagonal {
  0% {
    bottom: 20%;
    left: -20%;
  }

  100% {
    bottom: 100%;
    left: 50%;
    transform: translate(-100%, -100%);
  }
}

.svg-wrapper {
  text-align: center;
  margin-top: 3em;

  svg {
    max-width: 200px;
    height: auto;
    margin: 0 auto;
    margin-top: .75em;
  }
}

.plane {
  fill: none;
  stroke: #1A47B8;
  stroke-width: 4;
  opacity: .7;
}

.aileron {
  fill: none;
  stroke: #6cbb3f;
  stroke-width: 4;
  opacity: .7;
}

.st0 {
  stroke: lime;
}

.wind {
  stroke-width: 1;
  stroke: white;
  -webkit-transform-origin: top;
  transform-origin: top;
  animation-duration: 1.5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-name: wind;
  stroke-dashoffset: 0;
  stroke-dasharray: 100;

  &.one {
    animation-delay: 2s;
  }

  &.two {
    animation-delay: .75s;
  }

  &.three {
    animation-delay: 0s;
  }

  &.four {
    animation-delay: 1s;
  }

  &.five {
    animation-delay: 1.5s;
  }

  &.six {
    animation-delay: .25s;
  }

  &.seven {
    animation-delay: 1.4s;
  }
}

@keyframes wind {
  0% {
    stroke-dashoffset: 100;
    stroke: white;
  }

  50% {
    stroke-dashoffset: 0;
    stroke: fade(#464646, 50%);
    stroke: #aaa;
  }

  100% {
    stroke-dashoffset: -100;
    stroke: white;
  }
}

.animate_ride {
  animation: moveAndFade 3s forwards;
  position: relative;
  /* нужно для left/right */
}

@keyframes moveAndFade {
  0% {
    left: -400px;
  }

  100% {
    left: 400px;
    /* или любое нужное значение */
  }
}

/*ANIMATE LOADER*/

#form .row{
  --bs-gutter-x: 1.5rem !important;

}