/*
Theme Name: Suvakamana Jewellers
Text Domain: galaxyprojects
version: 22
Description: Theme for Suvakamana Jewellers
Tags: responsive, corporate
Author: Syronx Technology
*/
/***header***/
.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: calc(var(--header-height));
  width: 100vw;
  top: 0;
  left: 0;
  z-index: 8;
  transition: all 500ms ease;
  background-color: #fff;
  box-shadow: 0 0 2px 1px grey;
  position: relative;
}
.top-header .header-image {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.top-header .header-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.top-header .top-header-inner {
  width: 100%;
  position: relative;
}
.top-header .top-header-inner .container {
  position: relative;
}
.top-header .top-header-inn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
  width: 100%;
  overflow: hidden;
}
.top-header .top-header-inn .icon-box {
  display: flex;
  -moz-column-gap: 7px;
       column-gap: 7px;
  align-items: center;
}
.top-header .top-header-inn .icon-box .icon {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background-color: #F2F3F5;
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-header .top-header-inn .icon-box .texts {
  display: flex;
  flex-direction: column;
}
.top-header .top-header-inn .icon-box .texts .title {
  font-size: var(--para);
  text-transform: uppercase;
  font-family: var(--font-tit);
  font-weight: bold;
  color: #fff;
}
.top-header .top-header-inn .icon-box .texts .text {
  font-size: var(--para-heading);
  font-family: var(--font-tit);
  color: #ccc;
}
.top-header .top-header-inn .header-left {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  align-items: center;
}
@media (max-width: 768px) {
  .top-header .top-header-inn .header-left {
    display: none;
  }
}
.top-header .top-header-inn .header-right {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  align-items: center;
}
@media (max-width: 768px) {
  .top-header .top-header-inn .header-right {
    display: none;
  }
}
.top-header .top-header-inn .header-logo {
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  color: var(--brand-color-1);
  text-transform: uppercase;
  width: 250px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .top-header .top-header-inn .header-logo {
    position: relative;
    left: -31px;
    width: 200px;
    top: 4px;
  }
}
.top-header .top-header-inn .header-logo span {
  color: var(--brand-color-1);
}
.top-header .top-header-inn .header-logo img {
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 3;
  height: 100%;
  width: 100%;
}

.mobile-nav {
  display: none;
}
@media (max-width: 768px) {
  .mobile-nav {
    display: flex;
  }
}
.mobile-nav .mobile-nav-inner {
  display: flex;
  align-items: center;
  -moz-column-gap: 25px;
       column-gap: 25px;
}
@media (max-width: 640px) {
  .mobile-nav .mobile-nav-inner button {
    display: none;
  }
}
.mobile-nav .header-bars {
  cursor: pointer;
  color: var(--brand-color-1);
  font-size: 26px;
}

.bottom-nav {
  position: absolute;
  top: var(--header-height);
  width: 100%;
}
@media (max-width: 768px) {
  .bottom-nav {
    display: none;
  }
}
.bottom-nav .bottom-nav-inner {
  position: sticky;
  position: -webkit-sticky;
  background-color: var(--brand-color-3);
  -webkit-clip-path: polygon(100% 0, 100% 42%, 98.5% 100%, 1.5% 100%, 0 42%, 0% 0%);
          clip-path: polygon(100% 0, 100% 42%, 98.5% 100%, 1.5% 100%, 0 42%, 0% 0%);
  padding: 8px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  top: 0px;
}

.nav {
  display: flex;
  justify-content: flex-start;
  transition: all 500ms ease;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .nav {
    display: none;
  }
}
.nav li {
  font-size: 17px;
  line-height: 1.875;
  color: #fff;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.nav li:not(:last-child) {
  margin-right: 25px;
}
.nav li a {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  text-decoration: none;
  transition: all 100ms ease;
  display: flex;
  align-items: center;
  font-family: var(--font-tit);
  position: relative;
}
.nav li a::after {
  content: "";
  background-color: #000;
  height: 3px;
  width: 100%;
  position: absolute;
  bottom: -15px;
  left: 0;
  transform: translateY(-10px);
  opacity: 0;
  transition: all 500ms ease;
}
.nav li a:hover {
  color: var(--brand-color-2);
}
.nav li a:hover::after {
  transform: translateY(0);
  opacity: 1;
}
.nav li a:hover + .nav-dropdown {
  opacity: 1;
  z-index: 4;
}
.nav li a .link-icon {
  margin-left: 5px;
  font-size: 12px;
}
.nav li .sub-menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  background-color: #fff;
  width: 150px;
  z-index: -1;
  opacity: 0;
  display: none;
}
.nav li .sub-menu li a {
  padding: 8px 4px;
  color: var(--brand-light);
  font-size: 14px;
}
.nav li .sub-menu li a:hover {
  color: var(--brand-color-1);
}
.nav li .sub-menu li a:not(:last-child) {
  border-bottom: 1px solid #d1d1d1;
}
.nav li .nav-drop-on {
  opacity: 1;
  z-index: 3;
  display: flex;
}

.small-nav {
  display: none;
}
.small-nav .header-bars {
  cursor: pointer;
  color: #000;
  font-size: 26px;
}
@media (max-width: 992px) {
  .small-nav {
    display: flex;
  }
}

.small-nav-container {
  position: fixed;
  z-index: -4;
  opacity: 0;
  height: 100vh;
  width: 100vw;
  background-color: var(--brand-color-1);
  transition: all 500ms ease;
  left: 0;
  top: 0;
  padding: 60px 0;
}
.small-nav-container .small-nav-inner {
  display: flex;
  flex-direction: column;
  list-style: none;
  row-gap: 15px;
}
.small-nav-container .small-nav-inner li {
  font-size: 15px;
  line-height: 1.875;
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
}
.small-nav-container .small-nav-inner li a {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  text-decoration: none;
  transition: all 100ms ease;
  display: flex;
  align-items: center;
}
.small-nav-container .small-nav-inner li a:hover {
  color: var(--brand-color-1);
}
.small-nav-container .small-nav-inner li a:hover + .nav-dropdown {
  opacity: 1;
  z-index: 4;
}
.small-nav-container .small-nav-item {
  color: #fff;
}
.small-nav-container .small-nav-item a {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  text-decoration: none;
  transition: all 100ms ease;
  padding: 6px 0;
  display: flex;
  justify-content: space-between;
}
.small-nav-container .small-nav-item a:hover {
  color: #000;
}
.small-nav-container .small-nav-item a .link-icon {
  margin-left: 5px;
  font-size: 12px;
}
.small-nav-container .small-nav-item .small-nav-dropdown {
  display: flex;
  flex-direction: column;
  z-index: -1;
  opacity: 0;
  display: none;
  padding-left: 20px;
}
.small-nav-container .small-nav-item .small-nav-dropdown a {
  padding: 3px 4px;
  color: #fff;
  font-size: 14px;
}
.small-nav-container .small-nav-item .small-nav-dropdown a:hover {
  color: var(--brand-color-1);
}
.small-nav-container .small-nav-item .small-nav-drop-on {
  opacity: 1;
  z-index: 3;
  display: flex;
}
.small-nav-container .small-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  cursor: pointer;
}

.small-nav-con-on {
  opacity: 1 !important;
  z-index: 50 !important;
}
.footer-section {
  background-color: #edf5f7;
  padding: 0 !important;
  position: relative;
}
.footer-section .footer-image {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}
.footer-section .footer-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer-section .shade {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2;
}
.footer-section .footer-top {
  position: relative;
  z-index: 3;
  height: 180px;
}
@media (max-width: 640px) {
  .footer-section .footer-top {
    height: 100px;
  }
}
.footer-section .footer-top .container {
  height: 100%;
}
.footer-section .footer-top .container .inner {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
@media (max-width: 560px) {
  .footer-section .footer-top .container .inner {
    justify-content: flex-start;
  }
}
.footer-section .footer-top .container .inner .logo {
  position: absolute;
  color: #fff;
  font-size: 32px;
}
.footer-section .footer-top .container .inner .logo img {
  width: 200px;
}
@media (max-width: 640px) {
  .footer-section .footer-top .container .inner .logo img {
    width: 150px;
  }
}
.footer-section .footer-middle {
  position: relative;
  z-index: 3;
}
.footer-section .footer-middle .container .inner {
  border-top: 1px solid rgba(221, 221, 221, 0.1098039216);
  border-bottom: 1px solid rgba(221, 221, 221, 0.1098039216);
  display: flex;
  padding: 40px 0;
}
@media (max-width: 640px) {
  .footer-section .footer-middle .container .inner {
    padding: 20px 0;
    row-gap: 15px;
    flex-wrap: wrap;
  }
}
.footer-section .footer-middle .container .inner .box {
  flex-basis: 33.33%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-section .footer-middle .container .inner .box h3 {
  color: #fff;
  text-align: center;
}
.footer-section .footer-middle .container .inner .box p {
  color: #ccc;
  text-align: center;
  padding: 0 5px;
}
@media (max-width: 640px) {
  .footer-section .footer-middle .container .inner .box {
    flex-basis: 100%;
    border-right: none !important;
    align-items: flex-start;
    text-align: left;
  }
}
.footer-section .footer-middle .container .inner .box:not(:last-child) {
  border-right: 1px solid rgba(221, 221, 221, 0.1098039216);
}
.footer-section .footer-bottom {
  padding: 40px 0 40px;
  position: relative;
  z-index: 3;
}
@media (max-width: 560px) {
  .footer-section .footer-bottom {
    padding: 20px 0;
  }
}
.footer-section .footer-bottom .container .inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 30px;
}
.footer-section .footer-bottom .container .inner .about-box {
  flex-basis: 35%;
}
.footer-section .footer-bottom .container .inner .about-box h3 {
  color: #fff;
}
.footer-section .footer-bottom .container .inner .about-box p {
  color: #ccc;
  text-align: justify;
}
@media (max-width: 992px) {
  .footer-section .footer-bottom .container .inner .about-box {
    flex-basis: 40%;
  }
}
@media (max-width: 768px) {
  .footer-section .footer-bottom .container .inner .about-box {
    flex-basis: 100%;
  }
}
.footer-section .footer-bottom .container .inner .about-box .about-icons {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  margin-top: 15px;
}
.footer-section .footer-bottom .container .inner .about-box .about-icons a {
  font-size: 18px;
  color: #fff;
  transition: all 500ms ease;
  background-color: var(--brand-color-1);
  border: 1px solid var(--brand-color-1);
  padding: 2px 8px;
}
.footer-section .footer-bottom .container .inner .about-box .about-icons a:hover {
  transform: scale(1.1);
  color: var(--brand-color-2);
  background-color: #fff;
  border: 1px solid var(--brand-color-1);
}
.footer-section .footer-bottom .container .inner .service-box {
  flex-basis: 30%;
}
.footer-section .footer-bottom .container .inner .service-box h3 {
  color: #fff;
}
.footer-section .footer-bottom .container .inner .service-box p {
  color: #ccc;
}
@media (max-width: 992px) {
  .footer-section .footer-bottom .container .inner .service-box {
    flex-basis: 35%;
  }
}
@media (max-width: 768px) {
  .footer-section .footer-bottom .container .inner .service-box {
    flex-basis: 100%;
  }
}
.footer-section .footer-bottom .container .inner .service-box .services {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  row-gap: 10px;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.footer-section .footer-bottom .container .inner .service-box .services a {
  color: #ccc;
  text-decoration: none;
  font-size: var(--para);
}
.footer-section .footer-bottom .container .inner .links-box {
  flex-basis: 15%;
}
.footer-section .footer-bottom .container .inner .links-box h3 {
  color: #fff;
}
.footer-section .footer-bottom .container .inner .links-box p {
  color: #ccc;
}
@media (max-width: 768px) {
  .footer-section .footer-bottom .container .inner .links-box {
    flex-basis: 100%;
  }
}
.footer-section .footer-bottom .container .inner .links-box .services {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.footer-section .footer-bottom .container .inner .links-box .services a {
  color: #ccc;
  text-decoration: none;
  font-size: var(--para);
}
.footer-section .footer-bottom .container .inner .gallery-box {
  flex-basis: 30%;
}
.footer-section .footer-bottom .container .inner .gallery-box h3 {
  color: #fff;
}
.footer-section .footer-bottom .container .inner .gallery-box p {
  color: #ccc;
}
@media (max-width: 560px) {
  .footer-section .footer-bottom .container .inner .gallery-box {
    flex-basis: 50%;
  }
}
.footer-section .footer-bottom .container .inner .gallery-box .images {
  display: flex;
  -moz-column-gap: 12px;
       column-gap: 12px;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 10px;
}
.footer-section .footer-bottom .container .inner .gallery-box .images img {
  flex-basis: calc(33% - 8px);
  width: calc(33% - 10px);
  height: 90px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 640px) {
  .footer-section .footer-bottom .container .inner .gallery-box .images img {
    height: 50px;
  }
}
@media (max-width: 560px) {
  .footer-section .footer-bottom .container .inner .gallery-box .images img {
    height: 70px;
  }
}
.footer-section .footer-copyright {
  position: relative;
  z-index: 3;
}
.footer-section .footer-copyright .container .inner {
  border-top: 1px solid rgba(221, 221, 221, 0.1098039216);
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
  color: #ccc;
  font-size: var(--para);
}
.footer-section .footer-copyright .container .inner h3 {
  color: #fff;
}
.footer-section .footer-copyright .container .inner p {
  color: #ccc;
}
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--font-mons);
  font-weight: 400;
}

:root {
  --header-height: 90px;
  --brand-color-1: #ecb236;
  --brand-color-2: #320006;
  --brand-color-3: #008fd9;
  --brand-light: #f2f3f5;
  --font-hind: "Hind", sans-serif;
  --font-cormorant: "Cormorant", serif;
  --font-poppins: "Poppins", sans-serif;
  --font-mons: "Montserrat", sans-serif;
  --font-jost: "Jost", sans-serif;
  --font-open: "Open Sans", sans-serif;
  --font-tit: "Titillium Web", sans-serif;
  --para: 14px;
  --para-heading: 17px;
  --section-heading: 20px;
  --sub-heading: 28px;
  --heading: 38px;
  --extra-heading: 48px;
}

@media (max-width: 992px) {
  :root {
    --para: 13px;
    --para-heading: 15px;
    --section-heading: 17px;
    --sub-heading: 22px;
    --heading: 26px;
    --extra-heading: 32px;
  }
}
@media (max-width: 640px) {
  :root {
    --para: 12px;
    --para-heading: 13px;
    --section-heading: 14px;
    --sub-heading: 16px;
    --heading: 20px;
    --extra-heading: 24px;
  }
}
h1 {
  font-size: var(--extra-heading);
  font-family: var(--font-tit);
  color: #000;
}

h2 {
  font-size: var(--heading);
  font-family: var(--font-tit);
  color: #000;
}

h3 {
  font-size: var(--sub-heading);
  font-family: var(--font-tit);
  color: #000;
}

h4 {
  font-size: var(--section-heading);
  font-family: var(--font-tit);
  color: #000;
}

h5 {
  font-size: var(--para-heading);
  font-family: var(--font-tit);
  color: #000;
}

p {
  font-size: var(--para);
  font-family: var(--font-open);
  margin-bottom: 0;
  font-weight: 400;
  color: #222;
  line-height: 22px;
}

.section {
  padding: 100px 0;
}
@media (max-width: 640px) {
  .section {
    padding: 30px 0;
  }
}

.section-heading-container {
  margin-bottom: 50px;
}
.section-heading-container .section-heading-top {
  font-weight: 700;
  text-transform: uppercase;
  line-height: 12px;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  color: var(--brand-color-3);
  font-family: var(--font-tit);
  display: none;
}
.section-heading-container .section-heading {
  font-family: var(--font-tit);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 42px;
  margin-bottom: 1px;
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.section-heading-container .section-heading::after {
  content: "";
  background: url('https://suvakamana.syronx.com/wp-content/uploads/2024/09/header-bg.png');
  background-repeat: no-repeat;
  height: 15px;
  width: 100%;
  background-size: contain;
  position: absolute;
  background-repeat: no-repeat;
  bottom: -10px;
  background-position: center;
}
@media (max-width: 768px) {
  .section-heading-container {
    font-size: 24px;
  }
}
@media (max-width: 448px) {
  .section-heading-container {
    font-size: 22px;
  }
}

.topics {
  margin-top: 30px;
}
@media (max-width: 640px) {
  .topics {
    margin-top: 15px;
  }
}

.main-button {
  padding-left: 25px !important;
  padding-right: 25px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  background-color: var(--brand-color-3);
  border: 1px solid var(--brand-color-3);
  font-size: 15px;
  font-weight: 300;
  border-radius: 0px;
  transition: all 500ms ease;
  text-decoration: none;
  color: #fff;
  padding-top: 13px !important;
  padding-bottom: 13px !important;
  font-family: var(--font-jost);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 5px;
}
.main-button span {
  margin-left: 10px;
}
.main-button:hover {
  background-color: var(--brand-color-2);
  color: #fff;
  border-color: var(--brand-color-2);
}
@media (max-width: 560px) {
  .main-button {
    padding: 8px 15px;
    font-size: 15px;
  }
}

.alternate-button {
  padding-left: 25px !important;
  padding-right: 25px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  background-color: transparent;
  border: 1px solid var(--brand-color-3);
  font-size: 15px;
  font-weight: 300;
  border-radius: 0px;
  transition: all 500ms ease;
  text-decoration: none;
  color: #fff;
  padding-top: 13px !important;
  padding-bottom: 13px !important;
  font-family: var(--font-jost);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 5px;
}
.alternate-button:hover {
  background-color: var(--brand-color-3);
  color: #fff;
}
.alternate-button span {
  margin-left: 10px;
}
@media (max-width: 560px) {
  .alternate-button {
    padding: 8px 15px;
    font-size: 15px;
  }
}

.page-top {
  position: relative;
  margin-top: var(--header-height);
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.page-top .page-image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.page-top .page-image .shade {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
}
.page-top .page-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
  position: relative;
}
.page-top .page-top-header {
  font-size: 38px;
  font-weight: 600;
  line-height: 36px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  padding-bottom: 15px;
  display: inline-flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .page-top .page-top-header {
    font-size: 28px;
  }
}
@media (max-width: 448px) {
  .page-top .page-top-header {
    font-size: 24px;
  }
}
.page-top .page-top-header .line {
  width: 70%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  -moz-column-gap: 10px;
       column-gap: 10px;
  bottom: -20px;
}
.page-top .page-top-header .line .left {
  width: calc(50% - 40px);
  height: 3px;
  background-color: var(--brand-color-1);
}
.page-top .page-top-header .line .right {
  width: calc(50% - 40px);
  height: 3px;
  background-color: var(--brand-color-1);
}
.page-top .page-top-header .line .line-image {
  width: 60px;
  position: relative;
  top: -3px;
}
.page-top .page-top-header .line .line-image img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.page-top .page-top-desc {
  margin-top: 25px;
  color: #e1e1e4;
  font-size: var(--para-heading);
  line-height: 26px;
  font-weight: 300;
  font-family: var(--font-hind);
  letter-spacing: 1.5px;
  font-style: italic;
}
.page-top .page-top-desc span {
  color: var(--brand-color-1);
}
.hero-section {
  height: calc(100vh - var(--header-height));
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;
  background-color: var(--brand-light);
  padding: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero-section {
    height: 60vh;
  }
}
.hero-section .hero-bg {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
}
.hero-section .hero-bg video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .hero-section .hero-bg video {
    height: 134%;
    width: 124%;
    position: relative;
    top: -65px;
  }
}
.hero-section .shade {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.6);
}
.hero-section .container {
  position: relative;
  height: 100%;
}
.hero-section .container .inner {
  height: 100%;
  display: flex;
  align-items: center;
}
.hero-section .container .hero-text .section-heading-container h5 {
  color: #ccc;
}
.hero-section .container .hero-text .section-heading-container h2 {
  color: #fff;
}
@media (max-width: 768px) {
  .hero-section .container .hero-text .section-heading-container {
    margin-bottom: 20px;
  }
}
.hero-section .container .hero-text .hero-buttons {
  display: flex;
  align-items: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
.hero-section img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.landing-category {
  background-color: var(--brand-light);
}
.landing-category .container .inner .topics .cat-slider .swiper-wrapper .cat-box .cat-inner {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.landing-category .container .inner .topics .cat-slider .swiper-wrapper .cat-box .cat-inner .image {
  height: 150px;
  width: 150px;
  border-radius: 50%;
}
.landing-category .container .inner .topics .cat-slider .swiper-wrapper .cat-box .cat-inner .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.landing-category .container .inner .topics .cat-slider .swiper-wrapper .cat-box .cat-inner .name {
  text-align: center;
  margin-top: 20px;
  text-transform: uppercase;
}
.landing-category .container .inner .topics .cat-slider .cat-swiper-pagination {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.landing-category .container .inner .topics .cat-slider .cat-swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--brand-color-1);
}

.landing-products .container .inner .inner-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.landing-products .container .inner .inner-top .section-heading-container {
  margin-bottom: 0;
}
.landing-products .container .inner .inner-top .section-heading-container .section-heading::after {
  left: 0;
  background-position: left;
}
.landing-products .container .inner .inner-top .more {
  transition: all 500ms ease;
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  margin-top: 20px;
  cursor: pointer;
  text-decoration: none;
}
@media (max-width: 768px) {
  .landing-products .container .inner .inner-top .more {
    opacity: 1;
    margin-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}
.landing-products .container .inner .inner-top .more:hover .text::after {
  width: 100%;
}
.landing-products .container .inner .inner-top .more:hover .button {
  background-color: var(--brand-color-2);
  color: #fff;
}
.landing-products .container .inner .inner-top .more .text {
  font-size: var(--para);
  position: relative;
}
.landing-products .container .inner .inner-top .more .text::after {
  content: "";
  left: 0;
  bottom: -5px;
  height: 3px;
  background-color: var(--brand-color-3);
  position: absolute;
  width: 0%;
  transition: all 500ms ease;
}
.landing-products .container .inner .inner-top .more .button {
  height: 40px;
  width: 40px;
  color: #fff;
  background-color: var(--brand-color-3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 500ms ease;
}
@media (max-width: 768px) {
  .landing-products .container .inner .inner-top .more .button {
    height: 25px;
    width: 25px;
  }
}
.landing-products .container .inner .topics {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 20px;
}
.landing-products .container .inner .topics .product-box {
  height: 300px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-basis: calc(25% - 15px);
  cursor: pointer;
  text-decoration: none;
}
@media (max-width: 768px) {
  .landing-products .container .inner .topics .product-box {
    flex-basis: calc(50% - 20px);
  }
}
@media (max-width: 524px) {
  .landing-products .container .inner .topics .product-box {
    flex-basis: 100%;
  }
}
.landing-products .container .inner .topics .product-box:hover .product-details {
  opacity: 1;
  transform: translateY(0);
}
.landing-products .container .inner .topics .product-box:hover .product-details .more {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .landing-products .container .inner .topics .product-box {
    height: 300px;
  }
}
.landing-products .container .inner .topics .product-box .image {
  width: 100%;
  height: 100%;
}
.landing-products .container .inner .topics .product-box .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.landing-products .container .inner .topics .product-box .product-details {
  position: absolute;
  bottom: 20px;
  width: 80%;
  padding: 10px 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 500ms ease;
  background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0.2) 100%);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 524px) {
  .landing-products .container .inner .topics .product-box .product-details {
    opacity: 1;
    transform: translateY(0);
  }
}
.landing-products .container .inner .topics .product-box .product-details .more {
  opacity: 0;
  transition: all 500ms ease;
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  margin-top: 20px;
  transform: translateY(20px);
  text-decoration: none;
  cursor: pointer;
  position: relative;
}
@media (max-width: 524px) {
  .landing-products .container .inner .topics .product-box .product-details .more {
    opacity: 1;
    transform: translateY(0);
  }
}
.landing-products .container .inner .topics .product-box .product-details .more:hover .text::after {
  width: 100%;
}
.landing-products .container .inner .topics .product-box .product-details .more:hover .button {
  background-color: var(--brand-color-2);
}
@media (max-width: 768px) {
  .landing-products .container .inner .topics .product-box .product-details .more {
    opacity: 1;
    transform: translateY(0px);
    margin-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}
.landing-products .container .inner .topics .product-box .product-details .more .text {
  font-size: var(--para);
  color: #000;
  display: flex;
  position: relative;
}
.landing-products .container .inner .topics .product-box .product-details .more .text::after {
  content: "";
  left: 0;
  bottom: -5px;
  height: 3px;
  background-color: var(--brand-color-3);
  position: absolute;
  width: 0%;
  transition: all 500ms ease;
}
.landing-products .container .inner .topics .product-box .product-details .more .button {
  height: 40px;
  width: 40px;
  color: #fff;
  background-color: var(--brand-color-3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 500ms ease;
}
@media (max-width: 768px) {
  .landing-products .container .inner .topics .product-box .product-details .more .button {
    height: 25px;
    width: 25px;
  }
}

.landing-test {
  position: relative;
}
.landing-test .test-image {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}
.landing-test .test-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.landing-test .shade {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0);
  z-index: 2;
}
.landing-test .container {
  position: relative;
  z-index: 5;
}
.landing-test .container .inner {
  width: 60%;
  margin: auto;
}
@media (max-width: 768px) {
  .landing-test .container .inner {
    width: 80%;
  }
}
@media (max-width: 524px) {
  .landing-test .container .inner {
    width: 100%;
  }
}
.landing-test .container .inner .section-heading-container .section-heading-top {
  text-align: center;
  color: #fff;
}
.landing-test .container .inner .section-heading-container .section-heading {
  text-align: center;
  color: #fff;
}
.landing-test .container .inner .topics .test-slider .swiper-wrapper .test-box .test-box-inner {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  align-items: center;
  justify-content: center;
}
.landing-test .container .inner .topics .test-slider .swiper-wrapper .test-box .test-box-inner .image {
  height: 80px;
  width: 80px;
}
.landing-test .container .inner .topics .test-slider .swiper-wrapper .test-box .test-box-inner .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.landing-test .container .inner .topics .test-slider .swiper-wrapper .test-box .test-box-inner .details {
  text-align: center;
  color: #ccc;
}
.landing-test .container .inner .topics .test-slider .swiper-wrapper .test-box .test-box-inner .user-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  row-gap: 8px;
}
.landing-test .container .inner .topics .test-slider .swiper-wrapper .test-box .test-box-inner .user-details .name {
  text-align: center;
  color: #fff;
}
.landing-test .container .inner .topics .test-slider .swiper-wrapper .test-box .test-box-inner .user-details .role {
  text-align: center;
  color: var(--brand-color-1);
}
.landing-test .container .inner .topics .test-slider .test-swiper-pagination {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.landing-test .container .inner .topics .test-slider .test-swiper-pagination .swiper-pagination-bullet {
  background-color: #e5dddd;
}
.landing-test .container .inner .topics .test-slider .test-swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--brand-color-1);
}

.landing-contact-middle {
  padding-bottom: 20px;
}
.landing-contact-middle .inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  -moz-column-gap: 60px;
       column-gap: 60px;
  row-gap: 30px;
  width: 100% !important;
}
@media (max-width: 768px) {
  .landing-contact-middle .inner {
    flex-direction: column-reverse;
  }
}
.landing-contact-middle .inner .left {
  flex-basis: calc(50% - 30px);
}
@media (max-width: 768px) {
  .landing-contact-middle .inner .left {
    flex-basis: 100%;
  }
}
.landing-contact-middle .inner .left .section-heading-container .section-heading {
  text-align: left;
  justify-content: flex-start;
  align-items: flex-start;
}
.landing-contact-middle .inner .left .section-heading-container .section-heading::after {
  left: 0;
  background-position: left;
}
.landing-contact-middle .inner .left .contact-page-form form {
  display: flex;
  width: 100%;
  display: flex;
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 30px;
  flex-wrap: wrap;
}
.landing-contact-middle .inner .left .contact-page-form .inputContainer {
  flex-basis: calc(50% - 15px);
}
.landing-contact-middle .inner .left .contact-page-form .input-textarea {
  flex-basis: 100%;
}
.landing-contact-middle .inner .left .contact-page-form .inputContainer input {
  width: 100%;
  border: none;
  padding: 8px 8px;
  background-color: #f5f5f5;
  height: 40px;
  font-family: var(--font-tit);
}
.landing-contact-middle .inner .left .contact-page-form .inputContainer input:focus-visible {
  border: 1px solid var(--brand-color-1);
}
.landing-contact-middle .inner .left .contact-page-form .inputContainer textarea {
  width: 100%;
  border: none;
  padding: 8px 8px;
  background-color: #f5f5f5;
  height: 80px;
  font-family: var(--font-tit);
}
.landing-contact-middle .inner .left .contact-page-form .inputContainer label {
  color: #666;
  font-size: var(--para);
  font-family: var(--font-tit);
}
.landing-contact-middle .inner .right {
  flex-basis: calc(50% - 30px);
}
@media (max-width: 768px) {
  .landing-contact-middle .inner .right {
    flex-basis: 100%;
    width: 100%;
  }
}
.landing-contact-middle .inner .right img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .landing-contact-middle .inner .right img {
    height: 350px;
  }
}
.about-hero {
  padding-bottom: 100px !important;
}
@media (max-width: 768px) {
  .about-hero {
    padding-bottom: 30px !important;
  }
}
.about-hero .inner {
  display: flex;
  -moz-column-gap: 30px;
       column-gap: 30px;
  flex-wrap: wrap;
}
.about-hero .inner .left {
  flex-basis: calc(50% - 15px);
  position: relative;
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media (max-width: 768px) {
  .about-hero .inner .left {
    flex-basis: 100%;
  }
}
.about-hero .inner .left img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  padding: 10px;
  background-color: #fff;
  box-shadow: 0 0 3px 3px grey;
}
.about-hero .inner .left .image1 {
  height: 300px;
  width: calc(50% - 10px);
}
@media (max-width: 560px) {
  .about-hero .inner .left .image1 {
    width: 65%;
    height: 280px;
  }
}
.about-hero .inner .left .image2 {
  width: calc(50% - 10px);
  height: 150px;
  display: flex;
  align-items: center;
  position: absolute;
  right: 0;
  top: 10%;
}
.about-hero .inner .left .image3 {
  position: absolute;
  height: 300px;
  width: 70%;
  right: 0;
  top: 50%;
}
@media (max-width: 768px) {
  .about-hero .inner .left .image3 {
    top: 70%;
  }
}
@media (max-width: 768px) {
  .about-hero .inner .left .image3 {
    height: 250px;
  }
}
.about-hero .inner .right {
  flex-basis: calc(50% - 15px);
}
@media (max-width: 768px) {
  .about-hero .inner .right {
    flex-basis: 100%;
    margin-top: 200px;
  }
}
.about-hero .inner .right .about-list {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  margin-top: 20px;
}
.about-hero .inner .right .about-list .list {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.about-hero .inner .right .about-list .list .icon {
  width: 50px;
}
.about-hero .inner .right .about-list .list .icon img {
  width: 50px;
}
.about-hero .inner .right .about-list .list .info {
  width: calc(100% - 70px);
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.about-hero .inner .right .about-list .list .info h4 {
  margin-bottom: -5px;
}

.about-stats {
  background-color: #edf5f7;
}
.about-stats .inner .photo-row {
  display: flex;
  -moz-column-gap: 15px;
       column-gap: 15px;
  flex-wrap: wrap;
  row-gap: 15px;
}
.about-stats .inner .photo-row .photo {
  flex-basis: calc(33.33% - 10px);
  height: 300px;
  padding: 15px;
  box-shadow: 0 0 3px 3px grey;
  background-color: #fff;
}
@media (max-width: 768px) {
  .about-stats .inner .photo-row .photo {
    height: 200px;
    padding: 6px;
  }
}
@media (max-width: 560px) {
  .about-stats .inner .photo-row .photo {
    height: 300px;
    padding: 6px;
    flex-basis: 100%;
  }
}
.about-stats .inner .photo-row .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-stats .inner .stat-boxes {
  display: flex;
  -moz-column-gap: 12px;
       column-gap: 12px;
  flex-wrap: wrap;
  row-gap: 10px;
  margin-top: 50px;
}
.about-stats .inner .stat-boxes .stat-box {
  flex-basis: calc(25% - 9px);
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  text-align: center;
  padding: 5px 10px;
}
.about-stats .inner .stat-boxes .stat-box:not(:last-child) {
  border-right: 1px solid #ccc;
}
@media (max-width: 768px) {
  .about-stats .inner .stat-boxes .stat-box {
    flex-basis: calc(50% - 12px);
    padding: 5px 5px;
  }
  .about-stats .inner .stat-boxes .stat-box:not(:last-child) {
    border: none;
  }
  .about-stats .inner .stat-boxes .stat-box:nth-child(odd) {
    border-right: 1px solid #ccc;
  }
}
.about-stats .inner .stat-boxes .stat-box h2 {
  color: var(--brand-color-1);
  font-weight: bold;
  margin-bottom: 4px;
}
.about-stats .inner .stat-boxes .stat-box h5 {
  text-transform: uppercase;
}
.gallery-section .inner .nav-pills {
  display: flex;
  justify-content: center;
  border-top: 1px solid #818491;
  border-bottom: 1px solid #818491;
  padding: 10px 0;
  -moz-column-gap: 4px;
       column-gap: 4px;
}
.gallery-section .inner .nav-pills .nav-item .nav-link {
  color: #000;
}
@media (max-width: 560px) {
  .gallery-section .inner .nav-pills .nav-item .nav-link {
    padding: 2px 4px;
  }
}
.gallery-section .inner .nav-pills .nav-item .nav-link:hover {
  background-color: var(--brand-color-1);
  color: #f0f0f0;
}
.gallery-section .inner .nav-pills .nav-item .nav-link.active {
  background-color: var(--brand-color-1);
  color: #f0f0f0;
}
.section-outer .container .section-inner {
  display: flex;
  -moz-column-gap: 80px;
       column-gap: 80px;
  flex-wrap: wrap;
}
.section-outer .container .section-inner .section-left {
  width: calc(30% - 40px);
}
@media (max-width: 768px) {
  .section-outer .container .section-inner .section-left {
    width: 100%;
  }
}
.section-outer .container .section-inner .section-left .nav-pills {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 20px;
}
.section-outer .container .section-inner .section-left .nav-pills button {
  padding: 17px 20px 17px 20px;
  font-family: var(--font-tit);
  box-shadow: 0 0 10px 0 rgba(18, 31, 56, 0.1);
  font-size: 17px;
  color: #000;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  z-index: 1;
  position: relative;
  transition: all 500ms ease;
  cursor: pointer;
}
.section-outer .container .section-inner .section-left .nav-pills button::after {
  content: "";
  transition: all 500ms ease;
  position: absolute;
  left: 0;
  transform-origin: left;
  height: 100%;
  width: 0%;
  background-color: var(--brand-color-1);
  z-index: -1;
}
.section-outer .container .section-inner .section-left .nav-pills button:hover {
  color: #fff;
}
.section-outer .container .section-inner .section-left .nav-pills button:hover::after {
  width: 100%;
}
.section-outer .container .section-inner .right {
  width: calc(70% - 40px);
}
@media (max-width: 768px) {
  .section-outer .container .section-inner .right {
    width: 100%;
  }
}
.section-outer .container .section-inner .right .product-page .inner .tab-pane-inner {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 20px;
}
.section-outer .container .section-inner .right .product-page .inner .product-box {
  height: 300px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-basis: calc(25% - 15px);
  cursor: pointer;
  text-decoration: none;
}
@media (max-width: 992px) {
  .section-outer .container .section-inner .right .product-page .inner .product-box {
    flex-basis: calc(50% - 20px);
  }
}
@media (max-width: 524px) {
  .section-outer .container .section-inner .right .product-page .inner .product-box {
    flex-basis: 100%;
  }
}
.section-outer .container .section-inner .right .product-page .inner .product-box:hover .product-details {
  opacity: 1;
  transform: translateY(0);
}
.section-outer .container .section-inner .right .product-page .inner .product-box:hover .product-details .more {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .section-outer .container .section-inner .right .product-page .inner .product-box {
    height: 300px;
  }
}
.section-outer .container .section-inner .right .product-page .inner .product-box .image {
  width: 100%;
  height: 100%;
}
.section-outer .container .section-inner .right .product-page .inner .product-box .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-outer .container .section-inner .right .product-page .inner .product-box .product-details {
  position: absolute;
  bottom: 20px;
  width: 80%;
  padding: 10px 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 500ms ease;
  background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0.2) 100%);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 524px) {
  .section-outer .container .section-inner .right .product-page .inner .product-box .product-details {
    opacity: 1;
    transform: translateY(0);
  }
}
.section-outer .container .section-inner .right .product-page .inner .product-box .product-details .more {
  opacity: 0;
  transition: all 500ms ease;
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  margin-top: 20px;
  transform: translateY(20px);
  text-decoration: none;
  cursor: pointer;
  position: relative;
}
@media (max-width: 524px) {
  .section-outer .container .section-inner .right .product-page .inner .product-box .product-details .more {
    opacity: 1;
    transform: translateY(0);
  }
}
.section-outer .container .section-inner .right .product-page .inner .product-box .product-details .more:hover .text::after {
  width: 100%;
}
.section-outer .container .section-inner .right .product-page .inner .product-box .product-details .more:hover .button {
  background-color: var(--brand-color-2);
}
@media (max-width: 768px) {
  .section-outer .container .section-inner .right .product-page .inner .product-box .product-details .more {
    opacity: 1;
    transform: translateY(0px);
    margin-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}
.section-outer .container .section-inner .right .product-page .inner .product-box .product-details .more .text {
  font-size: var(--para);
  color: #000;
  display: flex;
  position: relative;
}
.section-outer .container .section-inner .right .product-page .inner .product-box .product-details .more .text::after {
  content: "";
  left: 0;
  bottom: -5px;
  height: 3px;
  background-color: var(--brand-color-3);
  position: absolute;
  width: 0%;
  transition: all 500ms ease;
}
.section-outer .container .section-inner .right .product-page .inner .product-box .product-details .more .button {
  height: 40px;
  width: 40px;
  color: #fff;
  background-color: var(--brand-color-3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 500ms ease;
}
@media (max-width: 768px) {
  .section-outer .container .section-inner .right .product-page .inner .product-box .product-details .more .button {
    height: 25px;
    width: 25px;
  }
}
.product-page-hero {
  background-color: var(--brand-light);
}
.product-page-hero .container .inner {
  display: flex;
  -moz-column-gap: 80px;
       column-gap: 80px;
  flex-wrap: wrap;
  align-items: center;
}
.product-page-hero .container .inner .left {
  flex-basis: calc(50% - 40px);
}
.product-page-hero .container .inner .left img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-page-hero .container .inner .right {
  flex-basis: calc(50% - 40px);
}
.product-page-hero .container .inner .right .product-price h4 {
  color: var(--brand-color-3);
  font-weight: bold;
}
.product-page-hero .container .inner .right .info-title {
  margin-top: 30px;
}
.product-page-hero .container .inner .right .product-info {
  margin-bottom: 30px;
}
.product-page-hero .container .inner .right .product-info .info-item {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.product-page-hero .container .inner .right .product-info .info-item .icon {
  font-size: 10px;
  color: var(--brand-color-1);
}
.product-page-hero .container .inner .right .product-info .info-item .text {
  font-size: var(--para);
}
.product-page-hero .container .inner .right .call-buttons {
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.product-page-hero .container .inner .right .call-buttons .icon-box {
  display: flex;
  -moz-column-gap: 7px;
       column-gap: 7px;
  align-items: center;
}
.product-page-hero .container .inner .right .call-buttons .icon-box .icon {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background-color: var(--brand-color-3);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.product-page-hero .container .inner .right .call-buttons .icon-box .texts {
  display: flex;
  flex-direction: column;
}
.product-page-hero .container .inner .right .call-buttons .icon-box .texts .title {
  font-size: var(--para);
  text-transform: uppercase;
  font-family: var(--font-tit);
  font-weight: bold;
}
.product-page-hero .container .inner .right .call-buttons .icon-box .texts .text {
  font-size: var(--para-heading);
  font-family: var(--font-tit);
}

.related-products .inner {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 20px;
}
.related-products .inner .product-box {
  height: 300px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-basis: calc(25% - 15px);
  cursor: pointer;
  text-decoration: none;
}
@media (max-width: 768px) {
  .related-products .inner .product-box {
    flex-basis: calc(50% - 20px);
  }
}
@media (max-width: 524px) {
  .related-products .inner .product-box {
    flex-basis: 100%;
  }
}
.related-products .inner .product-box:hover .product-details {
  opacity: 1;
  transform: translateY(0);
}
.related-products .inner .product-box:hover .product-details .more {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .related-products .inner .product-box {
    height: 300px;
  }
}
.related-products .inner .product-box .image {
  width: 100%;
  height: 100%;
}
.related-products .inner .product-box .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.related-products .inner .product-box .product-details {
  position: absolute;
  bottom: 20px;
  width: 80%;
  padding: 10px 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 500ms ease;
  background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0.2) 100%);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 524px) {
  .related-products .inner .product-box .product-details {
    opacity: 1;
    transform: translateY(0);
  }
}
.related-products .inner .product-box .product-details .more {
  opacity: 0;
  transition: all 500ms ease;
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  margin-top: 20px;
  transform: translateY(20px);
  text-decoration: none;
  cursor: pointer;
  position: relative;
}
@media (max-width: 524px) {
  .related-products .inner .product-box .product-details .more {
    opacity: 1;
    transform: translateY(0);
  }
}
.related-products .inner .product-box .product-details .more:hover .text::after {
  width: 100%;
}
.related-products .inner .product-box .product-details .more:hover .button {
  background-color: var(--brand-color-2);
}
@media (max-width: 768px) {
  .related-products .inner .product-box .product-details .more {
    opacity: 1;
    transform: translateY(0px);
    margin-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}
.related-products .inner .product-box .product-details .more .text {
  font-size: var(--para);
  color: #000;
  display: flex;
  position: relative;
}
.related-products .inner .product-box .product-details .more .text::after {
  content: "";
  left: 0;
  bottom: -5px;
  height: 3px;
  background-color: var(--brand-color-3);
  position: absolute;
  width: 0%;
  transition: all 500ms ease;
}
.related-products .inner .product-box .product-details .more .button {
  height: 40px;
  width: 40px;
  color: #fff;
  background-color: var(--brand-color-3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 500ms ease;
}
@media (max-width: 768px) {
  .related-products .inner .product-box .product-details .more .button {
    height: 25px;
    width: 25px;
  }
}
.budget-map {
  position: relative;
  height: 500px;
}
@media (max-width: 448px) {
  .budget-map {
    height: 300px;
  }
}
.budget-map iframe {
  height: 100%;
}

.contact-line {
  background-color: var(--brand-color-1);
  padding: 0;
  position: relative;
}
.contact-line::before {
  content: "";
  height: 100%;
  width: 50%;
  background-color: var(--brand-color-1);
  position: absolute;
  left: 0;
  top: 0;
}
.contact-line::after {
  content: "";
  height: 100%;
  width: 50%;
  background-color: var(--brand-color-2);
  position: absolute;
  right: 0;
  top: 0;
}
.contact-line .container {
  position: relative;
  z-index: 3;
}
.contact-line .container .inner {
  display: flex;
  flex-wrap: wrap;
}
.contact-line .container .inner .box {
  display: flex;
  -moz-column-gap: 30px;
       column-gap: 30px;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  padding: 20px 10px;
  flex-basis: 25%;
  width: 25%;
  row-gap: 20px;
}
@media (max-width: 992px) {
  .contact-line .container .inner .box {
    padding: 40px 10px;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
@media (max-width: 768px) {
  .contact-line .container .inner .box {
    flex-basis: 100%;
    -moz-column-gap: 30px;
         column-gap: 30px;
    padding: 40px 30px;
  }
}
.contact-line .container .inner .box .icon {
  font-size: 24px;
  color: var(--brand-color-1);
  background-color: #fff;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-line .container .inner .box .text {
  display: flex;
  flex-direction: column;
  -moz-column-gap: 20px;
       column-gap: 20px;
  flex-wrap: wrap;
}
.contact-line .container .inner .box .text h5 {
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}
.contact-line .container .inner .box .text h4 {
  color: #fff;
  text-align: center;
}
.contact-line .container .inner .box .icon-box {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  justify-content: center;
}
.contact-line .container .inner .box .icon-box a {
  font-size: 15px;
  color: #fff;
  transition: all 500ms ease;
  background-color: var(--brand-color-2);
  padding: 8px 12px;
  border-radius: 5px;
}
.contact-line .container .inner .box .icon-box a:hover {
  transform: scale(1.1);
}
.contact-line .container .inner .left {
  background-color: var(--brand-color-2);
}
.contact-line .container .inner .middle {
  background-color: var(--brand-color-1);
}
.contact-line .container .inner .right {
  background-color: var(--brand-color-2);
}
.contact-line .container .inner .social {
  background-color: var(--brand-color-1);
}

.contact-middle {
  padding-bottom: 20px;
}
.contact-middle .inner {
  margin: auto;
  display: flex;
  -moz-column-gap: 60px;
       column-gap: 60px;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 30px;
}
.contact-middle .inner .left {
  flex-basis: calc(40% - 30px);
}
@media (max-width: 992px) {
  .contact-middle .inner .left {
    flex-basis: 100%;
  }
}
.contact-middle .inner .left .topics {
  display: flex;
  row-gap: 20px;
  flex-direction: column;
}
.contact-middle .inner .left .topics .contact-list {
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.contact-middle .inner .left .topics .contact-list:nth-child(2) .icon {
  background-color: var(--brand-color-2) !important;
}
.contact-middle .inner .left .topics .contact-list:nth-child(4) .icon {
  background-color: #000 !important;
}
.contact-middle .inner .left .topics .contact-list .icon {
  font-size: 24px;
  color: #fff;
  background-color: var(--brand-color-1);
  height: 60px;
  width: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-middle .inner .left .topics .contact-list .text {
  display: flex;
  flex-direction: column;
  -moz-column-gap: 10px;
       column-gap: 10px;
  flex-wrap: wrap;
}
.contact-middle .inner .left .topics .contact-list .text h5 {
  margin-bottom: 0;
  font-weight: bold;
}
.contact-middle .inner .left .topics .contact-list .social-container {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  margin-top: 20px;
}
.contact-middle .inner .left .topics .contact-list .social-container a {
  font-size: 15px;
  color: #fff;
  transition: all 500ms ease;
  background-color: var(--brand-color-2);
  padding: 5px 12px;
  border-radius: 5px;
}
.contact-middle .inner .left .topics .contact-list .social-container a:hover {
  transform: scale(1.1);
}
.contact-middle .inner .right {
  flex-basis: calc(60% - 30px);
}
@media (max-width: 992px) {
  .contact-middle .inner .right {
    flex-basis: 100%;
  }
}
.contact-middle .inner .right .contact-form-outer {
  box-shadow: 0px 15px 60px -10px rgba(109, 117, 143, 0.33);
  padding: 60px 80px;
}
@media (max-width: 640px) {
  .contact-middle .inner .right .contact-form-outer {
    padding: 30px 10px;
  }
}
.contact-middle .inner .right .contact-form-outer .section-heading-details {
  text-align: left;
}
.contact-middle .inner .right .contact-form-outer .contact-page-form form {
  display: flex;
  width: 100%;
  display: flex;
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 30px;
  flex-wrap: wrap;
}
.contact-middle .inner .right .contact-form-outer .contact-page-form .inputContainer {
  flex-basis: calc(50% - 15px);
}
.contact-middle .inner .right .contact-form-outer .contact-page-form .input-textarea {
  flex-basis: 100%;
}
.contact-middle .inner .right .contact-form-outer .contact-page-form .inputContainer input {
  width: 100%;
  border: none;
  padding: 8px 8px;
  background-color: #f5f5f5;
  height: 40px;
  font-family: var(--font-tit);
}
.contact-middle .inner .right .contact-form-outer .contact-page-form .inputContainer input:focus-visible {
  border: 1px solid var(--brand-color-1);
}
.contact-middle .inner .right .contact-form-outer .contact-page-form .inputContainer textarea {
  width: 100%;
  border: none;
  padding: 8px 8px;
  background-color: #f5f5f5;
  height: 80px;
  font-family: var(--font-tit);
}
.contact-middle .inner .right .contact-form-outer .contact-page-form .inputContainer label {
  color: #666;
  font-size: var(--para);
  font-family: var(--font-tit);
}
.test-page {
  position: relative;
}
.test-page .test-image {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}
.test-page .test-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.test-page .shade {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0);
  z-index: 2;
}
.test-page .container {
  position: relative;
  z-index: 5;
}
.test-page .container .inner {
  display: flex;
  -moz-column-gap: 30px;
       column-gap: 30px;
  flex-wrap: wrap;
  row-gap: 20px;
}
.test-page .container .inner .test-box {
  flex-basis: calc(33% - 20px);
}
@media (max-width: 768px) {
  .test-page .container .inner .test-box {
    flex-basis: calc(50% - 15px);
  }
}
@media (max-width: 524px) {
  .test-page .container .inner .test-box {
    flex-basis: 100%;
  }
}
.test-page .container .inner .test-box .test-box-inner {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  align-items: center;
  justify-content: center;
}
.test-page .container .inner .test-box .test-box-inner .image {
  height: 80px;
  width: 80px;
}
.test-page .container .inner .test-box .test-box-inner .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.test-page .container .inner .test-box .test-box-inner .details {
  text-align: center;
  color: #ccc;
}
.test-page .container .inner .test-box .test-box-inner .user-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  row-gap: 8px;
}
.test-page .container .inner .test-box .test-box-inner .user-details .name {
  text-align: center;
  color: #fff;
}
.test-page .container .inner .test-box .test-box-inner .user-details .role {
  text-align: center;
  color: var(--brand-color-1);
}
