/* ---------- Default Css ---------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-secondary-m);
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

section {
  padding: 80px 0;
  position: relative;
  overflow-x: hidden !important;
  width: 100%;
}

.container {
  max-width: 1400px;
}

body {
  overflow-x: hidden !important;
  scroll-behavior: smooth;
}

.heading {
  text-align: center;
}

h1 span {
  font-family: var(--font-primary);
}

/* ---------- Fonts Css ---------- */

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-dark);
}

h1 {
  text-transform: uppercase;
  font-size: 70px;
  line-height: 80px;
  font-family: var(--font-primary);
}

h2 {
  font-size: 48px;
  font-weight: 400;
  font-family: var(--font-primary);
  text-transform: uppercase;
}

h3 {
  font-size: 48px;
  font-weight: 400;
  font-family: var(--font-primary);
}

h4 {
  font-size: 28px;
  line-height: 45px;
  font-family: var(--font-primary);
}

h5 {
  font-size: 34px;
}

p {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 300;
  line-height: 36px;
  font-family: var(--font-primary-m);
  opacity: .9;
}

/* ---------- fonts Css ---------- */

@font-face {
  font-family: flatline;
  src: url("./assets/font/flatline-semibold.otf");
}

@font-face {
  font-family: hartwellregular;
  src: url("./assets/font/hartwellregular.otf");
}

@font-face {
  font-family: hartwellaltbold;
  src: url("./assets/font/flatline-semibold.otf");
}

:root {
  --font-primary: flatline;
  --font-secondary-m: hartwellregular;
  --font-secondary-b: hartwellaltbold;
}

/* ---------- Color Css ---------- */

:root {
  --color-primary: #FFAE42;
  --color-dark: #0B2735;
  --color-white: #ffffff;
}

/* ---------- Buttons Css ---------- */

.btn {
  width: fit-content;
  min-width: 216px;
  padding: 15px 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 0;
  transition: .3s;
  background-color: var(--color-dark);
  white-space: nowrap;
}

.btn i {
  font-size: 20px;
  transform: rotate(-45deg);
  transition: .3s;
}

.btn:hover i {
  transform: rotate(-180deg);
}

.btn-primary {
  background-color: var(--color-dark);
  border: 1px solid var(--color-dark);
}

.btn-primary:hover {
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
  color: var(--color-white);
}

.btn-secondary {
  background-color: transparent;
  border: 1px solid var(--color-dark);
  color: var(--color-dark);
}

.btn-secondary:hover {
  background-color: var(--color-dark);
  color: var(--color-white);
}

/* ---------- Header Css ---------- */

header.sticky {
  height: 50px;
  top: 0;
  background-color: #ffffff61;
  backdrop-filter: blur(11px);
}

header {
  width: 100%;
  padding: 15px 0;
  border-bottom: 1px solid #ffffff44;
  transition: .4s;
  position: fixed;
  width: 100%;
  z-index: 999;
}

header a {
  color: var(--color-dark);
  text-decoration: none;
  white-space: nowrap;
}

header .logo img {
  width: 110px;
}

header ul {
  display: flex;
  margin: 0;
}

header ul li {
  margin: 0 30px;
}

header .btn {
  min-width: auto;
}

/* Fade Animation  */

.fade-left,
.fade-right,
.fade-top,
.fade-bottom,
.fade-crop {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 0.8s ease-out;
}

.fade-left.show {
  opacity: 1;
  transform: translateX(0);
}

.fade-right.show {
  opacity: 1;
  transform: translateX(0);
}

.fade-top.show {
  opacity: 1;
  transform: translateY(0);
}

.fade-bottom.show {
  opacity: 1;
  transform: translateY(0);
}

.fade-crop.show {
  opacity: 1;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

/* Initial hidden positions */
.fade-left {
  transform: translateX(-100px);
}

.fade-right {
  transform: translateX(100px);
}

.fade-top {
  transform: translateY(-100px);
}

.fade-bottom {
  transform: translateY(100px);
}

.fade-crop {
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

/* ---------- Banner Css ---------- */

.banner {
  background-image: url(assets/images/banner/banner-bg.png);
  padding: 170px 0 20px;
  position: relative;
  background-size: 100% 100%;
  background-position: bottom;
}

.banner .content {
  display: flex;
  flex-direction: column;
  max-width: 900px;
}

.banner>span {
  position: absolute;
  right: -100px;
  top: 100px;
  width: 200px;
  display: block;
}

.banner>span img {
  width: 100%;
}

.banner .buttons {
  display: flex;
  gap: 20px;
  margin: 20px auto 0;
}

.banner h1 {
  position: relative;
  margin-bottom: 40px;
}

.banner h1 span {
  position: relative;
}

.banner h1 span::after {
  content: "";
  width: 60%;
  height: 4px;
  background-color: var(--color-primary);
  position: absolute;
  right: 0px;
  top: 0px;
}

.banner .effect {
  width: 100%;
  display: flex;
  gap: 20px;
}

.banner .effect span {
  display: flex;
}

.banner .effect span img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.content p:not(:last-child) {
  margin-bottom: 20px;
}

/* ---------- inner-sec Css ---------- */

.inner-sec .btn {
  margin-top: 30px;
}

.inner-sec .content {
  max-width: 730px;
  padding: 50px 40px;
  border: 1px solid;
  border-image: linear-gradient(90deg, #0B2735, #0b273500) 1;
  position: relative;
  z-index: 5;
  background-color: var(--color-white);
}

.inner-sec.alt .content {
  border-image: linear-gradient(-90deg, #0B2735, #0b273500) 1;
}

.inner-sec .image {
  position: relative;
  height: 650px;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.171) 0px 5px 80px;
}

.inner-sec.alt .image {
  box-shadow: rgba(0, 0, 0, 0.171) -40px -44px 80px;
}

.inner-sec .image img {
  width: 866px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 650px;
  object-fit: cover;
}

/* ---------- Services Css ---------- */

.gallery,
.services {
  border-top: 1px solid;
  border-image: linear-gradient(90deg, #0b273550, #0b273500) 1;
}

.services .serv-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
  gap: 30px;
  padding: 70px 0;
}

.services .serv-boxes .serv-box {
  display: flex;
  padding: 10px;
  background-color: var(--color-white);
  box-shadow: rgba(0, 0, 0, 0.096) 0px 5px 80px;
  height: fit-content;
  border: 1px solid;
  border-image: linear-gradient(90deg, #0B2735 0% 10%, #0b273500 50% 100%) 1;
  transition: .4s;
  cursor: pointer;
}

.services .serv-boxes .serv-box:hover {
  border-image: linear-gradient(90deg, #0b273500 0% 50%, #0b2735 70% 100%) 1;
}

.services .serv-boxes .serv-box img {
  width: 200px;
  height: 100%;
  object-fit: cover;
}

.services .serv-boxes .serv-box .content {
  padding: 10px 10px 10px 20px;
}

.serv-box .btn {
  min-width: auto;
  padding: 10px 40px;
  margin-top: 15px;
}

.serv-box p {
  line-height: 32px;
}

.serv-box h4 {
  margin-bottom: 0;
}

/* ---------- Gallery Css ---------- */

.gallery .heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gallery-box {
  margin: 70px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 236px 236px 236px 236px;
  grid-template-areas:
    "item-1 item-2 item-3"
    "item-1 item-4 item-3"
    "item-1 item-6 item-3"
    "item-5 item-6 item-7"
  ;
  gap: 20px;
}

.gallery-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-box>div:nth-child(1) {
  grid-area: item-1;
}

.gallery-box>div:nth-child(2) {
  grid-area: item-2;
}

.gallery-box>div:nth-child(3) {
  grid-area: item-3;
}

.gallery-box>div:nth-child(4) {
  grid-area: item-4;
}

.gallery-box>div:nth-child(5) {
  grid-area: item-5;
}

.gallery-box>div:nth-child(6) {
  grid-area: item-6;
}

.gallery-box>div:nth-child(7) {
  grid-area: item-7;
}

.gallery-box>div {
  overflow: hidden;
  transition: .4s;
  position: relative;
}

/* ---------- Why Choose Us ---------- */

.inner-sec-2 {
  background-color: var(--color-dark);
  position: relative;
}

.inner-sec-2::after {
  content: "";
  width: 500px;
  height: 600px;
  background-image: url(assets/images/boxes/effect-2.png);
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  bottom: 100px;
  right: -200px;
}

.inner-sec-2 .image {
  position: relative;
  z-index: 5;
  width: 100%;
}

.inner-sec-2 .image img {
  width: 100%;
  max-height: 584px;
  object-fit: cover;
}

.inner-sec-2 .content {
  max-width: 530px;
}

.inner-sec-2 p,
.inner-sec-2 h4,
.inner-sec-2 h2 {
  color: var(--color-white);
}

/* ---------- Testimnials ---------- */

.testimnials p {
  font-size: 25px;
  line-height: 43px;
  padding-bottom: 30px;
  opacity: .7;
}

.testimnials .testimonials-slider {
  margin: 60px 0 0;
}

.testimnials .testimonials-slider .item {
  border-bottom: 1px solid #0b273557;
  max-width: 1000px;
  text-align: center;
  margin: auto;
}

.testimnials .bottom-bar {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.testimnials .bottom-bar img {
  width: 244px;
}

.testimnials .quote {
  margin: auto;
  width: fit-content;
}

.testimnials .quote img {
  max-width: 150px;
  margin-bottom: -30px;
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: block;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-nav {
  width: 100%;
  justify-content: space-between;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  height: fit-content;
}

.testimnials .testimonials-slider {
  position: relative;
}

.owl-carousel .owl-nav button::after {
  content: "";
  width: 70px;
  height: 70px;
  background: url(assets/images/icons/arrow.svg);
  display: block;
  background-size: contain;
}

.owl-carousel .owl-nav span {
  display: none;
}

.owl-carousel .owl-nav button.owl-prev {
  transform: rotate(180deg);
}

.owl-carousel .owl-dots {
  display: flex;
  align-items: center;
  height: 40px;
  margin-top: 60px;
  justify-content: center;
}

.owl-carousel .owl-dots button {
  width: 10px;
  height: 10px;
  background-color: #0b273575;
  border-radius: 100px;
  margin: 0 15px;
  transition: .4s;
}

.owl-carousel .owl-dots .owl-dot.active {
  background-color: #0B2735;
  width: 20px;
  height: 20px;
}

/* ---------- Contact us ---------- */

.contact {
  position: relative;
  background: linear-gradient(to right, #D9D9D9, #d9d9d900);
}

.contact .container {
  position: relative;
  z-index: 5;
}

.contact form {
  width: 100%;
  padding: 30px;
  border: 8px solid #fff;
  background-color: #F6F6F6;
}

.contact textarea,
.contact input:not([type="radio"]) {
  height: 60px;
  width: 100%;
  background-color: var(--color-white);
  color: #0B2735;
  padding: 0px 20px;
  margin-bottom: 20px;
  border: none;
  outline: none;
  border: 1px solid #fff;
  transition: .3s;
}

.contact .wpcf7-radio .wpcf7-list-item {
  margin: 20px 0;
}

.contact input[type="radio"] {
  display: none;
}

.contact .wpcf7-textarea {
  resize: none;
}

.contact input[type="radio"]:checked + .wpcf7-list-item-label {
  background-color: white;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
  border: 1px solid #333;
}

.contact input[type="radio"] + .wpcf7-list-item-label {
  padding: 15px 20px;
  background-color: #eee;
  transition: .4s ease all;
  cursor: pointer;
  margin-right: 10px;
}

.contact input:focus {
  border: 1px solid var(--color-primary);
}

.contact textarea {
  padding-top: 20px;
  height: 130px;
}

.contact button {
  width: 100%;
  padding: 18px;
  border: none;
  background-color: var(--color-primary);
  color: var(--color-white);
  transition: .4s;
}

.contact button:hover {
  background-color: var(--color-dark);
}

.contact .heading {
  margin-bottom: 90px;
}

.contact .right {
  height: 100%;
  width: 100%;
  background-image: url(assets/images/boxes/gel-5.png);
  background-size: cover;
  background-position: center;
  padding: 50px;
  display: flex;
  align-items: end;
}

.contact .contact-info {
  height: fit-content;
  width: 100%;
  padding: 20px;
  background-color: #0b273544;
  backdrop-filter: blur(5px);
  border: 1px solid var(--color-white);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  transition: .4s ease box-shadow;
}

#contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  transition: .4s ease box-shadow;
}

#contact-info.highlight {
  box-shadow:  0 0 0 5px red;
}   

.contact .contact-info i {
  background-color: var(--color-white);
  min-width: 60px;
  min-height: 60px;
  border-radius: 50%;
  color: var(--color-primary);
  font-size: 22px;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .contact-info h6 {
  color: var(--color-white);
  font-size: 25px;
  font-weight: 600;
}

.contact .contact-info a {
  color: var(--color-white);
  font-size: 20px;
}

.contact .contact-info .box-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ---------- Footer ---------- */

footer {
  background-color: var(--color-dark);
  padding: 70px 0 0;
  overflow: hidden;
}

footer .logo img {
  filter: brightness(100);
  width: 110px;
}

footer h6 {
  color: #ffff;
  font-size: 22px;
}

footer .contact-info {
  display: flex;
  flex-direction: column;
  margin-top: 80px;
  gap: 10px;
}

footer .contact-info a {
  color: var(--color-white);
}

footer .contact-info i {
  color: var(--color-white);
  margin-right: 20px;
}

footer a {
  color: var(--color-white);
}

footer ul {
  display: flex;
  align-items: center;
  gap: 20px;
}
 
footer .contact-info ul {
  margin-top: 0 !important;
  gap: 10px;
}

footer #contact-info {
  padding: 0;
}

footer ul li a {
  color: #ffff;
  white-space: nowrap;
}

footer .container:nth-child(2) {
  border-top: 1px solid #ffffff8f;
  padding: 20px 0;
  margin-top: 60px;
}

footer .container p {
  color: var(--color-white);
}

/* ---------- Color Css ---------- */


/* ---------- Responsive Css ---------- */

@media (max-width: 1399px) {
  footer .container p {
    padding: 0 10px;
    white-space: nowrap;
  }
}

@media (max-width: 1199px) {
  .container {
    max-width: 1024px;
  }

  header .col-xl-6 {
    display: none !important;
  }

  h1 {
    font-size: 56px;
    line-height: 29px;
  }

  .banner {
    padding-top: 120px;
  }

  .btn {
    min-width: 180px !important;
    padding: 15px 20px;
  }

  .testimnials p {
    font-size: 20px;
    line-height: 35px;
  }

  .testimnials .testimonials-slider .item {
    max-width: 701px;
  }

  .owl-carousel .owl-nav button::after {
    content: "";
    width: 45px;
    height: 45px;
    background-color: #fff;
    border-radius: 50%;
  }

  .testimnials .quote img {
    max-width: 101px;
  }

  .testimnials .testimonials-slider {
    margin: 30px 0 0;
  }
	
	#contact .row > div:nth-child(3) {
		display: none;
	}
}

@media (max-width: 991px) {

  .banner h1 {
    margin-bottom: 0;
  }

  h1 {
    font-size: 45px;
  }

  .banner .buttons {
    display: flex;
    gap: 20px;
    margin: 10px auto 0;
  }

  .banner .effect {
    gap: 11px;
  }

  .inner-sec .image {
    box-shadow: none !important;
  }

  .inner-sec .content {
    max-width: 100%;
    padding: 0  10px;
    border: none !important;
  }

  .inner-sec .container .row >  div:nth-child(1) {
    margin-bottom: 30px;
  } 

  h2 {
    font-size: 37px;
  }

  section {
    padding: 50px 0;
  }

  .services .serv-boxes {
    padding: 30px 0;
  }

  .services .serv-boxes .serv-box img {
    width: 200px;
    height: 223px;
  }

  .gallery-box {
    margin: 35px 0 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 236px 236px 236px 236px;
    grid-template-areas:
      "item-1 item-1 item-2"
      "item-3 item-3 item-4"
      "item-5 item-6 item-6"
      "item-5 item-7 item-7";
  }

  .inner-sec-2 .image {
    margin-top: 30px;
  }

  .contact .heading {
    margin-bottom: 30px;
  }
	
}

@media (max-width: 767px) {
  p {
    line-height: 33px;
    font-size: 15px;
  }

  header .logo img {
    width: 73px;
  }

  .inner-sec .image,
  .inner-sec .image img {
    width: 100%;
    height: 300px;
  }

  .services .serv-boxes .serv-box img {
    width: 200px;
    height: 100%;
  }

  .inner-sec-2::after {
    content: "";
    width: 300px;
    height: 300px;
  }

  h4 {
    font-size: 20px;
    line-height: 34px;
    margin-bottom: 0;
  }

  .testimnials p {
    font-size: 16px;
    line-height: 29px;
  }

  .testimnials .bottom-bar img {
    width: 161px;
  }

  .owl-carousel .owl-nav.disabled,
  .owl-carousel .owl-nav {
    position: relative;
    margin: 10px 0
  }

  .owl-carousel .owl-dots {
    margin-top: 16px;
  }

  footer .col-12 {
    justify-content: start !important;
  }

  footer .col-12 ul {
    padding: 0 !important;
    margin-top: 20px;
    flex-wrap: wrap;
  }

  .contact .contact-info a {
    font-size: 16px;
  }
}

#footer-sidebar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 40px 0 0 0;
}

@media (max-width: 575px) {

  #footer-sidebar {
    justify-content: center;
  }

  .fade-left,
  .fade-right,
  .fade-top,
  .fade-bottom {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  h1 {
    font-size: 35px;
  }

  .banner>span img {
    display: none;
  }

  .banner h1 span:after {
    display: none;
  }

  .btn {
    min-width: 167px !important;
    padding: 7px;
  }

  .banner {
    padding-top: 70px;
  }

  .banner {
    overflow: hidden;
  }

  .banner .effect {
    height: 300px;
    gap: 11px;
    margin-top: 27px;
    transform: scaleY(2);
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 27px;
    margin-bottom: 30px;
  }

  .services .serv-boxes .serv-box {
    flex-direction: column;
  }

  .services .serv-boxes .serv-box img {
    width: 100%;
    max-height: 300px;
  }

  .services .serv-boxes .serv-box .content {
    padding: 10px;
  }

  .services .serv-boxes {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }

  .gallery-box {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: 236px 236px 236px;
    grid-template-areas:
      "item-1"
      "item-2"
      "item-3";
  }

  .gallery-box > div {
    display: none;
  }

  .gallery-box > div:nth-child(1),
  .gallery-box > div:nth-child(2),
  .gallery-box > div:nth-child(3) {
    display: block;
  }

  .contact textarea,
  .contact input {
    height: 50px !important;
  }

  .contact textarea {
    padding-top: 12px;
  }

  .contact form {
    padding: 13px;
  }

  .contact button {
    width: 100%;
    padding: 13px;
  }

  .contact .right {
    padding: 15px;
  }

  footer {
    padding-top: 20px;
  }

  footer .contact-info {
    margin-top: 20px;
  }

  footer .container .row div:nth-child(1) {
    order: 2;
  }

  footer .container .row div:nth-child(2) {
    order: 1;
  }

  footer ul {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

}

@media (max-width: 400px) {
  header .btn {
    display: none;
  }

  .gallery .btn {
    display: none;
  }
}

/* Hamburger button design */
.hamburger {
  width: 25px;
  height: 20px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  margin-left: 15px;
}

.hamburger span {
  height: 3px;
  background: #000;
  border-radius: 2px;
  display: block !important;
}

/* Responsive */
@media (max-width: 1200px) {
  header .row > .col-xl-6 {
    display: none !important; /* menu hide */
  }

  header .row > .col-xl-3 {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .hamburger {
    display: flex;
  }

  /* Show menu when active */
  header .row > .col-xl-6.active {
    display: flex !important;
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    z-index: 999;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.171);
  }

  header .row > .col-xl-6 ul {
    flex-direction: column;
    gap: 15px;
  }
}

.contact-info p {
  padding: 0 !important;
}

section.greview img {
  aspect-ratio: 3/2;
  object-fit: contain;
  object-position: center;
  height: 200px;
} 