@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

:root {
  scroll-behavior: smooth;
  --primary_color: #ff5e00;
  --primary_color: #2596be;
  --primary_color: #0000a5;
  --black_color: #000;
  --secondary_black_color: #5c5c5c;
  --tertiary_black_color: #929292;
  --white_color: #fff;
  --three_mili: all 0.3s ease;
  scroll-behavior: smooth;
}
body {
  /* FONT SIZES */
  --primary_header: 2.5rem;
  --secondary_header: 2rem;
  --tertiary_header: 1.5rem;
  --body_text: 1rem;
  --label_text: 1rem;
  --four-em-margin: 6em;
}

@media screen and (max-width: 1500px) {
  body {
    /* FONT SIZES */
    --primary_header: 2.2rem;
    --secondary_header: 1.8rem;
    --tertiary_header: 1.2rem;
    --body_text: 1.1rem;
    --label_text: 1rem;
  }
}

@media screen and (max-width: 1200px) {
  body {
    /* FONT SIZES */
    --primary_header: 2rem;
    --secondary_header: 1.5rem;
    --tertiary_header: 1.2rem;
    --body_text: 1rem;
    --label_text: 0.8rem;
    --four-em-margin: 4em;
  }
}

@media screen and (max-width: 600px) {
  body {
    /* FONT SIZES */
    --primary_header: 1.5rem;
    --secondary_header: 1.3rem;
    --tertiary_header: 1.2rem;
    --body_text: 1rem;
    --label_text: 0.8rem;
    --four-em-margin: 3em;
  }
}

li {
  list-style: none;
}
a {
  text-decoration: none;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  max-width: 100vw;
  overflow-x: hidden;
}

.flex {
  display: flex;
  align-items: center;
}

.section {
  max-width: 1600px;
  margin: 6em auto;
  padding: 0 4em;
}

.btn {
  cursor: pointer;
  display: inline-block;
  font-size: var(--body_text);
  color: var(--black_color);
  padding: 0.6em 0.8em;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.section_header h1 {
  color: var(--primary_color);
  font-size: var(--primary_header);
  margin-bottom: 0.2em;
}

.section_header p {
  color: var(--secondary_black_color);
}
.hidden {
  display: none;
}

/* !HEADER STYLES */

#header {
  position: fixed;
  z-index: 6;
  top: 0;
  left: 0;
  padding: 0 5%;
  width: 100%;
  background-color: var(--white_color);
  box-shadow: -1px 2px 2px 0px rgba(0, 0, 0, 0.3);
}
.logo_container {
  width: fit-content;
  text-align: right;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-direction: column;
  align-items: flex-end;
}

.logo a img {
  width: 120px;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: bold;
  /* color: #2596be; */
  color: var(--primary_color);
}
.logo-small-text {
  color: #bd9f40;
  /* color: #161632; */
  display: block;
  font-size: var(--body_text);
}
#nav-bar {
  height: 80px;
  width: 100%;
  max-width: 1600px;
  padding: 0 4em;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-link-container {
  display: flex;
}

.nav-link {
  font-weight: bold;
  margin: 0 2em;
  font-size: 1.1rem;
}

.theme-nav-link {
  margin: 0;
  margin-left: 8em;
}

.nav-link a {
  text-decoration: none;
  color: var(--black_color);
  position: relative;
  font-size: var(--body_text);
}

.nav-link a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 3px;
  width: 100%;
  background-color: var(--primary_color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: right;
}

.nav-link.active a {
  color: var(--primary_color);
  border-bottom: 3px solid var(--primary_color);
}

.nav-link a:hover:not(.nav-link.active a):before {
  transform: scaleX(1);
  transform-origin: left;
}

@media screen and (max-width: 1000px) {
  .section {
    padding: 0 1em;
    margin: 4em auto;
  }
  .burger {
    cursor: pointer;
    height: 45px;
    width: 50px;
    border-radius: 8px;
    position: fixed;
    right: 4%;
    background-color: var(--theme-color);
    padding: 10px;
    overflow: hidden;
  }
  .burger i {
    display: block;
    background-color: var(--primary_color);
    height: 4px;
    width: 100%;
  }
  .burger i:not(:first-child) {
    margin-top: 7px;
  }
  .burger i:first-child.active-burger {
    transform: translateY(11px) rotate(45deg);
  }
  .burger i:nth-child(2).active-burger {
    transform: translateX(-140%);
  }
  .burger i:nth-child(3).active-burger {
    transform: translateY(-11px) rotate(-45deg);
  }
  .logo a img {
    width: 80px;
  }
  .logo-text {
    font-size: 1.5rem;
  }
  #nav-bar {
    height: 60px;
    padding: 0;
  }
  .nav-link-container {
    position: fixed;
    top: 60px;
    height: 100vh;
    width: 100%;
    left: 0;
    flex-direction: column;
    align-items: center;
    transition: all 0.8s ease;
    background-color: var(--white_color);
    z-index: -1;
    padding-top: 60px;
    transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
  }
  .nav-link-container.active-nav {
    transform: translateY(0);
  }
  .nav-link {
    font-weight: normal;
    margin: 1.4em 0;
    font-size: 1.2rem;
  }
  .nav-link a {
    text-decoration: none;
  }
  .theme-nav-link {
    margin: 0;
    margin-top: 2em;
  }
  .theme-btn {
    padding: 0.6em 1.2em;
    font-size: 1.2rem;
  }
}

/* !BREADCRUMB */
.hero-bread-crumb {
  gap: 0.5em;
  justify-content: center;
  margin-top: 0.5em;
  color: var(--white_color);
}
.hero-bread-crumb a {
  color: var(--tertiary_black_color);
  transition: var(--three_mili);
  -webkit-transition: var(--three_mili);
  -moz-transition: var(--three_mili);
  -ms-transition: var(--three_mili);
  -o-transition: var(--three_mili);
}

/* !HERO SECTION */

#hero_section {
  height: 600px;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.hero_img {
  width: 100%;
  object-fit: cover;
}

.hero_img.active {
  opacity: 1;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transition: all 2s linear;
  -webkit-transition: all 2s linear;
  -moz-transition: all 2s linear;
  -ms-transition: all 2s linear;
  -o-transition: all 2s linear;
}

#hero_section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero_dis {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 100%;
  text-align: center;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  color: var(--white_color);
  text-align: center;
}

.main_header {
  font-size: calc(var(--primary_header));
}

.secondary_header {
  font-size: var(--body_text);
  margin: 1em 0;
  font-style: italic;
  font-family: "Montserrat", sans-serif;
}

.hero_btn {
  cursor: pointer;
  display: inline-block;
  margin-top: 0.5em;
  font-weight: 600;
  background-color: var(--white_color);
  color: var(--black_color);
  transition: var(--three_mili);
  -webkit-transition: var(--three_mili);
  -moz-transition: var(--three_mili);
  -ms-transition: var(--three_mili);
  -o-transition: var(--three_mili);
}

.hero_btn:hover {
  background-color: var(--primary_color);
  color: var(--white_color);
}

@media screen and (max-width: 1400px) {
  #hero_section {
    height: 400px;
  }
  .hero_img {
    object-position: center;
    height: 100%;
  }
}
@media screen and (max-width: 1000px) {
  #hero_section {
    margin-top: 60px;
  }
}

/* !FOOTER */
#footer {
  border-top: 1px solid var(--tertiary_black_color);
  margin-top: 6em;
  background-color: rgb(22, 22, 50);
  margin-bottom: 0;
}
.footer_logo img {
  width: 90px;
}
.footer_inner_container {
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0 auto;
  margin-top: 4em;
  padding-bottom: 4em;
  background-color: rgb(22, 22, 50);
}
.footer_div {
  max-width: 400px;
  color: var(--white_color);
}
.footer_div_dis {
  color: var(--white_color);
  margin-top: 2em;
}
.footer_div_header {
  font-size: var(--tertiary_header);
  color: var(--white_color);
  margin-bottom: 0.5em;
  display: block;
}

.footer_div ul li {
  margin: 1em 0;
}
.footer_div ul li a {
  color: var(--tertiary_black_color);
  font-size: var(--body_text);
}
.quick_contact_form {
  margin-bottom: 2em;
  gap: 2em;
}
.quick_contact_form a {
  font-size: var(--primary_header);
  color: var(--white_color);
}

.footer_div .logo-text {
  color: var(--white_color);
}

@media screen and (max-width: 1050px) {
  .footer_inner_container {
    flex-direction: column;
    gap: 2em;
  }
  .footer_inner_container {
    padding: 2em;
    margin: 0;
  }
}

/* !OUR SERVICES */

.how_we_different_container {
  justify-content: center;
  gap: 2em;
  flex-wrap: wrap;
  margin-top: 4em;
  margin-bottom: 2em;
}
.how_we_different_card {
  width: min(350px, 100%);
  min-height: 280px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 1em;
  border-radius: 10px;
}
.how_we_different_icon_card {
  margin-bottom: 1em;
  display: grid;
  place-items: center;
  height: 50px;
  width: 50px;
  color: #fff;
  font-size: var(--tertiary_header);
  border-radius: 50%;
}
.how_we_different_card:first-child .how_we_different_icon_card,
.how_we_different_card:nth-child(6) .how_we_different_icon_card,
.how_we_different_card:nth-child(8) .how_we_different_icon_card,
.how_we_different_card:nth-child(12) .how_we_different_icon_card {
  background-color: var(--primary_color);
}
.how_we_different_card:nth-child(2) .how_we_different_icon_card,
.how_we_different_card:nth-child(7) .how_we_different_icon_card,
.how_we_different_card:nth-child(13) .how_we_different_icon_card {
  background-color: #fe4f4f;
}
.how_we_different_card:nth-child(3) .how_we_different_icon_card,
.how_we_different_card:nth-child(5) .how_we_different_icon_card,
.how_we_different_card:nth-child(10) .how_we_different_icon_card {
  background-color: #6acd85;
}
.how_we_different_card:nth-child(4) .how_we_different_icon_card,
.how_we_different_card:nth-child(9) .how_we_different_icon_card,
.how_we_different_card:nth-child(11) .how_we_different_icon_card,
.how_we_different_card:nth-child(14) .how_we_different_icon_card {
  background-color: #6572ff;
}

.how_we_different_icon_card img {
  width: 30px;
}
.how_we_different_card h2 {
  font-size: var(--tertiary_header);
  color: var(--);
}
.how_we_different_card p {
  color: var(--font-second-color);
  font-size: var(--body_text);
  margin-top: 1em;
}

.img {
  object-fit: cover;
  min-width: 450px !important;
  min-height: 350px;
}

.gallary {
  border-radius: 4px;
  object-fit: cover;
}

@media screen and (max-width: 650px) {
  .img {
    min-width: 320px !important;
    min-height: 200px;
  }
}

.e-s {
  box-shadow: "0 .5rem 1rem rgba(0,0,0,.15) !important";
}

.tm {
  position: absolute;
  font-size: 12px;
}

.logo-footer {
  max-width: 240px;
}
