/* =====Document Styles===== */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  /* outline: 1px solid red; */
}
::-moz-selection {
  color: #fff;
  background: rgba(255, 0, 0, 0.8);
}
::selection {
  color: #fff;
  background: rgba(255, 0, 0, 0.8);
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  line-height: 1.25;
  color: #2d2d2d;
  background-color: #fefbf9;
  /* min-height: 200vh; */
}
.main {
  position: relative;
}
/* Content Style */
h1 {
  font-family: "Univia Pro", serif;
  font-size: 61.04px;
  font-weight: 500;
  font-style: normal;
}
h2 {
  font-family: "Univia Pro", serif;
  font-size: 39.06px;
  font-weight: 500;
  font-style: normal;
}
h3 {
  font-family: "Univia Pro", serif;
  font-size: 31.25px;
  font-weight: 500;
  font-style: normal;
}
h4 {
  font-family: "Univia Pro", serif;
  font-size: 25px;
  font-weight: 700;
  font-style: normal;
}
h5 {
  font-family: "Univia Pro", serif;
  font-size: 20px;
  font-weight: 500;
  font-style: normal;
}
p {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  color: rgba(45, 45, 45, 0.8);
}
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1200px) {
  .container {
    max-width: 980px;
  }
}
@media (max-width: 1023px) {
  .container {
    max-width: 728px;
  }
  h1 {
    font-size: 48.83px;
  }
  h2 {
    font-size: 31.25px;
  }
  h3 {
    font-size: 25px;
  }
  h4 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .container {
    max-width: 396px;
  }
  h1 {
    font-size: 31.25px;
  }
  h2 {
    font-size: 25px;
  }
  p {
    font-size: 18px;
  }
}
@media (max-width: 427px) {
  .container {
    max-width: calc(100% - 32px);
  }
}

/* =====Buttons===== */
.gen_btn {
  font-size: 18px;
  font-weight: 700;
  background-color: red;
  padding: 12px 25px 10px;
  border-radius: 25px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #fff;
  cursor: pointer;
}
.gen_btn:hover {
  opacity: 0.8;
}
@media (max-width: 767px) {
  .gen_btn {
    font-size: 16px;
  }
}

.sec_btn {
  background-color: transparent;
  border: 1px solid red;
  color: red;
}

/* =====Background Image===== */
.bg_img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: -2;
}

/* =====Header===== */
.header {
  position: absolute;
  z-index: 1;
  padding-right: 60px;
  padding-left: 60px;
  margin-top: 20px;
  width: 100%;
}
.head_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.head_logo {
  height: 100px;
}

/* Nav */
.nav_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
.nav a {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}
.nav_btn {
  font-size: 16px;
}
.nav .current_page {
  color: red;
}
.nav a::after {
  content: "";
  position: absolute;
  height: 3px;
  width: 0;
  background-color: rgba(255, 255, 255, 0.8);
  bottom: -8px;
  left: 0;
  right: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.nav a:hover::after {
  width: 100%;
}
.nav .current_page::after {
  background-color: rgba(255, 0, 0, 0.8);
}
@media (max-width: 1200px) {
  .nav {
    display: none;
  }
}
@media (max-width: 1023px) {
  .header {
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media (max-width: 767px) {
  .header {
    padding-right: 12px;
    padding-left: 12px;
  }
  .head_logo {
    height: 80px;
  }
  .nav_btn {
    font-size: 14px;
  }
}
/* Hamburger */
.hammenu {
  display: none;
}
@media (max-width: 1200px) {
  .hammenu {
    display: block;
  }
  .menu-open .nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    top: 100px;
    right: 40px;
    background-color: #2d2d2d;
    padding: 25px 40px;
  }
}
@media (max-width: 1023px) {
  .menu-open .nav {
    right: 30px;
  }
}
@media (max-width: 767px) {
  .nav_wrap {
    gap: 20px;
  }
  .menu-open .nav {
    right: 15px;
    top: 80px;
  }
}

/* =====Footer===== */
.footer {
  background-color: #2d2d2d;
}
.footer .container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer a:hover {
  color: #ff0000;
}

/* Foot Top */
.foot_top {
  padding: 50px 0 60px;
  width: 100%;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.foot_logo {
  height: 130px;
}
.foot_top h4 {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
}
.foot_wrap_sepa {
  width: 80px;
  height: 4px;
  background-color: rgba(255, 0, 0, 0.4);
  margin-bottom: 15px;
}
.foot_links_wrap {
  display: -ms-grid;
  display: grid;
  -webkit-column-gap: 35px;
     -moz-column-gap: 35px;
          column-gap: 35px;
  row-gap: 20px;
  -ms-grid-columns: 1fr 35px 1fr;
  grid-template-columns: repeat(2, 1fr);
}
.foot_links_wrap a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.foot_address {
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
}
.foot_address .foot_address_l2 {
  color: rgba(255, 255, 255, 0.5);
}
.foot_contact_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.foot_contact_link {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.foot_contact_link a {
  text-decoration: underline;
  color: rgba(255, 255, 255, 0.8);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 1023px) {
  .foot_address_wrap {
    display: none;
  }
}
@media (max-width: 767px) {
  .foot_top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 40px;
  }
  .foot_address_wrap {
    display: block;
  }
}

/* Foot Bottom */
.footer_btm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  padding: 15px 0 20px;
  font-weight: 300;
}
.footer_btm a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: underline;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* =====Pre-Foot===== */
.pre-foot {
  position: relative;
  padding: 70px 0;
  top: 2px;
}
.pre_foot_content_wrap {
  max-width: 700px;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.pre_foot_content_wrap h2 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 48.83px;
}
.pre_foot_content_wrap p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  max-width: 680px;
}
@media (max-width: 1023px) {
  .pre_foot_content_wrap h2 {
    font-size: 42px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .pre_foot_content_wrap h2 {
    font-size: 31.25px;
  }
}

/* =====Banner Section===== */
.banner {
  position: relative;
  padding-top: 180px;
  padding-bottom: 60px;
}
.banner .container {
  -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;
}
.banner h1 {
  color: #fff;
  margin-bottom: 20px;
  max-width: 900px;
  text-align: center;
}
.banner_img_div {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: -2;
}
.banner_img_div img {
  width: 100%;
  height: 100%;
}
@media (max-width: 1023px) {
  .banner {
    padding-top: 150px;
    padding-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .banner {
    padding-top: 140px;
    padding-bottom: 20px;
  }
}

/* ======Section Generic===== */
.sec_gen {
  margin: 100px auto;
  padding: 80px 0;
  position: relative;
}
.sec_gen .container {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.sec_gen.sec_gen_rev .container {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.sec_gen_bg {
  border-radius: 20px;
  position: absolute;
  width: 47%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.sec_gen.sec_gen_rev .sec_gen_bg {
  left: unset;
  right: 20px;
}
.sec_gen_cont_wrap {
  max-width: 590px;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.sec_gen_cont_wrap h2 {
  margin-bottom: 15px;
}
.sec_gen_cont_wrap_para {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  max-width: 520px;
  margin-bottom: 35px;
}
.sec_gen_cont_wrap_para ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.sec_gen_cont_wrap_para li {
  position: relative;
  font-size: 20px;
  font-weight: 400;
  color: rgba(45, 45, 45, 0.8);
  margin-left: 25px;
  margin-right: 22px;
}
.sec_gen_cont_wrap_para li::after {
  content: "";
  position: absolute;
  left: -15px;
  top: 10px;
  height: 6px;
  width: 6px;
  background-color: #ff0000;
  border-radius: 5px;
}
@media (max-width: 1200px) {
  .sec_gen {
    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;
    gap: 25px;
    padding: 0;
    margin: 100px 0;
  }
  .sec_gen .container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .sec_gen.sec_gen_rev .container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .sec_gen_bg {
    position: static;
    width: 65%;
    height: 400px;
    border-radius: 20px;
  }
  .sec_gen_cont_wrap {
    max-width: 80%;
  }
  .sec_gen_cont_wrap_para {
    max-width: 100%;
  }
}
@media (max-width: 1023px) {
  .sec_gen_bg {
    width: 90%;
  }
  .sec_gen_cont_wrap {
    max-width: 90%;
  }
}
@media (max-width: 767px) {
  .sec_gen_bg {
    height: 300px;
    width: 93%;
  }
  .sec_gen_cont_wrap {
    max-width: 100%;
  }
  .sec_gen_cont_wrap_para {
    margin-bottom: 30px;
  }
  .sec_gen {
    margin: 80px 0;
  }
  .sec_gen_cont_wrap_para li {
    font-size: 18px;
    margin-left: 20px;
  }
  .sec_gen_cont_wrap_para li::after {
    left: -15px;
    top: 8px;
    height: 5px;
    width: 5px;
  }
}

/* Modal */
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
      -ms-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  -webkit-transition: 200ms ease-in-out;
  -o-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
  /* border: 1px solid black; */
  z-index: 10;
  width: 500px;
  max-width: 90%;
}
.modal.active {
  -webkit-transform: translate(-50%, -50%) scale(1);
      -ms-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}
.modal_header {
  padding: 10px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #2d2d2d;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.modal_header .modal_title {
  font-size: 25px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}
.modal_header .modal_close {
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  font-size: 25px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}
.modal_body {
  padding: 20px 20px 25px;
  background-color: white;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
#modal_overlay {
  position: fixed;
  opacity: 0;
  -webkit-transition: 200ms ease-in-out;
  -o-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index: 2;
}
#modal_overlay.active {
  opacity: 1;
  pointer-events: all;
}