@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap");
@font-face {
  font-family: "opensans";
  src: url("./fonts/open-sans/opensans-bold-webfont.woff2") format("woff2"),
    url("./fonts/open-sans/opensans-bold-webfont.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "opensans";
  src: url("./fonts/open-sans/opensans-regular-webfont.woff2") format("woff2"),
    url("./fonts/open-sans/opensans-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "opensans";
  src: url("./fonts/open-sans/opensans-light-webfont.woff2") format("woff2"),
    url("./fonts/open-sans/opensans-light-webfont.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
:root {
  --main-color: #c4830b;
  --main-color-trans: rgba(31, 30, 30, 0.24);
}
::selection {
  background: #94640c;
}
html {
  font-size: 62.5%;
  font-family: "Montserrat", "opensans", sans-serif;
  scroll-behavior: smooth;
}
a {
  text-decoration: none;
}
input {
  outline: 0;
}

.container {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
p {
  color: black;
  font-size: 1.2rem;
  margin: 5px auto 0;
  line-height: 2.08;
  font-weight: 300;
  letter-spacing: 0.05rem;
}
.section-title {
  font-size: 3.5rem;
  font-weight: 300;
  color: black;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  text-align: center;
}

.section-title span {
  color: var(--main-color);
}
.cta {
  display: inline-block;
  padding: 10px 30px;
  color: white;
  background-color: transparent;
  border: 2px solid var(--main-color);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  margin-top: 30px;
  transition: 0.3s ease;
  transition-property: background-color, color;
}
.cta:hover,
.cta:focus {
  color: white;
  background-color: var(--main-color);
}
.brand h2 {
  font-size: 2.8rem;
  text-transform: uppercase;
  color: white;
}
.brand h2 span {
  color: var(--main-color);
}

/* Header Section */
#header {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: auto;
}
#header .header {
  min-height: 8vh;
  /* background-color: rgba(31, 30, 30, 0.24); */
  transition: 0.3s ease background-color;
}
#header .nav-bar {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: left;
  width: 100%;
  height: 100%;
  max-width: 1300px;
  padding: 3px 10px 8px 10px;
}
#header .nav-bar .brand {
  /* background: royalblue; */
  flex: 1;
  text-align: center;
  margin-right: 60px;
  /* margin: 0; */
  padding: 0;
}
#header .nav-bar .brand:hover p,
#header .nav-bar .brand:focus p {
  color: white;
  transition: 0.3s ease;
}
#header .nav-bar .brand p {
  color: rgb(160, 158, 158);
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  line-height: 0.645;
  text-transform: capitalize;
}

#header .nav-bar .nav-list ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  background-image: linear-gradient(60deg, black 10%, var(--main-color) 100%);
  /* background-color: rgb(31, 30, 30); */
  width: 100vw;
  height: 100vh;
  right: 100%;
  top: 0;
  z-index: 1;
  overflow-x: hidden;
  transition: 0.5s ease right;
}
#header .nav-bar .nav-list ul.active {
  right: 0;
}

#header .nav-bar .nav-list ul a {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  text-decoration: none;
  text-transform: uppercase;
  padding: 20px;
  display: block;
  color: rgb(160, 158, 158);
}
#header .nav-bar .nav-list ul a::after {
  content: attr(data-after);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: rgba(240, 248, 255, 0.021);
  font-size: 13rem;
  letter-spacing: 50px;
  z-index: -1;
  transition: 0.3s ease letter-spacing;
}
#header .nav-bar .nav-list ul li:hover a::after,
#header .nav-bar .nav-list ul li:focus a::after {
  transform: translate(-50%, -50%) scale(1);
  letter-spacing: initial;
}
#header .nav-bar .nav-list ul a:hover,
#header .nav-bar .nav-list ul a:focus {
  color: white;
}
#header .hamburger {
  height: 60px;
  width: 60px;
  /* display: inline-block; */
  border: 3px solid white;
  border-radius: 20%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  cursor: pointer;
  transform: scale(0.6);
  margin-right: 20px;
}
#header .hamburger::after {
  /* content: "";
  position: absolute;
  height: 100%;
  width: 100%; */
  /* border: 3px solid white;
  border-radius: 20%; */
  /* animation: hamburger_pulse 1.5s infinite ease; */
}
#header .hamburger .bar {
  height: 2px;
  width: 30px;
  position: relative;
  background-color: transparent;
  z-index: -1;
}
#header .hamburger .bar::after,
#header .hamburger .bar::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  background-color: white;
  transition: 0.3s ease;
  transition-property: top, bottom, transform;
}
#header .hamburger .bar::after {
  top: 7px;
}
#header .hamburger .bar::before {
  bottom: 7px;
}

#header .hamburger.active .bar::before {
  bottom: 0;
  transform: rotate(45deg);
}
#header .hamburger.active .bar::after {
  top: 0;
  transform: rotate(-45deg);
}
/* End Header Section */

/* Hero section */
.hero-main {
  background-image: url(../img/constraction2400x1600.jpg);
  background-size: cover;
  background-position: top center;
  position: relative;
  z-index: 1;
  /* animation: background_change 5s ease infinite; */
}
.hero-main.active {
  background-image: url(../img/constraction3_2400x3108.jpg);
}
.hero-main::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: black;
  opacity: 0.7;
  z-index: -1;
}
#hero .hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
  justify-content: space-between;
}
/* #hero .hero .page {
  display: flex;
} */
.hero-main .page2 {
  display: none;
}
.hero-main .pages.active .page1 {
  display: none;
}
.hero-main .pages.active .page2 {
  display: block;
}

#hero .hero .angle {
  /* background: turquoise; */
  width: 100px;
  height: 200px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
#hero .hero .angle:hover i,
#hero .hero .angle:focus i {
  color: white;
}
#hero .hero .angle.active p {
  /* background-image: url(./img/hero-bg.jpg); */
  color: red;
}
#hero .hero i {
  color: rgb(160, 158, 158);
  transform: scale(4);
  transition: 0.3s ease;
}
#hero .hero h1 {
  display: block;
  width: fit-content;
  font-size: 3rem;
  position: relative;
  color: white;
  font-weight: 500;
  animation: text_reveal 5s ease forwards;
  margin: 0;
  line-height: 1.5;
  /* animation-delay: 1s; */
}
/* #hero h1:nth-child(1) {
  animation-delay: 1s;
}
#hero h1:nth-child(2) {
  animation-delay: 2s;
}
#hero h1:nth-child() {
  animation: text_reveal_name 0.5s ease forwards;
  animation-delay: 3s;
} */
#hero h1 span {
  color: var(--main-color);
  font-weight: 00;
  animation: text_reveal_span 5s ease forwards;

  /* position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background-color: var(--main-color);
  animation: text_reveal_box 1s ease;
  animation-delay: 0.3s; */
}
#hero a {
  visibility: hidden;
  animation: button_reveal 0.9 ease forwards;
  animation-delay: 2s;
}
/* #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 Hero section */

/* Services Section */
#services .services {
  flex-direction: column;
  text-align: center;
  max-width: 1500px;
  margin: 0 auto;
  padding: 100px 0;
}
#services .service-top {
  max-width: 500px;
  margin: 0 auto;
}
#services .service-top p {
  color: var(--main-color);
}
#services .service-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 50px;
}
#services .service-item {
  width: 100%;
  max-height: 400px;
  /* flex-basis: 80%; */
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
  padding: 30px;
  /* border-radius: 10px; */
  /* background-image: url(./img/img-1.jpg); */
  background-size: cover;
  margin: 10px auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 400px;
  background: black;
}
#services #service-item1 {
  /* background-image: url(./img/constraction2.png);
  background-position: center; */
  background: none;
  order: 1;
}
#services #service-item2 {
  /* background: none; */
  /* background-image: url(./img/nadzor.jpg); */
  background-position: center;
  order: 2;
}
#services #service-item3 {
  /* background-image: url(./img/inspection1920x1559.jpg); */
  background: none;
  order: 3;
}
#services #service-item4 {
  order: 6;
  background-image: linear-gradient(60deg, black 10%, var(--main-color) 100%);
}
#services #service-item5 {
  order: 4;
}
#services #service-item6 {
  order: 5;
  /* background-image: url(./img/img-1.jpg);
  background-position-y: bottom; */
  background: none;
  /* background-image: linear-gradient(60deg, black 10%, var(--main-color) 100%); */
}
#services .service-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(to top, #29323c 0%, transparent 100%);
  /* background-image: linear-gradient(to top, #e3e3e3 0%, transparent 100%); */
  opacity: 0.7;
  z-index: -1;
}
#services .service-item:nth-child(1):after,
#services .service-item:nth-child(3):after,
#services .service-item:nth-child(6):after {
  /* content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%; */
  /* background-image: linear-gradient(to top, #29323c 0%, transparent 100%); */
  background-image: linear-gradient(to top, #e3e3e3 0%, transparent 100%);
  /* opacity: 0.7;
  z-index: -1; */
}
/* #services .service-item .service-up {
  display: flex;
  justify-content: center;
  align-items: center;
} */
/* #services .service-item .service-up .text {
  padding: 0 40px 30px 40px;
} */
#services .service-item .icon {
  height: 60px;
  width: 60px;
  margin-bottom: 20px;
}
#service .service-item div {
  position: relative;
}
#services .service-item h2 {
  font-size: 1.8rem;
  color: white;
  margin-bottom: 10px;
  text-transform: uppercase;
  /* position: absolute; */
  top: -8px;
  left: 20%;
  /* background: rgb(196, 131, 11); */
}
#services #service-item1 h2,
#services #service-item3 h2,
#services #service-item6 h2 {
  color: black;
}
/* #services .service-bottom-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#services .service-bottom-item h2 {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  position: relative;
  background-color: white;
  border: 5px solid white;
  text-transform: capitalize;
  margin: 4vh;
}
#services .service-bottom-item h2::after {
  content: "";
  width: 100%;
  height: 100%;
  top: 5px;
  left: -15px;
  position: absolute;
  z-index: -1;
  border-radius: 10px;
  border: 2px solid var(--main-color);
  /* padding: 5px 15px; */

#services .service-item p {
  color: rgb(222, 222, 222);
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.818;
  /* width: 60ch; */
}
#services #service-item1 p,
#services #service-item3 p,
#services #service-item6 p,
#services #service-item6 ul {
  color: rgb(97, 96, 96);
}
#services .service-item .image {
  width: 100%;
}
#services .service-item .image img {
  width: 200px;
}
#services #service-item2 .image img {
  width: 300px;
}
#services .service-item .logos {
  width: 100%;
  padding: 30px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
#services .service-item .logos .logo {
  flex: 1 1 33%;
}
#services .service-item .logos img {
  width: 80px;
  height: 40px;
  object-fit: fill;
  margin-bottom: 2rem;

  /* padding-right: 20px; */
  /* margin: 0 30px; */
}
#services .service-item .logos img:nth-child(4),
#services .service-item .logos img:nth-child(4) {
  transform: translateY(4px);
}
#services .service-item .logos img:nth-child(6) {
  transform: translateY(3px);
}
#services .service-item ul {
  color: white;
  text-align: left;
  padding: 10px 20px;
  letter-spacing: 0.1rem;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 300;
}
/* End Services Section */

/* Projects Section */
#projects .projects {
  flex-direction: column;
  max-width: 1900px;
  margin: 0 auto;
  padding: 100px 0;
}
#projects .projects-header h1 {
  margin-bottom: 50px;
}
#projects .all-projects {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#projects .project-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  /* border-radius: 10px; */
  /* background-color: grey;
    background-size: cover; */
  margin: 20px auto;
  /* position: relative; */
  /* overflow: hidden; */
}
/* #projects .project-item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
    opacity: .5;
} */
#projects .project-info {
  /* z-index: 1; */
  padding: 30px;
  width: 100%;
  flex-basis: 50%;
  /* background-image: linear-gradient(60deg, #485563 0%, #29323c 100%); */
  background-image: linear-gradient(60deg, black 10%, var(--main-color) 100%);

  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
#projects .project-img {
  flex-basis: 50%;
  /* width: 100%; */
  /* height: 300px; */
  max-height: 200px;
  overflow: hidden;
  /* position: relative; */
}
/* #projects .project-img:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  /* background-image: linear-gradient(60deg, #485563 0%, #29323c 100%); */
/* background-image: linear-gradient(60deg, rgb(75, 49, 1) 10%, black 100%);
  opacity: 0.4;
} */
#projects .project-img img {
  transition: 0.3s ease transform;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#projects .project-item:hover .project-img img,
#projects .project-item:focus .project-img img {
  transform: scale(1.1);
}
#projects .project-item:hover .project-img:after,
#projects .project-item:focus .project-img:after {
  opacity: 0.2;
}
#projects .project-info h2 {
  font-size: 2rem;
  font-weight: 500;
  color: white;
  text-align: left;
  margin-bottom: 10px;
}
#projects .project-info h3 {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--main-color);
  text-align: left;
  margin-bottom: 10px;
}
#projects .project-info p {
  color: white;
  text-align: left;
  font-size: 1.1rem;
  line-height: 1.818;
}
/* Projects Section */

/* About Section */
#about .about {
  flex-direction: column-reverse;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 20px;
}
#about .col-left {
  width: 300px;
  height: 360px;
  transform: translateX(2rem);
}
#about .col-right {
  width: 100%;
}
#about .col-right h2 {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  margin: 20px 0;
}
#about ul {
  color: black;
  font-size: 1.2rem;
  margin: 20px auto 0;
  line-height: 2.08;
  font-weight: 300;
  letter-spacing: 0.05rem;
  list-style: none;
}
#about .col-right li {
  margin-bottom: 1.5rem;
}
/* #about .col-right p {
  margin-bottom: 80px;
  max-width: 80ch;
} */
/* #about .col-right .cta {
  margin-bottom: 80px;
  padding: 10px 20px;
  font-size: 2rem;
  color: black;
}
#about .col-right .cta:hover {
  color: white;
} */
#about .col-left .about-img {
  height: 100%;
  width: 100%;
  position: relative;
  /* transform: translateX(20px); */
  border: 10px solid white;
  margin-top: 3rem;
}
#about .col-left .about-img::after {
  content: "";
  position: absolute;
  left: -40px;
  top: -35px;
  width: 98%;
  height: 98%;
  /* background: rgb(51, 51, 51); */
  background-image: linear-gradient(60deg, black 10%, var(--main-color) 100%);

  border: 5px solid var(--main-color);
  z-index: -1;
  transition: 0.3s ease;
  transition-property: top, left;
}
#about .col-left .about-img:hover:after,
#about .col-left .about-img:focus:after {
  top: 0;
  left: 0;
}

/* End About Section */

/* Contact Section */
#contact .contact {
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
}
#contact .contact-items {
  /* width: 400px; */
}
#contact .contact-item {
  width: 80%;
  padding: 30px;
  text-align: center;
  border-radius: 10px;
  margin: 30px auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 0px 3px 0 #0000002c;
  transition: 0.3s ease box-shadow;
}
#contact .contact-item:hover,
#contact .contact-item:focus {
  box-shadow: 0px 0px 18px 0 #0000002c;
}
#contact .icon {
  width: 50px;
  margin: 0 auto;
  margin-bottom: 10px;
}
#contact .contact-info a {
  color: black;
}
#contact .contact-info h2 {
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 5px;
}
#contact .contact-info h3 {
  font-size: 1.1rem;
  line-height: 1.818;
  font-weight: 500;
  letter-spacing: 0.1rem;
}
#contact .contact .contact-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#contact .contact .contact-form .contact-content-title {
  transform: translateX(10px);
}
#contact .contact .contact-form h2 {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  position: relative;
  background-color: white;
  border: 5px solid white;
  text-transform: capitalize;
  margin: 6vh 0 4vh 0;
}
#contact .contact .contact-form h2::after {
  content: "";
  width: 100%;
  height: 100%;
  top: 5px;
  left: -15px;
  position: absolute;
  z-index: -1;
  border-radius: 10px;
  border: 2px solid var(--main-color);
  /* padding: 5px 15px; */
  /* transform: translateX(20px); */
}
#contact .contact .contact-content .contact-inf,
#contact .contact .contact-content .contact-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  padding: 10px 0 40px 0;
  font-size: 1.5rem;
  font-weight: 400;
}
#contact .contact .contact-content span {
  color: var(--main-color);
}
#contact .contact .contact-content .contact-info-item {
  padding: 10px 0;
  margin: 0 auto;
}
#contact .contact .contact-content .contact-inf .inline {
  display: inline-block;
  width: 50px;
}
#contact .contact .contact-content .contact-inf input,
#contact .contact .contact-content .contact-inf select {
  font-size: 1.4rem;
  font-family: "Montserrat", sans-serif;
  margin: 0 0 0 20px;
  padding: 8px 4px;
  font-weight: lighter;
  width: 240px;
  border: 1px solid #ccc;
  border-radius: 3px;
}
#contact .contact .contact-content .contact-inf input:focus,
#contact .contact .contact-content .contact-inf select:focus,
#contact .contact .contact-content .contact-text textarea:focus {
  border-color: rgb(158, 103, 2);
}
/* #contact .contact .contact-content .contact-info-item select option {
  width: 300px;
} */

#contact .contact .contact-content .contact-text textarea {
  margin: 10px auto 30px auto;
  padding: 5px;
  font-weight: lighter;
  outline: 0;
  border: 1px solid #ccc;
  border-radius: 3px;
  resize: none;
}
#contact .contact .contact-content .contact-submit {
  text-align: center;
}
#contact .contact .contact-content .contact-submit input {
  background-color: transparent;
  border: 2px solid var(--main-color);
  padding: 5px 25px;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  /* margin-left: 90px; */
  transition: 0.3s ease background-color;
  margin-bottom: 50px;
  font-size: 1.3rem;
}
#contact .contact .contact-content .contact-submit input:hover,
#contact .contact .contact-content .contact-submit input:focus {
  background-color: var(--main-color);
  color: white;
  cursor: pointer;
}
/* End Contact Section */

/* Footer */
#footer {
  background-image: linear-gradient(60deg, black 10%, var(--main-color) 100%);
}
#footer .footer {
  min-height: 20px;
  flex-direction: column;
  padding-top: 10px;
  padding-bottom: 10px;
}
/* #footer .footer .brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#footer h3 {
  color: white;
  font-weight: 500;
  font-size: 1.4rem;
  text-align: center;
  letter-spacing: 0.1rem;
  margin-top: 10px;
  margin-bottom: 15px;
}
#footer .social-icon {
  display: flex;
  margin-bottom: 30px;
}
#footer .social-item {
  height: 40px;
  width: 40px;
  margin: 0 20px;
}
#footer .social-item img {
  filter: grayscale(1);
  transition: 0.3s ease filter;
}
#footer .social-item:hover img {
  filter: grayscale(0);
} */
#footer p {
  color: white;
  font-size: 1rem;
}
/* End Footer */

/* Keyframes */
@keyframes background_change {
  0% {
    background-image: url(./img/constraction2400x1600.jpg);
  }
  100% {
    background-image: url(./img/constraction3_2400x3108.jpg);
  }
}
@keyframes text_reveal_box {
  50% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0;
    left: 100%;
  }
}
@keyframes text_reveal {
  0% {
    color: transparent;
  }
  100% {
    color: white;
  }
}
@keyframes button_reveal {
  100% {
    visibility: visible;
  }
}
@keyframes text_reveal_span {
  0% {
    color: transparent;
  }
  100% {
    color: var(--main-color);
  }
}
@keyframes text_reveal_name {
  100% {
    color: var(--main-color);
    font-weight: 500;
  }
}
/* @keyframes hamburger_pulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.5);
  }
} */
/* End Keyframes */

/* Media Query for Tablet */
@media only screen and (min-width: 768px) {
  .cta {
    font-size: 2.3rem;
    padding: 10px 30px;
  }
  .section-title {
    font-size: 5rem;
  }
  /* Hero */
  #hero .hero h1 {
    font-size: 5rem;
  }
  #hero .hero .angle {
    width: 200px;
    justify-content: center;
  }
  #hero .hero i {
    transform: scale(6);
  }
  /* End Hero */

  /* Services */
  #services .service-item .logos .logo {
    flex: 1 1 0;
  }
  #services .service-item .logos img {
    width: 100px;
    height: 50px;
  }
  #services .service-item p {
    width: 80ch;
  }
  /* End Services */

  /* Project */
  #projects .all-projects {
    background-image: linear-gradient(60deg, black 10%, var(--main-color) 100%);
  }
  #projects .project-item {
    height: 400px;
    width: 100%;
    margin: 0;
    border-radius: 0;
    flex-direction: row;
    padding: 1px 2px;
    /* background-image: linear-gradient(60deg, black 10%, var(--main-color) 100%); */
  }

  #projects .project-item:nth-child(even) {
    flex-direction: row-reverse;
  }
  #projects .all-projects .project-info {
    height: 100%;
    flex: 1;
    background-image: none;
  }
  #projects .all-projects .project-img {
    max-height: none;
    height: 100%;
    flex: 5;
  }
  /* End Project */

  /* About */
  #about .about {
    flex-direction: row;
  }
  #about .col-left {
    width: 600px;
    height: 400px;
    padding-left: 60px;
    transform: translateX(0);
  }
  #about .about .col-left .about-img::after {
    left: -45px;
    top: -34px;
    height: 98%;
    width: 98%;
    border: 8px solid var(--main-color);
    transition-property: top, left;
  }
  #about .col-left .about-img:hover:after {
    top: 0;
    left: 0;
  }
  #about .col-right {
    text-align: left;
    padding: 30px;
  }
  #about .col-right h1 {
    text-align: left;
  }
  #about .col-right p {
    margin-left: 0;
  }
  /* End About */

  /* Contact */
  #contact .contact .contact-content .contact-inf input,
  #contact .contact .contact-content .contact-inf select {
    width: 280px;
  }
  #contact .contact .contact-content .contact-text textarea {
    width: 360px;
  }
  /* #contact .contact {
    flex-direction: column;
    padding: 100px 0;
    align-items: center;
    justify-content: center;
    min-width: 20vh;
  }
  #contact .contact-items {
    width: 100%;
    display: flex;
    flex-direction: row;
    padding: 10px;
    margin: 0;
  }
  #contact .contact-item {
    flex-direction: row;
    margin: 15px;
  }
  #contact .icon {
    height: 50px;
    width: 50px;
  }
  #contact .contact-item .icon img {
    object-fit: contain;
  }
  #contact .contact-item .contact-info {
    width: 100%;
    text-align: left;
    padding-left: 20px;
  }
  #contact .contact-info h2 {
    font-size: 1.5rem;
  }
  #contact .contact-info h3 {
    font-size: 1rem;
    line-height: 1.7rem;
    font-weight: 500;
  } */
  /* End Contact */
}
/* End Media Query for Tablet */

/* Media Query for Desktop */
@media only screen and (min-width: 1200px) {
  /* Header */
  #header .header .nav-bar {
    flex-direction: row;
  }
  #header .header .nav-bar .brand {
    margin-right: 0;
    flex: none;
  }
  #header .hamburger {
    display: none;
  }

  #header .header .nav-bar {
    justify-content: flex-start;
  }
  #header .header .nav-bar .nav-list {
    flex: 1;
  }
  #header .nav-bar .nav-list ul {
    display: flex;
    flex-direction: row;
    position: initial;
    justify-content: space-evenly;
    width: 100%;

    /* display: block;
    position: initial;
    width: fit-content; */
    height: 50px;
    background: transparent;

    /* margin-left: 5%; */
  }
  #header .nav-list ul li {
    display: inline-block;
  }
  #header .nav-bar .nav-list ul a {
    font-size: 1.4rem;
    padding: 15px 30px;
  }
  #header .nav-bar .nav-list ul a::after {
    display: none;
  }

  /* End Header */

  /* services Section */
  /* #services .service-bottom .service-item {
    flex-basis: 22%;
    margin: 1.5%;
  } */
  /* Endservices Section */
  /* services Section */
  #services #service-item1 {
    order: 1;
  }
  #services #service-item2 {
    order: 2;
  }
  #services #service-item3 {
    order: 4;
  }
  #services #service-item4 {
    order: 6;
  }
  #services #service-item5 {
    order: 3;
  }
  #services #service-item6 {
    order: 5;
  }
  #services .service-top p {
    width: 500px;
    max-margin: 0 auto;
  }
  #services .service-bottom .service-item {
    flex-basis: 47%;
    margin: 1%;
  }
  #services .service-item p {
    width: 60ch;
  }
  #services .service-item .logos .logo {
    flex: 1 1 33%;
  }

  /* Endservices Section */
  /* Contact section */

  #contact .contact {
    flex-direction: column;
    padding: 100px 0;
    align-items: center;
    justify-content: center;
    min-width: 20vh;
  }
  #contact .contact-items {
    width: 100%;
    display: flex;
    flex-direction: row;
    padding: 10px;
    margin: 0;
  }
  #contact .contact-item {
    /* flex-direction: row; */
    margin: 15px;
    width: 350px;
  }
  #contact .icon {
    height: 50px;
    width: 50px;
  }

  /*#contact .contact-item .icon img {
    object-fit: contain;
  }
  #contact .contact-item .contact-info {
    width: 100%;
    text-align: left;
    padding-left: 20px;
  }
  #contact .contact-info h2 {
    font-size: 1.5rem;
  }
  #contact .contact-info h3 {
    font-size: 1rem;
    line-height: 1.7rem;
    font-weight: 500;
  } */
  /* End Contact section */

  /*#contact .contact-item .icon img {
    object-fit: contain;
  }
  #contact .contact-item .contact-info {
    width: 100%;
    text-align: left;
    padding-left: 20px;
  }
  #contact .contact-info h2 {
    font-size: 1.5rem;
  }
  #contact .contact-info h3 {
    font-size: 1rem;
    line-height: 1.7rem;
    font-weight: 500;
  } */
  /* End Contact section */
}
/* End Media Query for Desktop */
