@import "./variables.css";

/* Header */
nav.navbar.sticky {
  padding: 0px 20px;
}
nav.navbar {
  padding: 0px 50px;
  transition: 0.5s ease all;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 0 10px 0 #0003;
}
nav .logo b {
  font-size: 25px;
  color: var(--primary);
  display: block;
  margin-bottom: 2px;
}
nav .logo span {
  font-size: 18px;
  font-weight: 400;
  display: block;
  color: var(--dark-alt);
}
nav .navbar-brand {
  width: 250px;
  transition: 0.5s ease all;
}
nav.navbar.sticky .navbar-brand {
  width: 200px;
}
nav .bar {
  height: 40px;
  width: 1px;
  background: var(--primary);
  margin: 0 40px;
}
nav .nav-item {
  margin-right: 15px;
}
nav .nav-item.active .nav-link {
  color: var(--primary) !important;
  font-weight: 600;
}
nav .nav-item .nav-link {
  font-size: 18px;
  font-weight: 400;
  color: var(--dark) !important;
}
nav .social a {
  display: inline-block;
  margin-left: 15px;
  font-size: 20px;
  /* color: var(--dark-alt); */
  color: var(--primary);
}

/* Hero Section */
.hero {
  width: 100%;
  height: 85vh;
}
.hero .carousel,
.hero .carousel-inner,
.hero .carousel-inner .carousel-item {
  width: 100%;
  height: 100%;
}
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero .carousel-indicators {
  right: 50px;
  top: 0;
  left: auto;
  bottom: auto;
  margin: 0;
  height: 100%;
  flex-direction: column;
}
.hero .carousel-indicators li {
  width: 15px;
  height: 15px;
  background: var(--secondary-alt);
  margin: 5px 0;
  border: 0;
}
.hero .carousel-caption {
  right: auto;
  bottom: auto;
  top: 50%;
  transform: translate(0, -50%);
  left: 10%;
  text-align: left;
  width: 80%;
}
.hero .text {
  border-left: 5px solid var(--secondary-alt);
  padding: 15px 20px;
  width: 550px;
  background: #0e1425ad;
}
.hero .text h5 {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--light);
}
.hero .text p {
  font-size: 18px;
  font-weight: 400;
  color: var(--light-alt);
}

/* About Section */
.about {
  position: relative;
  background: var(--light);
  width: 100%;
  height: 100%;
}
.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 100%;
  background: var(--secondary);
}
.about .col-lg-6 {
  flex: 1;
}
.about .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.about .image {
  border: 15px solid var(--light);
}

/* Work Section */
.work {
  width: 100%;
  background: url(../images/work.jpg);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.work .items {
  background: var(--light);
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.work .items .item {
  width: 25%;
  padding: 50px 30px;
}
.work .items .item:nth-child(1) {
  background: var(--light);
}
.work .items .item:nth-child(2) {
  background: var(--secondary);
}
.work .items .item:nth-child(3) {
  background: var(--main-1);
}
.work .items .item:nth-child(4) {
  background: var(--main-2);
}
.work .items .item i {
  font-size: 40px;
  color: var(--secondary-alt);
}
.work .items .item h5 {
  font-size: 20px;
  font-weight: 600;
  margin: 20px 0 10px;
  color: var(--dark);
}

/* Services Section */
.services .text {
  border-left: 5px solid var(--secondary-alt);
  padding-left: 20px;
}
.services .card {
  background: var(--secondary);
  border: 2px solid var(--primary);
  margin: 15px 0;
  text-align: center;
  transition: 0.5s ease all;
  cursor: pointer;
}
.services .card .card-body {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 250px;
}
.services .card i {
  font-size: 40px;
  color: var(--primary);
  transition: 0.5s ease all;
}
.services .card h5 {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin: 20px 0 0;
  transition: 0.5s ease all;
}
.services .card p {
  opacity: 0;
  height: 0;
  transition: 0.5s ease all;
  margin-top: 10px;
  color: var(--light);
}
.services .card:hover {
  background: var(--primary);
}
.services .card:hover i {
  color: var(--light);
}
.services .card:hover p {
  opacity: 1;
  height: auto;
}

/* Quote Section */
.quote {
  padding: 70px 0;
}
.quote h4 {
  font-size: 35px;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 15px;
}
.quote h6 {
  font-size: 18px;
  font-weight: 500;
  color: var(--light-alt);
}

/* Footer */
footer .logo b {
  font-size: 35px;
  color: var(--primary);
  display: block;
  margin-bottom: 5px;
}
footer .logo span {
  font-size: 25px;
  font-weight: 400;
  display: block;
  color: var(--light);
}
footer .logo img {
  width: 220px;
}
footer .social a {
  display: inline-block;
  margin-right: 15px;
  font-size: 20px;
  color: var(--light-alt);
}
footer h5 {
  font-size: 25px;
  font-weight: 600;
  color: var(--secondary);
  margin: 15px 0 35px;
}
footer ul li {
  margin-bottom: 15px;
  padding-left: 10px;
  border-left: 3px solid var(--secondary-alt);
  transition: 0.5s ease all;
}
footer ul li a {
  font-size: 16px;
  font-weight: 400;
  color: var(--light-alt);
  transition: 0.5s ease all;
}
footer ul li:hover {
  padding-left: 15px;
}
footer ul li:hover a {
  /* color: var(--primary); */
  color: var(--light-alt);
}
footer .info {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 15px;
}
footer .info .icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  margin-right: 15px;
  text-align: center;
  line-height: 40px;
  color: var(--light-alt);
  font-size: 20px;
}
footer .info .text {
  width: calc(100% - 40px);
}
footer a,
footer p {
  font-size: 16px;
  color: var(--light-alt);
  transition: 0.5s ease all;
}
footer a:hover {
  /* color: var(--primary); */
  color: var(--light-alt);
}
footer hr {
  background: var(--light);
  opacity: 0.1;
  margin: 70px 0;
}
footer .box {
  width: auto;
  height: 100%;
  border: 2px solid var(--primary);
  border-radius: 5px;
  padding: 20px;
  text-align: center;
}
footer .box .icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 25px;
  text-align: center;
  margin: auto;
  background: var(--secondary-alt);
  color: var(--light);
  border-radius: 50%;
  margin-bottom: 15px;
}
footer .box .text b {
  display: block;
  font-size: 20px;
  margin-bottom: 10px;
}
.footer-bottom {
  background: var(--dark-alt);
  padding: 20px 0;
  border-top: 1px solid #fff2;
}
.footer-bottom p {
  color: var(--light-alt);
}
.footer-bottom p a {
  /* color: var(--primary); */
  color: var(--light-alt);
}

/* Page Title */
.page-title {
  background: linear-gradient(to right top, var(--primary), var(--dark));
}

/* Contact Page */
.contact form label {
  font-size: 16px;
  font-weight: 400;
}
.contact form label span {
  color: var(--danger);
}
.contact .form-control {
  border-radius: 2px;
  border: 1px solid #0003;
  outline: none;
  padding: 7px 15px;
  font-size: 16px;
  height: auto;
}
.contact .form-control:focus {
  box-shadow: 0 0 0 0.2rem #334ef44d;
  border-color: var(--primary);
}
.contact .social a {
  display: inline-block;
  margin-right: 15px;
  font-size: 20px;
  color: var(--primary);
}
.contact .info {
  border: 2px solid var(--primary);
  border-radius: 5px;
  margin-bottom: 15px;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  background: var(--secondary);
  padding-right: 15px;
  overflow: hidden;
  width: 100%;
  height: auto;
}
.contact .info .icon {
  width: 70px;
  min-height: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--light);
  margin: 0 15px 0 0;
  border: 2px solid var(--primary);
  position: relative;
}
.contact .info .icon i {
  font-size: 25px;
}
.contact .info .text {
  width: calc(100% - 85px);
  color: var(--dark-alt);
  padding: 7px 0;
}
.contact .info p {
  font-weight: 500;
}
.contact-map {
  width: 100%;
  min-height: 450px;
  border: 0;
}

/* Services Alt Page */
.services-alt ul li {
  margin-right: 5px;
}
.services-alt ul li a {
  background: var(--secondary);
  border: 2px solid var(--main-2);
  color: var(--dark);
}
.services-alt ul li a.active {
  background: var(--primary) !important;
  border: 2px solid var(--primary) !important;
}
.services-alt h5 {
  font-size: 20px;
  font-weight: 600;
  color: var(--secondary-alt);
}
.services-alt .card .card-body ul li {
  margin-bottom: 7px;
  list-style-position: inside;
}
.services-alt .card .card-body ul li::marker {
  content: "\f00c ";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  color: var(--primary);
}
.services-alt .card .card-body ul li span {
  margin-left: 15px;
}
.services-alt .box {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 10px;
  border: 2px solid #0003;
  height: 320px;
}
.services-alt .box .image {
  width: 40%;
}
.services-alt .box .text {
  width: 60%;
  padding: 0 10px;
}
.services-alt .box p b {
  display: block;
  font-size: 14px;
}

/* Thank You */
.thank-you{
  background: var(--secondary);
}
.thank-you i{
  font-size: 50px;
  color: var(--success);
}
.thank-you h5{
  font-size: 25px;
  margin: 15px 0;
  font-weight: 600;
  color: var(--primary);
}
.thank-you h6{
  font-size: 20px;
  font-weight: 400;
  color: var(--dark);
}

/* Responsive */
@media (min-width: 1200px) {
  .container {
    max-width: 85% !important;
  }
}
@media (max-width: 992px) {
  .about::before {
    width: 100%;
  }
  .about .image {
    margin-top: 30px !important;
  }
  .quote .text-center {
    text-align: left !important;
    margin-top: 30px;
  }
  nav .bar {
    display: none;
  }
  nav ul {
    padding-top: 30px;
  }
  .footer-bottom .text-right {
    text-align: left !important;
  }
  .hero .carousel-caption {
    width: 90%;
    left: 5%;
  }
  .hero .text {
    width: 100%;
  }
  .hero .carousel-indicators {
    height: auto;
    width: 100%;
    bottom: 30px;
    left: 0;
    right: auto;
    top: auto;
    flex-direction: row;
  }
  .hero .carousel-indicators li {
    margin: 5px;
  }
}
@media (max-width: 767px) {
  nav.navbar {
    padding: 0 15px;
  }
  nav .navbar-brand {
    width: 200px;
  }
  nav.navbar.sticky .navbar-brand {
    width: 180px;
  }
  .hero .text h5 {
    font-size: 25px;
  }
  .hero .text p {
    font-size: 16px;
  }
  .heading,
  .quote h4 {
    font-size: 30px;
  }
  .sub-heading {
    font-size: 20px;
  }
  .services-alt .box {
    height: auto;
    display: block;
  }
  .services-alt .box .image {
    width: 100%;
  }
  .services-alt .box .text {
    width: 100%;
    margin-top: 15px;
  }
}
