@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Jaro:opsz@6..72&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Tomorrow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Tomorrow", sans-serif;
}

body {
  background-color: #fff;
}

body.overflow {
  overflow: hidden;
}

ul {
  list-style: none;
  text-decoration: none;
}

ul, li, p, h1, h2, h3, h4, h5, h6 {
  padding: 0;
  margin: 0;
}

a {
  color: #000;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
}

input,
button {
  font: inherit;
}

header *,
footer * {
  box-sizing: border-box;
}

.container {
  max-width: 1461px;
  padding: 0 15px;
  margin: 0 auto;
}

h1 {
  font-size: 64px;
  font-weight: inherit;
}

h2 {
  font-size: 32px;
  font-weight: inherit;
}

h3 {
  font-size: 24px;
  font-weight: inherit;
}

h4 {
  font-size: 20px;
  font-weight: inherit;
}

p {
  font-size: 16px;
  font-weight: inherit;
}

@media (max-width: 640px) {
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 20px;
  }
  h4 {
    font-size: 20px;
  }
}
.header {
  background-color: #409cff;
  padding: 10px 0;
  border-bottom: 2px solid #fff;
}
.header__wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 0px 20px;
  border-radius: 12px;
  background-color: #409cff;
}
.header__box {
  display: flex;
  align-items: center;
}
.header__box .menu-icon {
  display: none;
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
}
.header__box .menu-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: #111;
  left: 0;
  transition: all 0.3s ease;
}
.header__box .menu-icon span:nth-child(1) {
  top: 0;
}
.header__box .menu-icon span:nth-child(2) {
  top: 9px;
}
.header__box .menu-icon span:nth-child(3) {
  top: 18px;
}
.header__box .menu-icon.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}
.header__box .menu-icon.open span:nth-child(2) {
  opacity: 0;
}
.header__box .menu-icon.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 9px;
}
.header__box .header__list {
  display: flex;
  gap: 10px;
}
.header__box .header__list-item a {
  position: relative;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 10px;
  background-color: #1736ff;
  border-radius: 10px;
  transition: 0.3s ease;
}
.header__box .header__list-item a:hover {
  background-color: rgb(0, 30.3318965517, 227);
}
.header__box .header__list-item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: transparent;
  transition: 0.3s ease;
}
.header__box .header__list-item a:hover::after {
  width: 100%;
}
@media (max-width: 768px) {
  .header__box .header__list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #409cff;
    flex-direction: column;
  }
}
.header__box .header__list.active {
  display: flex;
}
@media (max-width: 768px) {
  .header__box .menu-icon {
    display: block;
  }
  .header__box .header__list {
    display: none;
    margin: 0 auto;
    width: calc(100% - 60px);
    padding: 20px 20px;
    border-radius: 2px;
  }
}
.header__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 4px;
  gap: 20px;
  border-radius: 4px;
}
.header__logo img {
  height: 52px;
  padding: 4px;
  border-radius: 4px;
}
.header__logo-name {
  font-size: 20px;
  padding: 3px;
  border-radius: 4px;
}

.social {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  padding: 10px;
  border-top: 1px solid #060606;
  background-color: rgba(2, 130, 169, 0.768627451);
}
.social__links {
  display: flex;
  gap: 20px;
}
.social__links a {
  color: #060606;
}

.hero {
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  overflow: hidden;
}
.hero__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 20px;
  min-height: 600px;
  background-color: rgba(2, 130, 169, 0.768627451);
  gap: 20px;
}
@media screen and (max-width: 900px) {
  .hero__wrapper {
    flex-direction: column;
  }
}
.hero__image {
  max-width: 600px;
}
.hero__image img {
  border-radius: 30px;
}
.hero__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 600px;
}
.hero__title {
  text-align: start;
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(2, 130, 169, 0.768627451);
}
.hero__subtitle {
  text-align: start;
  font-size: 20px;
  color: #fff;
  margin-top: 10px;
}
.hero__button {
  margin-top: 30px;
  padding: 8px 10px;
  background-color: #212121;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 20px;
}
.hero__button:hover {
  background-color: rgb(7.5, 7.5, 7.5);
}

.feature {
  padding: 64px 10px;
}
.feature__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.feature__title {
  color: #060606;
}
.feature__list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 800px;
  gap: 30px;
}
.feature__list-item {
  min-width: 250px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: 2px;
  justify-content: center;
  align-items: center;
  background-color: #409cff;
  gap: 20px;
  transition: 0.3s;
}
.feature__list-item:hover {
  transform: scale(1.02);
}
.feature__list-item-image {
  width: 60px;
  border-radius: 2px;
  background-color: rgba(2, 130, 169, 0.768627451);
  padding: 8px;
}
.feature__list-item-title {
  font-size: 20px;
  color: #060606;
}
.feature__list-item-description {
  font-size: 16px;
  max-width: 300px;
  text-align: center;
  background-color: #fff;
  padding: 10px;
  border-radius: 2px;
}
.feature__list-item-button {
  padding: 8px 12px;
  border-radius: 4px;
  background-color: #212121;
  transition: 0.3s;
}
.feature__list-item-button:hover {
  background-color: rgb(7.5, 7.5, 7.5);
}

.team__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  padding: 30px 0px;
}
.team__title {
  color: #060606;
}
.team__members {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}
.team__member {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  background-color: #409cff;
  max-width: 300px;
  padding: 10px;
  border-radius: 10px;
}
.team__member-image {
  overflow: hidden;
  height: 120px;
  border-radius: 2px;
  border: 0px solid rgba(2, 130, 169, 0.768627451);
  border-radius: 8px;
}
.team__member-name {
  background-color: rgba(2, 130, 169, 0.768627451);
  color: #060606;
  padding: 5px;
  border-radius: 2px;
}
.team__member-position {
  color: #111;
  background-color: rgba(2, 130, 169, 0.768627451);
  padding: 4px;
  text-align: center;
  border-radius: 2px;
}
.team__member-bio {
  color: #111;
  text-align: center;
}

.contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-direction: column;
  padding: 40px 20px;
}
.contact__title {
  color: #060606;
}
.contact__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  gap: 15px;
  background-color: #409cff;
  padding: 10px;
  border-radius: 4px;
}
.contact__email {
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #fff;
  gap: 10px;
  color: #060606;
}
.contact__email span {
  color: #111;
}
.contact__tel {
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #fff;
  color: #060606;
}
.contact__tel span {
  color: #111;
}
.contact__address {
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #fff;
  color: #060606;
}
.contact__address span {
  color: #111;
}

.kukuruza__page {
  padding: 2rem 0;
  background-color: #ffffff;
}
.kukuruza__page .p-offer__border {
  border: 1px solid #dddddd;
  padding: 2rem;
  border-radius: 8px;
  background-color: #fafafa;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.kukuruza__page .p-offer__wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
.kukuruza__page .p-offer__wrapper .p-offer__headline {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #2c3e50;
}
.kukuruza__page .p-offer__wrapper .p-offer__subtitle {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #333333;
  line-height: 1.8;
}
.kukuruza__page .p-offer__wrapper .p-offer__subtitle a {
  color: #3498db;
  transition: color 0.3s ease-in-out;
}
.kukuruza__page .p-offer__wrapper .p-offer__subtitle a:hover, .kukuruza__page .p-offer__wrapper .p-offer__subtitle a:focus {
  color: rgb(33.1380753138, 125.1882845188, 186.8619246862);
}
.kukuruza__page .p-offer__wrapper .p-offer__title {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #2c3e50;
  font-weight: bold;
}
.kukuruza__page .p-offer__wrapper .p-offer__list {
  margin-bottom: 1rem;
}
.kukuruza__page .p-offer__wrapper .p-offer__list-descr {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #333333;
}
.kukuruza__page .p-offer__wrapper .p-offer__list-item {
  margin-left: 1.5rem;
  position: relative;
  padding-left: 1rem;
  font-size: 1rem;
  color: #333333;
}
.kukuruza__page .p-offer__wrapper .p-offer__list-item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #3498db;
}
.kukuruza__page .p-offer__wrapper .p-offer__button {
  text-align: center;
  margin-top: 2rem;
}
.kukuruza__page .p-offer__wrapper .p-offer__button .p-offer__btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #3498db;
  color: #ffffff;
  border-radius: 4px;
  font-size: 1rem;
  transition: background-color 0.3s ease-in-out;
}
.kukuruza__page .p-offer__wrapper .p-offer__button .p-offer__btn:hover, .kukuruza__page .p-offer__wrapper .p-offer__button .p-offer__btn:focus {
  background-color: rgb(33.1380753138, 125.1882845188, 186.8619246862);
}

@media (max-width: 767px) {
  .kukuruza__page .p-offer .p-offer__wrapper {
    padding: 1rem;
  }
  .kukuruza__page .p-offer .p-offer__wrapper .p-offer__headline {
    font-size: 2rem;
  }
  .kukuruza__page .p-offer .p-offer__wrapper .p-offer__title {
    font-size: 1.25rem;
  }
  .kukuruza__page .p-offer .p-offer__wrapper .p-offer__subtitle,
  .kukuruza__page .p-offer .p-offer__wrapper .p-offer__list-descr,
  .kukuruza__page .p-offer .p-offer__wrapper .p-offer__list-item {
    font-size: 0.9rem;
  }
  .kukuruza__page .p-offer .p-offer__wrapper .p-offer__btn {
    width: 100%;
    padding: 0.75rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .kukuruza__page .p-offer .p-offer__wrapper {
    padding: 1.5rem;
  }
  .kukuruza__page .p-offer .p-offer__wrapper .p-offer__headline {
    font-size: 2.2rem;
  }
  .kukuruza__page .p-offer .p-offer__wrapper .p-offer__title {
    font-size: 1.3rem;
  }
  .kukuruza__page .p-offer .p-offer__wrapper .p-offer__subtitle,
  .kukuruza__page .p-offer .p-offer__wrapper .p-offer__list-descr,
  .kukuruza__page .p-offer .p-offer__wrapper .p-offer__list-item {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .kukuruza__page .p-offer .p-offer__wrapper {
    padding: 2rem;
  }
  .kukuruza__page .p-offer .p-offer__wrapper .p-offer__headline {
    font-size: 2.5rem;
  }
  .kukuruza__page .p-offer .p-offer__wrapper .p-offer__title {
    font-size: 1.5rem;
  }
  .kukuruza__page .p-offer .p-offer__wrapper .p-offer__subtitle,
  .kukuruza__page .p-offer .p-offer__wrapper .p-offer__list-descr,
  .kukuruza__page .p-offer .p-offer__wrapper .p-offer__list-item {
    font-size: 1rem;
  }
}

.terms {
  padding: 2rem 0;
  background-color: #ffffff;
}
.terms__border {
  border: 1px solid #dddddd;
  padding: 2rem;
  border-radius: 8px;
  background-color: #f9f9f9;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.terms__wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
.terms__wrapper .terms__headline {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #212529;
}
.terms__wrapper .terms__subtitle {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #555555;
  line-height: 1.8;
}
.terms__wrapper .terms__subtitle span {
  font-weight: bold;
  margin-right: 0.5rem;
}
.terms__wrapper .terms__subtitle a {
  color: #007BFF;
  transition: color 0.3s ease-in-out;
}
.terms__wrapper .terms__subtitle a:hover, .terms__wrapper .terms__subtitle a:focus {
  color: #0056b3;
}
.terms__wrapper .terms__title {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #212529;
  font-weight: bold;
}
.terms__wrapper .terms__button {
  text-align: center;
  margin-top: 2rem;
}
.terms__wrapper .terms__button .terms__btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #007BFF;
  color: #ffffff;
  border-radius: 4px;
  font-size: 1rem;
  transition: background-color 0.3s ease-in-out;
}
.terms__wrapper .terms__button .terms__btn:hover, .terms__wrapper .terms__button .terms__btn:focus {
  background-color: #0056b3;
}

@media (max-width: 767px) {
  .terms__border .terms__wrapper {
    padding: 1rem;
  }
  .terms__border .terms__wrapper .terms__headline {
    font-size: 2rem;
  }
  .terms__border .terms__wrapper .terms__title {
    font-size: 1.25rem;
  }
  .terms__border .terms__wrapper .terms__subtitle {
    font-size: 0.9rem;
  }
  .terms__border .terms__wrapper .terms__subtitle span {
    display: inline-block;
    margin-right: 0.3rem;
  }
  .terms__border .terms__wrapper .terms__button .terms__btn {
    width: 100%;
    padding: 0.75rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .terms__border .terms__wrapper {
    padding: 1.5rem;
  }
  .terms__border .terms__wrapper .terms__headline {
    font-size: 2.2rem;
  }
  .terms__border .terms__wrapper .terms__title {
    font-size: 1.3rem;
  }
  .terms__border .terms__wrapper .terms__subtitle {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .terms__border .terms__wrapper {
    padding: 2rem;
  }
  .terms__border .terms__wrapper .terms__headline {
    font-size: 2.5rem;
  }
  .terms__border .terms__wrapper .terms__title {
    font-size: 1.5rem;
  }
  .terms__border .terms__wrapper .terms__subtitle {
    font-size: 1rem;
  }
}

.about-section {
  background-color: rgba(2, 130, 169, 0.768627451);
  color: #fff;
  padding: 60px 20px;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}
.about-section__title {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}
.about-section__content {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.products {
  padding: 64px 10px;
}
.products__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.products__title {
  color: #060606;
}
.products__list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}
.products__list-item {
  flex: 1 1 calc(25% - 10px);
  min-width: 250px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: 2px;
  justify-content: center;
  align-items: center;
  background-color: #409cff;
  gap: 20px;
  transition: 0.3s;
  text-align: center;
  min-height: 300px;
}
.products__list-item:hover {
  transform: scale(1.02);
}
.products__list-item-image {
  width: 200px;
  border-radius: 4px;
  border: 2px solid #212121;
  padding: 8px;
  max-height: 300px;
}
.products__list-item-title {
  font-size: 20px;
  color: #060606;
}
.products__list-item-description {
  font-size: 16px;
  max-width: 200px;
  text-align: center;
  background-color: #720fa7;
  padding: 10px;
  border-radius: 2px;
}
.products__list-item-button {
  padding: 8px 12px;
  border-radius: 4px;
  background-color: #212121;
  transition: 0.3s;
}
.products__list-item-button:hover {
  background-color: rgb(7.5, 7.5, 7.5);
}

.productSecond {
  padding: 80px 20px;
  background-color: #fff;
  font-family: "Tomorrow", sans-serif;
  transition: background-color 0.3s ease-in-out;
}
.productSecond__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.productSecond__title {
  color: #060606;
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease-in-out;
}
.productSecond__title::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 4px;
  background-color: transparent;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.3s ease-in-out;
}
.productSecond__title:hover::after {
  width: 70px;
}
.productSecond__list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}
.productSecond__list-item {
  background-color: #409cff;
  border: 1px solid #050505;
  border-radius: 8px;
  padding: 25px;
  width: calc(25% - 40px);
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}
.productSecond__list-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  background-color: rgb(89.5, 169.2172774869, 255);
}
.productSecond__list-item:nth-child(even) {
  animation: slideInLeft 0.5s ease-out forwards;
}
.productSecond__list-item:nth-child(odd) {
  animation: slideInRight 0.5s ease-out forwards;
}
.productSecond__list-item-image {
  max-width: 200px;
  width: 220px;
  height: auto;
  border-radius: 10px;
  border: 2px solid #212121;
  padding: 10px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.productSecond__list-item-image:hover {
  transform: scale(1.05) rotate(2deg);
}
.productSecond__list-item-title {
  font-size: 24px;
  color: #060606;
  margin: 15px 0 10px 0;
  font-family: "Tomorrow", sans-serif;
}
.productSecond__list-item-description {
  font-size: 16px;
  max-width: 220px;
  text-align: center;
  background-color: #fff;
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 15px;
  transition: background-color 0.3s ease;
}
.productSecond__list-item-description:hover {
  background-color: rgb(242.25, 242.25, 242.25);
}
.productSecond__list-item-price {
  font-size: 18px;
  color: #111;
  font-weight: bold;
  margin-bottom: 15px;
}
.productSecond__list-item-button {
  padding: 10px 20px;
  border-radius: 20px;
  background-color: #212121;
  color: #fff;
  border: none;
  font-size: 16px;
  font-family: "Jaro", sans-serif;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.productSecond__list-item-button:hover {
  background-color: rgb(0, 30.3318965517, 227);
  transform: scale(1.05);
}
.productSecond__list-item-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(33, 33, 33, 0.5);
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media screen and (max-width: 768px) {
  .productSecond__list {
    flex-direction: column;
    align-items: center;
  }
  .productSecond__list-item {
    width: 100%;
    max-width: 500px;
  }
  .productSecond__title {
    font-size: 28px;
  }
}

.contact-form {
  background-color: #f5f7fa;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  margin: 50px auto;
}
.contact-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.contact-form .form-group label {
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}
.contact-form .form-group .form-control {
  padding: 12px 15px;
  border: 1px solid #dfe3e8;
  border-radius: 5px;
  background-color: #ffffff;
  font-size: 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-form .form-group .form-control:focus {
  border-color: #409cff;
  box-shadow: 0 0 5px rgba(64, 156, 255, 0.5);
  outline: none;
}
.contact-form .form-group .form-control::placeholder {
  color: #aab2bd;
}
.contact-form .form-group textarea.form-control {
  resize: vertical;
  min-height: 100px;
}
.contact-form .btn {
  width: 100%;
  padding: 15px;
  background-color: #409cff;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.contact-form .btn:hover {
  background-color: rgb(13, 129.5654450262, 255);
  transform: translateY(-2px);
}
.contact-form .btn:active {
  transform: translateY(0);
}

@media (max-width: 600px) {
  .contact-form {
    padding: 20px;
    margin: 20px;
  }
}
.gallery {
  background-color: #ffffff;
  padding: 60px 20px;
}
.gallery__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.gallery__title {
  font-family: "Tomorrow", sans-serif;
  color: #111;
  font-size: 2.5rem;
  margin-bottom: 40px;
  position: relative;
}
.gallery__title::after {
  content: "";
  width: 60px;
  height: 4px;
  background-color: #111;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}
.gallery__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 0;
  list-style: none;
}
.gallery__list-item {
  min-width: 300px;
  border-radius: 8px;
  max-width: 30%;
  background-color: #ffffff;
  border: 3px solid #000000;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 2px 4px 6px rgba(43, 43, 43, 0.761);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column-reverse;
}
.gallery__list-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}
.gallery__list-item-box {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.gallery__list-item img {
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery__list-item-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.gallery__list-item-title {
  color: #111;
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 700;
  transition: color 0.3s ease;
}
.gallery__list-item-title:hover {
  color: black;
}
.gallery__list-item-description {
  color: #ffffff;
  font-size: 1rem;
  background-color: rgba(2, 130, 169, 0.768627451);
  padding: 10px;
  flex-grow: 1;
}

.slider-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  margin: 0 auto;
  padding: 20px;
  font-family: "Montserrat", sans-serif;
}
.slider-section .swiper-container {
  height: 100%;
  position: relative;
  overflow: hidden;
  margin: auto;
}
.slider-section .swiper-wrapper {
  display: flex;
}
.slider-section .swiper-slide {
  position: relative;
  display: flex;
  min-height: 100%;
  gap: 10px;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 20px;
  overflow: hidden;
}
.slider-section .swiper-slide img {
  max-width: 500px;
  border-radius: 20px;
  object-fit: cover;
  filter: brightness(0.8) saturate(1.2);
  transition: filter 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.slider-section .swiper-slide:hover img {
  filter: brightness(1) saturate(1.4);
  transform: scale(1.02);
}
.slider-section .swiper-slide .slide-content {
  position: relative;
  text-align: center;
  max-width: 80%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  backdrop-filter: blur(5px);
}
.slider-section .swiper-slide .slide-content .slide-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}
.slider-section .swiper-slide .slide-content .slide-description {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #ccc;
}
.slider-section .swiper-pagination {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  z-index: 10;
}
.slider-section .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #555;
  opacity: 0.7;
  margin: 0 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.slider-section .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff;
  transform: scale(1.2);
  opacity: 1;
}
.slider-section .swiper-pagination .swiper-pagination-bullet:hover {
  background: #fff;
  cursor: pointer;
}
.slider-section .swiper-button-prev,
.slider-section .swiper-button-next {
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border-radius: 50%;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  transition: background 0.3s ease, color 0.3s ease;
}
.slider-section .swiper-button-prev:hover,
.slider-section .swiper-button-next:hover {
  background: rgba(255, 255, 255, 0.7);
  color: #000;
}
.slider-section .swiper-button-prev:after,
.slider-section .swiper-button-next:after {
  font-size: 1.2rem;
}
.slider-section .swiper-button-prev {
  left: 30px;
}
.slider-section .swiper-button-next {
  right: 30px;
}

body {
  font-family: "Tomorrow", sans-serif;
  color: #111;
}