/*Vars*/
:root {
  --main-color: #ab3636;
  --transparent-blue: rgb(107, 115, 190);
  --section-padding: 100px;
}
/*Vars*/

/* @import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"); */

/* @import url("https://fonts.googleapis.com/css2?family=Radio+Canada+Big:ital,wght@0,400..700;1,400..700&display=swap"); */

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/*Global Roles*/
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  /* font-family: "Poppins", sans-serif; */
  /*background-color: #626262;*/

  /* font-family: "Radio Canada Big", sans-serif; */

  font-family: "Poppins", sans-serif;
}

ul {
  list-style: none;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
/*Container Screen*/
/*sm*/
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
/*md*/
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
/*lg*/
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
/*Global Roles*/

/* Design Componants*/

.main-heading {
  text-align: center;
}

.main-heading h2 {
  font-size: 35px;
  font-weight: normal;
  text-transform: uppercase;
  margin-bottom: 100px;
  position: relative;
}

.main-heading h2::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  background-color: #333;
  bottom: -30px;
  width: 120px;
}

.main-heading h2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid #333;
  background-color: var(--main-color);
  bottom: -38px;
}

.main-heading p {
  width: 550px;
  margin: 0 auto 100px;
  max-width: 100%;
  line-height: 2;
  color: #777;
}

@media (max-width: 767px) {
  .main-heading h2 {
    font-size: 30px;
  }
}

/* Design Componants*/

/*Header*/
.master {
  position: relative;
  height: 120vh;
  padding-bottom: var(--section-padding);
  background-image: url(../imgs/bg-main-2.jpg);
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
}

/* .master .overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #19191980;
} */

header {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 2;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  min-height: 97px;
}

header .container::after {
  content: "";
  position: absolute;
  height: 2px;
  background-color: #a2a2a2;
  bottom: 0;
  width: calc(100% - 30px);
  left: 15px;
  /*z-index: -1;*/
}

header .logo img {
  height: 80px;
}

header nav {
  height: 80px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background-color: #00000063;
  padding: 0 20px;
}

header nav .toggle-menu {
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  transition: all 1.3s linear;
}

@media (min-width: 768px) {
  header nav .toggle-menu {
    display: none;
  }
}

header nav ul {
  display: flex;
}

@media (max-width: 767px) {
  header nav ul {
    display: none;
  }
  header nav ul.show {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 50%);
  }
  nav ul li a {
    padding: 15px !important;
  }
}

header nav ul li a {
  padding: 40px 15px;
  text-decoration: none;
  color: #fff;
  display: block;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  position: relative;
  border-bottom: 2px solid transparent;
  z-index: 2;
}

header nav ul li a:hover,
header nav ul li a.active {
  color: var(--main-color);
  border-bottom: 2px solid var(--main-color);
}

header nav .form {
  width: 40px;
  height: 30px;
  position: relative;
  margin-left: 30px;
  border-left: 1px solid #fff;
}

header nav .form i {
  color: #fff;
  font-size: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
/*Header*/
/*Design*/
.design {
  padding: 10% 0;
  height: 850px;
  position: relative;
  background-image: url(./../imgs/bg-land.jpg);
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.design::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.design .image,
.design .text {
  position: relative;
  z-index: 2;
  flex: 1;
}

.design .image {
  text-align: center;
}
@media (max-width: 767px) {
  .design .image {
    display: none;
  }
}

.design .image img {
  position: relative;
  bottom: -180px;
}

.design .text {
  color: #fff;
  padding: 50px;
  background-color: var(--transparent-blue);
}

.design .text h2 {
  font-weight: normal;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.design .text ul li {
  padding: 15px 0;
  font-size: 18px;
}

/*Design*/

/* Footer */

.footer .container {
  background-color: #191919;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 50px;
  width: 100%;
  padding: 4%;
  overflow-x: hidden;
  justify-content: center;
}

.footer .box h3 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 45px;
}

.footer .box .social {
  display: flex;
}

@media (max-width: 767px) {
  .footer {
    text-align: center;
  }
  .footer .container {
    gap: 30px;
  }
  .footer .box .social {
    justify-content: center;
  }

  .footer .box h3 {
    font-size: 30px;
    margin-bottom: 30px;
  }
}

.footer .box .social li {
  margin-right: 10px;
}

.footer .box .social li a {
  background-color: #313131;
  color: #b9b9b9;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  font-size: 20px;
  transition: all 0.4s;
}

.footer .box .social .facebook:hover {
  background-color: #1877f2;
}

.footer .box .social .twitter:hover {
  background-color: #1da1f2;
}

.footer .box .social .youtube:hover {
  background-color: #ff0000;
}

.footer .box .text {
  line-height: 2;
  color: #b9b9b9;
  margin-top: 25px;
}

.footer .box .links li {
  padding: 12px 0;
  transition: all 0.4s;
}

.footer .box .links li:not(:last-child) {
  border-bottom: 1px solid #444;
}

.footer .box .links li:hover {
  padding-left: 10px;
}

.footer .box .links li:hover a {
  color: #fff;
  transition: all 0.4s;
}

.footer .box .links li a {
  color: #b9b9b9;
}

.footer .box .links li a i {
  color: var(--main-color);
  margin-right: 10px;
}

.footer .box .line {
  display: flex;
  align-items: center;
  color: #b5b5b5;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .footer .box .line {
    flex-direction: column;
  }
}

.footer .box .line i {
  font-size: 25px;
  color: var(--main-color);
  margin-right: 10px;
}

@media (max-width: 767px) {
  .footer .box .line i {
    margin: 0 0 13px 0;
  }
}

.footer .box .line .info {
  line-height: 1.7;
  flex: 1;
}

.footer .box .line .info span {
  display: block;
}

.footer .footer-gallery img {
  width: 78px;
  border: 3px solid #fff;
  margin: 2px;
}

/* Footer */
footer {
  padding: calc(var(--section-padding) / 2) 0;
  background-image: url(./../imgs/footer.jpg);
  background-size: cover;
  position: relative;
  color: #fff;
  text-align: center;
}

footer::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
}

footer .container {
  position: relative;
}

footer img {
  margin-bottom: 20px;
  width: 200px;
  max-width: 50%;
}

footer p:not(.copyright) {
  text-transform: uppercase;
  padding: 20px;
  border-bottom: 1px solid #fff;
  font-size: 22px;
  width: fit-content;
  margin: 20px auto;
}

footer .social-icons i {
  padding: 10px 15px;
  font-size: 18px;
}

footer .copyright {
  margin-top: 50px;
}

footer .copyright span {
  font-weight: bold;
  color: var(--main-color);
}
/*Footer*/
