:root {
  --color1: #ED1C25;
  --color2: #041E42;
  --color3: #F8F7F0;
}

body {
  background-color: #fff;
  font-family: "Open Sans", sans-serif;
}

html,
body {
  height: 100%;
  margin: 0;
}

.page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

* {
  background-repeat: no-repeat;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 30px;
}
@media (max-width: 992px) {
  .container {
    width: 100%;
    padding: 0 15px;
  }
}

.toplogo {
  color: var(--color2);
  font-size: 32px !important;
  font-weight: 700;
}
.toplogo--white {
  color: #fff;
}

section {
  padding: clamp(40px, 8vw, 75px) 0;
}

strong {
  font-weight: 600;
}

p {
  line-height: 140%;
}

.m-top {
  display: -ms-grid;
  display: grid;
  gap: 24px;
  margin-bottom: 44px;
}

.title-xl {
  font-size: clamp(26px, 4.533vw, 42px);
  font-weight: 700;
  color: var(--color2);
  position: relative;
}
.title-xl::before {
  display: block;
  content: "";
  width: clamp(150px, 29.333vw, 300px);
  height: 3px;
  position: absolute;
  left: 0;
  top: -20px;
  background-color: var(--color1);
}
.title-xl--white {
  color: #fff;
}

.ullist {
  display: -ms-grid;
  display: grid;
  gap: 16px;
}
.ullist li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.ullist li::before {
  width: 24px;
  height: 24px;
  display: block;
  content: "";
  position: relative;
  background-repeat: no-repeat;
  background-size: 100%;
  background-image: url(../img/icons/check-all.svg);
}

.heroblock {
  background-image: url(../img/herimg.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
  height: clamp(500px, 93.333vw, 800px);
  min-height: clamp(500px, 93.333vw, 800px);
  padding: 50px 0;
}
.heroblock:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  opacity: 0.4;
}
.heroblock .container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 3;
  gap: 44px;
}
.heroblock h1 {
  color: #fff;
  font-size: clamp(30px, 6vw, 70px);
  font-weight: 700;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}
.heroblock p {
  color: #fff;
  font-size: clamp(20px, 3.333vw, 30px);
  font-weight: 500;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.sc-sc1 {
  padding-bottom: 70px;
  margin-top: -100px;
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  .sc-sc1 {
    margin-top: -30px;
  }
}
.sc-sc1__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr 24px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background-color: #fff;
  padding: 24px;
}
@media (max-width: 768px) {
  .sc-sc1__list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.sc-sc1 .sc-sc1-item {
  padding: 30px 30px 60px 30px;
  background-color: #eff3f6;
  border: 1px solid #dcdde1;
  min-height: 250px;
}
.sc-sc1 .sc-sc1-item svg {
  width: 42px;
  height: 42px;
}
.sc-sc1 .sc-sc1-item svg path {
  fill: #041e42;
}
.sc-sc1 .sc-sc1-item h4 {
  color: #041e42;
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 24px;
}
.sc-sc1 .sc-sc1-item P {
  font-size: 18px;
}

.project__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .project__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .project__list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.project .project-item {
  height: 450px;
  overflow: hidden;
}
.project .project-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.project .project-item:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.mainservic__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 992px) {
  .mainservic__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .mainservic__list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.mainservic .mainservic-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 24px;
  border: 1px solid #dcdde1;
  text-align: center;
  position: relative;
  background-color: #eff3f6;
  min-height: 300px;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.mainservic .mainservic-item h5 {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 20px;
  color: #041e42;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.mainservic .mainservic-item p {
  font-size: 18px;
  line-height: 160%;
}
.mainservic .mainservic-item:hover {
  background-color: #46c2ca;
  -webkit-box-shadow: 0 10px 18px #eee;
          box-shadow: 0 10px 18px #eee;
}
.mainservic .mainservic-item:hover h5 {
  color: #fff;
}

.sc-sc1-v2 {
  margin-top: auto;
  margin-bottom: -160px;
}
.sc-sc1-v2 .sc-sc1-item {
  min-height: 80px;
}

.txt-i-sec__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media (max-width: 992px) {
  .txt-i-sec__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.txt-i-sec__one {
  width: 100%;
  min-width: 400px;
  max-width: 400px;
}
@media (max-width: 992px) {
  .txt-i-sec__one {
    min-width: 100%;
    max-width: 100%;
  }
}
.txt-i-sec__one h3 {
  font-size: 28px;
  font-weight: 600;
  line-height: 130%;
}
.txt-i-sec__main p {
  margin-bottom: 20px;
}

.blocktext h2 {
  margin-bottom: 30px;
  font-size: clamp(26px, 4.533vw, 38px);
  font-weight: 700;
}
.blocktext h3 {
  margin-bottom: 30px;
  font-size: clamp(26px, 4.533vw, 32px);
  font-weight: 700;
}
.blocktext p {
  font-size: 18px;
  line-height: 130%;
  margin-bottom: 20px;
}
.blocktext ul {
  list-style-type: disc;
  padding-left: 35px;
  margin-bottom: 30px;
}
.blocktext ul li {
  margin-bottom: 12px;
}
.blocktext img {
  margin: 30px 0;
  width: 100%;
  max-width: 900px;
}

.pagefaq__list {
  display: -ms-grid;
  display: grid;
  gap: 44px;
}
.pagefaq .pagefaq-item {
  background-color: #041E42;
  padding: 24px;
}
.pagefaq .pagefaq-item h4 {
  background-color: var(--color1);
  color: #fff;
  font-size: clamp(20px, 2.933vw, 24px);
  line-height: 130%;
  font-weight: 600;
  padding: 20px;
}
.pagefaq .pagefaq-item p {
  background-color: #fff;
  font-size: clamp(16px, 2.4vw, 20px);
  font-weight: 500;
  padding: 20px;
}

.services__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr 24px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 24px;
}
@media (max-width: 768px) {
  .services__list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.services .services-item__img {
  height: 200px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}
.services .services-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.services .services-item h5 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 20px;
}
.services .services-item p {
  font-size: 18px;
}

.contact-form-container {
  padding: clamp(24px, 4.8vw, 50px) 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact-form {
  background-color: #041E42;
  padding: 40px clamp(12px, 3.2vw, 40px);
  border-radius: 10px;
  width: 100%;
  color: #F8F7F0;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.contact-form h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #ED1C25;
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 2px solid #ED1C25;
  border-radius: 5px;
  background-color: #F8F7F0;
  color: #041E42;
  font-size: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #041E42;
  outline: none;
}

.contact-form button {
  width: 100%;
  padding: 15px;
  background-color: #ED1C25;
  border: none;
  border-radius: 5px;
  color: #F8F7F0;
  font-size: 18px;
  cursor: pointer;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #041E42;
  color: #ED1C25;
}

/* Success Popup Styles */
.success-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.success-popup.active {
  opacity: 1;
  visibility: visible;
}

.success-popup__content {
  background: white;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.success-popup.active .success-popup__content {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.success-popup__icon {
  margin-bottom: 20px;
  color: #28a745;
}

.success-popup__title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.success-popup__text {
  font-size: 16px;
  line-height: 1.5;
  color: #666;
  margin-bottom: 30px;
}

.success-popup__close {
  background: #007bff;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.success-popup__close:hover {
  background: #0056b3;
}

/* Body scroll lock when popup is open */
body.popup-open {
  overflow: hidden;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .success-popup__content {
    padding: 30px 20px;
    margin: 20px;
  }
  .success-popup__title {
    font-size: 20px;
  }
  .success-popup__text {
    font-size: 14px;
  }
}
.feedbacks .feedbacks-slide {
  background-color: #EFF3F6;
  border: 5px solid #DCDDE1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: left;
      -ms-flex-align: left;
          align-items: left;
  padding: 24px 12px;
}
.feedbacks .feedbacks-slide__img {
  height: 140px;
  width: 140px;
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 24px;
}
.feedbacks .feedbacks-slide__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.feedbacks .feedbacks-slide__name {
  font-size: 22px;
  font-weight: 700;
  text-align: left;
}
.feedbacks .feedbacks-slide__rate {
  margin-top: 24px;
  margin-bottom: 24px;
}
.feedbacks .feedbacks-slide__rate svg {
  fill: rgb(255, 184, 30);
}
.feedbacks .feedbacks-slide__text {
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  margin-top: 20px;
}

.feedbacks__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 100px;
  margin-top: 50px;
}

.button-next,
.button-prev {
  cursor: pointer;
  -webkit-transition: 0.23s;
  transition: 0.23s;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.button-next svg,
.button-prev svg {
  width: 60px;
  height: 60px;
  fill: #041E42;
}
.button-next:hover,
.button-prev:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.button-prev svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.banner {
  background-color: var(--color1);
}
.banner .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 44px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .banner .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.banner h4 {
  font-size: clamp(24px, 4.533vw, 44px);
  color: #fff;
  font-size: 600;
  max-width: 900px;
}
@media (max-width: 768px) {
  .banner h4 {
    text-align: center;
  }
}
.banner .banner-btn {
  font-size: 22px;
  color: #fff;
  background-color: var(--color2);
  min-width: clamp(200px, 32vw, 270px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.23s;
  transition: 0.23s;
  padding: clamp(24px, 4.533vw, 44px);
}
.banner .banner-btn:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.blogsc__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr 24px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .blogsc__list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.blogsc .blogsc-item__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 250px;
  overflow: hidden;
  margin-bottom: 24px;
}
.blogsc .blogsc-item__top img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.blogsc .blogsc-item__top:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.blogsc .blogsc-item__content {
  padding: 12px 4px;
}
.blogsc .blogsc-item .date {
  color: #666666;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
}
.blogsc .blogsc-item__title a {
  font-size: 20px;
  font-weight: 600;
  color: var(--color2);
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.blogsc .blogsc-item__title a:hover {
  color: var(--color1);
}
.blogsc .blogsc-item p {
  font-size: 16px;
  margin-top: 14px;
}

.header-main {
  padding: clamp(20px, 4vw, 40px) 0;
  background-color: var(--color2);
}
.header-main__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(20px, 5.333vw, 100px);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 768px) {
  .header-main__box {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.header-main nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header-main nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
}
.header-main nav ul li a {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.header-main nav ul li a:hover {
  text-decoration: underline;
}
@media (max-width: 992px) {
  .header-main nav {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    z-index: 20;
    left: 0;
    top: 0;
    right: 0;
    background: var(--color2);
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
    height: 100vh;
    width: 100%;
    padding-top: 100px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 44px;
  }
  .header-main nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 35px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header-main nav ul a {
    color: #fff !important;
  }
  .header-main nav.active {
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 992px) {
  .header-main .btn-menu {
    width: 30px;
    height: 40px;
    position: relative;
    cursor: pointer;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    z-index: 21;
  }
  .header-main .btn-menu span {
    position: absolute;
    height: 2px;
    width: 100%;
    background: #fff;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    border-radius: 1px;
  }
  .header-main .btn-menu span:nth-child(1) {
    top: 10px;
  }
  .header-main .btn-menu span:nth-child(2) {
    top: 19px;
  }
  .header-main .btn-menu span:nth-child(3) {
    top: 28px;
  }
  .header-main .btn-menu.active span {
    background-color: #fff;
  }
  .header-main .btn-menu.active span:nth-child(1) {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 19px;
  }
  .header-main .btn-menu.active span:nth-child(2) {
    opacity: 0;
  }
  .header-main .btn-menu.active span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: 19px;
  }
}

.h-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--color1);
  color: #fff;
  font-size: clamp(18px, 2.533vw, 20px);
  padding: 20px 32px;
  -webkit-transition: 0.23s;
  transition: 0.23s;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.h-btn:hover {
  opacity: 0.9;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.footer {
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 50px;
  padding-top: 100px;
  background: var(--color2);
  color: #fff;
}
.footer .container {
  border-radius: 40px;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  .footer .container {
    border-radius: 20px;
  }
}
.footer .foo-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}
.footer p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
}
.footer a {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
}
.footer a:hover {
  text-decoration: underline;
}
.footer ul {
  display: -ms-grid;
  display: grid;
  gap: 10px;
}
.footer__main {
  padding: 50px 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr 24px 1fr 24px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 992px) {
  .footer__main {
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
}
.footer .footer-col:nth-child(1) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.336);
}
.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.footer__links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.footer__links a::before {
  position: absolute;
  display: block;
  width: 2px;
  height: 15px;
  border-radius: 10px;
  content: "";
  background-color: #fff;
  left: -15px;
}
.footer__links a:first-child::before {
  display: none;
}
.footer .teltel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  margin-top: 15px;
}
@media (max-width: 768px) {
  .footer__main {
    -ms-grid-columns: 1fr 60px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
  }
  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
@media (max-width: 576px) {
  .footer__main {
    padding: 20px 0;
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .footer__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 10px;
  }
  .footer__links a::before {
    display: none;
  }
}

.formbb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.formbb input {
  width: 100%;
  height: 50px;
  border: none;
  padding: 24px;
  border: 2px solid var(--color1);
}
.formbb button {
  min-width: 50px;
  max-width: 50px;
  height: 52px;
  border: 2px solid var(--color1);
  background-color: var(--color1);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.formbb button svg {
  width: 22px;
  height: 22px;
}