@import url("default.css");
@import url("all.min.css");
@import url("fontawesome.min.css");
@import url("swiper-bundle.min.css");
@import url("../lightgallery/css/lightgallery.css");

/* header */
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: var(--box-shadow);
  padding: 1.5rem 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  background: var(--white);
}

.logo img {
  width: 150px;
}

.navbar a {
  font-size: 2rem;
  margin: 0 1rem;
  color: var(--black);
}

.navbar a.active,
.navbar a:hover {
  color: var(--yellow);
}

.icons div {
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  background: var(--light-bg);
  color: var(--black);
  cursor: pointer;
  margin-left: 0.3rem;
  text-align: center;
}

.icons div:hover {
  background-color: var(--black);
  color: var(--white);
}

#menu-btn {
  display: none;
}

.search-form {
  position: absolute;
  left: 50%;
  top: 120%;
  transform: translateX(-50%);
  width: 70rem;
  background: var(--white);
  box-shadow: var(--box-shadow);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  display: none;
  animation: fadeIn 0.2s linear;
}

.search-form.active {
  display: flex;
}

.search-form input {
  width: 100%;
  padding: 1.2rem 1.4rem;
  background: var(--light-bg);
  font-size: 1.6rem;
  color: var(--light-color);
}

.search-form label {
  color: var(--black);
  font-size: 2.5rem;
  cursor: pointer;
  margin: 0 1rem;
}

.search-form label:hover {
  color: var(--yellow);
}

.login-form {
  position: absolute;
  left: 50%;
  top: 120%;
  transform: translateX(-50%);
  width: 40rem;
  background: var(--white);
  box-shadow: var(--box-shadow);
  padding: 2rem;
  animation: fadeIn 0.2s linear;
  text-align: center;
  display: none;
}

.login-form.active {
  display: block;
}

.login-form h3 {
  font-size: 2.5rem;
  text-transform: uppercase;
  padding-bottom: 1rem;
}

.login-form .box {
  width: 100%;
  padding: 1.2rem 1.4rem;
  background: var(--light-bg);
  font-size: 1.6rem;
  color: var(--light-color);
  margin: 0.7rem 0;
}

.login-form .flex {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 1.5rem;
  padding-bottom: 1rem;
}

.login-form .flex label {
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--light-color);
}

.login-form .flex a {
  font-size: 1.5rem;
  color: var(--light-color);
  margin-left: auto;
}

.login-form .flex a:hover {
  color: var(--yellow);
  text-decoration: underline;
}

.login-form p {
  font-size: 1.5rem;
  color: var(--black);
  padding-top: 1rem;
}

.login-form p a {
  color: var(--yellow);
}

.login-form p a:hover {
  text-decoration: underline;
}

.contact-info {
  position: fixed;
  right: 0;
  top: 0;
  width: 35rem;
  height: 100%;
  background: var(--white);
  padding: 0 2rem;
  padding-top: 5rem;
  z-index: 1100;
  text-align: center;
  display: none;
}

.contact-info.active {
  display: block;
  box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.7);
}

.contact-info .info {
  padding: 2rem 0;
}

.contact-info .info i {
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  background: var(--light-bg);
  color: var(--black);
  cursor: pointer;
  margin-bottom: 0.5rem;
  text-align: center;
}

.contact-info .info i:hover {
  background: var(--black);
  color: var(--white);
}

.contact-info .info h3 {
  font-size: 2rem;
  text-transform: capitalize;
  padding: 1rem 0;
}

.contact-info .info p {
  font-size: 1.5rem;
}

.contact-info .share {
  padding-top: 2rem;
  border-top: var(--border);
  margin-bottom: 1rem;
}

.contact-info .share i {
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  background: var(--light-bg);
  color: var(--black);
  cursor: pointer;
  margin-left: 1rem;
}

.contact-info .share i:hover {
  background: var(--black);
  color: var(--white);
}

.contact-info .close-contact-info {
  position: absolute;
  top: 1rem;
  right: 2rem;
  font-size: 4rem;
  cursor: pointer;
  color: var(--black);
  transition: all 0.5s;
}

.contact-info .close-contact-info:hover {
  transform: rotate(90deg);
}

/* media queries  */

@media (max-width: 1200px) {
  .header {
    padding: 1.5rem 2rem;
  }
}

@media (max-width: 991px) {
  html {
    font-size: 55%;
  }

  #menu-btn {
    display: inline-block;
  }

  .navbar {
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: var(--border);
    border-bottom: var(--border);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }

  .navbar.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .navbar a {
    display: block;
    margin: 2rem;
    text-transform: capitalize;
  }
}

@media (max-width: 768px) {
  .login-form,
  .search-form {
    width: 90%;
  }
}

@media (max-width: 450px) {
  html {
    font-size: 50%;
  }
}

/* header */

/* page title */
.page_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background: var(--yellow);
  text-transform: capitalize;
}

.page_title .heading {
  border: none;
  font-size: 3rem;
  font-weight: bold;
  color: var(--white);
  margin: 0;
}

.page_title .path {
  font-size: 1.2rem;
}

.page_title .path span:first-child {
  color: var(--white);
}

.page_title .path span {
  margin: 0 5px;
}
/* page title */

/* home */
.home {
  padding: 0;
}

.home .slide {
  min-height: 60rem;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
}

.home .slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--white), transparent);
}

.home .slide .content {
  width: 50rem;
  position: relative;
}

.home .slide .content h3 {
  font-size: 6rem;
  text-transform: uppercase;
}

.home .slide .content p {
  font-size: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 2rem;
}

.swiper-button-next,
.swiper-button-prev {
  top: initial !important;
  bottom: 0 !important;
  left: initial !important;
  right: 0 !important;
  width: 7rem !important;
  height: 7rem !important;
  line-height: 7rem !important;
  background: var(--white) !important;
  font-size: 3rem !important;
  color: var(--black) !important;
  cursor: pointer;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--yellow) !important;
}

.swiper-button-prev {
  right: 7rem !important;
  margin-right: 0.2rem;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 2rem !important;
}

.swiper-pagination-bullet {
  background: var(--white) !important;
}

.swiper-pagination-bullet-active {
  background: var(--yellow) !important;
}

/* media queries */
@media (max-width: 1200px) {
  section,
  footer {
    padding: 3rem 5%;
  }
}

@media (max-width: 991px) {
  section,
  footer {
    padding: 3rem 2rem;
  }
}
/* home */

/* about */
.about {
  text-transform: capitalize;
}

.about_light {
  background: var(--light-bg);
}

.about .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
}

.about .row .image {
  flex: 1 1 41rem;
}

.about .row .image img {
  width: 100%;
}

.about .row .content {
  flex: 1 1 41rem;
}

.about .row .content h3 {
  font-size: 3.5rem;
}

.about .row .content p {
  font-size: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 2rem;
}

.about .box-container {
  margin-top: 3rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  align-items: flex-end;
}

.about .box-container .box {
  text-align: center;
  background: var(--light-bg);
  padding: 3rem 2rem;
}

.about_light .box-container .box {
  background: var(--white);
}

.about .box-container .box h3 {
  font-size: 4rem;
}

.about .box-container .box p {
  font-size: 1.5rem;
  padding-top: 0.5rem;
}
/* about */

/* services */
.services {
  background: var(--light-bg);
  text-transform: capitalize;
}

.services .box-container {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(35rem, 1fr));
}

.services .box-container .box {
  text-align: center;
  padding: 3rem;
  background: var(--white);
  box-shadow: var(--box-shadow);
  border: var(--border);
}

.services .box-container .box:hover img {
  transform: translateY(-1rem);
}

.services .box-container img {
  margin-bottom: 0.5rem;
  transition: all 0.2s linear;
}

.services .box-container h3 {
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
}

.services .box-container p {
  font-size: 1.4rem;
  padding: 1rem 0;
}

/* services */

/* projects */
.projects {
  background: var(--black);
  text-transform: capitalize;
}

.projects .heading {
  color: var(--white);
}

.projects .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
}

.projects .box-container .box {
  cursor: initial;
}

.projects .box-container .box:hover .image img {
  transform: scale(1.1);
}

.projects .box-container .image {
  height: 40rem;
  overflow: hidden;
}

.projects .box-container .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.2s linear;
}

.projects .box-container .content {
  display: flex;
  background: var(--white);
  justify-content: space-between;
  gap: 0.5rem;
  color: var(--black);
}

.projects .box-container .content .info {
  padding: 1rem 2rem;
}

.projects .box-container .content .info h3 {
  font-size: 1.7rem;
}

.projects .box-container .content .info p {
  font-size: 1.5rem;
}

.projects .box-container .content i {
  font-size: 3rem;
  background: var(--yellow);
  width: 7.5rem;
  line-height: 7.5rem;
  text-align: center;
  color: var(--white);
  cursor: pointer;
}

/* projects */

/* gallery */
.gallery {
  background: var(--light-bg);
  text-transform: capitalize;
}

.gallery .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
}

.gallery .box-container .box {
  cursor: initial;
}

.gallery .box-container .box:hover .image img {
  transform: scale(1.1);
}

.gallery .box-container .image {
  height: 40rem;
  overflow: hidden;
}

.gallery .box-container .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.2s linear;
}

/* gallery */

/* reviews */
.reviews {
  text-transform: capitalize;
}

.reviews .slide p {
  font-size: 1.5rem;
  background: var(--light-bg);
  margin-bottom: 3rem;
  padding: 1.5rem;
  position: relative;
}

.reviews .slide p::before {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 2rem;
  width: 2rem;
  height: 2rem;
  background: var(--light-bg);
  transform: rotate(45deg);
}

.reviews .slide .user {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.reviews .slide .user img {
  height: 7rem;
  width: 7rem;
}

.reviews .slide .user h3 {
  font-size: 1.7rem;
}

.reviews .slide .user .stars {
  padding-top: 0.5rem;
}

.reviews .slide .user .stars i {
  font-size: 1.3rem;
  color: var(--yellow);
}
/* reviews */

/* pricing */
.pricing {
  background: var(--light-bg);
  text-transform: capitalize;
}

.pricing .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
}

.pricing .box-container .box {
  background: var(--white);
  text-align: center;
  padding: 3rem;
  border: var(--border);
  box-shadow: var(--box-shadow);
}

.pricing .box-container .box i {
  font-size: 3rem;
  color: var(--black);
  height: 7rem;
  width: 7rem;
  line-height: 7rem;
  background-color: var(--yellow);
  margin-bottom: 1rem;
  border-radius: 50%;
}

.pricing .box-container .box h3 {
  font-size: 1.7rem;
  font-weight: normal;
  padding: 0.5rem 0;
}

.pricing .box-container .box .price {
  padding: 1rem 0;
  font-size: 5rem;
}

.pricing .box-container .box .price span {
  font-size: 2rem;
}

.pricing .box-container .box .list {
  padding: 1rem 0;
}

.pricing .box-container .box .list p {
  font-size: 1.4rem;
  padding: 1rem 0;
}
/* pricing */

/* contact */
.contact {
  text-transform: capitalize;
  background: var(--black);
}

.contact_light {
  background: var(--light-bg);
}

.contact .heading {
  color: var(--white);
}

.contact .box_container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 7rem 4rem;
  margin-bottom: 3rem;
  text-align: center;
}

.contact .box_container .box i {
  font-size: 4rem;
  padding-bottom: 1.2rem;
  color: var(--yellow);
}

.contact .box_container .box h3 {
  font-size: 3rem;
}

.contact .box_container .box p {
  font-size: 2rem;
  text-overflow: inherit;
}

.contact .row {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.contact .row .map {
  flex: 1 1 41rem;
  width: 100%;
}

.contact .row form {
  flex: 1 1 41rem;
  background: var(--white);
  padding: 2rem;
  text-align: center;
}

.contact .row form h3 {
  font-size: 2.5rem;
  text-align: left;
}

.contact .row form .box {
  font-size: 1.6rem;
  width: 100%;
  padding: 1.5rem;
  color: var(--light-color);
  border-bottom: var(--border);
}

.contact .row form .box:focus {
  border-color: var(--yellow);
}

.contact .row form textarea {
  height: 15rem;
  resize: none;
}
/* contact */

/* blogs */
.blogs {
  background: var(--light-bg);
  text-transform: capitalize;
}

.blogs .box-container .slide {
  text-align: center;
}

.blogs .box-container .slide:hover .image img {
  transform: scale(1.1);
}

.blogs .box-container .slide .image {
  height: 25rem;
  width: 90%;
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: -3rem;
}

.blogs .box-container .slide .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.2s linear;
}

.blogs .box-container .slide .content {
  padding: 2rem;
  padding-top: 5rem;
  background: var(--white);
  box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.2);
}

.blogs .box-container .slide .content h3 {
  font-size: 2rem;
}

.blogs .box-container .slide .content p {
  font-size: 1.4rem;
  padding: 1rem 0;
  margin-bottom: 1rem;
}
/* blogs */

/* footer */
.footer {
  background: var(--white);
  text-transform: capitalize;
}

.footer .box-container {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer .box-container .box {
  padding: 1rem;
  flex: 1 1 20.5rem;
}

.footer .box-container .box h3 {
  font-size: 2rem;
  padding: 1rem 0;
}

.footer .box-container .box img {
  width: 180px;
}

.footer .box-container .box p {
  font-size: 1.3rem;
}

.footer .box-container .box ul {
  list-style: none;
}

.footer .box-container .box ul li {
  font-size: 1.5rem;
  padding: 0.5rem 0;
}

.footer .box-container .box ul li a {
  color: var(--black);
}

.footer .box-container .address p {
  padding: 0.5rem 0;
  font-size: 1.5rem;
}

.footer .box-container .address p.title {
  font-weight: bold;
}

.footer .box-container .box .share {
  padding-top: 2rem;
  border-top: var(--border);
  margin-bottom: 1rem;
}

.footer .box-container .box i {
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  margin-left: 1rem;
  text-align: center;
}

.footer .box-container .box i:hover {
  background: var(--black);
  color: var(--white);
}

/* footer */

/* scroll top */
.scroll-top {
  position: fixed;
  bottom: 5rem;
  right: 5rem;
  cursor: pointer;
  display: none;
}

.scroll-top i {
  height: 5rem;
  width: 5rem;
  background: var(--yellow);
  color: var(--white);
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.scroll-top i:hover {
  background: var(--black);
  color: var(--white);
}
/* scroll top */

/* copyright */
.copyright {
  padding: 1.5rem 0;
  text-align: center;
  background: var(--black);
  color: var(--white);
  font-size: 1.5rem;
}
/* copyright */
