* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: Oswald;
  src: url(../fonts/Oswald-Regular.ttf);
}

@font-face {
  font-family: Montserrat;
  src: url(../fonts/Montserrat-Light.ttf);
}

body {
  font-family: Montserrat, sans-serif;
  background-color: #f5f5f5;
}

h1,
h2 {
  font-family: Oswald, sans-serif;
  letter-spacing: 2px;
}

html {
  scroll-behavior: smooth;
}

/* ------------------- header ------------------- */

header aside {
  flex-basis: 20%;
  display: none;
}

header aside.active {
  display: block;
}

header aside {
  width: 350px;
  transition: all 0.6s ease-in-out;
}

header aside select {
  width: 70%;
  margin-left: 50px;
}

#custom-header nav {
  padding: 10px 50px;
  width: 100%;
  background-color: white;
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
  z-index: +5;
}

#custom-header nav .logo {
  flex-basis: 10%;
}

#custom-header nav .logo img {
  width: 120px;
  height: 60px;
}

#custom-header nav .nav-list {
  flex-basis: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
  list-style-type: none;
  gap: 40px;
}

#custom-header nav .nav-list a {
  font-size: 15px;
  text-decoration: none;
  text-transform: capitalize;
  color: black;
}

#custom-header nav .nav-list a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
  color: #bc1622;
}

#custom-header nav .nav-list i {
  padding: 0 10px;
  color: rgba(0, 0, 0, 0.7);
}

#custom-header nav .nav-links {
  flex-basis: 30%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 50px;
}

#custom-header nav .nav-links a {
  text-decoration: none;
  color: #bc1622;
  font-size: 15px;
  border: 1px solid #bc1622;
  padding: 7px 20px;
  border-radius: 50px;
  cursor: pointer;
}

#custom-header nav .loginBtn i {
  color: #bc1622;
  padding-right: 6px;
  font-size: 15px;
}

#custom-header nav .nav-links a:hover,
a:hover i {
  border-color: black;
  color: black;
}

#custom-header .nav-links .menuIcon {
  font-size: 1.7rem;
  cursor: pointer;
  color: #8080808a;
  display: none;
}

#custom-header .nav-links .menuIcon:hover {
  color: #bc1622;
}

#custom-header nav #language-selector label {
  margin: 0 7px;
  padding: 2px 4px;
  font-size: 16px;
  color: gray;
  cursor: pointer;
  border: 1px solid white;
}

#custom-header nav #language-selector label:hover {
  border: 1px solid #bc1622;
}

#custom-header nav #language-selector label.active {
  border: 1px solid #bc1622;
}
/* aside */

aside {
  height: 100vh;
  width: 20%;
  background-color: #ffffff;
  border-right: 1px solid rgba(211, 211, 211, 0.5);
  position: fixed;
  top: 0;
  z-index: +10;
}

aside .fa-circle-xmark {
  display: none;
  font-size: 2rem;
  position: absolute;
  top: 15px;
  right: 15px;
  color: #8080808a;
}

aside .fa-circle-xmark:hover {
  color: #bc1622;
}

aside .logo {
  width: 70%;
  height: 100px;
  margin: 20px auto;
  background-image: url(../images/Logo.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

aside .divider {
  width: 100%;
  height: 2px;
  background-color: rgba(211, 211, 211, 0.3);
  margin: 10px 0;
}

aside ul {
  width: 70%;
  margin: 30px auto;
  list-style-type: none;
}

aside ul li {
  padding: 20px 0;
}

aside ul li i {
  font-size: 1rem;
  padding-right: 15px;
  color: rgba(128, 128, 128, 0.6);
}

aside ul li a {
  font-size: 1rem;
  text-decoration: none;
  color: #000000;
  letter-spacing: 1px;
  text-transform: capitalize;
  outline: none;
}

aside ul li a:hover {
  color: #bc1622;
}

/* -------------- main ---------------- */

main {
  flex-basis: 80%;
  height: 100vh;
  position: relative;
}

/* hero */

.hero {
  width: 100%;
  height: 100vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.lazy-background {
  background-color: #f4f4f4; /* Placeholder color */
}
.hero .contentOverlay {
  padding: 130px 100px 100px;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  text-transform: capitalize;
  color: #ffffff;
  text-align: center;
}

.hero .contentOverlay h4 {
  padding: 10px 0;
  text-decoration: underline;
  font-weight: lighter;
  font-size: 1.2rem;
  text-underline-offset: 5px;
}

.hero .contentOverlay h1 {
  font-size: 3.3rem;
  width: 80%;
  padding: 10px 0;
  margin: auto;
}

.hero .contentOverlay p {
  width: 70%;
  margin: auto;
  line-height: 24px;
  padding: 10px 0;
}

.hero .contentOverlay .btns {
  margin-top: 40px;
}

.hero .contentOverlay .btns a {
  font-size: 14px;
  padding: 8px 25px;
  text-decoration: none;
  margin: 0 6px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.4s ease-in-out;
  outline: none;
}

.hero .contentOverlay .btns a:first-child {
  color: #ffffff;
  border: 2px solid #ffffff;
  background-color: #bc1622;
}

.hero .contentOverlay .btns a:nth-child(2) {
  color: #ffffff;
  border: 2px solid #ffffff;
  background-color: #000000;
}

.hero .contentOverlay .btns a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease-in-out;
}

/* features */

.features {
  padding: 50px 100px;
}

.features h4 {
  text-transform: capitalize;
  text-decoration: underline;
  padding: 10px 0;
}

.features h2 {
  font-size: 3rem;
  text-transform: capitalize;
  padding: 10px 0;
  margin-bottom: 30px;
}

.features .boxes {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
}

.features .boxes ul {
  flex-basis: 50%;
  list-style-type: none;
}

.features .boxes ul li {
  font-size: 15px;
  color: gray;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  text-align: justify;
  padding: 20px;
}

.features .boxes ul li i {
  padding-right: 17px;
  color: #bc1622;
  font-size: 1.2rem;
}

.features .boxes .tableImg {
  flex-basis: 45%;
  height: 250px;
  background-image: url(../images/Features.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 95% 95%;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  border: 1px solid lightgray;
}

/* C2A */
.c2a {
  background-color: #bc1622;
  padding: 30px 0;
  width: 100%;
  margin: 50px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.c2a .item {
  flex-basis: 40%;
  color: #ffffff;
}

.c2a .item1 h2 {
  padding: 10px 0;
}

.c2a .item1 p {
  margin-bottom: 40px;
  color: #f5f5f5;
}

.c2a .item1 a {
  text-decoration: none;
  color: #ffffff;
  padding: 7px 30px;
  border: 2px solid #ffffff;
  border-radius: 50px;
  text-transform: capitalize;
  outline: none;
  transition: all 0.4s ease-in-out;
  background-color: #000000;
}

.c2a .item1 a:hover {
  background-color: transparent;
  transition: all 0.4s ease-in-out;
}

.c2a .item2 {
  position: relative;
  transform: scale(1.3);
}

.c2a .item2 img {
  height: 300px;
  width: 100%;
  position: absolute;
  top: -150px;
}

/* Documentation */

.documentation {
  padding: 50px 100px;
}

.documentation h4 {
  text-decoration: underline;
  text-transform: capitalize;
}

.documentation h2 {
  padding: 20px 0;
  font-size: 3rem;
  text-transform: capitalize;
}

.documentation p {
  text-align: justify;
  line-height: 23px;
  color: gray;
}

.documentation .boxes {
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.documentation .boxes .faqs {
  flex-basis: 50%;
}

.documentation .boxes .faqs h3 {
  text-transform: capitalize;
  padding: 20px 0;
}

.documentation .boxes .faqs p {
  font-size: 14px;
  padding: 5px 0;
}

.documentation .boxes .faqs .btn {
  margin-top: 40px;
}

.documentation .boxes .faqs .btn a {
  color: #bc1622;
  padding: 7px 20px;
  text-decoration: none;
  border: 1px solid #bc1622;
  transition: all 0.4s ease-in-out;
  border-radius: 50px;
  outline: none;
}

.documentation .boxes .faqs .btn a:hover {
  background-color: #bc1622;
  color: #ffffff;
  transition: all 0.4s ease-in-out;
}

.documentation .laptop {
  height: 300px;
  flex-basis: 40%;
  background-image: url(../images/Documentation.png);
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transition: all 0.6s ease-in-out;
}

.documentation .laptop:hover {
  transform: scale(1.3);
  transition: all 0.6s ease-in-out;
  cursor: pointer;
}

/* contact */

.contact {
  width: 100%;
  background-image: url(../images/Conacts.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.contact .overlayContact {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.68);
  padding: 50px 0;
}

.contact .overlayContact .contactForm {
  width: 80%;
  margin: auto;
  text-align: center;
  border-radius: 10px;
}

.contactForm h2 {
  text-transform: capitalize;
  font-size: 2rem;
  color: white;
}

.contactForm h4 {
  color: whitesmoke;
  font-weight: lighter;
  text-transform: capitalize;
  padding: 10px 0 20px;
  font-size: 14px;
}

.contactForm form input,
textarea {
  padding: 12px 20px;
  width: 100%;
  margin: 13px 0;
  border: 1px solid whitesmoke;
  outline: none;
  border-radius: 2px;
  background-color: transparent;
  color: white;
  background-color: rgba(0, 0, 0, 0.2);
}

.contactForm form input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
  font-size: 12px;
}

.contactForm form textarea {
  resize: none;
}

.contactForm form fieldset {
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.contactForm form .subBtn {
  width: 30%;
  border: 2px solid whitesmoke;
  color: #ffffff;
  outline: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: #bc1622;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  border-radius: 50px;
}

.contactForm form .subBtn:hover {
  background-color: transparent !important;
  transition: all 0.4s ease-in-out;
}

/* --------------------- footer --------------------- */

footer {
  background-color: #ffffff;
  padding: 15px 20px;
  width: 100%;
}

footer p {
  text-align: center;
  font-size: 14px;
  text-transform: capitalize;
  color: gray;
}
