/*
Theme Name: asca
Theme URI: https://wordpress.org/themes/twentytwentythree
Author: the WordPress team
Author URI: https://wordpress.org
Requires at least: 6.1
Tested up to: 6.5
Requires PHP: 5.6
Version: 1.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
*/
:root {
  --primary-color: #004e97;
  --color-black: #333333;
  --color-gray: #818285;
  --border-radius: 15px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
ul,
a {
  list-style: none;
  text-decoration: none;
}
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  /* margin-right: 10px; */
  margin-left: auto;
}
@media (min-width: 576px) {
  .container,
  .container-sm {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container,
  .container-md,
  .container-sm {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 960px;
  }
  
    
  .section-what-we-offer{
      padding-top: 50px;
      padding-bottom: 50px;
  }
  .what-we-offer-title h2{
      line-height: inital;
      padding-bottom: 25px;
      font-size: 24px;
  }
  .what-we-offer-card{
      padding: 25px;
      font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1320px;
  }
}
.button-primary {
  background-color: transparent;
  border: 1px solid #333333;
  color: var(--color-black);
  border-radius: 12px;
  padding: 15px 70px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}
.button-primary:hover {
  background-color: var(--primary-color);
  color: white;
  border: 1px solid var(--primary-color);
}
body {
  font-family: "Montserrat", sans-serif;
  background-color: white;
}
.no-scroll {
  overflow: hidden;
}
/* start loading */
.loading-screen {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  opacity: 1;
  background-color: white;
  display: flex;
  align-items: flex-end;
  justify-content: start;
  transition: 2s opacity ease-in;
  z-index: 99;
}
.loading-screen.hide {
  opacity: 0;
}
.loading-screen.anim-complete {
  display: none;
}
.loading-screen .percentage {
  color: var(--primary-color);
  display: flex;
  user-select: none;
  font-size: 250px;
  font-weight: 900;
  line-height: 100%;
}
/* end loading */
/* Header and Navigation Styling */
.main-header {
  position: relative;
}
.navbar-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
}
.main-header .logo a {
  color: #fff;
  text-decoration: none;
  font-size: 1.5em;
}

.cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}
.header-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  margin-left: 100px;
  padding: 40px;
}
.header-menu li {
  padding: 10px;
}
.header-menu li a {
  color: #333333;
}
.location-icon {
  margin-right: 10px;
}
.location-wrapper {
  display: flex;
  align-items: center;
  margin-right: 30px;
  cursor: pointer;
}
.location-text {
  color: var(--primary-color);
}
/* start burger menu */
.menu-burger {
  display: flex;
  align-items: center;
  cursor: pointer;
  z-index: 9;
}
.burger-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 14px;
  cursor: pointer;
  position: relative;
  z-index: 10;
}

.burger-menu .line {
  background-color: var(--primary-color);
  height: 3px;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger-menu .line1 {
  width: 50%;
  align-self: flex-start;
}

.burger-menu .line2 {
  width: 100%;
}

.burger-menu .line3 {
  width: 50%;
  align-self: flex-end;
}
.burger-menu.active .line1,
.burger-menu.active .line3 {
  width: 100%;
  position: absolute;
}

.burger-menu.active .line1 {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.burger-menu.active .line2 {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.burger-menu.active .line3 {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}
.menu-burger .menu-text {
  margin-left: 10px;
  color: var(--primary-color);
}
/* end burger menu */
.menu {
  font-size: 1.5rem;
  height: 100%;
  width: 100%;
  display: none;
  position: absolute;
  top: 0%;
  left: 0;
  right: 0;
  z-index: 5;
}
.menu.open {
  display: block;
}
.nav-links {
  -webkit-backdrop-filter: blur(1.1em);
  backdrop-filter: blur(1.1em);
  perspective-origin: 100% 0;
  transform-origin: 100% 0;
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(156, 156, 156, 0.16);
  border-radius: 40px;
  flex-direction: column;
  width: 100%;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  padding-top: 4em;
  padding-bottom: 7em;
  overflow: hidden;
  transform: translate3d(0px, 0px, 0px) scale3d(0, 0, 1) rotateX(0deg)
    rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  transition: 0.3s;
}
.section-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 35px;
}
.right-side-images-section {
  display: flex;
  gap: 20px;
}
.image-box {
  width: 189px;
  height: 503px;
  flex: 1;
  transition: 0.3s;
}
.image-box:hover {
  flex: 3;
}
.right-side-images-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
}
.left-side-text-info {
  font-weight: 600;
  font-size: 40px;
  margin-bottom: 40px;
}
.left-side-text-pargraph {
  font-size: 24px;
  line-height: 2rem;
  color: #818285;
}
.section-contact-us {
  margin-top: -80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid #d1d3d8;
}
.section-contact-us-flex {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
.section-contact-us-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  width: 70%;
}
.section-contact-us-image img {
  width: 287px;
  height: 210px;
}
.section-contact-us-img-text {
  text-align: center;
  margin-top: -20px;
  color: var(--color-black);
  font-weight: 600;
}
.section-contact-us-info a {
  color: var(--color-black);
}
.section-contact-us-info .underline-number {
  text-decoration: underline;
}
.section-contact-us-info-text {
  color: var(--color-black);
  font-size: 20px;
  margin-bottom: 30px;
}
.section-discover {
  margin-top: 90px;
  color: var(--color-black);
}
.section-discover-title h2 {
  font-size: 40px;
  margin-bottom: 40px;
}
.section-discover-text p {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 40px;
}
.section-discover-text span {
  color: var(--color-gray);
}
.section-discover-paragraph p {
  font-size: 20px;
  line-height: 1.5rem;
  font-weight: 600;
}
.our-services {
  overflow: hidden;
  margin-top: 80px;
}
.our-services-flex {
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  /* background-image: url("./assets/image/background-our-services.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center; */
}
.our-services-info {
  width: 70%;
}
.our-services-info h2 {
  font-weight: 600;
  font-size: 40px;
}
.icon-background-left {
  position: absolute;
  left: -60px;
  z-index: -9;
}
.icon-background-right {
  position: absolute;
  right: -110px;
  top: -10px;
  z-index: -9;
}

.slider-section {
  margin-top: 130px;
}

.header-section-slider {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

.header-section-slider-btn {
  display: flex;
  align-items: flex-start;
  width: 15%;
}
.header-section-slider-btn span {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  border-radius: 15px;
  padding: 10px 20px;
  color: var(--primary-color);
  font-size: 16px;
}
.header-section-slider-text {
  width: 70%;
}
.header-section-slider-text h2 {
  font-size: 36px;
  font-weight: 600;
}
.header-section-slider-text h2 span {
  color: var(--primary-color);
}
.slider-controls {
  display: flex;
  flex-direction: column;
  justify-content: end;
  cursor: pointer;
}
.slider-controls-flex {
  display: flex;
  flex-direction: column;
  border: 1px solid #d1d3d8;
  border-radius: 15px;
}
.slider-controls-flex span {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 13px 5px;
}
.slider-controls-flex .next-slide {
  border-bottom: 2px solid #d1d3d8;
}
.slider-container {
  display: flex;
  overflow-x: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  position: relative;
  gap: 60px;
}
.slider-container.no-transition {
  scroll-behavior: auto;
}
.slider-item {
  position: relative;
  cursor: pointer;
}
/* .slider-item-image {
  width: 900px;
  height: 502px;
} */
.slider-item img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 10px;
}
.slider-overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  padding: 10px;
  height: 90%;
  color: white;
}
.slider-overlay h3 {
  font-size: 24px;
  font-weight: 600;
}
.slider-overlay-title,
.text-one-slider {
  color: var(--primary-color);
}
.slider-overlay-btn-one {
  border: 1px solid var(--primary-color) !important;
}
.slider-overlay-btn-one a {
  color: var(--primary-color) !important;
}
.slider-overlay-btn {
  background-color: transparent;
  text-decoration: none;
  right: 50px;
  top: 50%;
  height: 73%;
  text-decoration: none;
  position: absolute;
  writing-mode: vertical-rl;
  border: 1px solid var(--primary-color);
  border-radius: 15px;
  padding: 15px 15px;
  transform: translateY(-50%) rotate(-180deg);
  font-size: 20px;
  cursor: pointer;
  color: var(--primary-color);
}
.slider-overlay-text {
  position: absolute;
  top: 45px;
  font-size: 30px;
  font-weight: 600;
  color: var(--primary-color);
}
.contact-us-info {
  text-align: center;
  margin-top: 100px;
  margin-bottom: 100px;
}
.contact-us-info h3 {
  font-weight: 600;
  font-size: 40px;
  margin-bottom: 30px;
}
.contact-us-info p {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5rem;
  letter-spacing: 0.5px;
  color: var(--color-gray);
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}
.footerpage {
  margin-top: 120px;
}
.footerpagegrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-bottom: 60px;
}
.footerpage-logo img {
  width: 115px;
  height: 70px;
  object-fit: contain;
}
.footerpage-logo p {
  color: var(--color-gray);
}
.footer-menu-container li a {
  text-decoration: none;
  margin-bottom: 10px;
  color: var(--color-gray);
}
.footer-menu-container li,
.footerlinkitem {
  padding: 15px 60px;
}
.footerlinkitem-title {
  color: var(--color-black);
  margin-bottom: 10px;
}

/* start template categories */
.categories-section {
  margin-top: 40px;
}
.categories-section-titles {
  display: flex;
  gap: 20px;
}
.filter-btn {
  border-radius: var(--border-radius);
  border: 1px solid #dde1e6;
  text-align: center;
  padding: 15px 25px;
  cursor: pointer;
}
.filter-btn.active {
  background-color: var(--primary-color);
  color: white;
  border: none;
}
.category-list {
  margin-top: 60px;
  margin-bottom: 100px;
  display: flex;
  flex-wrap: wrap;
  /* justify-content: space-between; */
  gap: 60px;
  cursor: pointer;
}
.category-list h3 {
  font-weight: 500;
  margin-bottom: 5px;
  color: var(--color-black);
}
.category-list p {
  font-weight: 400;
  color: var(--color-gray);
  margin-bottom: 20px;
}
.category-item {
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: 2px 4px 80px 0px #0000001a;
  animation: scaleUp 0.5s ease-in-out;
}
@keyframes scaleUp {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.category-item img {
  width: 320px;
  height: 220px;
  border-radius: var(--border-radius);
  object-fit: cover;
}
/* end template categories */
/*start pagination*/
.pagination {
  text-align: center;
}
.pagination-links {
  display: flex;
  justify-content: center;
}
.page-number {
  margin: 0 5px;
  padding: 5px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  cursor: pointer;
}
.page-number.current {
  background-color: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}
.page-number:not(.current):hover {
  background-color: #f1f1f1;
  border-color: #ccc;
}
/*end pagination*/

/* start single product page  */
.single-product-section {
  display: flex;
  justify-content: space-between;
  gap: 70px;
  margin-top: 40px;
}
.single-product-images {
  width: 50%;
}
.single-product-info {
  width: 50%;
}
.mySwiper2 {
  width: 610px;
  height: 640px;
  overflow: hidden;
}
.swiper-slide.single-product-mainimages img {
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius);
}
.single-product-images {
  position: relative;
}
.single-product-carousel .swiper-wrapper {
  position: absolute;
  left: 40px;
  border: 15px solid white;
  background: white;
  display: flex;
  top: 53%;
  transform: translate(-50%, -50%) !important;
  flex-direction: column;
  gap: 15px;
  cursor: pointer;
  border-radius: var(--border-radius);
  height: 54%;
  width: 13%;
}
.mySwiper .swiper-slide {
  width: 80px !important;
  height: 80px;
}
.single-product-carousel .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
}
.single-product-info {
  margin-top: 50px;
}
.single-product-info h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 36px;
  margin-bottom: 5px;
}
.product-categories {
  margin-bottom: 40px;
}
.product-categories span {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 21.76px;
  letter-spacing: 0.5px;
  text-decoration: underline;
}
.single-product-info p {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 32.64px;
  letter-spacing: 0.5px;
  color: var(--color-gray);
}
/* end single product page  */

/* start spinner loading */
.spinner {
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.spinner-loading {
  width: 11.2px;
  height: 11.2px;
  border-radius: 11.2px;
  box-shadow: 28px 0px 0 0 rgba(71, 75, 255, 0.2),
    22.7px 16.5px 0 0 rgba(71, 75, 255, 0.4),
    8.68px 26.6px 0 0 rgba(71, 75, 255, 0.6),
    -8.68px 26.6px 0 0 rgba(71, 75, 255, 0.8), -22.7px 16.5px 0 0 #474bff;
  animation: spinner-loading 1s infinite linear;
}

@keyframes spinner-loading {
  to {
    transform: rotate(360deg);
  }
}
/* end spinner loading */
.breadcrumbs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 30px;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 27.2px;
  letter-spacing: 0.5px;
}

.breadcrumbs li {
  font-size: 14px;
  color: var(--color-gray);
}

.breadcrumbs li a {
  color: var(--color-gray);
  text-decoration: none;
}
.breadcrumbs .separator {
  margin: 0 5px;
  color: var(--color-gray);
}
.contact-us-form-flex {
  display: flex;
  gap: 20px;
  margin-top: 60px;
}
.wpcf7 {
  width: 65%;
}
.wpcf7-form p:nth-of-type(1),
.wpcf7-form p:nth-of-type(2) {
  display: inline-block;
  margin-right: 2%;
  width: 47%;
  margin-bottom: 30px;
}
.wpcf7-form p label:not(span) {
  margin-bottom: 10px;
}
.wpcf7-form p:nth-of-type(3),
.wpcf7-form p:nth-of-type(4),
.wpcf7-form p:nth-of-type(5) {
  display: block;
  margin-bottom: 30px;
}
.wpcf7-form textarea {
  resize: vertical;
  padding: 15px;
  outline: none;
  border-radius: 10px;
  border: 1px solid var(--color-gray);
  width: 94%;
  margin-top: 10px;
}
.wpcf7-form input {
  padding: 15px;
  outline: none;
  border-radius: 10px;
  border: 1px solid var(--color-gray);
  width: 94%;
  margin-top: 10px;
}
.wpcf7-form input[type="submit"] {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: white;
  border-radius: 12px;
  padding: 15px 70px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}
.wpcf7-form input[type="submit"]:hover {
  background-color: transparent;
  color: var(--primary-color);
}
.wpcf7-form .wpcf7-response-output {
  width: 93%;
}
/* .wpcf7-form input[type="submit"]:hover {
} */
.custom-info {
  width: 35%;
}
.custom-info-email {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.custom-info-email img {
  width: 20px;
  height: 18px;
  margin-right: 8px;
}
.custom-info-email-text {
  color: var(--color-black);
  font-family: "Roboto", sans-serif;
}
.custom-info-flag-email {
  margin-top: 15px;
}
.custom-info-flag-email img {
  width: 20px;
  margin-right: 8px;
}
.custom-info-flag-email a {
  color: var(--color-black);
  text-decoration: underline;
}
.custom-info-part2-title {
  margin-top: 50px;
  margin-bottom: 10px;
}
.custom-info-part2-paragraph,
.custom-info-part3-paragraph {
  color: var(--color-gray);
}
.custom-info-part2-number {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.custom-info-part2-number img {
  width: 20px;
  height: 18px;
  margin-right: 8px;
}
.custom-info-part2-number a {
  text-decoration: underline;
  color: var(--color-black);
  font-family: "Roboto", sans-serif;
}
.custom-info-part3-title {
  margin-top: 50px;
  margin-bottom: 10px;
}
.custom-info-part3-location {
  display: flex;
  align-items: center;
  margin-top: 15px;
}
/* start about us template */
.title-about-us h1 {
  font-size: 36px;
  font-weight: 500;
  line-height: 49.32px;
  letter-spacing: 0.5px;
  text-align: center;
  color: var(--color-black);
  margin-bottom: 55px;
  margin-top: 55px;
}
.section-one-about-us {
  display: flex;
  justify-content: space-between;
}
.section-one-image-left {
  width: 588px;
  height: 549px;
}
.section-one-image-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
}
.section-one-rightside,
.section-one-image-left {
  width: 47%;
}
.section-one-image-right {
  /* width: 588px; */
  height: 357px;
}
.section-one-image-right img {
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius);
  object-fit: cover;
}
.section-one-rightside-caption p {
  font-size: 36px;
  font-weight: 500;
  line-height: 49.32px;
  letter-spacing: 0.5px;
  text-align: left;
  margin-top: 25px;
  color: var(--color-black);
}
.expertise-lists {
  list-style-type: none;
  counter-reset: list-counter;
  color: var(--color-black);
}
.expertise-lists .expertise-item {
  counter-increment: list-counter;
  position: relative;
  font-size: 32px;
  font-weight: 500;
  padding: 80px 0px 80px 55px;
}
.expertise-lists .expertise-item::before {
  content: "0" counter(list-counter) ".";
  position: absolute;
  left: 0;
}
.expertise-item-one {
  border-top: 1px solid #d1d3d8;
  border-bottom: 1px solid #d1d3d8;
}
.expertise-item-two {
  border-bottom: 1px solid #d1d3d8;
}
.section-Expertise-Services {
  margin-top: 80px;
  border-top: 1px solid #d1d3d8;
  border-bottom: 1px solid #d1d3d8;
  position: relative;
  overflow: hidden;
}
.section-Expertise-Services-bg {
  position: absolute;
  top: 45%;
  left: -184px;
  z-index: -2;
}
.title-Expertise-Services h2 {
  font-size: 88px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 55px 0px;
  color: var(--color-black);
}
.section-what-we-offer {
  background-image: url("./assets/image/whatweoffer-section-bg.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-top: 120px;
  padding-bottom: 120px;
}
.what-we-offer-title h2 {
  font-size: 128px;
  font-weight: 600;
  line-height: 176.64px;
  letter-spacing: 0.5px;
}
.what-we-offer-cards {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.what-we-offer-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 50px 25px;
  width: calc(100% / 3);
  font-size: 24px;
  font-weight: 500;
  line-height: 33.12px;
  letter-spacing: 0.5px;
  text-align: left;
}
/* end about us template */
.wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 1em;
  font-weight: normal;
  display: block;
  position: absolute;
  left: 0;
  bottom: -40px;
  /* margin-bottom: 40px; */
}
