@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700&family=Pacifico&family=Roboto:wght@300;400;500;700;900&display=swap");

:root {
  --raleway: "Raleway", sans-serif;
  --pacifico: "Pacifico", cursive;
  --roboto: "Roboto", sans-serif;
  --background-color-1: linear-gradient(145deg, #2f3fcc 0, #3ad9ff 96%);

  --dark-green: #2b4a12;
  --light-yellow: #fab13e;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--raleway);
}

body {
  overflow-x: hidden;
  width: 100%;
  margin: 0 auto;
}

img {
  width: 100%;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

body h2 {
  font-size: 36px;
  margin-bottom: 20px;
  line-height: 1.3em;
}

h1,
h2,
h2 span,
h3,
h4,
h5,
h6 {
  font-family: var(--roboto);
  margin: 0;
  color: #1d2124;
}

a,
ul,
li,
p {
  font-family: var(--raleway);
}

p {
  line-height: 1.7em;
  font-size: 1.1em;
}

.container {
  width: 95%;
  margin: auto;
  padding: 20px 30px;
  /* max-width: 1100px */
}

.section {
  padding: 35px 0;
}

/* ===== Header - Navbar ====== */
header {
  position: relative;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 2rem;
  background: #272d2e;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.logo {
  width: 20%;
}

.logo img {
  filter: brightness(0) invert(1);
}

.navbar .nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: -1;
}

.navbar ul {
  display: flex;
  justify-content: flex-end;
  padding: 0;
  list-style: none;
}

.navbar ul li {
  padding: 0.5rem;
  transition: 0.3s;
  margin: 0 20px 0 0;
}

.navbar ul li a {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  font-family: var(--raleway);
  line-height: 27px;
  padding-bottom: 10px;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  transition: 0.5s;
}

.social_links li {
  margin-right: 10px !important;
}
.social_links li a {
  font-size: 26px !important;
}
.social_links li a:hover {
  color: var(--light-yellow);
}

.navbar ul li a::after,
.popup-mobilemenu .content .mainmenu-nav .navbar-list1 li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  transition: 0.5s;
  background-color: var(--light-yellow);
  bottom: 3px;
}

.navbar ul li a:hover::after,
.navbar ul li a.active::after,
.popup-mobilemenu .content .mainmenu-nav .navbar-list1 li a.active::after {
  width: 60%;
}

.navbar.scroll-on,
.navbar.responsive-navbar.scroll-on {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 0.125rem 1.75rem 0 rgb(0, 0, 0, 0.3);
  transition: all 0.15s ease-in-out 0s;
  backdrop-filter: blur(10px);
  z-index: 1000;
  animation: headerSlideDown 0.5s ease forwards;
}

@keyframes headerSlideDown {
  0% {
    margin-top: -100px;
    opacity: 0;
  }

  30% {
    margin-top: -50px;
    opacity: 0;
  }

  100% {
    margin-top: 0;
    opacity: 1;
  }
}

/* ===== Mobile Navbar ===== */
#bar {
  display: none;
  color: var(--light-yellow);
  font-size: 26px;
}

.popup-mobilemenu {
  z-index: 1000000;
  position: fixed;
  content: "";
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #272d2e66;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out;
}

.popup-mobilemenu.menu-open {
  visibility: visible;
  opacity: 1;
}

.popup-mobilemenu .menu-inner {
  padding: 25px 40px;
  width: 375px;
  z-index: 999;
  position: absolute;
  background: #1d2124;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 10px 0 rgb(0 0 0 / 70%);
  opacity: 0;
  right: -150px;
  transition: all 0.5s ease-out;
}

.popup-mobilemenu.menu-open .menu-inner {
  opacity: 1;
  right: 0;
  overflow-y: auto;
}

.popup-mobilemenu .menu-inner .menu-top {
  border-bottom: 1px solid var(--light-yellow);
  padding: 0 0 10px 0;
  display: flex;
  justify-content: flex-end;
}

.menu-top i {
  color: var(--light-yellow);
  font-size: 29px;
}

.popup-mobilemenu .content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-bottom: 20px;
  margin-top: 20px;
}

.popup-mobilemenu .content .mainmenu-nav .navbar-list1 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin: 0;
  margin-top: 20px;
  text-align: right;
}

.popup-mobilemenu .content .mainmenu-nav .navbar-list1 li {
  display: inherit;
  margin: 12px 0px !important;
}

.popup-mobilemenu .content .mainmenu-nav .navbar-list1 li a {
  color: #fff;
  position: relative;
  transition: 0.4s;
  font-size: 24px;
  text-transform: capitalize;
  letter-spacing: 1px;
  font-family: var(--roboto);
  margin: 0;
  display: block;
  font-weight: 300;
  padding: 0;
  padding-bottom: 10px;
  opacity: 1;
}

.popup-mobilemenu .social_links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  margin-top: 30px;
}

.popup-mobilemenu .social_links li a {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 12px;
  border-radius: 50%;
}

/* ====== Landing Section ===== */
.slider {
  margin: 0 auto;
  width: 100%;
}

.slide_viewer {
  height: 90vh;
  overflow: hidden;
  position: relative;
}

.slide_group {
  height: 100%;
  position: relative;
  width: 100%;
}

.slide {
  display: none;
  height: 100%;
  padding-top: 0;
  position: absolute;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

.slide:first-child {
  display: block;
}

.slide:nth-of-type(1) {
  background-image: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.5) 100%
    ),
    url("../images/homebg.jpg");
}

.slide:nth-of-type(2) {
  background-image: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.5) 100%
    ),
    url("../images/p2.jpg");
}

.slide:nth-of-type(3) {
  background-image: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.5) 100%
    ),
    url("../images/p3.jpg");
}

.slide_buttons {
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
}

a.slide_btn {
  color: #474544;
  font-size: 42px;
  margin: 0 0.175em;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.slide_btn.active,
.slide_btn:hover {
  color: #ccc;
  cursor: pointer;
}

.directional_nav {
  height: 50px;
  width: 100%;
  margin: 0 auto;
  position: absolute;
  z-index: 999;
  top: 55%;
  transform: translateY(55%);
}

.directional_nav svg {
  width: 40px;
}

.previous_btn {
  bottom: 0;
  left: 10px;
  margin: auto;
  position: absolute;
  top: 0;
}

.next_btn {
  bottom: 0;
  margin: auto;
  position: absolute;
  /* left: 1250px; */
  right: 10px;
  top: 0;
}

.previous_btn,
.next_btn {
  cursor: pointer;
  height: 65px;
  opacity: 0.5;
  -webkit-transition: opacity 0.4s ease-in-out;
  -moz-transition: opacity 0.4s ease-in-out;
  -ms-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
  width: 45px;
  margin: 0 auto;
}

.previous_btn:hover,
.next_btn:hover {
  opacity: 1;
}

@media only screen and (max-width: 767px) {
  .previous_btn {
    left: 0;
  }
  .next_btn {
    right: 0;
  }
}

.center {
  height: 100%;
  margin: -1px auto;
  padding: 0 3rem;
  max-width: 1504px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.slide .content {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0;
}

.hero-text {
  width: 850px;
  max-width: 100%;
  margin: 0 0 0;
}

.hero-text h1 {
  margin-bottom: 10px;
  line-height: 1.1em;
  font-weight: 600;
  font-size: 54px;
  text-transform: capitalize;
  color: #fff;
}

.hero-text h2 {
  font-size: 1.7em;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 10px;
  color: #fff;
  font-family: var(--raleway);
}

.btn {
  padding: 13px 20px;
  border: 2px solid var(--light-yellow);
  background: var(--light-yellow);
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
  margin-top: 20px;
  margin-right: 10px;
  transition: 0.5s;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
}

.btn.contact-btn {
  background: #fff;
  border-color: #fff;
  color: var(--dark-green);
}

.btn:hover {
  background: transparent;
  color: var(--light-yellow);
}

/* ----- About Us - Home ----- */
.head_title {
  margin-bottom: 40px;
  text-align: center;
}

.head_title h2 {
  font-size: 42px;
  font-weight: 500;
}

.flex {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-evenly;
}

.flex_left {
  width: 40%;
  position: relative;
}

.flex_left img {
  width: 100%;
  transition: 0.5s;
  box-shadow: -15px 15px 5px rgba(0, 0, 0, 0.5);
}

.flex_right {
  width: 50%;
}

.flex_right h2 {
  font-size: 26px;
  font-family: var(--roboto);
  line-height: 1.3;
  margin-bottom: 10px;
  font-weight: 400;
  border-bottom: 2px solid var(--light-yellow);
  display: inline-block;
}

.flex_right p {
  line-height: 1.5;
  font-weight: 500;
  font-size: 18px;
}

.about-home ul {
  padding-top: 20px;
}

.about-home ul li {
  padding: 7px 0;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.about-home ul li img {width: fit-content;}

/* ----- Services Home ----- */
.services-home {
  text-align: center;
}

.services-home img {
  width: fit-content;
}

.services-home .col {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
}

.services-home .col h3 {
  font-size: 1.5rem;
}

.services-home .col p {
  font-size: 1rem;
  line-height: 24px;
  padding-top: 10px;
}


/* ----- Contact Banner ----- */
.contact-banner {
  background: url("../images/homebg.jpg");
  background-color: rgb(0, 0, 0, 0.3);
  background-blend-mode: multiply;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 3rem 8rem;
}

.contact-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #1f2010e6 0, #fab13e6d 100%);
}

.contact-banner h2,
.contact-banner p,
.contact-banner .btn {
  position: relative;
  z-index: 2;
  color: #fff;
}

.contact-banner p {
  font-size: 20px;
  line-height: 1.5;
}

.contact-banner .btn {
  color: var(--dark-green);
}
.contact-banner .btn:hover {
  color: #fff;
}

/* ============================
    PAGE HEADER
=============================== */
.page-header {
  height: 50vh;
  background: url("../images/about.jpeg");
  background-color: rgb(0, 0, 0, 0.5);
  background-blend-mode: multiply;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-attachment: fixed;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  position: relative;
}

.page-header.contact-header {
  background-image: url("../images/contact-us.jpg");
}
.page-header.services-header {
  background-image: url("../images/service.webp");
}

.page-header h1 {
  color: #fff;
  text-align: center;
  font-size: 46px;
  position: relative;
  z-index: 2;
}

/* ============================
    ABOUT PAGE
=============================== */
.about_desc {
  width: 90%;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 0;
}

.about_desc span {
  color: var(--light-yellow);
  font-weight: 400;
  font-size: 20px;
  display: block;
  margin-bottom: 10px;
}

.about p {
  line-height: 1.4;
}

.about .flex_right {
  width: 60%;
}

.about .flex_right p a {
  color: var(--light-yellow);
  border-bottom: 2px solid var(--light-yellow);
}

.about .flex_right h3 {
  font-weight: 500;
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 10px;
  text-align: center;
}

.key_features {
  align-items: stretch;
  margin-top: 3rem;
  gap: 10px;
}

.key_features .flex_left,
.key_features .flex_right {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.key_features h4 {
  font-size: 18px;
  padding-bottom: 10px;
}

.key_features i {
  color: var(--light-yellow);
  margin-top: 2px;
  font-size: 18px;
}

.key_features p {
  font-size: 16px;
}

/* SLIDER */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
}

.mySwiper2 {
  height: 80%;
  width: 100%;
}

.mySwiper {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}

.mySwiper .swiper-slide {
  width: 25%;
  height: 240px;
  opacity: 0.5;
}

.mySwiper .swiper-slide img {
  object-fit: cover;
}

.mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  border-radius: 10px;
  object-fit: contain;
  overflow: hidden;
}

.mySwiper2 .swiper-slide img {
  width: 50%;
  height: 490px;
  border-radius: 20px;
}

.swiper-button-next, .swiper-button-prev {
  color: #000 !important;
}

.image-caption {
  position: relative;
  left: 50%;
  margin-bottom: 10px;
  margin-top: 5px;
  transform: translateX(-50%);
  width: 50%;
  background: rgba(0, 0, 0, 0.7);
  font-family: var(--raleway);
  color: #fff;
  font-weight: 600;
  padding: 10px 10px 7px;
  box-sizing: border-box;
  text-align: center;
  transition: opacity 0.3s;
}

/* ============================
    SERVICES PAGE
=============================== */
.our-services span {
  text-align: center;
  color: #1b1b1b;
  font-size: 24px;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

.our-services .details {
  line-height: 1.4;
  margin-bottom: 40px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
}

.row {
  display: flex;
  align-items: stretch;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 30px;
}

.col {
  width: 47%;
  height: auto;
}

.card {
  height: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
  transition: 0.5s all ease-in-out;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.card:hover {
  transform: translateY(-7px);
}

.card-img img {
  width: fit-content;
}

.card-content {
  padding: 10px;
}

.card-content h2 {
  font-size: 24px;
  font-weight: 800;
  padding-bottom: 5px;
  margin-bottom: 10px;
  display: inline-block;
}

.card-content p {
  line-height: 1.4;
  font-size: 16px;
  padding-top: 10px;
}

.card .btn {
  font-size: 14px;
  letter-spacing: 0;
  padding: 10px 15px;
  margin: 0;
  margin-top: 10px;
}

/* ============================
    CONTACT PAGE
=============================== */

.contact {
  padding: 30px;
  padding-bottom: 80px;
}

.contact-info {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin: auto;
  margin-top: 20px;
  box-shadow: 0 0 29px 0 rgb(0 0 0 / 20%);
}
.float-left {
  width: 60%;
}
.float-right {
  padding: 40px;
  width: 40%;
  background: #1d2124;
  color: #fff;
}

.float-right h2,
.float-left h2 {
  font-size: 34px;
  font-weight: 400;
  margin-bottom: 10px;
}
.float-right h2 {
  color: #fff;
  margin-bottom: 30px;
  border-bottom: 2px solid #fff;
  display: inline-block;
}

.float-right h4 {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
}

.info-details {
  display: flex;
  align-items: flex-start;
  text-align: left;
  gap: 20px;
  margin-bottom: 20px;
}

.info-details i {
  font-size: 24px;
  color: var(--yellow_clr);
  margin-top: 10px;
}

.info-text a {
  font-size: 16px;
  text-align: left;
  color: #fff;
  word-break: break-all;
  transition: 0.4s all ease-in-out;
}
.info-text a:hover {color: var(--light-yellow);}

.info-details p {
  font-size: 20px;
  color: var(--yellow_clr);
}

.info-details.social-icon {
  align-items: center;
  text-align: center;
}
.info-details.social-icon .info-text {
  width: 100%;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.social-icon a {
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 12px;
  padding-top: 0;
  border-radius: 50%;
  transition: 0.4s all ease-in-out;
}

.social-icon a:hover {
  background: #fab23e71;
  color: #fff;
}

#contact_form {
  position: relative;
  width: 100%;
  background: #fff;
  z-index: 20;
  padding: 25px 40px;
  border-radius: 6px;
}

#contact_form input,
#contact_form textarea {
  width: 100%;
  border: 1px solid #ccc;
  background: #fff;
  margin: 0 0 15px;
  padding: 10px 15px;
  box-sizing: border-box;
  font: 400 14px/14px var(--raleway);
  border-radius: 5px;
  resize: none;
}

#contact_form textarea {
  height: 300px;
}

label {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

#contact_form input:focus,
#contact_form textarea:focus {
  outline-color: #e1e1e1;
}

#contact_form button {
  cursor: pointer;
  color: #fff;
  display: block;
  height: auto;
  background: #1b1b1b;
  margin-bottom: 60px;
  font: 500 12px/16px var(--raleway);
  border-radius: 5px;
  font-size: 1.2em;
  margin: 0px 0 10px 0;
  padding: 15px 30px;
  border: 2px solid #1b1b1b;
  transition: 0.4s;
}

#contact_form button:hover {
  background: #fff;
  color: #1d2124;
  border-color: #1d2124;
}

.contact_form .empty_notice {
  color: #f52225;
  margin-bottom: 15px;
  display: none;
  text-align: left;
  font-weight: 500;
}
.contact_form .contact_error {
  color: #f52225;
  text-align: left;
  font-weight: 500;
}
.contact_form .returnmessage {
  color: green;
  text-align: left;
  font-weight: 500;
  margin-bottom: 15px;
}

/* ============================
    FOOTER
=============================== */
footer {
  position: relative;
  height: auto;
  padding: 20px 0 0 0;
  background: #272d2e;
  text-align: center;
  color: #fff;
}

footer .container {
  margin-left: 0;
  margin-right: 0;
  padding-left: 30px;
  padding-right: 30px;
  margin-bottom: 10px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}

footer .logo {
  margin: 0 auto;
  margin-bottom: 10px;
  display: block;
  width: 50%;
}

footer .logo img {
  filter: brightness(0) invert(1);
}

footer .logo h3 {
  font-weight: 400;
  font-size: 16px;
  padding-top: 10px;
  color: var(--light-yellow);
}

footer .links {
  margin-bottom: 10px;
}

footer .links ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

footer .links ul li {
  padding: 20px 15px;
}

footer .links ul li a {
  color: #fff;
  font-size: 18px;
  font-family: var(--raleway);
  transition: all 0.4s ease-in-out;
}

footer .links ul li a:hover {
  color: var(--light-yellow);
}

footer .branding {
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid var(--light-yellow);
}

.branding p {
  color: #fff;
}

footer .contact-details ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

footer .contact-details ul li {
  transition: 0.5s all;
}

footer .contact-details ul li a {
  font-size: 45px;
  color: #fff;
  transition: 0.5s;
  padding: 9px 15px;
  border-radius: 50%;
  background: var(--light-yellow);
}

footer .contact-details ul li:hover {
  transform: translateY(-10px);
}

/* ============================
    RESPONSIVE DESIGN
=============================== */

@media (max-width: 991px) {
  /* ----- Mobile Menu ----- */
  #bar {
    display: block;
  }

  .logo {
    width: 30%;
  }

  .navbar .nav-menu {
    display: none;
  }

  .flex {
    flex-direction: column;
  }

  .flex_left,
  .flex_right,
  .about .flex_right {
    width: 100%;
  }

  .col {
    width: 45%;
  }

}

@media (max-width: 768px) {
  .contact-banner {
    padding: 1.5rem;
  }

  /* --- Services page --- */
  .our-services .details {
    width: 100%;
    line-height: 1.3;
  }

  /* --- Contact Page --- */
  .contact-info {
    flex-direction: column;
  }

  .float-right,
  .float-left {
    width: 100%;
  }

  .contact {
    padding-left: 0;
    padding-right: 0;
  }

  .float-right h2,
  .float-left h2 {
    font-size: 30px;
  }

  #contact_form,
  .float-right {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 540px) {
  .navbar {padding: 0.5rem 1.5rem;}
  .logo {
    width: 60%;
  }
  .container {
    padding: 10px 20px;
  }

  body h2 {
    font-size: 30px;
    line-height: 1.2;
  }

  .slide_viewer {
    height: 29vh;
  }

  .slide {
    background-size: contain;
    background-position: top center;
  }

  .mySwiper2 .swiper-slide img {
    width: 100%;
    height: 380px;
  }

  .image-caption {
    width: 100%;
  }

  .center {
    padding: 1rem 2rem;
  }

  .hero-text h1 {
    font-size: 30px;
  }

  .hero-text h2 {
    font-size: 22px;
  }

  .center .btn,
  .btn.contact-btn {
    padding: 10px;
    font-size: 12px;
    margin-right: 0;
    margin-top: 0;
  }

  .directional_nav {
    top: 16%;
  }

  .previous_btn, .next_btn,
  .directional_nav svg {
    width: 30px;
  }

  .col {
    width: 95%;
  }

  footer .contact-details ul li a {
    font-size: 30px;
  }

  .page-header {
    height: auto;
    background-position: top center;
    background-size: contain;
  }

  .page-header h1 {
    font-size: 36px;
  }

  /* --- About Page ---- */
  .feature-area {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 425px) {
  .popup-mobilemenu.menu-open .menu-inner {
    width: 290px;
  }

  .hero-text h1 {
    font-size: 24px;
  }

  .hero-text h2 {
    font-size: 16px;
  }

}
