img {
  max-width: 100%;
}

body.active {
  overflow: hidden;
}

.overlay.active {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 9;
  left: 0;
  top: 0;
  opacity: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.container {
  max-width: 90vw;
  margin: 0 auto;
}

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header {
  padding: 15px 0px 10px;
}
.header .logo a {
  display: block;
}
.header .logo img {
  height: 40px;
}
.header .menu-btn {
  display: none;
}

.menu {
  padding: 15px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.menu li {
  padding: 0px 10px;
}
.menu li a {
  color: #242121;
  font-size: 14px;
  font-weight: 600;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.menu li a:hover {
  color: #ff5656;
}

.header-nav-r .header-call-wr {
  display: inline-block;
  color: #333333;
  font-weight: 500;
  font-size: 16px;
}
.header-nav-r .header-call-cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-nav-r span {
  color: #333333;
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
  line-height: 1.2;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.header-nav-r span:hover {
  color: #00B67A;
}
.header-nav-r ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-nav-r ul li a {
  padding: 0 0.75rem;
}
.header-nav-r .dropdown {
  position: relative;
}
.header-nav-r .dropdown img {
  vertical-align: bottom;
  width: 24px;
}
.header-nav-r .dropdown .dropdown-menu {
  position: absolute;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 999;
  display: none;
  min-width: 200px;
  padding: 10px 0px;
  font-size: 16px;
  color: #212529;
  text-align: left;
  right: 0;
  top: 25px;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ddd;
  border-radius: 5px;
}
.header-nav-r .dropdown .dropdown-menu .dropdown-item {
  display: block;
  margin-bottom: 5px;
}
.header-nav-r .dropdown .dropdown-menu .dropdown-item img {
  display: inline-block;
  vertical-align: middle;
}
.header-nav-r .dropdown:hover .dropdown-menu {
  display: block;
}

.menu-btn {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Overlay hidden by default */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9;
}

/* Show overlay when active */
.overlay.active {
  display: block;
}

/* Mobile styles */
@media (max-width: 768px) {
  /* Show menu button on mobile */
  .menu-btn {
    display: block;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
    padding: 8px 15px;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  #menuBtn {
    display: block;
  }
  /* Hide menu by default: positioned offscreen to the right */
  .menu {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    position: fixed;
    top: 0;
    right: 0;
    width: 250px; /* Width of the sliding menu */
    background: #fff;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    padding: 20px 0;
    -webkit-box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
            box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  /* Show menu when active: slide in */
  .menu.active {
    height: 100%;
    z-index: 9999;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  /* Stack menu items vertically */
  .menu li {
    padding: 15px 20px;
  }
  .close-menu {
    position: relative;
    left: 100px;
    top: -30px;
  }
  /* Hide right header nav on mobile */
  .header-nav-r {
    display: none;
  }
  /* Close button inside menu */
  .close-menu {
    text-align: right;
    height: 50px;
    padding: 10px 20px;
  }
  #closeMenuBtn {
    background: none;
    border: none;
    font-size: 40px;
    cursor: pointer;
    color: #333;
  }
}
:root {
  --primary: #3b6daa;
  --text-color: white;
  --white: white;
  --text-gray: #FEFEFE;
  --text-heading-gray: #D0D0F7;
  --background: #EDF0F9;
  --border: #aabfff;
}

.subscription-section {
  margin: 0 auto;
  margin-top: auto;
  padding: 3rem 1rem;
  max-width: 75rem;
  width: 100%;
}

/*? subscribe section */
.subscription-wrapper {
  margin: 0 auto;
  border-radius: 1rem;
  padding: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 11.5rem;
  gap: 2rem;
  color: #3b6daa;
  background-color: #EDF0F9;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.subscription__description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.subscription__description h2 {
  font-size: 25px;
  font-weight: 600;
}

.subscription__description p {
  font-size: 17px;
  font-weight: 500;
}

.subscribe-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.subscribe-form input[type=email] {
  border: 1px solid #aabfff;
  color: #3b6daa;
  outline: none;
  min-height: 3rem;
  background-color: #fff;
  font-size: 1.2rem;
  -webkit-box-flex: 3;
      -ms-flex-positive: 3;
          flex-grow: 3;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
}

.subscribe-form > input:focus {
  border: 1px solid #3b6daa;
}

.subscribe-form > input::-webkit-input-placeholder {
  color: #D0D0F7;
}

.subscribe-form > input::-moz-placeholder {
  color: #D0D0F7;
}

.subscribe-form > input:-ms-input-placeholder {
  color: #D0D0F7;
}

.subscribe-form > input::-ms-input-placeholder {
  color: #D0D0F7;
}

.subscribe-form > input::placeholder {
  color: #D0D0F7;
}

.subscribe-form > button {
  cursor: pointer;
  background-color: var(--primary);
  border-radius: 0.5rem;
  color: #fff;
  font-size: 1.25rem;
  min-height: 3rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  white-space: nowrap;
  padding: 0.5rem 0.75rem;
  border: 0;
  outline: none;
  border: 1px solid #aabfff;
}

/*? footer containers */
footer {
  bottom: 0;
  background-color: var(--primary);
  width: 100%;
  min-width: 20rem;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding: 1rem;
}

.footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-flex: 4;
      -ms-flex-positive: 4;
          flex-grow: 4;
  gap: 3rem 1rem;
}

.footer-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 1.5rem 0.5rem 2.25rem 0.5rem;
}

.footer-columns section,
.footer-columns .footer-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 10rem;
          flex: 1 0 10rem;
  max-width: 15rem;
}

.footer-columns ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
  list-style-type: none;
  padding: 0;
  margin: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 600;
}

.footer-columns ul a {
  color: var(--text-color);
  text-decoration: none;
}

.footer-columns ul a:hover {
  text-decoration: underline;
}

.footer-columns h3 {
  color: var(--text-heading-gray);
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 10rem;
  margin-bottom: 3rem;
}

.footer-logo img {
  height: 50px;
}

/*? Footer bottom */
.footer-bottom {
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  width: 100%;
  gap: 1rem;
  padding: 1rem 0px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: var(--text-color);
  border-top: 1px solid var(--border);
}

.footer-bottom > small {
  margin: 0 0.25rem;
}

.footer-headline > h2 {
  margin: 0;
  font-size: 1rem;
  color: var(--text-primary);
}

.footer-headline > p {
  color: var(--text-color);
  margin: 0.25rem 0 1.25rem 0;
}

.footer-description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer-description h3 {
  margin-bottom: 0.5rem;
}

/*? socials */
.social-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 0.5rem;
  padding: 0.5rem 0;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  margin-bottom: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--text-color);
}

.social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.social-links img {
  width: 1.5rem;
  height: 1.5rem;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.social-links img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.social-links ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.75rem;
  list-style-type: none;
}

/*? mobile */
@media (min-width: 926px) {
  .footer-logo {
    margin-right: auto;
  }
}
@media (max-width: 800px) {
  .footer-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .footer-columns {
    width: 72%;
  }
  .footer-logo {
    margin-bottom: 0px;
  }
  .footer-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto;
    text-align: center;
  }
  .social-wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}