*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  font-family: "Montserrat", sans-serif;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

.container {
  min-height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

p {
  color: #000;
  font-size: 1.4rem;
  margin-top: 5px;
  line-height: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.05rem;
}

.section-title {
  font-size: 4rem;
  font-weight: 300;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  text-align: center;
}
.section-title span {
  color: crimson;
}

.cta {
  display: inline-block;
  padding: 10px 30px;
  color: crimson;
  background-color: transparent;
  border: 2px solid crimson;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  margin-top: 36px;
  transition: 0.3s ease;
  transition-property: background-color, color;
}

.cta:hover {
  color: #fff;
  background-color: crimson;
}

.brand h1 {
  font-size: 3rem;
  text-transform: uppercase;
  color: #fff;
}

.brand h1 span {
  color: crimson;
}
/*header section styles*/
#header {
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100vw;
  height: auto;
  background-color: rgba(31, 30, 30, 0.24);
  transition: all 0.5s ease-in-out;
}

#header .header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
  min-height: 8vh;
}

#header .nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  width: 100vw;
}

#header .nav-list ul {
  list-style: none;
  position: absolute;
  background-color: #29323c;
  width: 100vw;
  height: 100vh;
  left: 100%;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1px;
  overflow-x: hidden;
  transition: all 0.5s ease-in-out;
}

#header .nav-list ul.active {
  left: 0;
}

#header .nav-list ul a {
  position: relative;
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.05rem;
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  padding: 20px 10px;
  display: block;
  z-index: 2;
}

#header .nav-list ul a::after {
  content: attr(data-line);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: rgba(248, 248, 255, 0.24);
  font-size: 11rem;
  letter-spacing: 50px;
  z-index: 1;
}
#header .nav-list ul li a {
  transition: all 0.5s ease-in-out;
}

#header .nav-list ul li:hover a::after {
  transform: translate(-50%, -50%) scale(1);
  letter-spacing: initial;
  transition: all 0.5s ease-in-out;
}

#header .nav-list ul li:hover a,
.lang__btn:hover,
#header .nav-list ul li a.link__active {
  color: crimson;
}

.lang__btn {
  transform: scale(0.8);
  opacity: 0.8;
}

.lang__btn--active {
  opacity: 1;
  transform: scale(1.2);
  color: crimson;
}

/* hamburger menu */
#header .hamburger {
  height: 60px;
  width: 60px;

  display: inline-block;
  border: 3px solid #fff;
  border-radius: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;

  z-index: 100;
  cursor: pointer;
  transform: scale(0.8);
  margin-right: 20px;
}

#header .hamburger::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  border: 3px solid #fff;
  border-radius: 50%;
  animation: pulse 1s ease infinite;
}

#header .hamburger .bar {
  height: 2px;
  width: 30px;
  position: relative;
  background-color: #fff;
  z-index: 1;
}

#header .hamburger .bar::before,
#header .hamburger .bar::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  background-color: #fff;
  transition: all 0.5s ease-in-out;
}

#header .hamburger .bar::before {
  top: 8px;
}

#header .hamburger .bar::after {
  bottom: 8px;
}

#header .hamburger.active .bar::before {
  top: 0;
}

#header .hamburger.active .bar::after {
  bottom: 0;
}

.lang {
  margin-top: 25px;
}

.lang__btn {
  font-size: 2.5rem;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  border: 2px solid transparent;
  background: none;
  border-radius: 2px;
  padding: 2px 5px;
  font-size: 16px;
  line-height: 21px;
  transition: all 0.3s ease-in-out;
  outline: none;
  cursor: pointer;
  opacity: 0.8;
  padding-bottom: 5px;
  transition: all 0.5s ease-in-out;
  border-bottom: 1px solid transparent;
}

.lang__btn--active {
  opacity: 1;
  transform: scale(1.2);
  color: crimson;
}
/*end of header section styles*/

/*hero styles*/
#hero {
  background-image: url("../img/3bg.jpg");
  background-size: cover;
  background-position: top center;
  position: relative;
  z-index: 1;
}

#hero::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #000;
  opacity: 0.7;
  z-index: -1;
}

#hero .hero {
  min-height: 100vh;

  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
  justify-content: flex-start;
}

#hero h1 {
  display: block;
  width: fit-content;
  font-size: 4rem;
  position: relative;
  color: transparent;
  animation: text_reveal 0.5s ease forwards;
  animation-delay: 1s;
}

#hero h1:nth-child(1) {
  animation-delay: 1s;
}

#hero h1:nth-child(2) {
  animation-delay: 2s;
}

#hero h1:nth-child(3) {
  animation: text_reveal_name 0.5s ease forwards;
  animation-delay: 3s;
}

#hero h1 span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: crimson;
  animation: text_reveal_box 1s ease;
  animation-delay: 0.5s;
}

#hero h1:nth-child(1) span {
  animation-delay: 0.5s;
}

#hero h1:nth-child(2) span {
  animation-delay: 1.5s;
}

#hero h1:nth-child(3) span {
  animation-delay: 2.5s;
}

/*end of header styles*/

/*services section styles*/
#services .service {
  flex-direction: column;
  text-align: center;
  max-width: 1500px;
  margin: 0 auto;
  padding: 100px 10px;
}

#services .service p {
  text-align: justify;
  text-indent: 15px;
  max-width: 1200px;
}

#services .service-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 25px;
}

#services .service-item {
  flex-basis: 80%;
  position: relative;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  flex-direction: column;
  background-image: url("../img/gogh.jpg");
  background-size: cover;
  padding: 30px;
  border-radius: 10px;
  margin: 10px 5%;
  z-index: 1;
  overflow: hidden;
}

#services .service-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(60deg, #29323c, #485563 100%);
  opacity: 0.8;
  z-index: -1;
}

#services .service-bottom .icon {
  height: 80px;
  width: 80px;
  margin-bottom: 20px;
}

#services .service-item h2 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 10px;
  text-transform: uppercase;
}

#services .service-item p {
  color: #fff;
  text-align: left;
}

/*end of services section styles*/

/*project section styles*/
#projects .projects {
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
}

#projects .projects-header h1 {
  margin-bottom: 50px;
}

#projects .all-projects {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#projects .project-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 80%;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 10px;
}

#projects .project-info {
  padding: 30px;
  flex-basis: 50%;
  background-image: linear-gradient(60deg, #29323c, #485563 100%);
  color: #fff;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

#projects .project-info h2 {
  font-size: 3rem;
  font-weight: 500;
}

#projects .project-info h3 {
  font-size: 1.8rem;
  font-weight: 500;
  margin-top: 10px;
}

#projects .project-info p {
  color: #fff;
}

#projects .project-img {
  flex-basis: 50%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

#projects .project-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(60deg, #29323c, #485563 100%);
  opacity: 0.7;
}

#projects .project-img::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(60deg, #29323c, #485563 100%);
  opacity: 0.7;
}

#projects .project-img img {
  transition: 0.3s ease transform;
}

#projects .project-item:hover .project-img img {
  transform: scale(1.11);
}
/*end of project section styles*/

/*about me section styles*/
#about .about {
  flex-direction: column-reverse;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 20px 0px;
}

#about .col-left {
  width: 90%;
  height: 360px;
}

#about .col-right {
  width: 100%;
}

#about .col-right h2 {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  margin-bottom: 10px;
}

#about .col-right p {
  margin-bottom: 20px;
  text-indent: 15px;
  text-align: justify;
}

#about .col-right .cta {
  margin-bottom: 50px;
  padding: 10px 20px;
  font-size: 2rem;
  margin: 10px;
}

#about .col-left .about-img {
  height: 100%;
  width: 100%;
  position: relative;
  border: 10px solid #fff;
}

#about .col-left .about-img::after {
  content: "";
  position: absolute;
  left: -33px;
  top: 29px;
  height: 98%;
  width: 98%;
  border: 7px solid crimson;
  z-index: -1;
}

.schema {
  width: 100%;
  font-size: 1.8rem !important;
  text-align: center;
  margin: 0 !important;
}

.info_wrapper {
  /* min-height: 100vh; */
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 20px 0px;
}

.info_name {
  font-size: 1.5rem;
  font-weight: bolder;
  letter-spacing: 0.1rem;
  margin: 25px 0 0;
}

.info_text {
  margin-top: 35px;
  margin-bottom: 10px;
  text-indent: 15px;
}

.info {
  display: grid;
  grid-template-columns: auto;
  row-gap: 0;
}

.info_item {
  text-align: center;
  border: none;
  padding: 0;
  margin: 0;
}

.info_item:nth-child(odd) {
  border-right: 0;
  margin-top: 5px;
}
.info_item:nth-child(even) {
  font-weight: bold;
  border-bottom: 1px solid black;
}

.info_wrapper .info_btn {
  width: 100%;
  text-align: center !important;
  font-size: 1.5rem;
  padding: 10px;
  margin: 10px;
}
/*end of about me section styles*/

/* report section styles */
#report .report {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.deals {
  margin-bottom: 75px;
}

#report .report .deals-links {
  margin-bottom: 25px;
  text-align: center;
}

#report .report .deals-links a {
  margin-top: 15px;
}

#report .report .report-info {
  text-align: center;
}

#report .report .report-info h3 {
  font-size: 2rem;
}

#report .report .report-info span {
  font-size: 2rem;
  color: crimson;
  display: block;
  margin-top: 10px;
}

#report .report .report-info .cta {
  margin-top: 20px;
}
/* and of report section styles */

/* Customer Protection Section Styles */
#customer__protection {
  background-color: #29323c;
  padding: 100px 0;
}

#customer__protection .customer__protection {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 10px;
}

#customer__protection .customer__protection .customer__protection-title {
  color: #fff;
  font-size: 3rem;
}

#customer__protection .customer__protection .customer__protection-text {
  font-size: 16px;
  color: #fff;
  margin-bottom: 15px;
  text-indent: 30px;
}

#customer__protection .customer__protection .accordion,
.order_btn {
  font-size: 2rem;
  text-transform: uppercase;
  /* line-height: 28px; */
  letter-spacing: 0.1rem;
  background-color: #fff;
  color: crimson;
  cursor: pointer;
  padding: 10px;
  width: 95%;
  text-align: center;
  border: none;
  border-bottom: 2px solid crimson;
  outline: none;
  transition: all 0.5s ease-in-out;
}

#customer__protection .nbu p {
  font-size: 20px;
  color: #fff;
  margin-bottom: 15px;
  text-indent: 30px;
  text-indent: 0%;
}

#customer__protection .nbu a {
  font-size: 24px;
  color: #fff;
  margin-bottom: 15px;
  text-indent: 30px;
  text-indent: 0%;
}

.order_btn {
  font-family: Arial, Helvetica, sans-serif;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
#customer__protection .customer__protection.active,
#customer__protection .customer__protection .accordion:hover,
.order_btn:hover {
  background-color: crimson;
  color: #fff;
}

/* Style the accordion panel. Note: hidden by default */
#customer__protection .customer__protection .customer__protection-panel {
  padding: 10px 18px;
  background-color: white;
  display: none;
  width: 100%;
  overflow: hidden;
}

#customer__protection .customer__protection .customer__protection-panel p {
  font-size: 16px;
  margin-bottom: 10px;
}

#customer__protection .customer__protection .customer__protection-panel a {
  text-decoration: none;
  font-size: 20px;
  color: #332208;
  border-bottom: 1px solid transparent;
}

#customer__protection
  .customer__protection
  .customer__protection-panel
  p
  a:hover {
  border-bottom: 1px solid crimson;
}

/* end of  Customer Protection Section Styles*/

/*contact section styles*/
#contact .contact {
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 10px;
}

#contact .contact-items {
  width: 100%;
  background-color: #fff;
}

#contact .contact-item {
  width: 100%;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  padding: 2px;
  margin: 40px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0px 0px 18px 0 #0000002c;
  transition: 0.3s ease box-shadow;
}
#contact .contact-item:hover {
  box-shadow: 0px 0px 5px 0 #0000002c;
}
#contact .icon {
  width: 70px;
  margin: 0 auto;
  margin-bottom: 10px;
}
#contact .contact-info h1 {
  font-size: 2rem;
  font-weight: 700;
  /* margin-bottom: 5px; */
}
#contact .contact-info h2,
#contact .contact-info a {
  font-size: 2.2rem;
  line-height: 3rem;
  font-weight: 500;

  color: #000;
}

#contact .contact-info a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

.contacts__subTitle {
  text-align: center;
  font-weight: bold;
  font-size: 2.2rem;
  line-height: 3rem;
  font-weight: 500;
  color: #000;
}
/*end of contact section styles*/

/*styles for the footer section*/
#footer {
  background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
}

#footer .footer {
  min-height: 180px;
  flex-direction: column;
  padding: 20px 0 10px;
  opacity: 0.8;
}

.footer h2 {
  color: #fff;
  font-weight: 500;
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
  margin: 0 0 15px;
}

#footer ul {
  list-style: none;
  display: flex;
}

#footer ul li a {
  padding: 0 5px;
  text-decoration: none;
  font-size: 1.3rem;
  color: #fff;
  opacity: 0.7;
}
#footer ul li a:hover {
  opacity: 1;
  text-decoration: underline;
}
/*end of styles for the footer section*/

/*keyframes*/
@keyframes text_reveal_box {
  50% {
    width: 100%;
    left: 0;
  }

  100% {
    width: 0;
    left: 100%;
  }
}

@keyframes text_reveal {
  100% {
    color: #fff;
  }
}

@keyframes text_reveal_name {
  100% {
    color: crimson;
  }
}

@keyframes pulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.4);
  }
}
/*end of keyframes*/

/*Media Query for Tablets*/
@media only screen and (min-width: 768px) {
  .info {
    grid-template-columns: auto auto;
    row-gap: 1px;
  }

  .info_item {
    border: 1px solid black;
    padding: 5px;
    margin: 0;
  }
  .info_item:nth-child(odd) {
    border-right: 0;
    margin-top: 0;
  }
}
@media only screen and (min-width: 768px) {
  .cta {
    font-size: 2.5rem;
    padding: 20px 60px;
  }

  h1.section-title {
    font-size: 6rem;
    margin-top: 20px;
  }

  /*hero*/
  #hero h1 {
    font-size: 7rem;
  }

  /*service*/
  #services .service-bottom .service-item {
    flex-basis: 45%;
    margin: 2.5%;
    height: 350px;
  }

  /*project*/
  #projects .project-item:nth-child(even) {
    flex-direction: row-reverse;
  }
  #projects .project-item {
    flex-direction: row;
    height: 400px;
    margin: 0;
    width: 100%;
    border-radius: 0;
  }

  #projects .all-projects .project-info {
    height: 100%;
  }

  #projects .project-img {
    height: 100%;
  }
}

/*about section*/

/* #about .about {
  flex-direction: row;
}

#about .col-left {
  width: 600px;
  height: 400px;
  padding-left: 60px;
}

#about .about .col-left .about-img::after {
  left: -45px;
  top: 34px;
  height: 98%;
  width: 98%;
  border: 10px solid crimson;
}

#about .col-right {
  text-align: left;
  padding: 30px;
}

#about .col-right h1 {
  text-align: left;
} */

/* deals */

#report .report .deals-links a {
  display: block;
  margin: 20px 15px;
}

#report .report-info {
  margin-bottom: 50px;
}

/*contacts*/

/* #contact .contact {
  flex-direction: column;
  padding: 75px 0;
  align-items: center;
  justify-content: center;
}

#contact .contact-items {
  width: 100%;
  display: flex;
  flex-direction: row;
  margin: 0;
  padding: 20px;
}

#contact .contact-item {
  margin: 20px;
  flex-direction: row;
}

#contact .contact-item .icon {
  height: 80px;
  width: 80px;
}

#contact .contact-item .icon img {
  object-fit: contain;
}

#contact .contact-item .contact-info {
  width: 100%;
  text-align: left;
  padding-left: 20px;
} */

/*End of Media Query for Tablets*/

/*Media Query for DeskTop*/
@media only screen and (min-width: 1200px) {
  /* header */

  .lang__btn {
    font-size: 1.8rem;
  }

  #header .hamburger {
    display: none;
  }

  #header .nav-list ul {
    position: initial;
    display: block;
    height: auto;
    width: fit-content;
    background-color: transparent;
  }

  #header .nav-list ul li {
    display: inline-block;
  }
  #header .nav-list ul .lang {
    display: none;
    margin-left: 25px;
  }

  #header .nav-list ul a {
    font-size: 1.8rem;
  }

  #header .nav-list ul a::after {
    display: none;
  }
  /*services*/
  #services .service-bottom .service-item {
    flex-basis: 22%;
    margin: 1.5%;
    height: 300px;
  }

  #contact .contact {
    flex-direction: column;
    padding: 75px 0;
    align-items: center;
    justify-content: center;
  }

  #contact .contact-items {
    width: 100%;
    display: flex;
    flex-direction: row;
    margin: 0;
    padding: 20px;
  }

  #contact .contact-item {
    margin: 20px;
    justify-content: space-between;
    /* flex-direction: row; */
  }

  #contact .contact-item .icon {
    height: 80px;
    width: 80px;
  }

  #contact .contact-item .icon img {
    object-fit: contain;
  }

  #contact .contact-item .contact-info {
    width: 100%;
    text-align: left;
    padding-left: 20px;
  }

  .service-temp_text {
    position: absolute;
    bottom: 0;
    left: 0;
  }

  /* about */
  #about .about {
    flex-direction: row;
  }

  #about .col-left {
    width: 600px;
    height: 400px;
    padding-left: 60px;
  }

  #about .about .col-left .about-img::after {
    left: -45px;
    top: 34px;
    height: 98%;
    width: 98%;
    border: 10px solid crimson;
  }

  #about .col-right {
    text-align: left;
    padding: 30px;
  }

  #about .col-right h1 {
    font-size: 5.5rem;
    margin-top: 0;
  }

  .info_wrapper {
    padding: 0px 20px 100px;
  }

  .info_text {
    margin-top: -75px;
  }
  .info {
    grid-template-columns: auto auto;
    row-gap: 1px;
  }
  /* report */
  #report .report-info {
    margin-bottom: 100px;
  }

  /* customer protection */
  #customer__protection .customer__protection .customer__protection-title {
    margin-bottom: 50px;
  }

  #customer__protection .customer__protection .customer__protection-text {
    font-size: 17px;
    margin-bottom: 30px;
    text-indent: 30px;
  }

  /* contacts */
  #contact .contact-items {
    gap: 5px;
  }
  #contact .contact-item {
    width: 33%;
    padding: 0;
    margin: 0;
  }

  /* footer */
  #footer .footer {
    flex-direction: row;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
  }

  #footer .footer ul li a {
    font-size: 2rem;
  }
}
/*End of Media Query for DeskTop*/
