@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.gallery-section {
  background: rgba(0, 0, 0, 0.5);
}

body {
  font-family: "Raleway";
  font-weight: 200;
  background-color: #000;
  background-image: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(0, 0, 0, 0.9) 100%);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0.85) 100%);
  z-index: -1;
}

.container {
  max-width: 1170px;
  margin: 0 auto;
}

.default_section {
  width: 100%;
  min-height: 80vh;
}

a {
  text-decoration: none;
  color: white;
}

.btn {
  padding: 20px;
  border: none;
  background: #ffee31;
  color: black;
  border-radius: 10px;
  font-size: 20px;
  font-weight: bold;
}

#read_more-btn {
  background: none;
  border: 1px solid yellow;
  color: yellow;
  transition: 0.2s;
}

#read_more-btn:hover {
  padding: 30px;
}

.section {
  max-width: 100%;
  margin: 0 auto;
}

.footer {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 40px 0;
  font-family: "Poppins", sans-serif;
}
.footer .container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footer .footer-content .icons-wrap {
  display: flex;
  gap: 20px;
}
.footer .footer-content .icons-wrap a {
  font-size: 24px;
  color: #ffd700;
  transition: transform 0.3s ease, color 0.3s ease;
}
.footer .footer-content .icons-wrap a:hover {
  color: #fff;
  transform: scale(1.2);
}
.footer .footer-content .footer-links {
  display: flex;
  gap: 25px;
}
.footer .footer-content .footer-links a {
  color: #bdbdbd;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}
.footer .footer-content .footer-links a:hover {
  color: #ffd700;
}
.footer .footer-content .text-block {
  text-align: center;
  margin-top: 20px;
}
.footer .footer-content .text-block .title {
  font-size: 18px;
  font-weight: 600;
  color: #ffd700;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.footer .footer-content .text-block p {
  font-size: 14px;
  color: #bdbdbd;
}
@media (max-width: 768px) {
  .footer .footer-content {
    flex-direction: column;
    text-align: center;
  }
  .footer .footer-content .icons-wrap {
    justify-content: center;
    margin-bottom: 20px;
  }
  .footer .footer-content .footer-links {
    justify-content: center;
    margin-bottom: 20px;
  }
}
@media (max-width: 647px) {
  .footer .footer-content .footer-links {
    justify-content: center;
    margin-bottom: 20px;
    flex-direction: column;
  }
}

.card {
  width: 300px;
  height: 200px;
  border: 1px solid white;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: end;
  margin-bottom: 10px;
}
.card .title {
  color: white;
}
.card #btn_buy {
  padding: 10px;
  border: none;
  color: black;
  background: #b9ad26;
  transition: 0.2s;
  cursor: pointer;
}
.card #btn_buy:hover {
  background: yellow;
  color: black;
}

.btn:hover {
  transition: 0.2s;
  cursor: pointer;
  background: #b9ad26;
  color: white;
}

.default_section {
  top: 0;
  left: 0;
}

@media screen and (max-width: 400px) {
  table td {
    font-size: 10px;
  }
}
.default_section .img_training {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  height: 200px;
}
.default_section .img_training img {
  width: 100%;
  height: auto;
}
.default_section .img_training .overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  z-index: 20;
  background: rgba(0, 0, 0, 0.5);
}
.default_section .img_training .content {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 25;
}

#big-carousel {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
#big-carousel .splide__track {
  overflow: hidden;
  border-radius: 15px;
}
#big-carousel .splide__slide {
  position: relative;
  text-align: center;
}
#big-carousel .splide__slide img {
  width: 100%;
  height: auto;
  max-width: 800px;
  max-height: 500px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#big-carousel .splide__slide img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

#thumbnail-carousel {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
#thumbnail-carousel .splide__track {
  overflow: hidden;
}
#thumbnail-carousel .splide__track--nav > .splide__list > .splide__slide.is-active {
  border: none;
}
#thumbnail-carousel .splide__slide {
  cursor: pointer;
  border: none;
  transition: opacity 0.3s ease;
}
#thumbnail-carousel .splide__slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
#thumbnail-carousel .splide__slide img:hover {
  opacity: 0.8;
}
#thumbnail-carousel .splide__slide.is-active img {
  border: 2px solid #b9ad26;
  opacity: 1;
}

.video-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.video-container .centered-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.cookie-consent {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 300px;
  background: linear-gradient(145deg, #2c3e50, #34495e);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  padding: 20px;
  color: #ecf0f1;
  font-family: "Roboto", sans-serif;
  z-index: 1000;
  display: none;
}
.cookie-consent .cookie-message p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #ecf0f1;
}
.cookie-consent .cookie-message a {
  color: #f1c40f;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}
.cookie-consent .cookie-message a:hover {
  color: #e67e22;
}
.cookie-consent .cookie-message .accept-btn {
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #f1c40f;
  color: #2c3e50;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.cookie-consent .cookie-message .accept-btn:hover {
  background-color: #e67e22;
  transform: scale(1.05);
}
.cookie-consent .cookie-message .accept-btn:active {
  background-color: #d35400;
  transform: scale(0.98);
}

.header_wrap {
  position: relative;
  width: 100%;
  background: black;
  height: 100px;
}
.header_wrap .header {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  background: black;
}
.header_wrap .header .wrap {
  max-width: 1170px;
  margin: 0 auto;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header_wrap .header__logo {
  display: flex;
  margin-left: 10px;
  justify-content: center;
  align-items: center;
}
.header_wrap .header__logo .logo {
  color: #ffee31;
  width: 200px;
  text-shadow: 0 0 7px orange;
  text-align: start;
}
.header_wrap .header__menu {
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 10px;
}
.header_wrap .header__menu .btn_menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
  width: 60px;
  height: 60px;
}
.header_wrap .header__menu .btn_menu span {
  width: 100%;
  height: 3px;
  background: white;
}
.header_wrap .header__menu .btn_menu span:nth-child(1) {
  width: 100%;
  background: white;
}
.header_wrap .header__menu .link {
  font-size: 15px;
  font-weight: 100;
  padding: 10px;
  transition: 0.4s;
}
.header_wrap .header__menu .link:hover {
  border-bottom-left: 5px solid white;
  color: yellow;
}
.header_wrap .header__menu .profile-link {
  border: 1px solid yellow;
  color: white;
}
.header_wrap .header__menu .cart_wrap .cart {
  cursor: pointer;
  transition: 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header_wrap .header__menu .cart_wrap .cart:hover {
  font-size: 30px;
}
.header_wrap .header .cart_block {
  position: absolute;
  top: 15%;
  right: 0;
  width: 300px;
  height: 200px;
  min-height: 200px;
  background: black;
  opacity: 0;
  transition: 0.2s;
}

.header__menu .programs {
  position: relative;
}
.header__menu .programs .popup {
  display: none;
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  padding: 10px;
  margin-top: 5px;
  transition: opacity 0.3s ease;
  opacity: 0;
}
.header__menu .programs .popup a {
  display: block;
  padding: 8px 12px;
  color: #333;
  text-decoration: none;
  transition: background 0.3s;
}
.header__menu .programs .popup a:hover {
  background: #f0e68c;
}
.header__menu .programs:hover .popup {
  display: block;
  opacity: 1;
}

@media (max-width: 700px) {
  .header_wrap header .header__logo .logo {
    width: 100px;
    text-align: start;
    font-size: 10px;
  }
  .header_wrap header .header__menu {
    justify-content: center;
    align-items: center;
  }
  .header_wrap header .header__menu .link {
    display: none;
  }
  .header_wrap header .header__menu .btn_menu {
    display: flex;
  }
}
.home_block {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.home_block .home_img {
  width: 90rem;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home_block #myVideo {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}
.home_block .text-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 112%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}
.home_block .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 40px;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.home_block .content button:hover {
  transition: 0.2s;
  background: #b9ad26;
  cursor: pointer;
}
.home_block .content .main-logo-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}
.home_block .content .main-logo-wrap .logo-promo {
  max-width: 800px;
}
.home_block .content .fire-text {
  text-align: center;
  color: orange;
  text-shadow: 0 0 10px orange;
}

@media (max-width: 468px) {
  .content .main-logo-wrap .logo-promo {
    max-width: 400px;
  }
}
@media (max-width: 600px) {
  .home_img {
    width: 140%;
  }
}
.event {
  background: url("/views/client/images/david-jorre.jpg") center center/cover no-repeat;
  padding: 50px;
  color: white;
  text-align: center;
}
.event h1 {
  font-size: 36px;
  font-weight: 700;
  color: white;
  margin-bottom: 30px;
}
.event .posts_overlay {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
  padding-bottom: 20px;
}
.event .post_wrap {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 10px;
  scroll-behavior: smooth;
}
.event .post_wrap .post {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  flex: 0 0 auto;
  width: 300px;
  text-align: left;
}
.event .post_wrap .post:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}
.event .post_wrap .post .post_title {
  padding: 15px;
  font-size: 24px;
  font-weight: bold;
  color: white;
}
.event .post_wrap .post .img_wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.event .post_wrap .post .img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
.event .post_wrap .post .img_wrap:hover img {
  transform: scale(1.1);
}
.event .post_wrap .post .more {
  display: block;
  text-align: center;
  padding: 15px;
  font-size: 18px;
  background-color: #ffd700;
  border-radius: 0 0 15px 15px;
  color: black;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.event .post_wrap .post .more:hover {
  background-color: white;
  color: black;
}
.event .prev,
.event .next {
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 10px 20px;
  border-radius: 50%;
  transition: background-color 0.3s ease-in-out;
}
.event .prev:hover,
.event .next:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.event .prev {
  left: -40px;
}
.event .next {
  right: -40px;
}

.contacts {
  background: black;
  padding: 10px;
  width: 100%;
  min-height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contacts .block_wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 70px;
}
.contacts .block_wrap .cl {
  border: 1px solid white;
  width: 20rem;
  height: 20rem;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
.contacts .block_wrap .cl a {
  width: 100%;
  height: 100%;
}
.contacts .block_wrap .cl .title {
  font-size: 2rem;
  font-weight: 600;
}
.contacts .block_wrap .cl .info {
  font-size: 1rem;
}

#block1 {
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  min-height: 100%;
  flex-direction: column;
}
#block1 .block_1-img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  filter: brightness(60%);
}
#block1 .text-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}
#block1 .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 20px;
}
#block1 .section-title {
  width: 100%;
  margin-top: 40px;
  color: white;
  font-size: 48px;
  font-weight: 300;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  text-align: center;
}
#block1 .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  padding: 20px;
  min-height: 100vh;
  gap: 20px;
  /* Custom backgrounds for each block */
}
#block1 .content .cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  width: 100%;
}
#block1 .content .cl {
  width: 30%;
  height: 550px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-decoration: none;
  color: white;
  overflow: hidden;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  /* Smooth scale and shadow */
  background-size: cover;
  background-position: center;
  filter: brightness(85%);
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.95;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  /* Initial subtle shadow */
  cursor: pointer;
}
#block1 .content .cl .name {
  position: relative;
  z-index: 2;
  font-size: 32px;
  font-weight: 700;
  padding: 15px;
  color: white;
  text-shadow: 3px 6px 12px rgba(0, 0, 0, 0.7);
  transition: all 0.4s ease;
}
#block1 .content .cl::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  /* Dark overlay */
  transition: background 0.4s ease-in-out;
}
#block1 .content .cl:hover {
  transform: translateY(-15px) scale(1.05);
  /* Lift and scale */
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  /* Stronger shadow on hover */
}
#block1 .content .cl:hover .name {
  color: white;
  text-shadow: 5px 10px 20px rgba(255, 255, 255, 0.5);
  /* Glow effect */
}
#block1 .content .cl:hover::before {
  background: rgba(0, 0, 0, 0.3);
  /* Lighten overlay on hover */
}
#block1 .content .cl:hover .name {
  transform: scale(1.25);
  /* Enlarges text */
  transition: transform 0.4s ease;
}
#block1 .content .cl:nth-child(1) {
  background: url("/views/client/images/img_3.png") center center/cover no-repeat;
}
#block1 .content .cl:nth-child(2) {
  background: url("/views/client/images/karabin-min.jpg") center center/cover no-repeat;
}
#block1 .content .cl:nth-child(3) {
  background: url("/views/client/images/img_5.png") center center/cover no-repeat;
}
#block1 .content .cl:nth-child(3) .name {
  font-size: 20px;
}
#block1 .content .cl:nth-child(4) {
  background: url("/views/client/images/treningImages/2024_05_04_1199.jpg") center center/cover no-repeat;
}
#block1 .content .cl:nth-child(4) .name {
  text-align: center;
}

@media (max-width: 410px) {
  .content .cl .name {
    font-size: 15px;
  }
}
@media (max-width: 1157px) {
  .content .cl .name {
    font-size: 28px;
  }
}
@media (max-width: 799px) {
  .content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .content .cl {
    min-width: 60%;
    height: 200px;
  }
}
@media (max-width: 589px) {
  .content .cl .name {
    font-size: 20px;
  }
}
@media (max-width: 516px) {
  .content .cl {
    min-width: 90%;
    height: 200px;
  }
}
@media (max-width: 412px) {
  .content .cl {
    font-size: 25px;
  }
}
@media (max-width: 342px) {
  .content .cl {
    font-size: 25px;
    min-width: 160%;
    height: 200px;
  }
}
#form {
  width: 100%;
  min-height: 350px;
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#form .title {
  margin-top: 10px;
  width: 100%;
  text-align: center;
  padding: 10px;
  color: white;
  font-weight: 100;
  font-size: 30px;
}
#form form {
  padding: 10px;
  max-width: 1170px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-weight: 100;
}
#form form .input_wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
#form form .input_wrap label {
  font-size: 12px;
  padding-top: 10px;
}
#form form .input_wrap input {
  all: unset;
  width: 300px;
  height: 40px;
  padding: 7px;
  border-radius: 10px;
  border: 1px solid white;
  background: black;
  color: white;
  font-size: 20px;
  margin: 6px;
}
#form form .btn {
  margin-top: 20px;
}
#form input:focus {
  border: 1px solid yellow;
}

@media (max-width: 1186px) {
  form {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
  }
}
@media (max-width: 851px) {
  form {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 345px) {
  #form form .input_wrap {
    justify-content: center;
    align-items: center;
  }
  #form form .input_wrap input {
    width: 200px;
  }
}
.line_wrap {
  width: 100%;
  background: black;
}
.line_wrap .line:nth-child(1) {
  width: 30%;
  height: 10px;
  border-top-right-radius: 10px;
  background: #ffee31;
}
.line_wrap .line:nth-child(2) {
  width: 100%;
  height: 3px;
  background: #ffee31;
}
.line_wrap .line:nth-child(3) {
  border-bottom-left-radius: 10px;
  width: 30%;
  margin-left: 70%;
  height: 10px;
  background: #ffee31;
}

#block2 {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
#block2 .title {
  width: 100%;
  font-size: 40px;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}
#block2 .clt-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
#block2 .clt-wrap .mn_clt {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}
#block2 .clt-wrap .mn_clt .clt_info {
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border: 1px solid white;
  width: 300px;
  padding-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 130px;
  color: white;
}
#block2 .clt-wrap .mn_clt .clt {
  border: 3px solid yellow;
  position: relative;
  max-width: 30rem;
  max-height: 20rem;
  transition: 0.2s;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
#block2 .clt-wrap .mn_clt .clt .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  z-index: 100;
  background: rgba(0, 0, 0, 0.4);
  transition: 0.2s ease-in-out;
}
#block2 .clt-wrap .mn_clt .clt .img-wrap {
  width: 100%;
}
#block2 .clt-wrap .mn_clt .clt .img-wrap img {
  width: 100%;
  height: auto;
}
#block2 .clt-wrap .mn_clt .clt .social {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#block2 .clt-wrap .mn_clt .clt .social i {
  font-size: 40px;
}
#block2 .clt-wrap .mn_clt .clt .social i:hover {
  cursor: pointer;
  transform: scale(1.1);
  transition: 0.2s;
}
#block2 .clt-wrap .mn_clt .line_c {
  width: 300px;
  max-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#block2 .clt-wrap .mn_clt .line_c .col {
  width: 100%;
  height: 3px;
  background: #ffee31;
}
#block2 .clt-wrap .mn_clt:nth-child(3) {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

@media (max-width: 320px) {
  #block2 .content .clt-wrap .clt {
    width: 220px;
  }
}
#about {
  width: 100%;
  min-height: 100vh;
  background: #bebebe;
  color: black;
  justify-content: space-around;
  align-items: center;
  display: flex;
  padding: 10px;
}
#about .wrap {
  justify-content: space-between;
  align-items: center;
  display: flex;
  width: 100%;
  height: 100%;
}
#about .wrap .recency {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 40%;
  height: 100vh;
  color: white;
  background: black;
}
#about .wrap .recency .recency_wrap-1 {
  width: 100%;
  text-align: center;
}
#about .wrap .recency .recency_wrap-1 .sum {
  font-size: 40px;
  color: yellow;
}
#about .wrap .recency .recency_wrap-2 {
  text-align: center;
  width: 100%;
}
#about .wrap .recency .recency_wrap-2 .sum {
  font-size: 40px;
  color: yellow;
}
#about .wrap .text {
  min-height: 100vh;
  height: max-content;
  display: flex;
  font-size: 22px;
  justify-content: center;
  align-items: center;
  width: 60%;
  padding: 10px;
}
#about .wrap .text .content {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 10px;
}

@media (max-width: 800px) {
  #about .wrap {
    gap: 10px;
    flex-wrap: wrap;
  }
  #about .wrap .recency {
    width: 100%;
  }
  #about .wrap .text {
    width: 100%;
  }
}
.testimonials {
  background: rgba(0, 0, 0, 0.6);
  padding: 50px 20px;
  color: white;
  text-align: center;
}
.testimonials .section-title {
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}
.testimonials .testimonial-slider .swiper-slide {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid yellow;
  border-radius: 15px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.testimonials .testimonial-slider .swiper-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8);
}
.testimonials .testimonial-slider .swiper-slide .testimonial-text {
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-style: italic;
  color: white;
}
.testimonials .testimonial-slider .swiper-slide .client-info {
  display: flex;
  align-items: center;
}
.testimonials .testimonial-slider .swiper-slide .client-info .client-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid yellow;
  margin-right: 15px;
}
.testimonials .testimonial-slider .swiper-slide .client-info .client-details .client-name {
  font-size: 1.2rem;
  font-weight: bold;
  color: yellow;
}
.testimonials .testimonial-slider .swiper-slide .client-info .client-details .client-role {
  font-size: 0.9rem;
  color: white;
}
.testimonials .testimonial-slider .swiper-button-next {
  color: #b9ad26;
}
.testimonials .testimonial-slider .swiper-button-prev {
  color: #b9ad26;
}

.single-event {
  position: relative;
  padding: 80px 20px;
  background: rgba(0, 0, 0, 0.6);
  color: #f5f5f5;
  text-align: center;
  min-height: 100vh;
}
.single-event .event-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}
.single-event .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.single-event .container .event-details {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.single-event .container .event-details .img-title-wrap {
  display: flex;
  flex-direction: column;
}
.single-event .container .event-details .img-title-wrap .img {
  width: 100%;
}
.single-event .container .event-details .img-title-wrap .img img {
  width: 100%;
  height: auto;
}
.single-event .container .event-details .title-wrap {
  margin-bottom: 30px;
}
.single-event .container .event-details .title-wrap .event-title {
  font-size: 5vw;
  font-weight: bold;
  letter-spacing: 2px;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.7);
}
.single-event .container .event-details .description-wrap {
  max-width: 800px;
  margin-bottom: 40px;
}
.single-event .container .event-details .description-wrap .event-description {
  font-size: 18px;
  line-height: 1.8;
  color: #ddd;
  letter-spacing: 1px;
  padding: 0 20px;
  text-align: justify;
}
.single-event .container .event-details .event-meta {
  font-size: 16px;
  color: #f0e68c;
  font-weight: 500;
}
.single-event .container .event-details .event-meta p {
  margin: 10px 0;
  letter-spacing: 1px;
}

.default_section .arsenal_title {
  width: 100%;
  text-align: center;
  font-size: 30px;
  background: rgba(0, 0, 0, 0.229);
  color: white;
  padding: 20px;
  margin-top: 20px;
}
.default_section .arsenal_list {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
  padding: 10px;
}
.default_section .arsenal_list .post {
  width: 500px;
  max-width: 500px;
  height: 500px;
  min-height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  align-items: center;
  background: black;
  padding: 10px;
  transition: 0.2s;
}
.default_section .arsenal_list .post .img-wrap {
  width: 100%;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.default_section .arsenal_list .post .img-wrap img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}
.default_section .arsenal_list .post .post__link {
  padding: 5px;
  background: #b9ad26;
  color: black;
  transition: 0.2s;
}
.default_section .arsenal_list .post .setting_wrapper {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.default_section .arsenal_list .post .setting_wrapper .post__link:hover {
  padding: 5px;
  background: yellow;
  color: black;
}
.default_section .arsenal_list .post:hover {
  background: #a6a6a6;
  color: black;
}

@media (max-width: 579px) {
  .post__description {
    width: 144px;
  }
}
.single__post {
  width: 100%;
  height: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.single__post .single__post-img {
  padding: 10px;
  width: 50%;
}
.single__post .single__post-img img {
  width: 100%;
  height: auto;
}
.single__post .single__post-title {
  font-size: 30px;
  font-weight: bold;
  width: 100%;
  height: max-content;
  padding: 20px;
  background: #ffee31;
  color: black;
  word-wrap: break-word;
}
@media (max-width: 724px) {
  .single__post .single__post-title {
    top: 10%;
  }
}
.single__post .single__post-description {
  padding: 10px;
  width: 100%;
  text-align: left;
  word-wrap: break-word;
}
.single__post .single__post-date {
  padding: 10px;
}

.settings_menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  z-index: 100;
  overflow-x: hidden;
  background: black;
  transition: 0.3s;
}
.settings_menu a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}
.settings_menu a:hover {
  transition: 0.2s;
  color: white;
}
.settings_menu .close_menu {
  color: black;
  border: none;
  background: yellow;
  padding: 14px;
}

#block3 {
  width: 100%;
  min-height: 100vh;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
}
#block3 .slider {
  position: relative;
  width: 90%;
  overflow: hidden;
  margin: 0 20px;
}
#block3 .slider .title {
  width: 100%;
  text-align: center;
  font-size: 50px;
  margin-top: 20px;
}
#block3 .slider .slider__line {
  margin-top: 30px;
  background: black;
  display: flex;
  height: 800px;
  max-height: 800px;
  overflow: hidden;
  align-items: center;
  transition: all 1s;
}
#block3 .slider .slid {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid yellow;
  font-size: 30px;
  color: yellow;
  transition: 0.2s;
  border-radius: 50%;
}
#block3 .slider .slid:hover {
  background: #f3df00;
  color: black;
}
#block3 .slider .slider__btn-prev {
  position: absolute;
  left: 2%;
  top: 50%;
  transform: translateY(-50%);
  border: none;
}
#block3 .slider .slider__btn-next {
  position: absolute;
  right: 2%;
  top: 50%;
  transform: translateY(-50%);
  border: none;
}
#block3 .slider .slider__wrapper {
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  column-gap: 10px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
#block3 .slider .slider__wrapper .slider__dot {
  width: 16px;
  height: 16px;
  border: 1px solid #b9ad26;
}
#block3 .slider .slider__wrapper .slider__dot:hover {
  background: #ffee31;
}
#block3 .slider .slider__wrapper .active-dot {
  background: #ffee31;
}

@media (max-width: 557px) {
  #block3 .slider .slider__line {
    height: 300px;
    max-height: 300px;
  }
}
@media (max-width: 350px) {
  #block3 .slider .slider__line {
    height: 200px;
    max-height: 200px;
  }
}
.contact-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 20px;
  background-color: #000;
  color: #fff;
}
.contact-section .map-container {
  margin-bottom: 30px;
  width: 100%;
  height: auto;
  border: 3px solid #f5c518;
}
.contact-section .contact-details-container {
  width: 100%;
  max-width: 1200px;
  padding: 20px;
  background: linear-gradient(145deg, #333, #111);
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  text-align: center;
}
.contact-section .contact-details-container .contact-heading {
  margin-bottom: 40px;
}
.contact-section .contact-details-container .contact-heading h2 {
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
  text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.7);
}
.contact-section .contact-details-container .contact-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}
.contact-section .contact-details-container .contact-grid .contact-item {
  background: #111;
  padding: 20px;
  border: 2px solid #f5c518;
  border-radius: 10px;
  width: 100%;
  max-width: 300px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  text-align: center;
}
.contact-section .contact-details-container .contact-grid .contact-item:hover {
  transform: translateY(-10px);
}
.contact-section .contact-details-container .contact-grid .contact-item i {
  font-size: 2.5rem;
  color: #f5c518;
  margin-bottom: 10px;
}
.contact-section .contact-details-container .contact-grid .contact-item p {
  font-size: 0.9rem;
  color: #fff;
}

@media (max-width: 768px) {
  .contact-section .contact-grid {
    flex-direction: column;
    align-items: center;
  }
  .contact-section .contact-item {
    max-width: 90%;
  }
}
@media (max-width: 325px) {
  .contact-section .contact-grid {
    flex-direction: column;
    align-items: center;
  }
  .contact-section .contact-grid .contact-item {
    max-width: 90%;
  }
  .contact-section .contact-grid .contact-item p {
    font-size: 15px;
  }
}
@media (max-width: 883px) {
  #information .info_block {
    width: 80%;
  }
  #information .info_block .info_item {
    font-size: 10px;
  }
}
.vauchers_wrap {
  display: flex;
}

#opinions {
  width: 100%;
  height: 500px;
}

.vouchers_wrap {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.vouchers_wrap .product {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px;
}
.vouchers_wrap .product img {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}
.vouchers_wrap .product .checkout-btn {
  background-color: #f4c20d;
  color: black;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.vouchers_wrap .product .checkout-btn:hover {
  background-color: #ffd700;
}
.vouchers_wrap #form {
  display: none;
}
.vouchers_wrap #form .modal_window {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.vouchers_wrap #form .modal_window .input_wrap {
  margin-bottom: 20px;
}
.vouchers_wrap #form .modal_window .input_wrap input {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 5px;
  border: 1px solid #ccc;
}
.vouchers_wrap #form .modal_window .btn {
  background-color: #f4c20d;
  color: black;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
  transition: background-color 0.3s;
}
.vouchers_wrap #form .modal_window .btn:hover {
  background-color: #ffd700;
}
.vouchers_wrap #form .loader-wrap, .vouchers_wrap #form .success-wrap {
  display: none;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.vouchers_wrap #form .loader {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left-color: #f4c20d;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite;
}
.vouchers_wrap #form .success-wrap {
  font-size: 2rem;
  color: #28a745;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.back-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #2d2d2d;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 1px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.back-link:hover {
  background-color: #ffc107;
  color: #000;
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.line_links-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
  text-align: center;
}
.line_links-wrap .link_come {
  flex: 1;
  padding: 15px 25px;
  background-color: #4a4a4a;
  color: #fff;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 1.5px;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}
.line_links-wrap .link_come:hover {
  background-color: #ffc107;
  color: #000;
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

@media (max-width: 536px) {
  .line_links-wrap {
    flex-direction: column;
  }
}
.info_wrap {
  width: 100%;
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 50px;
  gap: 30px;
}

.tr {
  width: 100%;
  min-height: 40rem;
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 6px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  border: 1px solid #96964f;
  cursor: pointer;
  transition: 0.3s;
}
.tr:hover .info {
  transform: scale(1.01);
}
.tr .tr_title {
  text-align: center;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  font-size: 25px;
  color: white;
  padding: 10px;
  border-bottom: 2px solid #b9ad26;
}
.tr .info {
  width: 100%;
  text-align: center;
  transition: 0.3s;
}
.tr .info .text {
  font-size: 18px;
  color: #e0e0e0;
  padding: 10px;
  background: rgba(0, 0, 0, 0.58);
  border-radius: 10px;
  margin-bottom: 15px;
  text-align: start;
}
.tr .info .details {
  display: flex;
  justify-content: space-around;
  gap: 15px;
  width: 100%;
}
.tr .info .details .courses {
  margin-top: 40px;
  text-align: center;
}
.tr .info .details .courses .courses-title {
  font-size: 28px;
  font-weight: 900;
  color: #ffee31;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
.tr .info .details .courses .courses-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ffee31, #fff);
}
.tr .info .details .courses .courses-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
.tr .info .details .courses .course-card {
  width: 280px;
  background: linear-gradient(135deg, #222, #333);
  border: 2px solid rgba(255, 238, 49, 0.5);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 4px 15px rgba(255, 238, 49, 0.3);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transform: perspective(600px) rotateY(0deg);
  transition: transform 0.6s ease, box-shadow 0.3s ease;
}
.tr .info .details .courses .course-card:hover {
  transform: perspective(600px) rotateY(10deg) translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 238, 49, 0.6), 0 10px 20px rgba(0, 0, 0, 0.4);
}
.tr .info .details .courses .course-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 238, 49, 0.1), transparent);
  z-index: 1;
  transition: background 0.5s ease;
}
.tr .info .details .courses .course-card:hover::before {
  background: radial-gradient(circle, rgba(255, 238, 49, 0.2), transparent);
}
.tr .info .details .courses .course-card .course-content {
  padding: 25px;
  position: relative;
  z-index: 2;
  text-align: center;
}
.tr .info .details .courses .course-card .course-title {
  font-size: 22px;
  font-weight: bold;
  color: #ffee31;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 1px 1px 8px rgba(255, 255, 255, 0.4), 1px 1px 10px rgba(255, 238, 49, 0.6);
  position: relative;
}
.tr .info .details .courses .course-card .course-description {
  font-size: 16px;
  line-height: 1.6;
  text-align: justify;
  padding: 10px 0;
}
.tr .info .details .courses .course-card .course-description strong {
  color: #ffee31;
  font-weight: 600;
}
.tr .info .details .courses .course-card .helper {
  color: yellow;
}
@media (max-width: 768px) {
  .tr .info .details .courses .courses-container {
    flex-direction: column;
    align-items: center;
  }
  .tr .info .details .courses .course-card {
    width: 90%;
  }
}
.tr .info .details div {
  flex: 1;
  padding: 10px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  transition: background 0.3s;
}
.tr .info .details div:hover {
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}
.tr .info .details .guns,
.tr .info .details .time {
  font-size: 18px;
  color: #b9ad26;
  background: rgba(0, 0, 0, 0.6);
}
.tr .info .details .price {
  font-size: 20px;
  border: 2px solid rgba(255, 215, 0, 0.8);
  color: #f0e68c;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  padding: 15px;
}

@media (max-width: 599px) {
  .details {
    flex-direction: column;
    /* Меняем направление на колонку при уменьшении экрана */
  }
  .tr {
    height: auto;
    /* Чтобы контент корректно адаптировался */
  }
}
.btn {
  transition: 0.3s ease-in;
}
.btn:hover {
  background: linear-gradient(rgb(189, 165, 5), rgb(234, 232, 153));
}

.intro_text {
  text-align: center;
  margin: 20px 0;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.8);
  /* Белый фон с прозрачностью */
  border-radius: 10px;
  /* Скругление углов */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  /* Тень для глубины */
}

.intro_text h2 {
  font-size: 24px;
  /* Размер заголовка */
  color: #333;
  /* Цвет заголовка */
}

.intro_text p {
  font-size: 16px;
  /* Размер текста */
  color: #555;
  /* Цвет текста */
  line-height: 1.5;
  /* Междустрочный интервал */
}

body {
  background-image: url("../images/wall.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  padding: 0;
  margin: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

#contact {
  padding: 100px 0;
  text-align: center;
}
#contact .title {
  font-size: 40px;
  font-weight: bold;
  color: yellow;
  margin-bottom: 50px;
}
#contact .contact-form {
  background: rgba(0, 0, 0, 0.7);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}
#contact .contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#contact .contact-form form .input_wrap label {
  font-size: 18px;
  color: yellow;
}
#contact .contact-form form .input_wrap input {
  padding: 15px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  width: 100%;
  transition: all 0.3s ease;
}
#contact .contact-form form .input_wrap input:focus {
  outline: none;
  box-shadow: 0 0 10px yellow;
}
#contact .contact-form form .btn {
  padding: 15px;
  background-color: yellow;
  color: black;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
#contact .contact-form form .btn:hover {
  background-color: #fff;
  color: yellow;
}

#contacts {
  padding: 100px 0;
}
#contacts .contacts_wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}
#contacts .contacts_wrapper .contact_info {
  flex: 1;
  color: #fff;
  margin-right: 30px;
}
#contacts .contacts_wrapper .contact_info h2 {
  font-size: 36px;
  color: yellow;
  margin-bottom: 30px;
}
#contacts .contacts_wrapper .contact_info .info_item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
#contacts .contacts_wrapper .contact_info .info_item i {
  font-size: 24px;
  color: yellow;
  margin-right: 15px;
}
#contacts .contacts_wrapper .contact_info .info_item p {
  font-size: 18px;
}
#contacts .contacts_wrapper .map_container {
  flex: 1;
}
#contacts .contacts_wrapper .map_container iframe {
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

@media (max-width: 770px) {
  .contacts_wrapper {
    flex-direction: column;
    gap: 20px;
  }
}

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