:root {
  --primary-blue: #011f5f;
  --lighter-blue: #305494;
  --dark--color: #354154;
  --light--color: #e3e7ed;
  --sub--head-color: #7f90ae;
  --gray-bg: #f0f0f0;
}

/* Global Font */

@font-face {
  font-family: "Montserrat";
  src: url(../../assets/fonts/Montserrat.ttf);
}

/* @font-face {
  font-family: "Poppins";
  src: url(../../assets/fonts/Poppins.ttf);
} */

@font-face {
  font-family: "Roboto";
  src: url(../../assets/fonts/Roboto.ttf);
}

/* @font-face {
  font-family: "Anton";
  src: url(../../assets/fonts/Anton.ttf);
} */

h1 {
  font-size: 60px;
  margin-bottom: 25px;
  font-family: "Roboto";
  font-weight: 600;
  text-transform: uppercase;
}

h2 {
  font-size: 50px;
  margin-bottom: 20px;
  font-family: "Roboto";
  font-weight: 600;
  text-transform: uppercase;
}

h3 {
  font-size: 35px;
  margin-bottom: 20px;
  font-family: "Roboto";
  font-weight: 600;
}

p {
  font-size: 18px;
  font-family: "Montserrat";
  color: var(--dark--color);
}

@media (max-width: 1199px) {
  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 45px;
  }

  h2 {
    font-size: 30px;
  }
}
/* Global Font */

/* Global Section */
section img {
  width: 100%;
}

@media (min-width: 992px) {
  section {
    padding: 100px 0;
  }
}

@media (max-width: 991px) {
  .container {
    max-width: 100% !important;
  }
  section {
    padding: 70px 30px;
  }
}

@media (max-width: 767px) {
  section {
    padding: 50px 20px;
  }
}
/* Global Section */

/* Global Classes */
.shadow--filter {
  filter: drop-shadow(8px 8px 8px #0005);
}

.p-text-light {
  color: var(--light--color);
}

.p-text-dark {
  color: var(--dark--color);
}

/* CTA */
.block-cta {
  width: max-content;
  transition: 0.5s;
}

.block-cta a {
  border: 2px solid var(--primary-blue);
  color: #fff;
  text-decoration: none;
  padding: 15px 30px;
  font-weight: 600;
  background: var(--primary-blue);
  transition: 0.5s;
}

.block-cta a:hover {
  background: transparent;
  color: #fff;
  border: 2px solid;
  padding: 15px 30px;
}

.transparent-cta {
  background: #2300ff21;
  padding: 13px 18px;
  border: 2px solid #fff;
  width: max-content;
  transition: 0.5s;
}

.transparent-cta a {
  text-decoration: none;
  color: #fff;
  padding: 14px 19px;
  font-weight: 600;
}

.transparent-cta:hover {
  background: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.transparent-cta:hover a {
  color: #fff;
}

.transparent-blue-bg {
  width: max-content;
  background: transparent;
  padding: 13px 18px;
  border-style: solid;
  border: 2px solid #fff;
  border-image: initial;
  transition: 0.5s;
}

.transparent-blue-bg:hover {
  background: #fff;
}

.transparent-blue-bg:hover a {
  color: var(--lighter-blue);
}

.transparent-blue-bg a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 14px 19px;
}

.gray-bga-cta {
  background-color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  width: max-content;
  transition: 0.5s;
  padding: 15px 30px;
}

.gray-bga-cta a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 18px 0;
}

.gray-bga-cta:hover {
  background-color: transparent;
  border: 2px solid var(--primary-blue);
}

.gray-bga-cta:hover a {
  color: var(--primary-blue);
}

/* Left/Right Image Row */
.left-img-row-image img, .right-img-row-image img {
    border-radius: 10px;
    height: 520px;
    object-fit: cover;
    box-shadow: 5px 5px 5px -2px rgba(0, 0, 0, 0.54);
    -webkit-box-shadow: 5px 5px 5px -2px rgba(0, 0, 0, 0.54);
    -moz-box-shadow: 5px 5px 5px -2px rgba(0, 0, 0, 0.54);
}

@media (min-width: 1200px) {
  .left-img-row-content {
    padding-left: 1%;
  }

  .right-img-row-content {
    padding-right: 1%;
  }
}

@media (max-width: 1199px) {
  .right-img-row {
    flex-direction: column-reverse;
  }

  .left-img-row-image img,
  .right-img-row-image img {
    margin-bottom: 20px;
  }
}

/* Footer Color */
footer .copyright p {
  color: var(--light--color);
}

/* Contact Footer */

section.contact {
  background: url("../../assets/img/home/contact-us.jpg") no-repeat center
    center / cover;
}
section.contact .transparent-cta {
  float: right;
}

.contact-section-cta {
  gap: 20px;
}

section.contact .contacts-flex {
  gap: 20px;
}

section.contact .contacts-flex:first-child svg {
  margin-top: 3px;
}

section.contact .contacts-flex:last-child svg {
  margin-top: 4px;
}

section.contact svg {
  font-size: 20px;
}

section.contact .gen-info {
  gap: 10px;
}

section.contact svg path {
  fill: #fff;
}

section.contact a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-family: "Montserrat";
}

section.contact .contacts-flex:first-child p {
  margin-left: 5px;
}

section.contact a:hover {
  color: #3c80f5;
}

@media (max-width: 1199px) {
  section.contact .row {
    gap: 50px;
  }
}

@media (mmax-width: 767px) {
  .contact-section-cta {
    justify-content: center !important;
  }
}

@media (max-width: 500px) {
  .contact-section-cta {
    flex-direction: column;
    gap: 30px;
  }
}

/* Global Classes */