.TFManim {
  opacity: 0;
}

@keyframes slideup {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadein2 {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.7;
  }
}
@keyframes fromleft {
  from {
    transform: translateX(-100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fromright {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes pulse {
  from {
    box-shadow: 0 0 0 rgb(255, 255, 255);
  }
  to {
    box-shadow: 0 0 20px rgb(255, 255, 255);
  }
}
.fadein7 {
  animation: fadein2 2s;
  animation-fill-mode: forwards;
}

.carousel-fade {
  animation-name: carouselFade;
  animation-duration: 1.5s;
}

.carousel-left {
  animation-name: carouselLeft;
  animation-duration: 0.5s;
  animation-timing-function: ease-out;
}

.anim-pulse-white {
  box-shadow: none;
  animation: pulse 1s ease-out 0s infinite normal forwards;
}

@keyframes carouselFade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
@keyframes carouselLeft {
  from {
    opacity: 0.3;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes arrowdown {
  from {
    transform: translateY(-5px);
  }
  to {
    transform: translateY(5px);
  }
}
@keyframes spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.anim-spin {
  animation: spin 20s linear 0s infinite normal forwards;
}

.anim-arrowDown {
  animation: arrowdown 1s ease-out 0s infinite normal forwards;
}

* {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: normal;
  src: url("./fonts/Poppins/Poppins-Medium.ttf");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: bold;
  src: url("./fonts/Poppins/Poppins-Bold.ttf");
}
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: normal;
  src: url("./fonts/Poppins/Poppins-MediumItalic.ttf");
}
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: bold;
  src: url("./fonts/Poppins/Poppins-BoldItalic.ttf");
}
html {
  box-sizing: border-box;
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 10rem;
}
@media only screen and (max-width: 1280px) {
  html {
    font-size: 50%;
  }
}
@media only screen and (min-width: 1800px) {
  html {
    font-size: 75%;
  }
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #000;
  background-color: rgb(240, 240, 240);
}

main {
  overflow: hidden;
}

.section {
  padding: 4rem 5%;
}
@media only screen and (max-width: 600px) {
  .section {
    padding: 2rem 5%;
  }
}

.header-primary {
  font-size: 5rem;
  color: #000;
  line-height: 1.2;
}
@media only screen and (max-width: 800px) {
  .header-primary {
    font-size: 4rem;
  }
}
.header-secondary {
  font-size: 4rem;
  font-weight: normal;
  line-height: 1.2;
}
.header-tertiary {
  font-size: 2rem;
  font-weight: normal;
  line-height: 1.2;
  max-width: 72ch;
}

.paragraph {
  font-size: 2rem;
  color: #000;
  line-height: 1.3;
  max-width: 72ch;
  margin-bottom: 2rem;
}

.text-color-white {
  color: #fff;
}
.text-color-white:link, .text-color-white:visited {
  color: #fff;
  text-decoration: none;
}
.text-color-blue {
  color: #007fa6;
}
.text-color-blue:link, .text-color-blue:visited {
  color: #007fa6;
  text-decoration: none;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

.text-overflow {
  width: 90%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.text-uppercase {
  text-transform: uppercase;
}

.margin-top-md {
  margin-top: 4rem;
}

.margin-bottom-sm {
  margin-bottom: 2rem;
}

.margin-bottom-md {
  margin-bottom: 4rem;
}

.margin-top-sm {
  margin-top: 2rem;
}

.padding-sides-sm {
  padding: 0 2rem;
}

.margin-auto {
  margin-left: auto;
  margin-right: auto;
}

div[data-anchor]:target::before {
  content: "";
  display: block;
  height: 10rem; /* fixed header height*/
  margin: -10rem 0 0; /* negative fixed header height */
}

.navbar {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1100;
  box-shadow: 0 0 5px #979797;
  height: 10rem;
  background: rgba(30, 163, 196, 0.8);
  padding: 1rem 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 2rem;
  color: #fff;
}
.navbar .burger-btn {
  display: none;
}
@media only screen and (max-width: 1280px) {
  .navbar .burger-btn {
    display: block;
  }
}
.navbar__link, .navbar__link:link, .navbar__link:visited {
  text-decoration: none;
  color: inherit;
  font-size: 1.6rem;
  width: max-content;
}
.navbar__link::after, .navbar__link:link::after, .navbar__link:visited::after {
  content: "";
  display: block;
  margin: 0 auto;
  height: 2px;
  width: 0;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.navbar__link:hover::after, .navbar__link:link:hover::after, .navbar__link:visited:hover::after {
  opacity: 1;
  visibility: visible;
  width: 50%;
}
.navbar__link--active::after, .navbar__link--active:link::after, .navbar__link--active:visited::after {
  opacity: 1;
  visibility: visible;
}
.navbar__logo-box {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.navbar__logo {
  height: 70%;
  width: auto;
}
.navbar > :last-child {
  margin-left: auto;
}

.sidenav {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: -10%;
  visibility: hidden;
  opacity: 0;
  z-index: 1200;
  transition: all 0.3s;
}
.sidenav--active {
  visibility: visible;
  opacity: 1;
  right: 0;
  z-index: 1200;
}
.sidenav__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.sidenav__logo {
  max-width: 10rem;
  height: auto;
}
.sidenav__icons-box {
  display: flex;
  column-gap: 2rem;
  margin-bottom: 2rem;
}
.sidenav__background {
  position: absolute;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.658);
  z-index: 1;
}
.sidenav__nav {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 60%;
  min-width: 40rem;
  z-index: 2;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.sidenav__nav > * {
  padding: 1rem 2rem;
}
.sidenav__list {
  list-style: none;
  width: max-content;
  transition: all 0.3s;
}
.sidenav__item {
  position: relative;
  width: fit-content;
  transition: all 0.3s;
}
.sidenav__link, .sidenav__link:link, .sidenav__link:visited {
  text-decoration: none;
  color: #1ea3c4;
  font-size: 2rem;
  font-weight: 700;
}
.sidenav__link--active::after, .sidenav__link--active:link::after, .sidenav__link--active:visited::after {
  content: "";
  display: inline-block;
  height: 1rem;
  width: 1rem;
  margin-left: 1rem;
  border-radius: 50%;
}
.sidenav__link--submenu, .sidenav__link--submenu:link, .sidenav__link--submenu:visited {
  font-weight: 400;
  color: #1ea3c4;
}
.sidenav__submenu {
  margin-left: 1rem;
  height: 0;
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out 0s;
}
.sidenav__submenu--active {
  height: 100%;
  visibility: visible;
  opacity: 1;
}
.sidenav__footer {
  font-size: 1.6rem;
  text-align: center;
  background-color: #1ea3c4;
  color: #fff;
  margin-top: auto;
}

.burger-btn {
  background-color: #1ea3c4;
  color: #000;
  height: 4.5rem;
  width: 4.5rem;
  border: none;
  border-radius: 100%;
  box-shadow: 0 0 15px #979797;
  cursor: pointer;
}

.burger-icon {
  border-radius: 100%;
  position: relative;
  display: inline-block;
  height: 2px;
  width: 2.5rem;
  background: #fff;
  top: -0.4rem;
  left: 0;
  transition: all 0.3s;
}
.burger-icon::before, .burger-icon::after {
  width: 2.5rem;
  height: 2px;
  background-color: #fff;
  display: inline-block;
}
.burger-icon::before, .burger-icon::after {
  content: "";
  position: absolute;
  left: 0;
  transition: all 0.2s;
}
.burger-icon::before {
  top: -0.8rem;
}
.burger-icon::after {
  top: 0.8rem;
}
.burger-icon--pressed {
  background-color: transparent;
}
.burger-icon--pressed::before {
  top: 0;
  transform: rotate(135deg);
}
.burger-icon--pressed::after {
  top: 0;
  transform: rotate(-135deg);
}

.btn,
.btn:link,
.btn:visited {
  display: inline-block;
  border: none;
  border-radius: 50px 50px 50px 50px;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 700;
  font-family: inherit;
  text-align: center;
  box-shadow: 0 3px 5px #777;
  transition: all 0.3s;
  width: fit-content;
  padding: 1rem 4rem;
}

.btn--white {
  background-color: #fff;
  transition: all 0.3s;
  color: #3bb0d1;
}
.btn--white:hover {
  box-shadow: 0 3px 15px #007fa6;
}
.btn--blue {
  font-family: inherit;
  background-color: #007fa6;
  color: #fff;
}
.btn--blue:hover {
  box-shadow: 0 3px 15px #fff;
  text-shadow: 0 0 5px #fff;
}
.btn--form {
  font-family: inherit;
  padding: 1.5rem 8rem;
}
.btn--form-blue {
  background-color: rgba(30, 163, 196, 0.8);
}
.btn--form-blue:hover {
  background-color: #1ea3c4;
}

.slider-container-home {
  position: relative;
  color: #fff;
  height: 70vh;
  min-height: 300px;
  display: grid;
  display: grid;
  grid-template-columns: 5% repeat(4, 1fr) 5%;
  grid-template-rows: 1fr 8rem 8rem 2rem;
  grid-template-areas: ". .     .     .     .     ." ". btn   btn   btn   btn   ." ". text  text  text  text  ." ". .     .     .     .     .";
  align-content: center;
  justify-content: center;
}
@media only screen and (max-width: 600px) {
  .slider-container-home {
    grid-template-rows: 1fr 8rem 10rem 2rem;
  }
}
@media only screen and (min-device-width: 800px) and (max-device-width: 1280px) and (orientation: portrait) {
  .slider-container-home {
    height: 50vh;
  }
}

.slide-home {
  position: relative;
  text-align: center;
  grid-column: 1/-1;
  grid-row: 1/-1;
  z-index: 1;
  display: grid;
  grid-template-columns: 5% repeat(4, 1fr) 5%;
  grid-template-rows: 1fr 8rem 8rem 2rem;
  grid-template-areas: ". .     .     .     .     ." ". btn   btn   btn   btn   ." ". text  text  text  text  ." ". .     .     .     .     .";
  justify-content: center;
  align-content: center;
}
@media only screen and (max-width: 600px) {
  .slide-home {
    grid-template-rows: 1fr 8rem 10rem 2rem;
  }
}
.slide-home__img {
  height: 100%;
  width: 100%;
  grid-column: 1/-1;
  grid-row: 1/-1;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}
.slide-home__img--home-1 {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 30%, rgba(30, 163, 196, 0) 30%, rgba(30, 163, 196, 0.9)), url("../assets/Slide1.jpg");
}
.slide-home__img--home-2 {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 30%, rgba(30, 163, 196, 0) 30%, rgba(30, 163, 196, 0.9)), url("../assets/Slide2.jpg");
}
.slide-home__img--home-3 {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 30%, rgba(30, 163, 196, 0) 30%, rgba(30, 163, 196, 0.9)), url("../assets/Slide3.jpg");
}
.slide-home__img--home-1 {
  background-position: 0% 30%;
}
@media only screen and (max-width: 600px) {
  .slide-home__img--home-1 {
    background-position: 20% 30%;
  }
}
.slide-home__img--home-2 {
  background-position: 60% 15%;
}
@media only screen and (max-width: 800px) {
  .slide-home__img--home-2 {
    background-position: 70% 15%;
  }
}
.slide-home__img--home-3 {
  background-position: 50% 15%;
}
.slide-home__text {
  grid-area: text;
  align-self: end;
  z-index: 2;
  font-size: 3.5rem;
  line-height: 1.2;
  color: #fff;
  font-weight: bold;
  text-align: center;
  max-width: 30ch;
  margin: 0 auto;
}
@media only screen and (max-width: 600px) {
  .slide-home__text {
    font-size: 2.5rem;
  }
}
.slide-home__dot-box {
  text-align: center;
  grid-column: 1/-1;
  grid-row: 4/4;
  z-index: 2;
  align-self: end;
  padding: 10px 0;
}
.slide-home__dot {
  cursor: pointer;
  height: 20px;
  width: 20px;
  margin: 0 2px;
  background-color: transparent;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.slide-home__dot--white {
  border: 3px solid white;
}
.slide-home__dot--white:hover {
  background-color: white;
}
.slide-home__dot--active {
  background-color: white;
}
.slide-home__control {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0, 0, 0, 0.8);
}
.slide-home__control--next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
.slide-home__box-btn {
  grid-area: btn;
  align-self: center;
  z-index: 2;
  text-align: center;
  height: fit-content;
}
.slide-home__logo {
  height: auto;
  object-fit: contain;
}
.slide-home__logo--1 {
  height: 100%;
  width: 100%;
  background-color: #1ea3c4;
}
.slide-home__logo--2, .slide-home__logo--3 {
  width: 90%;
}

.icon-box {
  display: inline-block;
  cursor: pointer;
  color: currentColor;
}
.icon-box--blue {
  background-color: #1ea3c4;
}

.icon-box-rounded {
  border-radius: 50%;
  padding: 1rem;
  display: flex;
}

.icon__navbar {
  height: 3.2rem;
  width: 3.2rem;
  fill: currentColor;
  transition: all 0.3s;
}
.icon__arrow {
  height: 4rem;
  width: 4rem;
}
.icon__slide, .icon__hero {
  height: 3rem;
  width: 3rem;
  vertical-align: sub;
}
.icon__btn {
  height: 3rem;
  width: 3rem;
  vertical-align: sub;
}
.icon__contact {
  height: 5rem;
  width: 5rem;
  fill: #fff;
}
.icon__contact--facebook {
  background-color: #424242;
}
.icon__contact--email {
  stroke: #424242;
}
.icon__sidenav {
  height: 3.2rem;
  width: 3.2rem;
  fill: #fff;
}

.form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 5%;
}
.form__control {
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s;
  text-align: left;
}
.form__control:hover > .form__input {
  outline: none;
}
.form__control:not(:last-child) {
  margin-bottom: 2rem;
}
.form__control--name, .form__control--phone {
  flex: 1 1 45%;
}
@media only screen and (max-width: 1280px) {
  .form__control--name, .form__control--phone {
    flex: 1 0 90%;
  }
}
.form__control--email, .form__control--message, .form__control--btn {
  flex: 1 1 100%;
}
.form__input {
  font-size: 2rem;
  font-family: inherit;
  color: rgb(255, 255, 255);
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.1);
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  display: block;
  transition: all 0.3s;
  width: 100%;
  outline: none;
  border-radius: 15px;
}
.form__input::placeholder {
  color: #fff;
  font-weight: bold;
}
.form__input:focus, .form__input:hover, .form__input:not(.form__input:placeholder-shown) {
  background-color: rgba(0, 0, 0, 0.3);
  outline: none;
  border-bottom: 2px solid white;
}
.form__label {
  font-size: 1.5rem;
  font-family: inherit;
  color: #000;
  padding: 1rem 1rem 0 0;
  transition: all 0.3s;
  display: flex;
  align-items: center;
}
.form__label--message {
  align-self: flex-start;
}
.form__icon {
  display: inline-block;
  margin-right: 1rem;
  height: 2rem;
  width: 2rem;
  vertical-align: text-top;
}

.footer {
  padding: 2rem 5%;
  text-align: center;
  font-size: 1.6rem;
  background-color: #fff;
}
.footer__link, .footer__link:link, .footer__link:visited {
  text-decoration: none;
  color: #fff;
  cursor: pointer;
}
.footer__designer {
  display: block;
}
.footer__logo {
  height: 4rem;
  width: auto;
  vertical-align: middle;
  filter: grayscale(100%);
  transition: all 0.3s;
}
.footer__logo:hover {
  filter: none;
}

.fancy-line {
  width: 100%;
  margin: 1rem auto;
}

.separator {
  text-align: center;
  padding: 2rem;
}
.separator__img {
  height: 10rem;
  width: auto;
}
.separator__icon {
  height: 2rem;
  width: 2rem;
}

.list-simple {
  font-size: 2rem;
  margin: 1rem 0;
  list-style: disc inside;
  max-width: 50ch;
}
@media only screen and (max-width: 1000px) {
  .list-simple {
    max-width: fit-content;
  }
}
.list-simple__item:not(:last-child) {
  margin-bottom: 1rem;
}

.product {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto repeat(2, 1fr);
  grid-template-rows: repeat(3, min-content);
  grid-template-areas: "img header header" "img par par" "img btn btn";
  align-items: center;
  justify-items: left;
  background-image: linear-gradient(to left, rgba(59, 176, 209, 0.9) 50%, rgba(59, 176, 209, 0.9));
}
.product:not(:last-child) {
  margin-bottom: 4rem;
}
@media only screen and (max-width: 800px) {
  .product {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto repeat(3, min-content);
    grid-template-areas: "img    img" "header header" "par    par" "btn    btn";
  }
}
.product__img-box {
  grid-area: img;
  margin: 0 auto;
  position: relative;
}
.product__img {
  display: block;
  height: 100%;
  width: 100%;
  max-width: 42rem;
  object-fit: cover;
  box-shadow: 0 0 10px #979797;
  transition: all 0.3s;
}
.product__img--gif {
  height: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.product__img-active {
  height: 100%;
  visibility: visible;
  opacity: 1;
}
.product__img-text {
  z-index: 3;
  font-size: 2rem;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.74);
  text-align: center;
  padding: 1rem;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.product__header {
  grid-area: header;
  font-size: 2.5rem;
  color: #fff;
  padding: 2rem;
}
.product__icons {
  height: 6rem;
  width: auto;
}
.product__description {
  grid-area: par;
  padding: 0 2rem;
}
.product__btn-box {
  grid-area: btn;
  padding: 2rem;
}

.services {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4rem 5%;
}
.services__img-box {
  flex: 1 1 20%;
  text-align: center;
  min-width: 15rem;
  max-width: 25rem;
}
.services__img {
  height: 12rem;
  width: auto;
}
.services__caption {
  font-size: 2rem;
  color: #007fa6;
  max-width: 12ch;
  margin: 0 auto;
}

.row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 0;
}
.row .row-left {
  justify-content: left;
}
.row .row.right {
  justify-content: right;
}
.row .align-start {
  align-self: flex-start;
}

.col-50 {
  flex: 1 1 45%;
}
@media only screen and (max-width: 1000px) {
  .col-50 {
    flex: 1 1 80%;
  }
}

.col-60 {
  flex: 1 1 55%;
}
@media only screen and (max-width: 800px) {
  .col-60 {
    flex: 1 1 80%;
  }
}

.col-40 {
  flex: 1 1 35%;
}
@media only screen and (max-width: 800px) {
  .col-40 {
    flex: 1 1 80%;
  }
}

.col-1-of-1 {
  flex: 0 1 80%;
}

.home-about__logo {
  width: 70%;
  height: auto;
  max-width: 40rem;
}
.home-about__img {
  height: auto;
  width: 100%;
  max-width: 600px;
  min-width: 290px;
}
@media only screen and (max-width: 1000px) {
  .home-about__img {
    width: 50%;
  }
}
.home-about__header {
  width: fit-content;
}
@media only screen and (max-width: 1000px) {
  .home-about__header {
    margin: 0 auto;
  }
}

.home-products {
  background-image: linear-gradient(to left, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url("../assets/back-services.png");
  background-size: contain;
  background-repeat: repeat;
  background-attachment: fixed;
}

.home-benefits {
  max-width: 1400px;
  margin: 0 auto;
  background-size: 100%, auto 100%;
  background-repeat: no-repeat;
  background-position: 150% 50%;
  background-image: linear-gradient(to right, #007fa6 50%, rgba(59, 176, 209, 0.3) 70%, rgba(59, 176, 209, 0.3)), url("../assets/Back-sec4.jpg");
}
@media only screen and (max-width: 1280px) {
  .home-benefits {
    background-size: 100%, auto 100%;
    background-repeat: no-repeat;
    background-position: 100% 50%;
    background-image: linear-gradient(to right, #007fa6 50%, rgba(59, 176, 209, 0.3) 70%, rgba(59, 176, 209, 0.3)), url("../assets/Back-sec4.jpg");
  }
}
@media only screen and (max-width: 1000px) {
  .home-benefits {
    background-size: 100%, cover;
    background-repeat: no-repeat;
    background-position: 40% 50%;
    background-image: linear-gradient(to right, rgba(0, 127, 166, 0.7) 50%, rgba(0, 127, 166, 0.7) 70%, rgba(0, 127, 166, 0.7)), url("../assets/Back-sec4.jpg");
  }
}

.home-services {
  max-width: 1400px;
  margin: 0 auto;
}
.home-services__header {
  max-width: 72ch;
  text-align: center;
  margin: 0 auto 2rem;
  color: #007fa6;
}

.home-contact {
  background-size: 100%, cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-image: linear-gradient(to left, rgba(59, 176, 209, 0.8) 50%, rgba(59, 176, 209, 0.8)), url("../assets/Back-Form.jpg");
}
.home-contact__logo {
  height: 6rem;
  width: auto;
  vertical-align: sub;
}
@media only screen and (max-width: 1000px) {
  .home-contact__info {
    margin-top: 4rem;
  }
}
.home-contact__info > * {
  margin-bottom: 2rem;
}
.home-contact__icons-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.home-contact__icons-box .icon-box-rounded {
  background-color: #424242;
}

/*# sourceMappingURL=style.css.map */
