/* Nice Select CSS */
.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: #f8f8f8;
  border-radius: 50px;
  border: solid 1px transparent;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 18px;
  font-weight: normal;
  height: 42px;
  line-height: 40px;
  outline: none;
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: 200px;
}
.nice-select:hover {
  border-color: #dbdbdb;
}
.nice-select:active,
.nice-select.open,
.nice-select:focus {
  border-color: #999;
}
.nice-select:after {
  border-bottom: 2px solid #363636;
  border-right: 2px solid #363636;
  content: "";
  display: block;
  height: 5px;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  width: 5px;
}
.nice-select.open:after {
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.nice-select.open .list {
  top: auto !important;
  bottom: 100%;
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}
.nice-select.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none;
}
.nice-select.disabled:after {
  border-color: #cccccc;
}
.nice-select.wide {
  width: 100%;
}
.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}
.nice-select.right {
  float: right;
}
.nice-select.right .list {
  left: auto;
  right: 0;
}
.nice-select.small {
  font-size: 18px;
  height: 50px;
  line-height: 34px;
}
.nice-select.small:after {
  height: 4px;
  width: 4px;
}
.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}
.nice-select .list {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  bottom: 100%;
  left: 0;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
  -ms-transform: scale(0.75) translateY(-21px);
  transform: scale(0.75) translateY(-21px);
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25),
    opacity 0.15s ease-out;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
  width: 200px;
}
.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}
.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 30px;
  padding-right: 29px;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: #f6f6f6;
}
.nice-select .option.selected {
  font-weight: bold;
}
.nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}
.no-csspointerevents .nice-select .list {
  display: none;
}
.no-csspointerevents .nice-select.open .list {
  display: block;
}
/* КОНЕЦ NICE SELECT */

/* ГЛОБАЛЬНЫЕ ПАРАМЕТРЫ */
* {
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
  list-style-type: none;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth !important;
}
html {
  font-size: 16px;
}
::selection {
  background-color: #ffffff;
  color: #4cae50;
}
body {
  font-family: "Lato", sans-serif;
  color: #363636;
  font-size: 1.125rem;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: #4cae50;
  text-decoration: none;
}
h1 {
  font-size: 3.5rem;
  font-weight: 900;
}
h2 {
  font-size: 3.75rem;
  font-weight: 900;
}
p {
  color: #808080;
  line-height: 2;
}
section {
  padding: 50px;
}
::placeholder {
  font-size: 18px;
  color: #808080;
}
/* КОНЕЦ ГЛОБАЛЬНЫМ ПАРАМЕТРАМ */

/* ЗАГРУЗКА */
.preloader {
  background-color: #ffffff;
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 150;
  display: flex;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  align-items: center;
  justify-content: center;
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
}
.preloader.opacity-0 {
  opacity: 0;
}
.preloader .loader {
  height: 2.5rem;
  width: 2.5rem;
  border: 0.25rem solid #4cae50;
  border-radius: 50%;
  border-top: 0.25rem solid transparent;
  border-bottom: 0.25rem solid transparent;
  animation: spin 2s linear infinite;
  -webkit-animation: spin 0.8s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}
/* КОНЕЦ ПРЕЛОАДА */

/* ГЛАВНАЯ */
#home {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
  padding: 50px;
  color: #363636;
  z-index: 2;
}
.background-layer {
  position: absolute;
  inset: 0;
  background: url("/static/images/testing.jpg") no-repeat center top;
  background-size: cover;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.background-layer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px; /* Высота размытой/светлой части */
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    #ffffff 100%
  );
  pointer-events: none;
}
#hero,
nav,
.shape-divider,
#scrollUp {
  position: relative;
  z-index: 2;
}

/* МЕНЮШКА */
nav {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  color: #363636;
  z-index: 3;
}
#navbar {
  background-color: #2fff0000; /* светло-серый */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0); /* лёгкая тень снизу */
  border-radius: 20px;
  max-height: 90px;
}
.logo {
  font-size: 3.125rem;
  font-weight: 900;
  color: #4cae50;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.588);
}
#navbar ul li {
  display: inline-block;
  margin: 20px;
  font-size: 18px;
  font-weight: 400;
}
#navbar ul li:hover {
  transform: scale(1.1);
}

/* ВСПЛЫВАЮЩЕЕ МЕНЮ */
.sticky {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #fff;
  z-index: 99999;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  color: #4cae50;
  padding: 10px 40px;
  transition: 0.3s;
}
.sticky .logo {
  color: #4cae50;
}
.sticky #navbar ul li a {
  color: #363636;
}
.sticky #navbar ul li a:hover {
  color: #4cae50;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.588);
}
.sticky .navbar {
  padding: 10px;
}
.sticky .mobile-menu {
  font-size: 1.875rem;
  float: right;
  display: block;
  margin: -10px 10px;
}

.adjust {
  padding-top: 300px;
}

/* МОБИЛЬНОЕ МЕНЮ */
#myNav {
  display: block;
}
#mobileNav {
  position: absolute;
  right: 10%;
  display: none; /* Hide Mobile Nav on Desktop or big devices */
  cursor: pointer;
  user-select: none;
}
#mobileNav span {
  font-size: 1.875rem;
}
.mobileNavOverlay {
  width: 0;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #ffffff;
  z-index: 9999;
  overflow: hidden;
  color: #4cae50;
  transition: 0.3s;
  text-align: center;
}
.overlay-content {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.overlay-content a {
  color: #363636;
  font-size: 1.875rem;
  font-weight: 600;
  display: block;
  margin-top: 1.25rem;
  letter-spacing: 0.1875rem;
}
.overlay-content a:hover {
  color: #4cae50;
}

/* СКРОЛЛ */
.scroll-reveal {
  opacity: 0;
}
.scroll-reveal.active {
  opacity: 1;
}

/* ТИТУЛЬНИК */
#hero {
  margin: 100px 0;
}
.hero-description {
  margin-top: 3.125rem;
  float: left;
  margin-left: 1.875rem;
}
.hero-description p {
  font-size: 1.25rem;
  margin-top: 1.25rem;
  margin-bottom: 2.5rem;
  color: #363636;
}
.download-btn {
  background: #ffffff;
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-img {
  max-width: 28% !important;
  float: right;
  z-index: 1;
  position: absolute;
}
#scrollUp {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background: #4cae50; /* Old browsers */
  background: -moz-linear-gradient(
    top,
    #1f4620 37%,
    #4cae50 98%
  ); /* FF3.6-15 */
  background: -webkit-linear-gradient(
    top,
    #1f4620 37%,
    #4cae50 98%
  ); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    #1f4620 37%,
    #4cae50 98%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1f4620', endColorstr='#4CAE50',GradientType=0 ); /* IE6-9 */
  background-repeat: no-repeat;
  color: #ffffff; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  width: 50px;
  height: 50px;
  border-radius: 50%; /* Rounded corners */
  font-size: 18px; /* Increase font size */
  box-shadow: 0 10px 30px rgba(54, 54, 54, 0.3);
}
#scrollUp:hover {
  background-color: #555; /* Add a dark-grey background on hover */
  transform: scale(1.1);
  transition: 0.3s;
}

/* МАТЕРИАЛ ТИТУЛЬНИКА */
#howto {
  background: #003d99; /* Old browsers */
  background: -moz-linear-gradient(
    top,
    #1f4620 37%,
    #4cae50 98%
  ); /* FF3.6-15 */
  background: -webkit-linear-gradient(
    top,
    #1f4620 37%,
    #4cae50 98%
  ); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    #1f4620 37%,
    #4cae50 98%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#003D99', endColorstr='#00CAFF',GradientType=0 ); /* IE6-9 */
  background-repeat: no-repeat;
  color: #ffffff;
  height: 24.375rem;
  width: 100%;
  position: relative;
  margin-top: 6.25rem;
}
#howto p {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.75;
}
#howto h4 {
  font-size: 1.5rem;
  font-weight: 900;
}
.first-col {
  text-align: right;
  float: right;
}
.third-col {
  text-align: left;
  float: left;
}
.big_image {
  max-width: 325px;
  margin-top: -125px;
}
.first-item,
.last-item {
  display: flex;
}
.item-icon1 {
  margin-left: 40px;
}
.item-icon1:hover,
.item-icon2:hover {
  transition: 0.3s;
  transform: scale(1.1);
  cursor: pointer;
}
.item-icon2 {
  margin-right: 40px;
}
.first-item,
.last-item {
  margin: 20px 0;
}
.bold-text {
  font-weight: 700;
}
.btn {
  background: #4cae50;
  padding: 0.9375rem 2.5rem;
  color: #363636;
  border-radius: 3.125rem;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  box-shadow: 10px 0 40px rgba(0, 0, 0, 0.15);
  display: inline-block;
  cursor: pointer;
}
.btn:hover {
  background: #4cae50;
  color: #ffffff;
  transition: 0.3s;
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.499);
}
.row {
  max-width: 1176px;
  margin: auto;
}

/* СТИЛИ ТОЛЬКО ДЛЯ СЕКЦИИ СПИСКА УСЛУГ */
#yslygi .services-widget,
#yslygi .review-widget {
  max-width: 1200px;
  margin: 60px auto;
  padding: 30px 20px;
  font-family: "Segoe UI", sans-serif;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

#yslygi .services-title,
#yslygi .review-title {
  font-size: 2.2rem;
  color: #363636;
  font-weight: 900;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

#yslygi .services-swiper .swiper-slide {
  display: flex;
  justify-content: center;
}

#yslygi .reviewCard {
  background: #f5f5f5;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 170px;
  box-sizing: border-box;
  text-align: center;
}

#yslygi .reviewCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

#yslygi .reviewCard h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 12px;
  color: #222;
}

#yslygi .reviewCard img {
  width: 300px;
  height: 300px;
  object-fit: contain;
  margin-bottom: 15px;
  border-radius: 10px;
}

#yslygi .reviewCard p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 10px;
}

#yslygi .reviewCard span {
  font-size: 1.3rem;
  font-weight: 700;
  color: #4cae50;
  margin-top: auto;
}

/* ОТЗЫВЫ */
.review-widget {
  max-width: 1200px;
  margin: 60px auto;
  padding: 30px 20px;
  font-family: "Segoe UI", sans-serif;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}
.review-title {
  font-size: 2.5rem;
  color: #363636;
  font-weight: 900;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}
.reviewCard {
  background: #f5f5f5;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  height: auto;
  box-sizing: border-box;
}
.reviewCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.reviewCard__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.reviewCard__avatar,
.reviewCard__img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #4cae50;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  object-fit: cover;
}
.reviewCard__name {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
  color: #111;
}
.reviewCard__count {
  font-size: 13px;
  color: #888;
  margin: 0;
}
.reviewCard__stars {
  font-size: 18px;
  color: #efa701;
  margin-bottom: 10px;
}
.reviewCard__text {
  font-size: 15px;
  color: #333;
  line-height: 1.5;
  margin-top: auto;
}
.reviewCard__date {
  margin-top: 14px;
  font-size: 13px;
  color: #999;
  text-align: right;
}
.reviewCard a {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}
.review-footer-link {
  text-align: center;
  margin-top: 30px;
  font-size: 16px;
}
.review-footer-link a {
  color: #4cae50;
  text-decoration: none;
  font-weight: bold;
}
.review-footer-link a:hover {
  text-decoration: underline;
}
.swiper-container-wrapper {
  position: relative;
  padding: 0;
}

/* ПОДВАЛ */
#footer {
  border-top: 1px solid #e0e0e0;
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  color: #363636;
  width: 100%;
  padding: 50px 0px;
  max-width: 1200px;
}
.footer-text {
  display: flex;
  flex-direction: column;
}
.links ul li {
  display: inline-block;
  margin: 10px 0;
  margin-right: 30px;
  font-size: 18px;
}
.links ul li:hover {
  background: linear-gradient(to bottom, #1f4620 10%, #4cae50 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.links ul li a {
  color: #363636;
}
.social-icons {
  display: flex;
}

.social-icons a {
  margin-left: 10px;
}

/* ФОРМА ЗАЯВОК */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}
.overlay-content {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  width: 100%;
  max-width: 500px;
  box-sizing: border-box;
  text-align: center;
  animation: scaleIn 0.3s ease;
}
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #666;
}
.overlay-content h3 {
  margin-bottom: 20px;
}
.form-tab {
  display: none;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}
.form-tab.active {
  display: flex;
}
.form-tab input,
.form-tab textarea {
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-family: inherit;
}
.form-tab textarea {
  resize: vertical;
}
.form-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.main-btn {
  padding: 12px 20px;
  background-color: #4cae50;
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
}
.secondary-btn {
  padding: 12px 20px;
  background-color: #e0e0e0;
  color: #333;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}
.location-radio {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  font-size: 16px;
  color: #333;
}

.radio-label {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.radio-label input[type="radio"] {
  opacity: 0;
  position: absolute;
}

.custom-radio {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #555;
  background-color: #000;
  display: inline-block;
  margin-right: 10px;
  position: relative;
}

.radio-label input[type="radio"]:checked + .custom-radio {
  background-color: #4cae50;
  border-color: #4cae50;
}

/* МОБИЛЬНАЯ АДАПТАЦИЯ */
@media (max-width: 575.98px) {
  body {
    font-size: 16px !important;
  }
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 30px;
  }
  .btn {
    padding: 10px 20px;
    font-size: 16px;
  }
  section {
    padding: 20px;
  }
  .span_1_of_3 {
    width: 100% !important;
  }

  .span_1_of_2 {
    width: 100% !important;
  }
  ::placeholder {
    text-align: center;
  }
  #mobileNav {
    display: block;
  }
  #home {
    padding: 30px;
  }
  #hero {
    margin: 250px 0;
  }
  .logo {
    font-size: 1.875rem;
  }
  #navbar {
    display: none;
  }
  .hero-description {
    text-align: center;
    margin-top: 0.625rem;
    float: none;
    margin-left: 0;
  }
  .hero-description p {
    font-size: 16px;
    margin-bottom: 1.875rem;
  }
  .hero-img {
    display: none;
  }
  #features {
    padding-bottom: 50px;
  }
  .features-description {
    width: 100%;
  }
  .little-description {
    width: 100%;
  }
  .section-description {
    margin: 0;
  }
  .second-features-row {
    margin-top: 3.25rem;
    display: flex;
    flex-flow: column;
    flex-direction: column-reverse;
  }
  #testimonial .row {
    margin-top: 3.25rem;
  }
  #howto {
    height: 100%;
    margin-top: 0;
    padding: 50px 0;
  }
  #howto p {
    width: 80%;
    margin-left: 10%;
  }
  .item-icon1 {
    margin: 10px auto;
  }
  .item-icon2 {
    margin: 10px auto;
  }
  .third-col {
    margin-top: 30px;
  }
  .first-col .first-item,
  .last-item {
    display: flex;
    flex-flow: column;
    flex-direction: column-reverse;
    text-align: center;
  }
  .third-col .last-item {
    display: flex;
    flex-flow: column;
    flex-direction: column;
    text-align: center;
  }
  .big_image {
    display: block;
    position: static;
    height: auto;
    width: 100% !important;
    margin: 0 auto;
    margin-top: 50px;
  }
  .subscribe-form {
    margin-top: 2rem;
  }
  .subscribe-btn {
    position: static;
    margin-left: 0;
    margin-top: 20px;
  }
  #footer {
    border-top: 1px solid #e0e0e0;
    color: #363636;
    display: flex;
    flex-flow: column;
    justify-content: center;
    padding: 50px 10px;
    text-align: left;
  }
  .links ul li {
    text-align: left;
    display: inline-block;
    margin: 8px 0;
    margin-right: 20px;
    font-size: 16px;
  }
  .language-option {
    margin: 5px auto;
  }
  #testimonial .col {
    margin-bottom: 50px;
  }
  #download {
    padding: 50px 0;
  }
  #subscribe {
    padding: 100px 0;
  }
  .form-input {
    width: 80%;
    padding: 0 15px;
    padding-right: 15px;
    font-size: 16px;
    display: block;
    margin: auto;
  }
  .social-icons a {
    display: flex;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  body {
    font-size: 18px;
  }
  h1 {
    font-size: 50px;
  }
  h2 {
    font-size: 40px;
  }
  section {
    padding: 20px;
  }
  .span_1_of_3 {
    width: 100% !important;
  }
  .span_1_of_2 {
    width: 100% !important;
  }
  ::placeholder {
    text-align: center;
  }
  #mobileNav {
    display: block;
  }
  #navbar {
    display: none;
  }
  #hero {
    margin: 50px 0;
  }
  .logo {
    font-size: 1.875rem;
  }
  .hero-description {
    text-align: center;
    margin-top: 0.625rem;
    float: none;
    margin-left: 0;
  }
  .hero-description p {
    margin-bottom: 1.875rem;
  }
  .hero-img {
    display: none;
  }
  #features {
    padding-bottom: 50px;
  }
  .features-description {
    width: 100%;
  }
  .section-description {
    margin: 0;
  }
  #howto {
    height: 100%;
    margin-top: 0;
    padding: 50px 0;
  }
  #howto p {
    width: 80%;
    margin-left: 10%;
  }
  .item-icon1 {
    margin: 10px auto;
  }
  .item-icon2 {
    margin: 10px auto;
  }
  .third-col {
    margin-top: 30px;
  }
  .first-col .first-item,
  .last-item {
    display: flex;
    flex-flow: column;
    flex-direction: column-reverse;
    text-align: center;
  }
  .third-col .last-item {
    display: flex;
    flex-flow: column;
    flex-direction: column;
    text-align: center;
  }
  .big_image {
    display: block;
    position: static;
    height: auto;
    max-width: 100%;
    margin: 30px auto 0;
    text-align: center;
    object-fit: contain;
  }
  #footer {
    border-top: 1px solid #e0e0e0;
    color: #363636;
    display: flex;
    flex-flow: column;
    justify-content: center;
    text-align: left;
    padding: 0 10px;
  }
  .links ul li {
    text-align: left;
    display: inline-block;
    margin: 8px 0;
    margin-right: 20px;
    font-size: 18px;
  }
  #download {
    padding: 50px 0;
  }
  .form-input {
    width: 60%;
    padding: 0 15px;
    padding-right: 15px;
    font-size: 18px;
    display: block;
    margin: auto;
  }
}
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  h1 {
    font-size: 50px;
  }
  h2 {
    font-size: 40px;
  }
  #howto h4 {
    font-size: 1.3rem;
    font-weight: 900;
  }
  .btn {
    padding: 10px 20px;
    font-size: 16px;
  }
  section {
    padding: 20px;
  }
  .btn {
    padding: 15px 30px;
  }
  #mobileNav {
    display: block;
    right: 5%;
  }
  #mobileNav span {
    font-size: 2.5rem;
  }
  #navbar {
    display: none;
  }
  .overlay-content a {
    font-size: 40px;
  }
  .hero-img {
    max-width: 45% !important;
    right: 0.375rem;
  }
  .section-description {
    margin-top: 150px;
  }
  .little-description {
    width: 100%;
  }
  #howto {
    height: 100%;
    margin-bottom: 5rem;
    margin-top: 0;
    margin-top: 10rem;
    padding: 50px 0;
    position: relative;
    width: 100%;
  }
  #howto #howto p {
    width: 80%;
    margin-left: 10%;
  }
  .item-icon1 {
    margin: 10px auto;
  }
  .item-icon2 {
    margin: 10px auto;
  }
  .first-col .first-item,
  .last-item {
    display: flex;
    flex-flow: column;
    flex-direction: column-reverse;
    text-align: center;
  }
  .third-col .last-item {
    display: flex;
    flex-flow: column;
    flex-direction: column;
    text-align: center;
  }
  .big_image {
    display: block;
    position: static;
    height: auto;
    width: 100% !important;
    margin: 0 auto;
    margin-top: 50px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  h1 {
    font-size: 50px;
  }
  h2 {
    font-size: 40px;
  }
  #howto h4 {
    font-size: 1.3rem;
    font-weight: 900;
  }
  .btn {
    padding: 10px 20px;
    font-size: 16px;
  }
  section {
    padding: 20px;
  }
  .btn {
    padding: 15px 30px;
  }
  #mobileNav {
    display: block;
    right: 5%;
  }
  #mobileNav span {
    font-size: 2.5rem;
  }
  #navbar {
    display: none;
  }
  .overlay-content a {
    font-size: 40px;
  }
  .hero-img {
    max-width: 40% !important;
    right: 0.375rem;
  }
  #howto {
    height: 100%;
    margin-bottom: 5rem;
    margin-top: 10rem;
    padding: 50px 0;
    position: relative;
    width: 100%;
  }
  #howto #howto p {
    width: 80%;
    margin-left: 10%;
  }
  .item-icon1 {
    margin: 10px auto;
  }
  .item-icon2 {
    margin: 10px auto;
  }
  .first-col .first-item,
  .last-item {
    display: flex;
    flex-flow: column;
    flex-direction: column-reverse;
    text-align: center;
  }
  .third-col .last-item {
    display: flex;
    flex-flow: column;
    flex-direction: column;
    text-align: center;
  }
  .big_image {
    display: block;
    position: static;
    height: auto;
    width: 100% !important;
    margin: 0 auto;
    margin-top: 0px;
  }
  .form-input {
    width: 50%;
    padding: 0 30px;
    padding-right: 100px;
    font-size: 18px;
    margin: auto;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  #howto {
    margin-bottom: 5rem;
    margin-top: 10rem;
    padding: 50px 0;
    position: relative;
    width: 100%;
    height: 650px;
  }
  .big_image {
    max-width: 350px;
    margin-top: -135px;
  }
}
