* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body { 
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0; 
  color: #333;
}

.fa-thin.fa-location-dot {
  color: red;
  font-size: 50px;
}

.header {
    color: #fff;
    padding: 30px 50px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header a {
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    transition: 0.5s all ease;
}

.header a:hover {
    color: #E6B75F;
}

.header span {
    font-size: 20px;
    font-weight: 900;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    padding: 160px 100px;
    background-color: #fff;
}

.container h1 {
    color: #fff;
    position: relative;
    font-size: 94px;
    margin-bottom: 10px;
    font-weight: 700;
    margin-top: 100px;
}

.centr {
  display: flex;
  flex-direction: column;
  align-items: center; 
  justify-content: center; 
  text-align: center; 
  width: 50%; /* Делаем ширину блока 50% */
  margin: 0 auto; /* Центрируем блок по горизонтали */
}

.main_header {
  margin-top: 70px;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 50px;
  font-style: normal;
}

.universal {
  font-family: "Inter", sans-serif;
  font-weight: 300;
}

.sub_header {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-style: normal;
  background-color: #E7B75F;
  line-height: 1.5rem;
  border-radius: 10px;
  color: #fff
}

.slider-container {
  width: 100%;
  overflow: hidden; /* Убираем горизонтальный скролл */
  background: #fff;
  padding: 20px 0;
  position: relative;
  white-space: nowrap;
}

.logos {
  display: flex;
  align-items: center;
  gap: 30px;
  animation: scroll 15s linear infinite;
}

.logos img {
  height: 50px; /* Подгони размер под свой дизайн */
  max-width: 150px;
}

@keyframes scroll {
  from {
      transform: translateX(100%);
  }
  to {
      transform: translateX(-100%);
  }
}

.wrapper {
  display: flex;
  width: 100%;
  height: 400px;
}
.text-section {
  width: 50%;
  background-color: #E6B75F;
  padding: 40px;
  color: black;
}
.image-section {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f3f3f3;
  padding: 20px;
}
.image-section img {
  max-width: 100%;
  height: 400px;
  object-fit: cover;
}

.text-section h2 {
  font-weight:700;
  font-size:30px
}

/* Адаптивность */
@media (max-width: 1167px) and (min-width: 991px) {
  .contact_container a {
    display: none;
  
  }
}


@media (max-width: 1260px) {
  .contact_container {
    font-size: 15px;
  }
}
@media (max-width: 990px) {
  .text-section, .image-section {
      width: 50%;
  }

  .wrapper {
    flex-direction: column;
    margin-bottom: 920px;
    height: 100px;
}
.text-section, .image-section {
    width: 100%;
}
}
@media (max-width: 768px) {
  .wrapper {
      flex-direction: column;
  }
  .text-section, .image-section {
      width: 100%;
  }
}
@media (max-width: 600px) {
  .text-section {
      /* padding: 20px; */
  }
  .image-section {
      /* padding: 10px; */
  }
}

.cont2 {
  max-width: 900px;
  margin: 30px auto;
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out forwards;
}
h1 {
  color: #c69c4c;
}
p {
  font-size: 18px;
  line-height: 1.6;
  margin-top: 15px;
}
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .cont2 {
      padding: 20px;
  }
  p {
      font-size: 16px;
  }
}


.main_text {
    position: relative;
    font-size: 59px;
    color: #FF9A00;
    margin: 20px 0;
    font-weight: 700;
}

.photos {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  /* gap: 1px; */
  /* padding: 20px; */
  flex-wrap: wrap;
  width: 100%;
}
.photo {
  background-color: #D99537;
  width: 25%;
  min-width: 250px;
  height: 500px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
}


.photo2 {
  background-color: #E7B75F;
}
.photo3 {
  background-color: #FDF8EA;
}
.photo4 {
  background-color: #fff;
}
.photo img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.controls {
  display: none;
}
.photo h2 {

  font-size: 18px;
  margin: 10px 0;
}
.photo p {
  font-size: 14px;
  padding: 0 10px 15px;
}

@media (max-width: 990px) {
  .photos {
      display: flex;
      overflow: hidden;
      width: 100%;
      position: relative;
  }
  .photo {
      width: 100%;
      display: none;
  }
  .photo.active {
      display: block;
  }
  .controls {
      display: flex;
      justify-content: space-between;
      position: absolute;
      top: 50%;
      width: 100%;
      transform: translateY(-50%);
  }
  .controls button {
      background: rgba(0, 0, 0, 0.5);
      color: white;
      border: none;
      padding: 10px 20px;
      cursor: pointer;
  }
}

.fa-duotone.fa-phone {
    font-size: 30px;
    color: #E6B75F;
}

.sub_text {
    position: relative;
    font-size: 38px;
    color: #fff;
    font-weight: 700;
}

.button {
    background-color: #ff9900;
    color: #fff;
    padding: 15px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
}

.features {
    text-align: center;
    margin-top: 30px;
    background-color: #fff;
}

.features2 {
    text-align: center;
    padding: 0px 20px 5px 5px;
    background-color: #fff;
    margin-top:850px;
}


.features {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.feature {
    padding: 10px;
}

.features .feature img {
    width: 150px;
    margin-right: 20px;
}

.logo {
    height: 380px;
    text-align: none;
}

.title_logo {
  margin-top: 40px;
    font-size: 60px;
    color: #000;
    font-family: "Inter", sans-serif;
  font-weight: 900;
}

.features .feature div {
    text-align: left;
}
.features .feature h3 {
    font-size: 24px;
    margin-bottom: 10px;
}
.services {
    text-align: center;
    padding: 0px 20px;
    background-color: #fff;
}
.services h2 {
    font-size: 32px;
    margin-bottom: 30px;
}
.services table {
    width: 80%;
    margin: 10px auto;
    border-collapse: collapse;
}
.services th, .services td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}
.services th {
    background-color: #f2f2f2;
    font-size: 20px;
}

/* .footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
} */

.wrapper1 {
    /* background-image: url('https://i.1.creatium.io/23/91/cb/52917265af070f16cabb3cef7b7a928568/1888x1062q8/cooling_refrigerants.jpg');
     */
    background-color: #BDBBB9;
    background-repeat: no-repeat;
    height: 1130px;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    position: absolute;
}

.wrapper2 {
    background-color: rgba(43, 43, 43, 0.78);
    height: 800px;
}

.flare-button_right {
    width: 100%;
    max-width: 230px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 15px;
    margin: 0 40px;
    border: none;
    border-radius: 40px;
    font-size: 18px;
    font-weight: bold;
    text-align: center; 
    color: #fff;
    background: #E6B75F;
    box-shadow: 0 3px 3px #E7B75F;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    animation: pulse 4.5s infinite;
    transition: 0.5s all ease;
}

.flare-button_right:hover {
    transform: translateY(-3px);
}

.container2 {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
    flex-direction: row;
    align-items: center;
}

.container_new {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  flex-direction: row;
  align-items: center;

}

.flare-button {
    width: 100%;
    max-width: 280px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    margin: 0 40px;
    border: none;
    border-radius: 40px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    background: #E6B75F;
    box-shadow: 0 3px 3px #E7B75F;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    animation: pulse 4.5s infinite;
    transition: 0.5s all ease;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(235, 159, 17, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(235, 159, 17, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(235, 159, 17, 0);
    }
}

.flare-button:hover {
    transform: translateY(-3px);
}

.flare-button:after {
    content: "";
    display: block;
    width: 20px;
    height: 200px;
    margin-left: 50px;
    background: #fff;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.5) 0%,
        rgba(255, 255, 255, 1) 50%,
        rgba(255, 255, 255, 0.5) 100%
    );
    left: -40px;
    top: -100px;
    z-index: 1;
    transform: rotate(45deg);
    position: absolute;
    animation: movingFlare 5s ease-in-out 0.05s infinite;
  }
   
  @keyframes movingFlare {
    0% {
      left: -30px;
      margin-left: 0px;
    }
    30% {
      left: 110%;
      margin-left: 80px;
    }
    100% {
      left: 110%;
      margin-left: 80px;
    }
  }

.flare-button_right:after {
    content: "";
    display: block;
    width: 20px;
    height: 200px;
    margin-left: 50px;
    background: #fff;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.5) 0%,
        rgba(255, 255, 255, 1) 50%,
        rgba(255, 255, 255, 0.5) 100%
    );
    left: -40px;
    top: -100px;
    z-index: 1;
    transform: rotate(45deg);
    position: absolute;
    animation: movingFlare 5s ease-in-out 0.05s infinite;
  }
   
  @keyframes movingFlare {
    0% {
      left: -30px;
      margin-left: 0px;
    }
    30% {
      left: 110%;
      margin-left: 80px;
    }
    100% {
      left: 110%;
      margin-left: 80px;
    }
}
  
.telephone_button {
    width: 100%;
    max-width: 450px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    text-align: end;
    margin: 10px 0;
    border: none;
    border-radius: 40px;
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    background: #FF9A00;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: 0.5s all ease;
}
 
.content {
    text-align: right;
}

.sent_but {
    display: flex; 
    flex-direction: row; 
    align-items: center; 
    justify-content: flex-end;
    gap: 10px; 
    margin-top: 40px;
}

.contact_container {
  display: flex; 
  flex-direction: row; 
  align-items: center; 
  justify-content: flex-end;
  gap: 10px; 
  margin-top: 40px;
  font-weight:700;
  font-size:20px
}

.number_click {
    border-radius: 50px;
    background: dodgerblue;
    width: 100%;
    max-width: 70px;
    height: 70px;
    padding: 10px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    animation: telephone 2.5s infinite;
    transition: 0.5s all ease;
}

@keyframes telephone {
    0% {
        background: dodgerblue;
        box-shadow: 0 0 0 0 rgba(30, 144, 255, 0.7);
    }
    70% {
        background: dodgerblue;
        box-shadow: 0 0 0 20px rgba(30, 144, 255, 0);
    }
    100% {
        background: dodgerblue;
        box-shadow: 0 0 0 0 rgba(30, 144, 255, 0);
    }
}


.fa-duotone.fa-right {
    font-size: 24px;
    margin-left: 10px;
}

.fa-duotone.fa-circle-check, .fa-duotone.fa-badge-check {
    font-size: 50px;
    color: #FF9A00;
}

.sub_title {
    align-items: center; 
    display: flex;
}

.sub_about {
    margin-top: 5px; 
    line-height: 20px;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    color: #787878;
}
   

.bg-image {
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5em;
}

.wrap {
    background-color: rgba(43, 43, 43, 0.78);
    height: 95vh;
    width: 100%;
}

.features2 h1 {
  margin-top: 10px;
}


.img1 {
    position: absolute;
    width: 100%;
    height: 95vh;
    background-image: url('https://resizer.mail.ru/p/37e8e8ba-630a-5508-9f68-1eb964b2e76f/AQAKmtckJx84wc81NYnMshpyy7xiYm5VhGW3UOqouRkWp-ySDaAy3xMJFrBvzp3KK-2IKEbtxidDusz6HFtR9PEmKbQ.png');
}

.img2 {
    background-image: url('https://www.commandservice.com/sites/default/files/styles/news_720/public/Appliance-Repair.jpg?itok=T02bT_5D');
}

.container3 {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
    margin-top: 15px;
  }
  
h2 {
    font-size: 26px;
    margin: 20px 0;
    text-align: center;
    small {
      font-size: 0.5em;
    }
}
  
  .responsive-table {
    li {
      border-radius: 3px;
      padding: 25px 30px;
      display: flex;
      justify-content: space-between;
      margin-bottom: 25px;
    }
    .table-header {
      background-color: #E6B75F ;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 0.03em;
    }
    .table-row {
      background-color: #ffffff;
      box-shadow: 0px 0px 9px 0px rgba(0,0,0,0.1);
    }
    .col-1 {
      flex-basis: 30%;
      font-size: 24px;
    }
    .col-2 {
      flex-basis: 40%;
      font-size: 24px;
    }
    }
    
    @media all and (max-width: 767px) {
      .table-header {
        display: none;
      }
      .table-row{
        
      }
      li {
        display: block;
      }
      .col {
        
        flex-basis: 100%;
        
      }
      .col {
        display: flex;
        padding: 10px 0;
        &:before {
          color: #6C7A89;
          padding-right: 10px;
          content: attr(data-label);
          flex-basis: 50%;
          text-align: right;
        }
      }

    }
  
/* Desing for Foote */

/* .footer {
    position: relative;
    width: 100%;
    background: #ff9900;
    min-height: 100px;
    padding: 20px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 200px;
} */

.nav-menuf {
    width: 50%;
    display: flex;
    justify-content: space-between;
    list-style-type: none;
    padding: 40px;
    background: #432fbf;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    box-shadow: 2px 10px 20px rgba(67, 47, 191, 0.5);
}

.nav-menuf a {
    color: #fff;
}

.nav-menu__link {
  font-size: 1.5rem;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
  text-decoration: none;
  opacity: 0.75;
  font-weight: 300;
}

.nav-menu__link:hover {
  opacity: 1;
}
  
.social-icon,
.nav-menuf {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;
}


/* .footer p {
    color: #fff;
    margin: 15px 0 10px 0;
    font-size: 1rem;
    font-weight: 300;
  } */
  
.wave {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("wave.png");
    background-size: 1000px 156px;
}
  
  .wave#wave1 {
    z-index: 1000;
    opacity: 1;
    bottom: 0;
    animation: animateWaves 4s linear infinite;
  }
  
  .wave#wave2 {
    z-index: 999;
    opacity: 0.5;
    bottom: 10px;
    animation: animate 4s linear infinite !important;
  }
  
  .wave#wave3 {
    z-index: 1000;
    opacity: 0.2;
    bottom: 15px;
    animation: animateWaves 3s linear infinite;
  }
  
  .wave#wave4 {
    z-index: 999;
    opacity: 0.7;
    bottom: 20px;
    animation: animate 3s linear infinite;
  }
  @keyframes animateWaves {
    0% {
      background-position-x: 1000px;
    }
    100% {
      background-positon-x: 0px;
    }
  }
  
  @keyframes animate {
    0% {
      background-position-x: -1000px;
    }
    100% {
      background-positon-x: 0px;
    }
  }


.social-icon, .menu {
  list-style-type: none;
  padding: 0;
  background: #432fbf;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  box-shadow: 2px 10px 20px rgba(67, 47, 191, 0.5);
}

.social-icon>li {
  display: inline-block;
  margin: 40px 20px;
}

.social-icon,
.menu {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  flex-wrap: wrap;
}

.social-icon__item,
.menu__item {
  list-style: none;
}

.social-icon__link {
  font-size: 2rem;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
}

.social-icon__link:hover {
  transform: translateY(-10px);
}

iframe {
  width: 100%;
  height: 300px;
}

iframe {
  border-radius: 10px;
  box-shadow: 2px 10px 20px rgba(67, 47, 191, 0.5);
}

/* Contact */

.contacts {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
  background-color: #ffffff;
}

.text-content {
  max-width: 45%;
}


.text-content h1 {
  font-size: 2.5em;
  margin: 0 0 20px;
  font-family: "Inter", sans-serif;
  font-weight: 900;
}

.text-content .highlight {
  color: #E7B75F;
}

.text-content p {
  font-size: 1.2em;
  line-height: 1.6;
  color: #333333;
}

.map-content iframe {
  border: none;
  width: 600px;
  height: 400px;
}


/* For devices like: Laptop/Desktop */

@media screen and (max-width: 1163px) {
  .header a {
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    transition: 0.5s all ease;
}



.header span {
    font-size: 18px;
    font-weight: 900;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  padding: 170px 100px;
  background-color: #fff;
}

.container h1 {
  color: #fff;
  position: relative;
  font-size: 80px;
  margin-bottom: 10px;
  font-weight: 700;
}

.contact_container {
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  justify-content: flex-end;
  gap: 10px; 
  margin-top: 40px;
}

.main_text {
  position: relative;
  font-size: 49px;
  color: #FF9A00;
  margin: 20px 0;
  font-weight: 700;
}

.title_logo {
  font-size: 50px;
  color: #585858;
}
}

/* Large devices (laptops/desktops, 992px and up) */ 
@media screen and (max-width: 992px) {
  .photo {
    background-color: #D99537;
    width: 24%;
    min-width: 450px;
    height: 500px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
  }
  .photo img {
    width: 100%;
    height: 350px;
    object-fit: cover;
  }

  .controls {
    margin-top: 120px;
  }

  .main_header {
    margin-top: 70px;
    font-family: "Inter", sans-serif;
    font-weight: 900;
    font-size: 35px;
    font-style: normal;
  }
  
  .sub_header {
    font-family: "Inter", sans-serif;
    font-weight: 300;
    font-style: normal;
    background-color: #E7B75F;
    line-height: 1.5rem;
    border-radius: 10px;
    color: #fff
  }

  .wrapper1 {
    height: 1100px;
  }

  .header a {
    font-size: 12px;
    color: #fff;
    text-decoration: none;
    margin: 0 8px;
    transition: 0.5s all ease;
}

.header span {
    font-size: 14px;
    font-weight: 900;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  padding: 150px 100px;
  background-color: #fff;
}

.container h1 {
  color: #fff;
  position: relative;
  font-size: 60px;
  margin-bottom: 10px;
  margin-top: 130px;
  font-weight: 700;
}

.map-content iframe {
  border: none;
  width: 400px;
  height: 300px;
}

.text-content h1 {
  font-size: 2.0em;
  margin: 0 0 20px;
}

.main_text {
  position: relative;
  font-size: 39px;
  color: #FF9A00;
  margin: 20px 0;
  font-weight: 700;
}

.sub_text {
  position: relative;
  font-size: 28px;
  color: #fff;
  font-weight: 700;
}

.flare-button {
  width: 100%;
  max-width: 210px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  margin: 0 40px;
  border: none;
  border-radius: 40px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background: #E6B75F;
  box-shadow: 0 3px 3px #E7B75F;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  animation: pulse 4.5s infinite;
  transition: 0.5s all ease;
}

.flare-button_right {
  width: 100%;
  max-width: 180px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 15px;
  margin: 0 40px;
  border: none;
  border-radius: 40px;
  font-size: 14px;
  font-weight: bold;
  text-align: center; 
  color: #fff;
  background: #E6B75F;
  box-shadow: 0 3px 3px #E7B75F;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  animation: pulse 4.5s infinite;
  transition: 0.5s all ease;
}

.features {
  text-align: center;
  margin-top: 80px;
  background-color: #fff;
}

.telephone_button {
  width: 100%;
  max-width: 400px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  text-align: end;
  margin: 10px 0;
  border: none;
  border-radius: 40px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  background: #FF9A00;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: 0.5s all ease;
}

.number_click {
  border-radius: 50px;
  background: dodgerblue;
  width: 100%;
  max-width: 60px;
  height: 60px;
  padding: 10px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  animation: telephone 2.5s infinite;
  transition: 0.5s all ease;
}

.title_logo {
  font-size: 40px;
  color: #585858;
}

.container_new {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  flex-direction: column;
  align-items: center;

}

.feature {
  padding: 10px;

}

.sub_title {
  align-items: center; 
  display: flex;
  justify-content: center;
}

.slice {
  margin-bottom: 50px;
}

.nav-menu__link {
  font-size: 1.3rem;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
  text-decoration: none;
  opacity: 0.75;
  font-weight: 300;
}

.social-icon>li {
  display: inline-block;
  margin: 30px 20px;
}

.social-icon__link {
  font-size: 1.4rem;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
}

.nav-menuf {
  width: 50%;
  display: flex;
  justify-content: space-between;
  justify-content: center;
  list-style-type: none;
  padding: 30px;
  background: #432fbf;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  box-shadow: 2px 10px 20px rgba(67, 47, 191, 0.5);
}
}

/* Medium devices (landscape tablets, 768px and up) */
@media screen and (max-width: 768px) {
  .main_header {
    margin-top: 70px;
    font-family: "Inter", sans-serif;
    font-weight: 900;
    font-size: 30px;
    font-style: normal;
  }
  
  .sub_header {
    font-family: "Inter", sans-serif;
    font-weight: 300;
    font-style: normal;
    background-color: #E7B75F;
    line-height: 1.1rem;
    border-radius: 10px;
    color: #fff
  }

  .wrapper1 {
    height: 1050px;
  }
  .header a {
    font-size: 10px;
    color: #fff;
    text-decoration: none;
    margin: 0 4px;
    transition: 0.5s all ease;
}

.header span {
    font-size: 10px;
    font-weight: 900;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  padding: 150px 30px;
  background-color: #fff;
}

.container h1 {
  color: #fff;
  position: relative;
  font-size: 50px;
  margin-bottom: 10px;
  margin-top: 200px;
  font-weight: 700;
}

.map-content iframe {
  border: none;
  width: 300px;
  height: 200px;
}

.text-content h1 {
  font-size: 1.5em;
  margin: 0 0 20px;
}

section#section1 {
  padding: 10px;
}

.main_text {
  position: relative;
  font-size: 30px;
  color: #FF9A00;
  margin: 20px 0;
  font-weight: 700;
}

.sub_text {
  position: relative;
  font-size: 20px;
  color: #fff;
  font-weight: 700;
}

.flare-button {
  width: 100%;
  max-width: 160px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  margin: 0 40px;
  border: none;
  border-radius: 40px;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background: #E6B75F;
  box-shadow: 0 3px 3px #E7B75F;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  animation: pulse 4.5s infinite;
  transition: 0.5s all ease;
}

.flare-button_right {
  width: 100%;
  max-width: 140px;
  height: 17px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 15px;
  margin: 0 40px;
  border: none;
  border-radius: 40px;
  font-size: 10px;
  font-weight: bold;
  text-align: center; 
  color: #fff;
  background: #E6B75F;
  box-shadow: 0 3px 3px #E7B75F;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  animation: pulse 4.5s infinite;
  transition: 0.5s all ease;
}

.features {
  text-align: center;
  margin-top: 30px;
  background-color: #fff;
}

.telephone_button {
  width: 100%;
  max-width: 330px;
  height: 33px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  text-align: end;
  margin: 10px 0;
  border: none;
  border-radius: 40px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background: #FF9A00;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: 0.5s all ease;
}

.number_click {
  border-radius: 50px;
  background: dodgerblue;
  width: 100%;
  max-width: 50px;
  height: 50px;
  padding: 10px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  animation: telephone 2.5s infinite;
  transition: 0.5s all ease;
}

.title_logo {
  font-size: 30px;
  color: #585858;
}

.container_new {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  flex-direction: column;
  align-items: center;

}

.feature {
  padding: 10px;

}

.sub_title {
  align-items: center; 
  display: flex;
  justify-content: center;
}

.slice {
  margin-bottom: 50px;
}

.nav-menu__link {
  font-size: 1.1rem;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
  text-decoration: none;
  opacity: 0.75;
  font-weight: 300;
}

.social-icon>li {
  display: inline-block;
  margin: 20px 10px;
}

.social-icon__link {
  font-size: 1.1rem;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
}

.nav-menuf {
  width: 50%;
  display: flex;
  justify-content: space-between;
  justify-content: center;
  list-style-type: none;
  padding: 10px;
  background: #432fbf;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  box-shadow: 2px 10px 20px rgba(67, 47, 191, 0.5);
}

.responsive-table {
  li {
    border-radius: 3px;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
  }
  .table-header {
    background-color: #E6B75F ;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }
  .table-row {
    background-color: #ffffff;
    box-shadow: 0px 0px 9px 0px rgba(0,0,0,0.1);
  }
  .col-1 {
    flex-basis: 30%;
    font-size: 20px;
  }
  .col-2 {
    flex-basis: 40%;
    font-size: 20px;
  }
  }
}

/* Extra small devices (phones, 600px and down) */
@media screen and (max-width: 600px) and (min-width: 200px) {
  .header {
    color: #fff;
    padding: 5px 2px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.features2 {
  margin-top: 700px;
}

.photo {
  background-color: #D99537;
  width: 24%;
  min-width: 200px;
  height: 300px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
}
.photo img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.main_header {
  margin-top: 70px;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 15px;
  font-style: normal;
}

.sub_header {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-style: normal;
  background-color: #E7B75F;
  line-height: 1.0rem;
  font-size: 10px;
  border-radius: 10px;
  color: #fff
}

.wrapper1 {
  height: 700px;
}

.controls {
  margin-top: 140px;
}

.fa-thin.fa-location-dot {
  color: red;
  font-size: 25px;
}

.header span {
    font-size: 11px;
    font-weight: 900;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 50px 10px;
  background-color: #fff;
}

.container h1 {
  color: #fff;
  position: relative;
  font-size: 40px;
  margin-bottom: 10px;
  margin-top: 90px;
  text-align: left;
  font-weight: 700;
}

.map-content iframe {
  border: none;
  width: 200px;
  height: 150px;
}

.contact_container p {
  font-size: 8px;
}

.text-content h1 {
  font-size: 13px;
  margin: 0 0 20px;
}


.main_text {
  position: relative;
  font-size: 20px;
  color: #FF9A00;
  margin: 20px 0;
  font-weight: 700;
  text-align: left;
}

.sub_text {
  position: relative;
  font-size: 15px;
  color: #fff;
  font-weight: 700;
  text-align: left;
}

.sent_but {
  display: flex; 
  flex-direction: row; 
  align-items: center; 
  justify-content: start;
  gap: 10px; 
  margin-top: 40px;
}

.fa-duotone.fa-phone {
  font-size: 20px;
  color: #E6B75F;
}

.flare-button {
  width: 100%;
  max-width: 110px;
  height: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  margin-left: 10px;
  border: none;
  border-radius: 40px;
  font-size: 5px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background: #E6B75F;
  box-shadow: 0 3px 3px #E7B75F;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  animation: pulse 4.5s infinite;
  transition: 0.5s all ease;
}

.logo {
  height: 200px;
  text-align: none;
}

.flare-button_right {
  width: 100%;
  max-width: 90px;
  height: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px;
  margin: 0 40px;
  border: none;
  border-radius: 40px;
    font-size: 5px;
  font-weight: bold;
  text-align: center; 
  color: #fff;
  background: #E6B75F;
  box-shadow: 0 3px 3px #E7B75F;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  animation: pulse 4.5s infinite;
  transition: 0.5s all ease;
}

.features {
  text-align: center;
  margin-top: 80px;
  background-color: #fff;
}

.container {
  padding-bottom: 0;
}

.sub_about {
  margin-top: 5px; 
  line-height: 20px;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  color: #787878;
}

.telephone_button {
  width: 100%;
  max-width: 240px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2px;
  text-align: end;
  margin: 40px 0;
  border: none;
  border-radius: 40px;
  font-size: 8px;
  font-weight: bold;
  color: #fff;
  background: #FF9A00;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: 0.5s all ease;
}

.number_click {
  border-radius: 50px;
  background: dodgerblue;
  width: 100%;
  max-width: 40px;
  height: 40px;
  padding: 10px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  animation: telephone 2.5s infinite;
  transition: 0.5s all ease;
}



.wrapper2 {
  background-color: rgba(43, 43, 43, 0.78);
  height: 500px;
}

.title_logo {
  font-size: 25px;
  color: #585858;
}

.container_new {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  flex-direction: column;
  align-items: center;

}

.feature {
  padding: 10px;

}

.sub_title {
  align-items: center; 
  display: flex;
  justify-content: center;
}

.slice {
  margin-bottom: 50px;
}

.nav-menu__link {
  font-size: 0.9rem;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
  text-decoration: none;
  opacity: 0.75;
  font-weight: 300;
}

.social-icon>li {
  display: inline-block;
  margin: 12px 4px;
}

.social-icon__link {
  font-size: 1.1rem;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
}

.nav-menuf {
  width: 50%;
  display: flex;
  justify-content: space-between;
  /*justify-content: center;*/
  list-style-type: none;
  padding: 8px;
  background: #432fbf;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  box-shadow: 2px 10px 20px rgba(67, 47, 191, 0.5);
}

.responsive-table {
  li {
    border-radius: 3px;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
  }
  .table-header {
    background-color: #E6B75F ;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }
  .table-row {
    background-color: #ffffff;
    box-shadow: 0px 0px 9px 0px rgba(0,0,0,0.1);
  }
  .col-1 {
    flex-basis: 30%;
    font-size: 10px;
  }
  .col-2 {
    flex-basis: 40%;
    font-size: 10px;
  }
  }

  /* .footer p {
    font-size: 12px;
  } */
  
}

.container_views {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.num_viewers {
  text-align: center;
  font-size: 400px;
}

.num_viewers h1 {
  font-size: 3rem;
  color: #000;
}

.fa-eye {
  margin-right: 10px;
  color: red;
}

@media (max-width: 391px) {
  .features2 h1 {
    /* margin-top: 400px; */
  }

  .container h1 {
    color: #fff;
    position: relative;
    font-size: 30px;
    margin-bottom: 10px;
    font-weight: 700;
  }
}



ul { list-style: none; padding-left: 0 !important; }
a { text-decoration: unset; }
a:hover { text-decoration: underline; }
ul > li > a { color:#fff; }
ul > li > p { color:#fff; }
ul > li { line-height: 1.5em; }


.footer {
  /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
  margin-top: 150px;
  display: block;
  width: 100%;
  position: relative;
  background: #E7B75F;
  padding: 150px 25px 50px 25px;
  border-top-left-radius: 100px;

}
.footer-start {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  width: 90%;
  margin: auto;
  padding: 80px 100px;
  background: #705df2;
  border-radius: 15px;
}
.start-learning {
  position: absolute;
  left: 0;
  right: 0;
  top: -150px;
}
.footer .inner {
  display: flex;
  align-items: self-start;
  justify-content: space-between;
  column-gap: 20px;
  row-gap: 20px;
  max-width: 1180px;
  margin: auto;
  text-align: left;
}
.main-logo {
  position: relative;
  display: flex;
  align-items: center;
}
.main-logo .logo {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
.main-logo .logo > img {
  display: block;
  width: 100%;
  min-width: 40px;
}
.logo-info {
  text-align: left;
  line-height: 20px;
  text-decoration: none;
}

.logo_info span {
  color: red
}
.text {
  font-size: 27px;
  line-height: 27px;
  color: #fff;
  letter-spacing: .18em;
  font-weight: 600;
}
.copyright {
  color: #fff;
  font-size: 12px;
  line-height: 12px;
}
.footer .column {
  width: 100%;
  font-size: 17px;
  text-align: left;
}
.footer .column .column-title {
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 0.5em;
  color: #fff;
}

.footer .column .column-title:not(:first-child) {
  margin-top: 1em;
}
.illustration {
  left: 8%;
  position: absolute;
  top: -28px;
}
a.button {
  display: inline-flex;
  position: relative;
  height: 60px;
  margin-right: 20px;
  flex-direction: row;
  align-items: center;
  overflow: hidden;
  background: #fff;
  color: #705df2;
  border-radius: 36px;
  font-size: 16px;
  font-weight: 700;
  padding: 0 30px;
  text-decoration: unset;
  box-shadow: 0px 24px 74px rgb(60 0 189 / 20%);
}
.section-title {
  font-size: 44px;
  font-weight: 700;
  color: #fff;
}
.section-sub-heading {
  font-size: 22px;
  font-weight: 400;
  color: #fff;
}
.section-sub-heading span {
  opacity: 0.6;
}
.section-sub-heading strong {
  font-weight: 600;
}


@media only screen and (max-width: 990px) and (min-width: 200px) {
  body {
      height: 200vh;
      overflow-y: scroll;
      overflow-x: hidden;
  }
  .footer .inner {
    
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  .start-learning {
      position: unset;
  }
  .logo-info {
    margin-top: 40px;
  }

  .column-title {
    margin-top: 40px;
  }
  .footer-start {
      width: 100%;
      display: block;
      padding: 30px 20px;
      margin: 30px 0;
  }
  .section-title {
      font-size: 30px;
  }
  .section-sub-heading {
      font-size: 18px;
  }
  footer.footer {
      padding-top: 0;
  }
  a.button {
      height: 50px;
      margin-top: 10px;
  }
  .column.is-logo {
      order: 4;
  }
}
  


