@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;400;700;900&display=swap");
@import url("../components/btns.css");
:root {
  --color_1: #1A6C8C;
  --color_2: #EB2459;
  --color_3: #F0FBFF;
  --reset:     0px;
  --none:      none;
  --clear:     transparent;
}

html, body, h1, h2, h3, h4, h5, h6, p {
  margin: var(--reset);
  padding: var(--reset);
}

body {
  overflow-x: hidden !important;
  /* font-family: 'Poppins', sans-serif; */
  position: relative;
  z-index: 0;
}

h1, h2, h3, h4, h5, h6 {
  /* font-family: 'Roboto', sans-serif; */
  font-weight: 700;
}

p {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}

a:focus, .btn:focus {
  outline: var(--reset);
  border: var(--reset);
  -webkit-box-shadow: var(--none);
          box-shadow: var(--none);
}

 .btn-primary {
    height: auto;
    padding: 8px 15px;
    background-color: var(--color_2);
    color: #FFFFFF;
    border: 0 !important
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #76a7ba;
    color: #FFFFFF
}


 .btn-secondary {
    height: auto;
    padding: 8px 15px;
    background-color: #76a7ba;
    color: #FFFFFF;
    border: 0 !important
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: var(--color_2);
    color: #FFFFFF
}


.form-control {
  border: var(--reset);
  border-radius: var(--reset);
}

.form-control:focus {
  outline: var(--reset);
  border: var(--reset);
  -webkit-box-shadow: var(--reset);
          box-shadow: var(--reset);
}

@-webkit-keyframes animateLogo {
  0% {
    stroke-dashoffset: 840;
  }
  20% {
    stroke-dashoffset: 672;
  }
  60% {
    stroke-dashoffset: 336;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes animateLogo {
  0% {
    stroke-dashoffset: 840;
  }
  20% {
    stroke-dashoffset: 672;
  }
  60% {
    stroke-dashoffset: 336;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

#preloader {
  width: 100%;
  height: 100vh;
  background: #F0FBFF;
  position: fixed;
  z-index: 9999;
}

#preloader .logo-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 40%;
  margin: 0 auto;
  z-index: 0;
}

#preloader .logo-wrapper svg {
  width: 100px;
  height: 100px;
  display: block;
}

#preloader .logo-wrapper svg path {
  fill: var(--clear);
  stroke-width: 35;
  stroke-dasharray: 840;
  stroke-dashoffset: 0;
  -webkit-animation: animateLogo 2500ms linear forwards infinite;
          animation: animateLogo 2500ms linear forwards infinite;
}

.header {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.header .navbar .navbar-brand img {
  width: 50px;
  height: 55px;
}

.header .navbar .navbar-nav .nav-item {
  margin: auto 5px;
  position: relative;
  z-index: 0;
}

.header .navbar .navbar-nav .nav-item .nav-link {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.4);
  text-transform: capitalize;
  -webkit-transition: all ease 500ms;
  transition: all ease 500ms;
}

.header .navbar .navbar-nav .nav-item .nav-link:hover {
  color: var(--color_2);
  -webkit-transition: all ease 500ms;
  transition: all ease 500ms;
}

.header .navbar .navbar-nav .nav-item .nav-link.active {
  color: var(--color_2);
}

.header .navbar .navbar-nav .nav-item .nav-link.active::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: var(--color_2);
  position: absolute;
  left: -3px;
  top: 18px;
  z-index: 0;
}

.header .navbar .side-menu .btn-red span svg {
  width: 35px;
  height: 35px;
}

.scroll-down {
  position: absolute;
  right: 11%;
  top: 45%;
  z-index: 100;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.scroll-down a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.scroll-down a span {
  color: #000;
  padding: 0 5px;
}

.scroll-down a span.icon {
  font-size: 30px;
}

.scroll-down a span.dash {
  width: 50px;
  height: 2px;
  background-color: #000;
  padding-left: 5px;
  padding-right: 5px;
}

.scroll-down a span.text {
  font-size: 20px;
  text-transform: uppercase;
}

.hero {
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  position: relative;
  z-index: 0;
}

.hero .heroSlider .swiper-wrapper .swiper-slide .item {
  width: 100%;
  height: auto;
  margin: 0 auto;
  position: relative;
  z-index: 0;
}

.hero .heroSlider .swiper-wrapper .swiper-slide .item .image {
  width: 100%;
  height: 890px;
  margin: 0 auto;
}

.hero .heroSlider .swiper-wrapper .swiper-slide .item .image::before {
  content: "";
  width: 1440px;
  height: 890px;
  background-color: rgba(240, 251, 255, 0.8);
  border-radius: 0 0 0 100px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
}

.hero .heroSlider .swiper-wrapper .swiper-slide .item .image::after {
  content: "";
  width: 1440px;
  height: 890px;
  background-image: var(--background-image);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: cover;
  border-radius: 0 0 0 100px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}

.hero .heroSlider .swiper-wrapper .swiper-slide .item .caption {
  width: 35%;
  height: auto;
  margin: 0 auto;
  position: absolute;
  left: 16%;
  top: 35%;
  z-index: 99;
}

.hero .heroSlider .swiper-wrapper .swiper-slide .item .caption h2 {
  font-size: 50px;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: 900;
  text-shadow: 4px 4px 5px rgba(150, 150, 150, 0.5);
}

.hero .heroSlider .swiper-wrapper .swiper-slide .item .caption p {
  line-height: 1.75;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 15px;
}

.hero .heroSlider .swiper-wrapper .swiper-slide .item .caption .btn-red {
  width: 190px;
  padding: 12px 35px;
  border-radius: 5px;
}

.hero .heroSlider .swiper-button-next {
  left: 35%;
  bottom: 60px;
  top: unset;
  color: #000;
  text-transform: uppercase;
  font-weight: 700;
}

.hero .heroSlider .swiper-button-next::after {
  content: "\F138";
  font-family: bootstrap-icons !important;
  font-size: 30px;
  position: relative;
  left: 5px;
}

.hero .heroSlider .swiper-button-prev {
  left: 32%;
  bottom: 60px;
  top: unset;
  color: #000;
  text-transform: uppercase;
  font-weight: 700;
}

.hero .heroSlider .swiper-button-prev::after {
  content: "\F12F";
  font-family: bootstrap-icons !important;
  font-size: 30px;
  position: relative;
  left: -75px;
}

.section {
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  padding: 200px 0;
  position: relative;
  z-index: 0;
}

.section::before {
  content: "";
  width: 1440px;
  height: 890px;
  background-color: rgba(240, 251, 255, 0.8);
  border-radius: 0 0 0 100px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.section .heading {
  margin-bottom: 20px;
}

.section .heading .pre-title {
  padding-top: 10px;
  position: relative;
  z-index: 0;
  text-transform: uppercase;
  color: var(--color_1);
}

.section .heading .pre-title::before {
  content: "";
  width: 50px;
  height: 2px;
  background-color: var(--color_2);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.section .heading .title {
  margin: 20px auto;
  font-size: 50px;
  font-weight: 900;
  text-transform: uppercase;
}

.overview .content-wrapper {
  margin-bottom: 20px;
}

.overview .content-wrapper p {
  line-height: 1.75;
  margin-bottom: 15px;
  color: rgba(0, 0, 0, 0.4);
  font-size: 20px;
}

.overview .btn-wrapper .btn {
  padding: 12px 30px;
  border-radius: 5px;
  margin-right: 15px;
  text-transform: uppercase;
}

.overview .logo-wrapper svg {
  width: 100%;
  height: auto;
  display: block;
}

.overview .logo-wrapper svg path {
  fill: var(--clear);
  stroke-width: 35;
  stroke-dasharray: 840;
  stroke-dashoffset: 0;
  -webkit-animation: animateLogo 5000ms linear forwards infinite;
          animation: animateLogo 5000ms linear forwards infinite;
}

.services .servicesSlider {
  padding: 15px 10px 70px;
}

.services .servicesSlider .swiper-wrapper .swiper-slide .service-item {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0px 5px 10px 0px rgba(26, 108, 140, 0.25);
  box-shadow: 0px 5px 10px 0px rgba(26, 108, 140, 0.25);
}

.services .servicesSlider .swiper-wrapper .swiper-slide .service-item img {
  width: 90px;
  height: 90px;
  margin-bottom: 20px;
}

.services .servicesSlider .swiper-wrapper .swiper-slide .service-item h5 {
  color: var(--color_1);
  margin-bottom: 20px;
}

.services .servicesSlider .swiper-wrapper .swiper-slide .service-item p {
  color: rgba(0, 0, 0, 0.4);
  font-size: 16px;
}

.services .servicesSlider .swiper-button-next {
  right: 45%;
  bottom: 0;
  top: unset;
  color: #000;
  text-transform: uppercase;
  font-weight: 700;
}

.services .servicesSlider .swiper-button-next::after {
  content: "\F138";
  font-family: bootstrap-icons !important;
  font-size: 30px;
  position: relative;
  left: 5px;
}

.services .servicesSlider .swiper-button-prev {
  left: 45%;
  bottom: 0;
  top: unset;
  color: #000;
  text-transform: uppercase;
  font-weight: 700;
}

.services .servicesSlider .swiper-button-prev::after {
  content: "\F12F";
  font-family: bootstrap-icons !important;
  font-size: 30px;
  position: relative;
  left: -75px;
}

.solutions .short-description {
  margin-bottom: 20px;
}

.solutions .short-description p {
  margin-bottom: 15px;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.6);
}

.solutions .short-description .btn-red {
  padding: 12px 30px;
  text-transform: uppercase;
  border-radius: 5px;
}

.solutions .image {
  width: 100%;
  height: auto;
  margin: 0 auto;
  text-align: center;
}

.solutions .image img {
  width: auto;
  height: auto;
  margin: 30px auto 20px;
  border-radius: 5px;
}

.solutions .image img:first-child {
  width: 100%;
  -webkit-box-shadow: 0px 5px 10px 0px rgba(26, 108, 140, 0.25);
  box-shadow: 0px 5px 10px 0px rgba(26, 108, 140, 0.25);
}

.portfolio .portfolioSlider {
  padding: 0 0 60px;
}

.portfolio .portfolioSlider .swiper-wrapper .swiper-slide .p-item {
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.portfolio .portfolioSlider .swiper-wrapper .swiper-slide .p-item .portfolio-name {
  width: 30%;
  margin-right: 20px;
}

.portfolio .portfolioSlider .swiper-wrapper .swiper-slide .p-item .portfolio-name .pre-title {
  padding-top: 10px;
  position: relative;
  z-index: 0;
  text-transform: uppercase;
  color: var(--color_1);
}

.portfolio .portfolioSlider .swiper-wrapper .swiper-slide .p-item .portfolio-name .pre-title::before {
  content: "";
  width: 50px;
  height: 2px;
  background-color: var(--color_2);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.portfolio .portfolioSlider .swiper-wrapper .swiper-slide .p-item .portfolio-name .title {
  margin: 20px auto;
  font-size: 50px;
  font-weight: 900;
  text-transform: uppercase;
}

.portfolio .portfolioSlider .swiper-wrapper .swiper-slide .p-item .portfolio-name .btn-red {
  padding: 12px 30px;
  text-transform: uppercase;
  border-radius: 5px;
}

.portfolio .portfolioSlider .swiper-wrapper .swiper-slide .p-item .portfolio-image {
  margin-right: 60px;
}

.portfolio .portfolioSlider .swiper-wrapper .swiper-slide .p-item .portfolio-image img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 5px;
  -webkit-box-shadow: 0px 5px 10px 0px rgba(26, 108, 140, 0.25);
  box-shadow: 0px 5px 10px 0px rgba(26, 108, 140, 0.25);
}

.portfolio .portfolioSlider .swiper-button-next {
  right: 30%;
  bottom: 0;
  top: unset;
  color: #000;
  text-transform: uppercase;
  font-weight: 700;
}

.portfolio .portfolioSlider .swiper-button-next::after {
  content: "\F138";
  font-family: bootstrap-icons !important;
  font-size: 30px;
  position: relative;
  left: 5px;
}

.portfolio .portfolioSlider .swiper-button-prev {
  left: 60%;
  bottom: 0;
  top: unset;
  color: #000;
  text-transform: uppercase;
  font-weight: 700;
}

.portfolio .portfolioSlider .swiper-button-prev::after {
  content: "\F12F";
  font-family: bootstrap-icons !important;
  font-size: 30px;
  position: relative;
  left: -75px;
}

.contact .contact-wrapper {
  width: 100%;
  height: auto;
  margin: 30px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.contact .contact-wrapper .contact-info {
  width: 40%;
  height: auto;
  margin-right: 30px;
  margin-left: 70px;
}

.contact .contact-wrapper .contact-info h5 {
  color: var(--color_1);
  text-transform: capitalize;
  margin-bottom: 10px;
}

.contact .contact-wrapper .contact-info p {
  color: rgba(0, 0, 0, 0.6);
}

.contact .contact-wrapper .contact-info .contact-details {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.contact .contact-wrapper .contact-info .contact-details li {
  margin-bottom: 10px;
}

.contact .contact-wrapper .contact-info .contact-details li span {
  color: rgba(0, 0, 0, 0.6);
}

.contact .contact-wrapper .contact-info .contact-details li span:first-child {
  font-weight: bold;
  text-transform: capitalize;
}

.contact .contact-wrapper .contact-info .social {
  list-style-type: none;
  padding: 0;
  margin: 0;
  -webkit-column-count: 2;
          column-count: 2;
}

.contact .contact-wrapper .contact-info .social li {
  margin-bottom: 10px;
}

.contact .contact-wrapper .contact-info .social li a {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.6);
  -webkit-transition: all ease 500ms;
  transition: all ease 500ms;
}

.contact .contact-wrapper .contact-info .social li a:hover {
  -webkit-transition: all ease 500ms;
  transition: all ease 500ms;
  color: var(--color_2);
}

.contact .contact-wrapper .contact-form {
  margin-right: 70px;
}

.contact .contact-wrapper .contact-form .form-control {
  width: 100%;
  height: 50px;
  border-radius: 5px;
  border: 1px solid var(--clear);
  color: rgba(0, 0, 0, 0.6);
  -webkit-transition: all ease 500ms;
  transition: all ease 500ms;
}

.contact .contact-wrapper .contact-form .form-control::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.contact .contact-wrapper .contact-form .form-control:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.contact .contact-wrapper .contact-form .form-control::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.contact .contact-wrapper .contact-form .form-control::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.contact .contact-wrapper .contact-form .form-control:focus {
  border: 1px solid var(--color_2);
  -webkit-transition: all ease 500ms;
  transition: all ease 500ms;
}

.contact .contact-wrapper .contact-form textarea {
  min-height: 200px;
}

.contact .contact-wrapper .contact-form .btn-red {
  padding: 12px 30px;
  text-transform: uppercase;
  border-radius: 5px;
}

.footer {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 10px 0;
}

.footer .copyrights p {
  text-align: center;
  color: rgba(0, 0, 0, 0.4);
}

.footer .copyrights p a {
  text-decoration: none;
  color: var(--color_2);
  -webkit-transition: all ease 500ms;
  transition: all ease 500ms;
}

.footer .copyrights p a:hover {
  color: var(--color_1);
  -webkit-transition: all ease 500ms;
  transition: all ease 500ms;
}

.whatsapp {
  width: 65px;
  height: 65px;
  position: fixed;
  right: 3%;
  bottom: 30px;
  z-index: 99;
}

.whatsapp .whatsapp-bg {
  width: 65px;
  height: 65px;
  background-color: #1BD741;
  text-align: center;
  border-radius: 50%;
  padding: 10px;
  -webkit-transition: all ease 500ms;
  transition: all ease 500ms;
  -webkit-box-shadow: 0px 5px 10px 0px rgba(27, 215, 65, 0.25);
  box-shadow: 0px 5px 10px 0px rgba(27, 215, 65, 0.25);
}

.whatsapp .whatsapp-bg a {
  text-decoration: none;
  color: #fff;
  font-size: 30px;
}

.whatsapp .whatsapp-bg:hover {
  background-color: #00A020;
  -webkit-transition: all ease 500ms;
  transition: all ease 500ms;
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  background-color: rgba(240, 251, 255, 0.5);
  overflow-x: hidden;
  padding-top: 60px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}

.sidenav .closebtn {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 15px;
  right: 16%;
  padding: 5px;
  color: #fff;
}

.sidenav .closebtn span svg {
  width: 35px;
  height: 35px;
}

.sidenav .side-menu-logo {
  position: absolute;
  top: 15px;
  left: 16%;
}

.sidenav .side-menu-logo img {
  width: 50px;
  height: 55px;
}

.sidenav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.sidenav ul li {
  margin: 15px auto;
}

.sidenav ul li a {
  text-align: center;
  text-decoration: none;
  font-size: 36px;
  text-transform: uppercase;
  color: black;
  display: block;
  font-weight: 900;
  -webkit-transition: all ease 500ms;
  transition: all ease 500ms;
}

.sidenav ul li a:hover {
  color: #eb2459;
  -webkit-transition: all ease 500ms;
  transition: all ease 500ms;
}

.form-control-lg {
  min-height: 50px;
  font-size: 16px
}

/**
    ***
        Starting Responsive Layout
    ***
**/
@media (max-width: 575.98px) {
  body {
    overflow-y: auto !important;
  }
  .header {
    position: relative;
    background-color: var(--color_3);
  }
  .header .navbar .btn-red span svg {
    width: 35px;
    height: 35px;
  }
  .scroll-down {
    display: none;
  }
  .hero .heroSlider .swiper-wrapper .swiper-slide .item {
    height: 100vh;
  }
  .hero .heroSlider .swiper-wrapper .swiper-slide .item .image::before {
    height: 100vh;
    background-position: top center;
    width: 100%;
    border-radius: 0;
  }
  .hero .heroSlider .swiper-wrapper .swiper-slide .item .image::after {
    height: 100vh;
    background-position: top center;
    width: 100%;
    border-radius: 0;
  }
  .hero .heroSlider .swiper-wrapper .swiper-slide .item .caption {
    width: auto;
    margin: 0 auto;
    left: 15px;
    right: 15px;
    top: 35%;
  }
  .hero .heroSlider .swiper-wrapper .swiper-slide .item .caption h2 {
    font-size: 36px;
  }
  .hero .heroSlider .swiper-wrapper .swiper-slide .item .caption p {
    font-size: 16px;
  }
  .hero .heroSlider .swiper-button-next {
    left: unset;
    right: 35%;
  }
  .hero .heroSlider .swiper-button-prev {
    left: 35%;
  }
  .section {
    padding: 50px 0 25px;
    height: 100%;
  }
  .section::before {
    height: 100%;
    background-position: top center;
    width: 100%;
    border-radius: 0;
  }
  .section .heading .title {
    font-size: 30px;
  }
  .overview {
    height: 100%;
  }
  .overview::before {
    height: 100%;
    background-position: top center;
    width: 100%;
    border-radius: 0;
  }
  .overview .content-wrapper p {
    font-size: 16px;
  }
  .overview .btn-wrapper .btn {
    display: block;
    margin-bottom: 20px;
    font-size: 16px;
  }
  .overview .logo-wrapper {
    margin-bottom: 50px;
  }
  .overview .logo-wrapper svg {
    width: 75%;
    margin: 0 auto;
  }
  .services .servicesSlider .swiper-button-next {
    right: 33%;
  }
  .services .servicesSlider .swiper-button-prev {
    left: 36%;
  }
  .portfolio .portfolioSlider .swiper-wrapper .swiper-slide .p-item {
    display: block;
  }
  .portfolio .portfolioSlider .swiper-wrapper .swiper-slide .p-item .portfolio-name {
    width: 100%;
  }
  .portfolio .portfolioSlider .swiper-wrapper .swiper-slide .p-item .portfolio-name .title {
    font-size: 30px;
  }
  .portfolio .portfolioSlider .swiper-wrapper .swiper-slide .p-item .portfolio-name .btn-red {
    width: 100%;
  }
  .portfolio .portfolioSlider .swiper-wrapper .swiper-slide .p-item .portfolio-image {
    width: 100%;
    margin-top: 20px;
  }
  .portfolio .portfolioSlider .swiper-button-prev {
    right: 35%;
  }
  .portfolio .portfolioSlider .swiper-button-prev {
    left: 38%;
  }
  .contact .contact-wrapper {
    display: block;
  }
  .contact .contact-wrapper .contact-info {
    width: 100%;
    margin-left: 0;
    margin-bottom: 30px;
  }
  .contact .contact-wrapper .contact-form {
    margin-right: 0;
    width: 100%;
    margin-bottom: 50px;
  }
  .contact .contact-wrapper .btn-red {
    width: 100%;
  }
  .footer {
    position: relative;
    background-color: var(--color_3);
  }
  .whatsapp {
    right: 15px;
    bottom: 50px;
  }
  .sidenav .closebtn {
    right: 15px;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  body {
    overflow-y: auto !important;
  }
  .header {
    position: relative;
    background-color: var(--color_3);
  }
  .header .navbar .btn-red span svg {
    width: 35px;
    height: 35px;
  }
  .scroll-down {
    display: none;
  }
  .hero .heroSlider .swiper-wrapper .swiper-slide .item {
    height: 100vh;
  }
  .hero .heroSlider .swiper-wrapper .swiper-slide .item .image::before {
    height: 100vh;
    background-position: top center;
    width: 100%;
    border-radius: 0;
  }
  .hero .heroSlider .swiper-wrapper .swiper-slide .item .image::after {
    height: 100vh;
    background-position: top center;
    width: 100%;
    border-radius: 0;
  }
  .hero .heroSlider .swiper-wrapper .swiper-slide .item .caption {
    width: auto;
    margin: 0 auto;
    left: 15px;
    right: 15px;
    top: 35%;
  }
  .hero .heroSlider .swiper-wrapper .swiper-slide .item .caption h2 {
    font-size: 36px;
  }
  .hero .heroSlider .swiper-wrapper .swiper-slide .item .caption p {
    font-size: 16px;
  }
  .hero .heroSlider .swiper-button-next {
    left: unset;
    right: 35%;
  }
  .hero .heroSlider .swiper-button-prev {
    left: 35%;
  }
  .section {
    padding: 50px 0 25px;
    height: 100%;
  }
  .section::before {
    height: 100%;
    background-position: top center;
    width: 100%;
    border-radius: 0;
  }
  .section .heading .title {
    font-size: 30px;
  }
  .overview {
    height: 100%;
  }
  .overview::before {
    height: 100%;
    background-position: top center;
    width: 100%;
    border-radius: 0;
  }
  .overview .content-wrapper p {
    font-size: 16px;
  }
  .overview .btn-wrapper .btn {
    display: block;
    margin-bottom: 20px;
    font-size: 16px;
  }
  .overview .logo-wrapper {
    margin-bottom: 50px;
  }
  .overview .logo-wrapper svg {
    width: 75%;
    margin: 0 auto;
  }
  .services .servicesSlider .swiper-button-next {
    right: 33%;
  }
  .services .servicesSlider .swiper-button-prev {
    left: 36%;
  }
  .portfolio .portfolioSlider .swiper-wrapper .swiper-slide .p-item {
    display: block;
  }
  .portfolio .portfolioSlider .swiper-wrapper .swiper-slide .p-item .portfolio-name {
    width: 100%;
  }
  .portfolio .portfolioSlider .swiper-wrapper .swiper-slide .p-item .portfolio-name .title {
    font-size: 30px;
  }
  .portfolio .portfolioSlider .swiper-wrapper .swiper-slide .p-item .portfolio-name .btn-red {
    width: 100%;
  }
  .portfolio .portfolioSlider .swiper-wrapper .swiper-slide .p-item .portfolio-image {
    width: 100%;
    margin-top: 20px;
  }
  .portfolio .portfolioSlider .swiper-button-prev {
    right: 35%;
  }
  .portfolio .portfolioSlider .swiper-button-prev {
    left: 38%;
  }
  .contact .contact-wrapper {
    display: block;
  }
  .contact .contact-wrapper .contact-info {
    width: 100%;
    margin-left: 0;
    margin-bottom: 30px;
  }
  .contact .contact-wrapper .contact-form {
    margin-right: 0;
    width: 100%;
    margin-bottom: 50px;
  }
  .contact .contact-wrapper .btn-red {
    width: 100%;
  }
  .footer {
    position: relative;
    background-color: var(--color_3);
  }
  .whatsapp {
    right: 15px;
    bottom: 50px;
  }
  .sidenav .closebtn {
    right: 15px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  body {
    overflow-y: auto !important;
  }
  .header {
    position: relative;
    background-color: var(--color_3);
  }
  .header .navbar .btn-red span svg {
    width: 35px;
    height: 35px;
  }
  .scroll-down {
    display: none;
  }
  .hero .heroSlider .swiper-wrapper .swiper-slide .item {
    height: 100vh;
  }
  .hero .heroSlider .swiper-wrapper .swiper-slide .item .image::before {
    height: 100vh;
    background-position: top center;
    width: 100%;
    border-radius: 0;
  }
  .hero .heroSlider .swiper-wrapper .swiper-slide .item .image::after {
    height: 100vh;
    background-position: top center;
    width: 100%;
    border-radius: 0;
  }
  .hero .heroSlider .swiper-wrapper .swiper-slide .item .caption {
    width: auto;
    margin: 0 auto;
    left: 15px;
    right: 15px;
    top: 35%;
  }
  .hero .heroSlider .swiper-button-next {
    left: unset;
    right: 35%;
  }
  .hero .heroSlider .swiper-button-prev {
    left: 35%;
  }
  .section {
    padding: 50px 0 25px;
    height: 100%;
  }
  .section::before {
    height: 100%;
    background-position: top center;
    width: 100%;
    border-radius: 0;
  }
  .section .heading .title {
    font-size: 30px;
  }
  .overview {
    height: 100%;
  }
  .overview::before {
    height: 100%;
    background-position: top center;
    width: 100%;
    border-radius: 0;
  }
  .overview .content-wrapper p {
    font-size: 16px;
  }
  .overview .logo-wrapper {
    margin-bottom: 50px;
  }
  .overview .logo-wrapper svg {
    width: 75%;
    margin: 0 auto;
  }
  .services .servicesSlider .swiper-button-next {
    right: 33%;
  }
  .services .servicesSlider .swiper-button-prev {
    left: 36%;
  }
  .portfolio .portfolioSlider .swiper-wrapper .swiper-slide .p-item {
    display: block;
  }
  .portfolio .portfolioSlider .swiper-wrapper .swiper-slide .p-item .portfolio-name {
    width: 100%;
  }
  .portfolio .portfolioSlider .swiper-wrapper .swiper-slide .p-item .portfolio-name .title {
    font-size: 30px;
  }
  .portfolio .portfolioSlider .swiper-wrapper .swiper-slide .p-item .portfolio-name .btn-red {
    width: 100%;
  }
  .portfolio .portfolioSlider .swiper-wrapper .swiper-slide .p-item .portfolio-image {
    width: 100%;
    margin-top: 20px;
  }
  .portfolio .portfolioSlider .swiper-button-next {
    right: 37%;
  }
  .portfolio .portfolioSlider .swiper-button-prev {
    left: 38%;
  }
  .contact .contact-wrapper {
    display: block;
  }
  .contact .contact-wrapper .contact-info {
    width: 100%;
    margin-left: 0;
    margin-bottom: 30px;
  }
  .contact .contact-wrapper .contact-form {
    margin-right: 0;
    width: 100%;
    margin-bottom: 50px;
  }
  .contact .contact-wrapper .btn-red {
    width: 100%;
  }
  .footer {
    position: relative;
    background-color: var(--color_3);
  }
  .whatsapp {
    right: 15px;
    bottom: 50px;
  }
  .sidenav .closebtn {
    right: 15px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  body {
    overflow-y: auto !important;
  }
  .scroll-down {
    top: 50%;
    right: -45px;
    display: none;
  }
  .hero {
    height: 100%;
  }
  .hero .heroSlider .swiper-wrapper .swiper-slide .item .image::before {
    height: 100vh;
    width: 100%;
    border-radius: 0;
  }
  .hero .heroSlider .swiper-wrapper .swiper-slide .item .image::after {
    width: 100%;
    height: 100vh;
    border-radius: 0;
  }
  .hero .heroSlider .swiper-wrapper .swiper-slide .item .caption {
    width: 60%;
  }
  .hero .heroSlider .swiper-button-next {
    bottom: unset;
    top: 50%;
    left: auto;
    right: 10%;
  }
  .hero .heroSlider .swiper-button-prev {
    left: 10%;
    bottom: unset;
    top: 50%;
  }
  .portfolio .portfolioSlider .swiper-button-prev {
    left: 50%;
  }
  .contact {
    padding: 120px 0;
  }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
  .scroll-down {
    right: 3%;
  }
  .hero .heroSlider .swiper-wrapper .swiper-slide .item .image::before {
    width: 100%;
    height: 100vh;
  }
  .hero .heroSlider .swiper-wrapper .swiper-slide .item .image::after {
    width: 100%;
    height: 100vh;
  }
  .hero .heroSlider .swiper-wrapper .swiper-slide .item .caption {
    top: 25%;
  }
  .hero .heroSlider .swiper-button-next {
    left: 25%;
    bottom: 150px;
  }
  .hero .heroSlider .swiper-button-prev {
    left: 20%;
    bottom: 150px;
  }
  .section {
    padding: 130px 0;
  }
  .section::before {
    height: 100%;
  }
  .portfolio .portfolioSlider .swiper-button-prev {
    left: 55%;
  }
  .sidenav .closebtn {
    right: 9%;
  }
}
/*# sourceMappingURL=mz-l.css.map */
