@font-face {
  font-family: IRANSANS;
  src: url("/fonts/IRANSANS(FANUM).TTF");
}
html {
  scroll-behavior: smooth;
  direction: rtl;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  direction: rtl;
  text-align: right;
}

body {
  font-family: "IRANSANS";
  font-size: 15px;
  line-height: 1.5em;
  color: #293e37;
}

a {
  text-decoration: none;
  color: #293e37;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(288.66deg, #515E63 0.94%, #649584 80.38%);
  border-radius: 10px;
}

:root {
  scrollbar-color: #649584 #fff !important;
  scrollbar-width: thin !important;
}

.carousel-container {
  position: relative;
  /* CONTROLS */
}
.carousel-container .carousel-box {
  display: none;
}
.carousel-container .carousel {
  width: 70vw;
  height: 500px;
  margin: 50px auto;
  padding: 4rem;
  background-color: #23c197;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4rem;
}
.carousel-container img, .carousel-container video {
  background-color: #103226;
  height: 540px;
  width: auto;
  max-width: 65%;
  border-radius: 8px;
  /* transform: scale(1.2); */
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}
.carousel-container .testimonial {
  display: grid;
  grid-template-rows: 150px 1fr;
}
.carousel-container .testimonial-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 32px;
  color: #e6fcf5;
}
.carousel-container .testimonial-author {
  font-size: 14px;
  margin-bottom: 4px;
  color: #c3fae8;
}
.carousel-container .testimonial-job {
  font-size: 12px;
  color: #c3fae8;
}
.carousel-container .btn {
  background-color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  /* CENTER ICON */
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-container .btn--left {
  /* In relation to PARENT ELEMENT */
  left: 0;
  top: 50%;
  /* Inrelation to ELEMENT ITSELF */
  transform: translate(-50%, -50%);
}
.carousel-container .btn--right {
  right: 0;
  top: 50%;
  /* Inrelation to ELEMENT ITSELF */
  transform: translate(50%, -50%);
}
.carousel-container .btn-icon {
  height: 24px;
  width: 24px;
  stroke: #23c197;
}
.carousel-container .btn:hover,
.carousel-container .btn:active {
  background-color: #e6fcf5;
}
.carousel-container .dots {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 32px);
  /* Space between dots */
  display: flex;
  gap: 12px;
}
.carousel-container .dot {
  height: 12px;
  width: 12px;
  background-color: #fff;
  border: 2px solid #23c197;
  border-radius: 50%;
  cursor: pointer;
}
.carousel-container .dot--fill {
  background-color: #23c197;
}

@media screen and (max-width: 860px) {
  .carousel-container {
    width: 420px;
    height: 535px;
  }
  .carousel {
    width: 420px;
    height: 535px;
    padding: 32px 48px 32px 48px;
    flex-direction: column;
  }
}
.nav-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  max-width: 100%;
  height: inherit;
  padding-top: 4em;
  z-index: 3;
}
.nav-container .main-nav {
  height: 4vh;
  border-bottom: 1px solid #d1d1d1;
  background: rgba(116, 116, 116, 0.45);
  display: flex;
  width: 85%;
  margin: auto;
  padding: 3px 2rem 4px;
  justify-content: space-between;
}
.nav-container .main-nav .right-nav {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
.nav-container .main-nav .right-nav .menu {
  align-items: flex-end;
}
.nav-container .main-nav .right-nav .menu ul {
  display: flex;
  list-style-type: none;
}
.nav-container .main-nav .right-nav .menu ul li {
  padding: 0 9px;
}
.nav-container .main-nav .right-nav .menu ul li:first-child {
  padding-right: 2em;
}
.nav-container .main-nav .right-nav .menu ul li a {
  position: relative;
  display: block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  transition: 0.5s;
  color: #fff;
  text-shadow: 0 1px 2px rgb(70, 70, 70);
}
.nav-container .main-nav .right-nav .menu ul li a::after {
  position: absolute;
  content: "";
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  border-radius: 5px;
  background: #dafff2;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}
.nav-container .main-nav .right-nav .menu ul li a:hover {
  color: #dafff2;
}
.nav-container .main-nav .right-nav .menu ul li a:hover::after {
  transform: scaleX(1);
  transform-origin: right;
}
.nav-container .main-nav .left-nav {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.nav-container .main-nav .left-nav div {
  display: flex;
  padding-right: 1rem;
}
.nav-container .main-nav .left-nav div span, .nav-container .main-nav .left-nav div i {
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 5px black;
  font-weight: 600;
}
.nav-container .main-nav .left-nav div i {
  padding: 3px 0 3px 0;
}
.nav-container .main-nav .sm-nav {
  display: none;
}
.nav-container .main-nav .logo {
  background: #fff;
  height: 75px;
  width: 75px;
  border-radius: 50%;
  padding: 9px 10px 9px 9px;
}
.nav-container .main-nav .logo img {
  height: 100%;
  width: 100%;
}

.nav-box {
  height: 15vh;
}

header .bg-video-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 70vh;
  background: url("/images/1.mp4") no-repeat center center/cover;
}
header .bg-video-wrap video {
  min-width: 100%;
  min-height: 100vh;
  z-index: 1;
}
header .bg-video-wrap .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.7) 50%);
  background-size: 3px 3px;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

footer {
  width: 100vw;
  max-width: 100%;
  padding: 10px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 0.15fr 0.5fr 0.4fr;
  gap: 10px;
  background: #293e37;
  position: relative;
  z-index: 88748869;
}
footer .footer-title {
  display: flex;
  max-width: 1440px;
  width: 100%;
  margin: 1rem auto 2rem;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
}
footer .footer-title h2 {
  color: #d1d1d1;
  letter-spacing: 1px;
  font-size: 17px;
}
footer .footer-box1 {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  border-bottom: 1px solid #d1d1d1;
}
footer .footer-box1 .footer-contact {
  height: 100%;
  width: 40%;
  margin: 0 auto;
}
footer .footer-box1 .footer-contact .contact-text {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  color: #d1d1d1;
}
footer .footer-box1 .footer-contact .contact-text .text-box {
  margin: 10px 30px;
}
footer .footer-box1 .footer-contact .contact-text .text-box .text-title {
  display: flex;
  align-items: center;
  padding-bottom: 7px;
}
footer .footer-box1 .footer-contact .contact-text .text-box .text-title img {
  width: 17px;
  margin-left: 4px;
  padding-bottom: 4px;
}
footer .footer-box1 .footer-contact .contact-text .text-box p {
  padding-right: 10px;
}
footer .footer-box1 .footer-contact .footer-map {
  height: 100%;
  width: 100%;
  margin: 0 auto;
  margin: 0 auto;
  padding: 11px;
}
footer .footer-box1 .footer-form {
  height: 100%;
  width: 60%;
  margin: 0 auto;
}
footer .footer-box1 .footer-form form {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  margin: 0 auto;
}
footer .footer-box1 .footer-form form .formline1 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
footer .footer-box1 .footer-form form .input-container {
  position: relative;
  padding: 10px;
  margin: 5px 0px;
}
footer .footer-box1 .footer-form form .formcontrol {
  background-color: #d1d1d1;
  border-radius: 7px;
  border: 0;
  height: 40px;
  outline: 0;
  padding: 8px 19px;
  width: 250px;
}
footer .footer-box1 .footer-form form .txtear {
  width: 600px;
  height: 100px;
}
footer .footer-box1 .footer-form form .cut {
  background-color: #293e37;
  border-radius: 31px;
  height: 20px;
  right: 22px;
  position: absolute;
  top: -10px;
  transform: translateY(0);
  transition: transform 200ms;
  width: 110px;
}
footer .footer-box1 .footer-form form .cut-short {
  width: 50px;
}
footer .footer-box1 .footer-form form .formcontrol:not(:-moz-placeholder-shown) ~ .cut {
  transform: translateY(9px);
}
footer .footer-box1 .footer-form form .formcontrol:not(:-ms-input-placeholder) ~ .cut {
  transform: translateY(9px);
}
footer .footer-box1 .footer-form form .formcontrol:focus ~ .cut,
footer .footer-box1 .footer-form form .formcontrol:not(:placeholder-shown) ~ .cut {
  transform: translateY(9px);
}
footer .footer-box1 .footer-form form .placeholder {
  right: 44px;
  pointer-events: none;
  position: absolute;
  transition: transform 200ms, color 200ms;
  top: 20px;
}
footer .footer-box1 .footer-form form .formcontrol:not(:-moz-placeholder-shown) ~ .placeholder {
  transform: translateY(-24px) translateX(13px) scale(0.8);
}
footer .footer-box1 .footer-form form .formcontrol:not(:-ms-input-placeholder) ~ .placeholder {
  transform: translateY(-24px) translateX(13px) scale(0.8);
}
footer .footer-box1 .footer-form form .formcontrol:focus ~ .placeholder,
footer .footer-box1 .footer-form form .formcontrol:not(:placeholder-shown) ~ .placeholder {
  transform: translateY(-24px) translateX(13px) scale(0.8);
}
footer .footer-box1 .footer-form form .formcontrol:not(:-moz-placeholder-shown) ~ .placeholder {
  color: #d1d1d1;
}
footer .footer-box1 .footer-form form .formcontrol:not(:-ms-input-placeholder) ~ .placeholder {
  color: #d1d1d1;
}
footer .footer-box1 .footer-form form .formcontrol:not(:placeholder-shown) ~ .placeholder {
  color: #d1d1d1;
}
footer .footer-box1 .footer-form form .formcontrol:focus ~ .placeholder {
  color: #d1d1d1;
}
footer .footer-box1 .footer-form form .button-box {
  width: 100%;
  padding: 10px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
footer .footer-box1 .footer-form form .button-box button {
  width: 140px;
  height: 50px;
  border: none;
  outline: none;
  background: #fab50e;
  color: #fff;
  font-size: 17px;
  border-radius: 40px;
  text-align: center;
  box-shadow: 0 3px 8px -4px rgb(16, 50, 38);
  cursor: pointer;
  font-weight: 600;
}
footer .footer-box2 {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  display: flex;
}
footer .footer-box2 .footer-about {
  height: 100%;
  width: 60%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  padding-bottom: 1rem;
}
footer .footer-box2 .footer-about .about-title {
  display: flex;
  align-items: flex-end;
  margin-top: 1rem;
}
footer .footer-box2 .footer-about .about-title .logo-footer {
  width: 90px;
  background: #fff;
  height: 90px;
  border-radius: 50%;
  padding: 10px;
}
footer .footer-box2 .footer-about .about-title .logo-footer img {
  width: 100%;
  height: 100%;
}
footer .footer-box2 .footer-about .about-title span {
  font-size: 18px;
  color: #fff;
  padding: 8px;
  letter-spacing: 2px;
}
footer .footer-box2 .footer-about p {
  margin: 1rem;
  color: #d1d1d1;
  letter-spacing: 0.5px;
  line-height: 30px;
}
footer .footer-box2 .footer-about .icons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
footer .footer-box2 .footer-about .icons img {
  margin: 0 5px;
  transition: transform 0.2s;
}
footer .footer-box2 .footer-about .icons img:hover {
  transform: rotate(10deg);
}
footer .footer-box2 .footer-about .icons .icon-box {
  display: flex;
  flex-direction: column;
}
footer .footer-box2 .footer-about .icons #aparat-logo {
  position: relative;
}
footer .footer-box2 .footer-about .icons #aparat-logo img {
  width: 25px;
}
footer .footer-box2 .footer-about .icons #aparat-logo img:hover ~ #aparat-label {
  visibility: visible;
}
footer .footer-box2 .footer-about .icons #instagram-logo {
  position: relative;
}
footer .footer-box2 .footer-about .icons #instagram-logo img {
  width: 25px;
}
footer .footer-box2 .footer-about .icons #instagram-logo img:hover ~ #instagram-label {
  visibility: visible;
}
footer .footer-box2 .footer-about .icons #rss-logo {
  position: relative;
}
footer .footer-box2 .footer-about .icons #rss-logo img {
  width: 22px;
}
footer .footer-box2 .footer-about .icons #rss-logo img:hover ~ #rss-label {
  visibility: visible;
}
footer .footer-box2 .footer-about .icons #aparat-label {
  visibility: hidden;
  position: absolute;
  min-width: 60px;
  font-size: 10px;
  display: flex;
  color: #fff;
  background: #293e37;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
}
footer .footer-box2 .footer-about .icons #instagram-label {
  visibility: hidden;
  position: absolute;
  min-width: 60px;
  font-size: 10px;
  display: flex;
  color: #fff;
  background: #293e37;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
}
footer .footer-box2 .footer-about .icons #rss-label {
  visibility: hidden;
  position: absolute;
  min-width: 60px;
  font-size: 10px;
  display: flex;
  color: #fff;
  background: #293e37;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
}
footer .footer-box2 .footer-links {
  height: 100%;
  margin: 0 auto;
  width: 40%;
  padding-right: 2rem;
}
footer .footer-box2 .footer-links .link-menu {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  margin-top: 2rem;
}
footer .footer-box2 .footer-links .link-menu ul {
  list-style: none;
}
footer .footer-box2 .footer-links .link-menu ul li {
  margin: 12px 0;
}
footer .footer-box2 .footer-links .link-menu ul li a {
  font-size: 13px;
  color: #d1d1d1;
  letter-spacing: 1px;
  transition: margin 0.5s;
}
footer .footer-box2 .footer-links .link-menu ul li a:hover {
  margin-right: 5px;
  color: #fff;
}
footer .footer-box2 .footer-links .img-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
footer .footer-box2 .footer-links .img-box img {
  width: 80px;
}

@media screen and (max-width: 1100px) {
  .nav-container .main-nav .right-nav .menu ul li a {
    font-size: 1px;
  }
  footer {
    grid-template-rows: 0.2fr 1fr 1fr;
  }
  footer .footer-box1 {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: repeat(2, 1fr) !important;
    grid-template-areas: "form" "contact";
    gap: 10px;
  }
  footer .footer-box1 .footer-contact, footer .footer-box1 .footer-form {
    padding-right: 0;
    width: 100%;
  }
  footer .footer-box2 {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-areas: "about" "links";
    gap: 10px;
  }
  footer .footer-box2 .footer-about, footer .footer-box2 .footer-links {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .nav-container {
    padding-top: 4em;
  }
  .nav-container .main-nav {
    height: 4vh;
    padding: 3px 1rem 4px;
  }
  .nav-container .main-nav .right-nav,
.nav-container .main-nav .left-nav {
    display: none;
  }
  .nav-container .main-nav .sm-nav {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-end;
  }
  .nav-container .main-nav .sm-nav .right-sm-nav {
    position: relative;
    width: 5%;
    height: 100%;
  }
  .nav-container .main-nav .sm-nav .right-sm-nav #menu {
    position: absolute;
    display: none;
    right: -15px;
    top: 4vh;
    min-width: 200px;
    max-height: 40vh;
    box-shadow: 0 0 11px #85888c;
    padding: 1rem;
    background-color: #d1d1d1;
  }
  .nav-container .main-nav .sm-nav .right-sm-nav #menu ul {
    list-style: none;
    margin-bottom: 10px;
  }
  .nav-container .main-nav .sm-nav .right-sm-nav #menu ul li {
    padding: 9px;
  }
  .nav-container .main-nav .sm-nav .right-sm-nav #menu ul li a {
    position: relative;
    display: block;
    letter-spacing: 1px;
    font-size: 13px;
    font-weight: 600;
    color: #292929;
    text-transform: uppercase;
    transition: 0.5s;
  }
  .nav-container .main-nav .sm-nav .right-sm-nav #menu ul li a::after {
    position: absolute;
    content: "";
    top: 100%;
    left: 0;
    width: 100%;
    height: 1px;
    border-radius: 5px;
    background: #d1d1d1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s;
  }
  .nav-container .main-nav .sm-nav .right-sm-nav #menu ul li a:hover {
    color: #649584;
  }
  .nav-container .main-nav .sm-nav .right-sm-nav #menu ul li a:hover::after {
    transform: scaleX(1);
    transform-origin: right;
  }
  .nav-container .main-nav .sm-nav .right-sm-nav #menu .icons {
    display: flex;
    margin-right: 7px;
  }
  .nav-container .main-nav .sm-nav .right-sm-nav #menu .icons div {
    margin: 0 5px;
    display: flex;
    align-items: flex-end;
  }
  .nav-container .main-nav .sm-nav .right-sm-nav #menu .icons span {
    color: #595959;
    font-size: 12px;
    font-weight: 600;
    padding-left: 2px;
    transition: color 0.2s;
  }
  .nav-container .main-nav .sm-nav .right-sm-nav #menu .icons .spn-login {
    padding: 0px 4px 2px 3px;
  }
  .nav-container .main-nav .sm-nav .right-sm-nav #menu .icons img {
    width: 22px;
  }
  .nav-container .main-nav .sm-nav .right-sm-nav #menu .icons a:hover img {
    transform: scale(1.1);
  }
  .nav-container .main-nav .sm-nav .right-sm-nav #menu .icons a:hover .spn-lnguage {
    color: #d1d1d1;
  }
  .nav-container .main-nav .sm-nav .right-sm-nav #menu .icons a:hover .spn-login {
    color: #292929;
  }
  .nav-container .main-nav .sm-nav .right-sm-nav #menuToggle {
    display: flex;
    flex-direction: column;
    width: 30px;
    height: 100%;
    justify-content: center;
    z-index: 1;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .nav-container .main-nav .sm-nav .right-sm-nav #menuToggle .collapsebutton {
    display: flex;
    width: 29px;
    height: 2px;
    margin-bottom: 5px;
    position: relative;
    background: #fff;
    border-radius: 3px;
    z-index: 1;
    transform-origin: 5px 0px;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
  }
  .nav-container .main-nav .sm-nav .right-sm-nav #menuToggle .collapsebutton:first-child {
    transform-origin: 0% 0%;
  }
  .nav-container .main-nav .sm-nav .right-sm-nav #menuToggle .collapsebutton:nth-last-child(2) {
    transform-origin: 0% 100%;
    margin-bottom: 0;
  }
  .nav-container .main-nav .sm-nav .right-sm-nav #menuToggle input {
    display: flex;
    width: 30px;
    height: 100%;
    position: absolute;
    top: 0;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
  }
  .nav-container .main-nav .sm-nav .right-sm-nav #menuToggle input:checked ~ .collapsebutton {
    width: 20px;
    opacity: 1;
    transform: rotate(45deg) translate(2px, 7px);
    background: #fff;
  }
  .nav-container .main-nav .sm-nav .right-sm-nav #menuToggle input:checked ~ .collapsebutton:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
  }
  .nav-container .main-nav .sm-nav .right-sm-nav #menuToggle input:checked ~ .collapsebutton:nth-last-child(2) {
    transform: rotate(-45deg) translate(-3px, 0px);
  }
  .nav-container .main-nav .sm-nav .right-sm-nav #menuToggle input:checked ~ ul {
    transform: none;
  }
  .nav-container .main-nav .sm-nav .right-sm-nav #menuToggle input:checked ~ #menu {
    display: flex;
    flex-direction: column;
  }
  header .bg-video-wrap {
    height: 55vh;
  }
  footer {
    grid-template-rows: 0.15fr 0.5fr 0.4fr;
  }
  footer .footer-box1 .footer-form form .input-container {
    margin: 0;
  }
  footer .footer-box1 .footer-form form .formcontrol {
    width: 100%;
  }
  footer .footer-box1 .footer-form form .txtear {
    width: 450px;
  }
  footer .footer-box1 .footer-form form .button-box {
    padding: 5px;
  }
  footer .footer-box1 .footer-form form .button-box button {
    width: 140px;
    height: 50px;
    border: none;
    outline: none;
    background: #649584;
    color: #fff;
    font-size: 17px;
    border-radius: 40px;
    text-align: center;
    box-shadow: 0 3px 8px -4px rgb(16, 50, 38);
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }
  footer .footer-box1 .footer-form form .button-box .check-box {
    width: 50px;
    height: 50px;
    border-radius: 40px;
    box-shadow: 0 0 12px -2px rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0px;
    left: -40px;
    opacity: 0;
  }
  footer .footer-box1 .footer-form form .button-box .check-box svg {
    width: 33px;
    margin: 9px;
  }
  footer .footer-box1 .footer-form form .button-box svg path {
    stroke-width: 3;
    stroke: #fff;
    stroke-dasharray: 34;
    stroke-dashoffset: 34;
    stroke-linecap: round;
  }
  footer .footer-box1 .footer-form form .button-box .active {
    background: #649584;
    transition: 1s;
  }
  footer .footer-box1 .footer-form form .button-box .active .check-box {
    left: 0;
    opacity: 1;
    transition: 1s;
  }
  footer .footer-box1 .footer-form form .button-box .active p {
    margin-left: 65px;
    transition: 1s;
  }
  footer .footer-box1 .footer-form form .button-box #btnText {
    font-family: "IRANSANS";
    font-size: 14px;
  }
  footer .footer-box1 .footer-form form .button-box .active svg path {
    stroke-dashoffset: 0;
    transition: 1s;
    transition-delay: 1s;
  }
  footer .footer-box2 .footer-about .icons {
    justify-content: center;
  }
}
@media screen and (max-width: 500px) {
  header .bg-video-wrap {
    height: 70vh;
  }
  footer {
    grid-template-rows: none !important;
  }
  footer .footer-title {
    justify-content: flex-start;
  }
  footer .footer-box1 {
    grid-template-rows: none !important;
  }
  footer .footer-box1 .footer-contact {
    grid-template-columns: 1fr;
  }
  footer .footer-box1 .footer-form form {
    width: 100%;
  }
  footer .footer-box1 .footer-form form .input-container {
    margin: 0;
    width: 100%;
  }
  footer .footer-box1 .footer-form form .formcontrol {
    width: 70%;
  }
  footer .footer-box1 .footer-form form .txtear {
    width: 90%;
  }
  footer .footer-box1 .footer-form form .formline1 {
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
  }
  footer .footer-box1 .footer-form form .button-box {
    padding: 5px;
  }
  footer .footer-box2 .footer-about p {
    margin: 0;
    width: 100%;
    margin: 2rem auto;
  }
  footer .footer-box2 .footer-about .icons {
    justify-content: center;
  }
  footer .footer-box2 .footer-links {
    padding-right: 0;
    grid-template-columns: 1fr;
  }
  footer .footer-box2 .footer-links .link-menu {
    grid-template-columns: 1fr;
    margin-top: 0;
  }
  footer .footer-box2 .footer-links .img-box {
    flex-direction: row;
    justify-content: center;
  }
  footer .footer-box2 .footer-links .img-box img {
    width: 80px;
  }
}
