/* Font Family ***********************************************************************/
@font-face {
  font-family: "TitilliumWeb-SemiBold";
  src: url("../fonts/Titillium-Web/TitilliumWeb-SemiBold.ttf");
  font-display: swap;
}
@font-face {
  font-family: "TitilliumWeb-Bold";
  src: url("../fonts/Titillium-Web/TitilliumWeb-Bold.ttf");
  font-display: swap;
}

@font-face {
  font-family: "Switzer-Regular";
  src: url("../fonts/Switzer/Switzer-Regular.otf");
  font-display: swap;
}
@font-face {
  font-family: "Switzer-Medium";
  src: url("../fonts/Switzer/Switzer-Medium.otf");
  font-display: swap;
}
@font-face {
  font-family: "Switzer-Bold";
  src: url("../fonts/Switzer/Switzer-Bold.otf");
  font-display: swap;
}

@font-face {
  font-family: "Exo2-Bold";
  src: url("../fonts/Exo-2/Exo2-Bold.ttf");
  font-display: swap;
}

@font-face {
  font-family: "Rupee-Foradian";
  src: url("../fonts/Rupee-Foradian/Rupee-Foradian.ttf");
  font-display: swap;
}

/* common css ******************************************************************************/
:root {
  --black: #000000;
  --Baltic-Sea: #292929;
  --Dark-Jungle-Green: #1d1d20;
  --Medium-Electric-Blue: #004f9d;
  --Medium-Teal-Blue: #0047ad;
  --Night: #0c0b0b;
  --Smokey-Grey: #707070;
  --white: #ffffff;
}

.white {
  color: var(--white) !important;
}
.black {
  color: var(--black);
}
.medium-teal-blue {
  color: var(--Medium-Teal-Blue);
}

.lowercase {
  text-transform: lowercase;
}

.mobile {
  display: none !important;
}
.desktop {
  display: block !important;
}

.mob {
  display: none !important;
}
.web {
  display: block !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
*::before,
*::after {
  box-sizing: border-box;
}
.common::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #000;
}
body {
  font-family: "Switzer-Medium";
}

body.show {
  position: fixed;
  top: 0;
  width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  margin-bottom: 15px;
  line-height: 1.2;
  color: var(--black);
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}
h1 {
  font-size: 60px;
}
h2 {
  font-size: 56px;
}
h3 {
  font-size: 40px;
}
h4 {
  font-size: 34px;
}
h5 {
  font-size: 28px;
}
h6 {
  font-size: 20px;
}

p {
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 15px;
  color: var(--black);
}
p:last-child {
  margin-bottom: 0;
}
.small {
  font-size: 16px;
}
ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  text-transform: capitalize;
  display: inline-block;
  line-height: 1.2;
  color: inherit;
  font-family: inherit;
}
span {
  display: inline-block;
}
section {
  padding: 80px 0;
  overflow: hidden;
}
.section-heading {
  text-align: center;
  margin-bottom: 50px;
}
.section-heading h2,
.text-box h2,
.text-box h4 {
  color: var(--Medium-Teal-Blue);
  font-family: "TitilliumWeb-Bold";
}
.section-heading p {
  font-size: 24px;
  color: var(--Baltic-Sea);
  max-width: 1020px;
  margin: 0 auto;
  font-family: "Switzer-Medium";
}
.cmn-btn {
  font-size: 18px;
  color: var(--Medium-Teal-Blue) !important;
  padding: 12px 40px;
  background-color: var(--white);
  border-radius: 6px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "TitilliumWeb-Bold";
}
.gradient-btn {
  color: var(--white) !important;
  padding: 15px 36px;
  border: 0;
  background: #432188;
  background: linear-gradient(
    90deg,
    rgba(67, 33, 136, 1) 0%,
    rgba(73, 48, 146, 1) 35%,
    rgba(77, 118, 190, 1) 65%,
    rgba(66, 176, 229, 1) 100%
  );
}

img,
video {
  max-width: 100%;
}

.button-box {
  padding-top: 20px;
}
.button-box ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.owl-theme .owl-dots .owl-dot span {
  background: var(--black);
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--white);
  outline: 2px solid var(--white);
  outline-offset: 3px;
}
.owl-nav {
  margin-top: 0;
}
.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.owl-nav button.owl-prev {
  left: 0;
}
.owl-nav button.owl-next {
  right: 0;
}
.owl-theme .owl-nav [class*="owl-"]:hover {
  background: transparent;
}
.form-control-common {
  font-size: 18px;
  color: var(--Baltic-Sea);
  padding: 9px 12px;
  background: #fcfcfd;
  border: 1px solid #c7c7c7;
  width: 100%;
  appearance: textfield;
  border-radius: 10px;
  box-shadow: none;
  resize: none;
  outline: none;
}
.input-group {
  padding-bottom: 30px;
}
.form-control:focus {
  box-shadow: none;
}
.btn-close:focus {
  box-shadow: none;
}

/* header css ******************************************************************************/
@keyframes smoothScroll {
  0% {
    transform: translateY(-60px);
    opacity: 0;
  }

  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
#header.show {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  animation: smoothScroll 1s forwards;
  z-index: 1000;
  box-shadow: 0 0 10px 2px #000;
}
#header {
  padding: 22px 0;
  background-color: transparent;
  transition: 0.5s all;
  z-index: 11;
  position: relative;
}
#header .header-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header .logo-box img {
  max-width: 125px;
  width: 100%;
}
#header .main-nav .click-menu,
#header .main-nav .cancel-menu {
  display: none;
  cursor: pointer;
  position: relative;
  z-index: 11;
  width: 30px;
  height: 26px;
}
#header .main-nav .click-menu span,
#header .main-nav .cancel-menu span {
  width: 30px;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(67, 33, 136, 1) 0%,
    rgba(73, 48, 146, 1) 35%,
    rgba(77, 118, 190, 1) 65%,
    rgba(66, 176, 229, 1) 100%
  );
  transition: 0.5s all ease-in-out;
  position: relative;
  border-radius: 5px;
}
#header .main-nav .cancel-menu span {
  position: absolute;
  height: 4px;
}
#header .main-nav .cancel-menu span:first-child {
  transform: rotate(45deg);
}
#header .main-nav .cancel-menu span:last-child {
  transform: rotate(-45deg);
}
#header .main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-left: 20px;
}
#header .button-box {
  margin-left: 20px;
  padding-top: 0;
}
#header .button-box .cmn-btn {
  color: var(--Medium-Teal-Blue) !important;
  padding: 9px 14px;
  background-color: var(--white);
}
#header .main-nav nav ul li {
  display: inline-block;
  position: relative;
  margin-right: 36px;
}
#header .main-nav nav ul li a {
  font-size: 18px;
  color: var(--white);
  padding: 5px 5px;
  transition: all 0.5s;
  font-family: "TitilliumWeb-Bold";
}
#header nav ul li a::before {
  position: absolute;
  content: "";
  left: 5px;
  bottom: 0;
  height: 2px;
  width: 0;
  transition: 0.5s all;
  border-radius: 10px;
  background-color: var(--Medium-Teal-Blue);
}
#header .main-nav nav ul li a.active,
#header .main-nav nav ul li a:hover {
  color: var(--Medium-Teal-Blue);
}
#header .main-nav nav ul li a.active::before,
#header .main-nav nav ul li a:hover:before {
  background-color: var(--Medium-Teal-Blue);
  width: 50%;
}

html {
  scroll-behavior: smooth;
}

/* Product header */
.h-pro {
  background: #3178c5;
  background: linear-gradient(159deg, rgba(49, 120, 197, 1) 27%, rgba(123, 87, 164, 1) 100%);
}

/* home-banner css ******************************************************************************/
#home-banner {
  padding: 0 0;
  margin-top: -103px;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
#home-banner:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 2;
}
#home-banner .video-bx {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
#home-banner .banner-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
#home-banner .caption-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  text-align: center;
  max-width: 70%;
  width: 100%;
  z-index: 3;
  display: flex;
  flex-direction: column;

  opacity: 0;

  animation: zoomInCaption 1.2s ease forwards;
  animation-delay: 0.2s; /* slight delay after load */
  margin: 0 auto;
}

/* Keyframes for zoom-in */
@keyframes zoomInCaption {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
  60% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

#home-banner .caption-box h1 {
  color: var(--white);
  margin-bottom: 0;
  font-family: "TitilliumWeb-Bold";
}
#home-banner .caption-box h3 {
  color: var(--white);
  margin-bottom: 20px;
  font-family: "TitilliumWeb-SemiBold";
}
#home-banner .caption-box p {
  font-size: 22px;
  color: var(--white);
  font-family: "Switzer-Medium";
}
#home-banner .explore-box {
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 3;

  animation: zoomInCaption 1.2s ease forwards;
}
#home-banner .explore-box a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 18px;
}
#home-banner .explore-box a img {
  max-width: 32%;
  margin: 0 auto;
}
#home-banner .explore-box a span {
  font-size: 18px;
  color: var(--white);
  font-family: "Switzer-Medium";
}
#home-banner .explore-box .scroll-icon {
  display: block;
  animation: floatScroll 2s ease-in-out infinite;
}
/* Explore-box animation ***********/
@keyframes floatScroll {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}

/* meet-tairo section css ******************************************************************************/
#meet-tairo .img-box img {
  max-width: 86%;
  width: 100%;
  margin: 0 auto;
  display: block;
}
#meet-tairo .text-box p {
  font-size: 24px;
  color: var(--Baltic-Sea);
  max-width: 400px;
  font-family: "Switzer-Medium";
}

/* next-gen-in-the-air section css ******************************************************************************/
#next-gen-in-the-air {
  padding-top: 0;
}
#next-gen-in-the-air .button-box {
  margin-top: 60px;
  padding: 0 0;
}
#next-gen-in-the-air .next-gen-in-the-air-slider .owl-nav button.owl-prev {
  left: 18%;
}
#next-gen-in-the-air .next-gen-in-the-air-slider .owl-nav button.owl-next {
  right: 18%;
}
#next-gen-in-the-air .next-gen-in-the-air-slider .owl-nav button.owl-prev img,
#next-gen-in-the-air .next-gen-in-the-air-slider .owl-nav button.owl-next img {
  width: 100%;
}

/* explore-tairo-drones section css ******************************************************************************/
#explore-tairo-drones {
  position: relative;
  overflow: visible;
}
#explore-tairo-drones .explore-tairo-drones-box {
  display: flex;
  justify-content: space-between;
  position: relative;
}
#explore-tairo-drones .box.box1 .text-box {
  position: sticky;
  top: 30px;
}

#explore-tairo-drones .box.box1 .text-box h4 {
  position: relative;
}
#explore-tairo-drones .box.box1 .text-box h4:after {
  position: absolute;
  content: "";
  background: var(--Smokey-Grey);
  width: 110px;
  height: 2px;
  left: 0;
  right: 0;
  bottom: -8px;
  /* margin: 0 auto; */
}
#explore-tairo-drones .box.box1 .text-box p {
  font-size: 26px;
  color: var(--Baltic-Sea);
  max-width: 370px;
  font-family: "Switzer-Medium";
}
#explore-tairo-drones .steps-progress-bar-bx-main {
  position: relative;
}
#explore-tairo-drones .steps-progress-bar-bx {
  position: absolute;
  display: flex;
  position: absolute;
  flex-direction: column;
  height: 95%;
  left: 2.1%;
  top: 4%;
}
#explore-tairo-drones .steps-progress-bar-bx span {
  background-image: linear-gradient(#432188, #4d76be);
  width: 4px;
  height: 0;
  transition: height 0.2s linear;
  z-index: -1;
}
#explore-tairo-drones .single-box {
  display: flex;
  align-items: flex-start;
  column-gap: 26px;
}
#explore-tairo-drones .single-box:not(:last-child) {
  margin-bottom: 22px;
}
#explore-tairo-drones .single-box .left-bx {
  margin-top: -20px;
  width: 4.6%;
}
#explore-tairo-drones .single-box .right-bx {
  width: 95.4%;
}
#explore-tairo-drones .single-box .left-bx span {
  font-size: 54px;
  color: var(--Medium-Teal-Blue);
  background-color: var(--white);
  font-family: "TitilliumWeb-Bold";
}
#explore-tairo-drones .single-box .right-bx .text-box p {
  font-size: 20px;
  margin: 6px 0 26px 0;
  font-family: "Switzer-Medium";
}

#explore-tairo-drones .steps-progress-bar-bx-main .right-bx .img-box img {
  width: 100%;
}

/* key-highlights section css ******************************************************************************/
#key-highlights {
  background: url(../images/key-highlights-bg.png) no-repeat;
  background-position: center center;
  background-size: 100% 100% !important;
  padding: 100px 0 120px 0;
}
#key-highlights .row {
  row-gap: 80px;
}
#key-highlights .box.box1 {
  margin-left: 30px;
}
#key-highlights .box .text-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 110px;
}
#key-highlights .box.box2 .text-box {
  align-items: flex-end;
}
#key-highlights h5 {
  line-height: 1;
  font-family: "Switzer-Bold";
}
#key-highlights .text-box .box {
  display: flex;
  align-items: flex-start;
  column-gap: 20px;
  text-align: left;
  padding: 20px 20px;
  width: 100%;
  max-width: 384px;
}
#key-highlights .box.box1 .top-box.box {
  border-top: 1px solid var(--white);
  border-right: 1px solid var(--white);
  justify-content: flex-end;
  text-align: right;
  position: relative;
}
#key-highlights .box.box1 .top-box.box:after {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  background-color: var(--white);
  border-radius: 50%;
  top: -7px;
  left: 0px;
}
#key-highlights .box.box1 .top-box.box:before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  background-color: var(--white);
  border-radius: 50%;
  bottom: 0;
  right: -6px;
}
#key-highlights .box.box1 .btm-box.box {
  border-bottom: 1px solid var(--white);
  border-right: 1px solid var(--white);
  justify-content: flex-end;
  text-align: right;
  position: relative;
}
#key-highlights .box.box1 .btm-box.box:after {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  background-color: var(--white);
  border-radius: 50%;
  bottom: -6px;
  left: 0px;
}
#key-highlights .box.box1 .btm-box.box:before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  background-color: var(--white);
  border-radius: 50%;
  top: 0;
  right: -6px;
}
/* Box - 2 ********************************************/
#key-highlights .section-heading {
  margin-bottom: 70px;
}
#key-highlights .box.box2 .top-box.box {
  border-top: 1px solid var(--white);
  border-left: 1px solid var(--white);
  align-items: center;
  position: relative;
}
#key-highlights .box.box2 .top-box.box:after {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  background-color: var(--white);
  border-radius: 50%;
  bottom: 0;
  left: -6px;
}
#key-highlights .box.box2 .top-box.box:before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  background-color: var(--white);
  border-radius: 50%;
  top: -7px;
  right: 0;
}
#key-highlights .box.box2 .btm-box.box {
  border-bottom: 1px solid var(--white);
  border-left: 1px solid var(--white);
  align-items: center;
  position: relative;
}
#key-highlights .box.box2 .btm-box.box:after {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  background-color: var(--white);
  border-radius: 50%;
  bottom: -6px;
  right: 0px;
}
#key-highlights .box.box2 .btm-box.box:before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  background-color: var(--white);
  border-radius: 50%;
  top: 0;
  left: -6px;
}

/* footer css ******************************************************************************/
#footer {
  padding-top: 70px;
  background-color: var(--Night);
}
#footer .top-box .logo-box img {
  max-width: 125px;
  margin-bottom: 70px;
}
#footer .top-box li,
#footer .top-box li a,
#footer p {
  color: var(--white);
}
#footer .top-box .list-box a {
  font-size: 18px;
  font-family: "Exo2-Bold";
}
#footer .top-box .list-box li:not(:last-child) {
  margin-bottom: 20px;
}
#footer .top-box .link-box {
  max-width: 160px;
  padding: 12px 10px;
  /*background-color: var(--Dark-Jungle-Green);*/
}
#footer .top-box .link-box ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 10px;
  justify-content: center;
}
#footer .top-box .link-box ul li a i {
  width: 34px;
  height: 34px;
  font-size: 17px;
  border: 0.5px solid var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#footer .top-box .office-address-bx ul li {
  display: flex;
  column-gap: 10px;
  margin-bottom: 26px;
}
#footer .top-box .office-address-bx ul li i {
  font-size: 20px;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#footer .top-box .office-address-bx span {
  display: block;
  font-size: 14px;
  font-family: "Exo2-Bold";
}
#footer .top-box .box.box1 {
  border-right: 1px solid var(--Smokey-Grey);
}
#footer .top-box .box.box2,
#footer .top-box .box.box3 {
  padding-left: 25px;
}
#footer .top-box .newsletter-bx {
  /*padding: 12px 12px;*/
  padding: 0px 12px;
  margin-bottom: 65px;
  /*background-color: var(--Dark-Jungle-Green);*/
  position: relative;
}
#footer .top-box .newsletter-form-bx {
  position: relative;
}
#footer .top-box .newsletter-bx p {
  font-size: 14px;
}
#footer .top-box .newsletter-form-bx .form-control-common {
  font-size: 16px;
  padding: 9px 55px 9px 14px;
  border: 1px solid var(--white);
  position: relative;
}
#footer .top-box .newsletter-form-bx .cmn-btn {
  font-size: 16px;
  color: var(--white);
  /* padding: 13px 12px; */
  background-color: var(--Medium-Electric-Blue);
  position: absolute;
  top: 0;
  right: 0;
}
#footer .top-box .newsletter-form-bx .cmn-btn i {
  color: var(--white);
}
#footer .end-box {
  margin-top: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--Smokey-Grey);
}
#footer .end-box p {
  font-size: 15px;
  font-family: "Rupee-Foradian";
}

/**/
/* .mask {
  box-shadow: 0 0 0 40vw var(--white);
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: -150%;
} */

.mask-container {
  position: absolute;
  clear: none;
  object-fit: cover;
  background-color: #0000;
  /* background-color: rgba(255, 255, 255, 0.9); */
  border: 0 solid #fff;
  border-radius: 0;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  inset: 0%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.mask {
  position: absolute;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  /* box-shadow: 0 0 0 40vw var(--white); */
  box-shadow: 0 0 0 100vw var(--white);
  object-fit: cover;
  display: block;
  /* z-index: 1; */
}

/* New css */
/* Smooth transitions */
/* #home-banner .caption-box,
#home-banner .explore-box,
.mask-container {
  transition: opacity 0.6s ease, transform 0.6s ease;
} */

/* Initially mask hidden */
.mask-container {
  opacity: 0;
  z-index: 1;
  pointer-events: none;

  /* position: absolute;
  inset: 0; 
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 5; */
}

/* .mask {
  width: 100%;
  height: auto;
  max-width: 100%;
  transform: scale(1);
} */

.mask-container.active {
  opacity: 1;
}

/* Logo shrink when scrolling */
.mask.shrink {
  transform: scale(0.15); /* adjust size */
  transition: transform 0.8s ease;
}

/* Fixed mask logo at bottom when banner scroll ends */
.mask-container.fixed {
  position: fixed;
  bottom: 20px;
  top: auto;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  height: auto;
}

/* New Newsletter Css **************************************************************/
#footer .new-btn-bx {
  position: absolute;
  right: 0;
  top: 0;
}
#footer .top-box .newsletter-form-bx .cmn-btn {
  font-size: 16px;
  color: var(--white);
  padding: 10px 12px;
  background-color: var(--Medium-Electric-Blue);
  position: absolute;
  top: 0;
  right: 0;
}
#footer .top-box .newsletter-form-bx .new-btn-bx i {
  position: absolute;
  right: 30%;
  top: 50%;
  color: var(--white) !important;
  cursor: pointer;
}
#footer .top-box .newsletter-form-bx .form-control-common {
  padding: 9px 65px 9px 14px;
}

/* Newsletter Message Css **************/
.wpcf7 form.invalid .wpcf7-response-output {
  font-size: 13px;
  color: var(--white);
  margin: 3px;
}
.wpcf7 form.failed .wpcf7-response-output {
  color: var(--white);
  border: 0;
  margin: 3px;
}

#footer .top-box .newsletter-form-bx .cmn-btn {
  padding: 9px 12px;
}
.new-alignment .wpcf7-form-control-wrap {
  width: 100%;
}

/* Contact Us Modal Css *************************************************/
#contact-modal .modal-content {
  border-radius: 18px;
}
#contact-modal .modal-body {
  padding: 20px 30px 40px 30px;
}
#contact-modal .modal-header {
  padding: 14px 14px 0 0;
  border-bottom: none;
}
#contact-modal .modal-header .btn-close {
  padding: 6px 6px;
  border-radius: 50%;
  background-size: 51% 55% !important;
  border: 1px solid var(--black);
  opacity: 1;
}
#contact-modal .btn-close {
  width: 9px;
  height: 9px;
}
#contact-modal .contact-us-modal .title-box {
  margin-bottom: 34px;
}
#contact-modal .contact-us-modal .title-box h4 {
  font-size: 34px;
  color: var(--Medium-Teal-Blue);
  font-family: "TitilliumWeb-Bold";
}
#contact-modal .contact-us-modal .form-label {
  font-size: 17px;
  color: #231f20 !important;
  margin-bottom: 0.2rem;
  font-family: "Switzer-Regular";
}
#contact-modal .contact-us-modal .cmn-btn.gradient-btn {
  font-size: 20px;
  padding: 9px 36px;
}
#contact-modal .wpcf7-form-control-wrap {
  width: 100% !important;
}
#contact-modal .wpcf7-spinner {
  position: absolute !important;
  margin: 0 auto !important;
  display: block !important;
  top: 50% !important;
  left: 50% !important;
}
#contact-modal .wpcf7 form.invalid .wpcf7-response-output {
  color: var(--black) !important;
  border-color: #ffb900 !important;
}
.wpcf7 form.failed .wpcf7-response-output {
  color: var(--black) !important;
}

/* Thank you Page ***************************************************/
.gradient-text {
  background: linear-gradient(
    90deg,
    rgba(67, 33, 136, 1) 0%,
    rgba(73, 48, 146, 1) 35%,
    rgba(77, 118, 190, 1) 65%,
    rgba(66, 176, 229, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
#thank-you {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90svh;
}
#thank-you .thank-you-box {
  max-width: 460px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 30px;
  text-align: center;
  border-radius: 18px;
  background-color: var(--white);
  box-shadow: rgb(0 0 0 / 0.24) 0 2px 8px;
}
#thank-you .icon-box img {
  max-width: 13%;
  width: 100%;
  margin-bottom: 12px;
}
#thank-you .thank-you-box p {
  font-size: 18px;
  color: #231f20;
  font-family: "Switzer-Regular";
}
#thank-you .thank-you-box h3 {
  font-size: 36px;
  margin-bottom: 6px;
  font-family: "TitilliumWeb-Bold";
}

/* Hide header and footer ***********/
.page-template-template-thank-you #header,
.page-template-template-thank-you #footer {
  display: none;
}

/* inner pages css start 30-08-2025 */

.inner-banner {
  margin-top: -103px;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  position: relative;
}
.inner-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #29292929;
}
.inner-banner .inner-banner-part {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 9;
}

.inner-banner .caption-box {
  text-align: center;
  margin-top: -180px;
}

.inner-banner .caption-box h1 {
  color: var(--white);
  margin-bottom: 0;
  font-family: "TitilliumWeb-Bold";
  line-height: 1;
}
.inner-banner .caption-box h5 {
  color: var(--white);
  font-family: "TitilliumWeb-SemiBold";
  margin-bottom: 0;
}

.inner-banner .explore-box {
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 3;
  animation: zoomInCaption 1.2s ease forwards;
}
.inner-banner .explore-box a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 18px;
}

.inner-banner .explore-box .scroll-icon {
  display: block;
  animation: floatScroll 2s ease-in-out infinite;
}
.inner-banner .explore-box a img {
  max-width: 32%;
  margin: 0 auto;
}

.inner-banner .explore-box a span {
  font-size: 18px;
  color: var(--white);
  font-family: "Switzer-Medium";
}

.our-product {
  padding: 80px 0 150px;
}

.our-product .box {
  position: relative;
  background: url("/wp-content/themes/tairo/assets/images/our-product-bg.png")
    no-repeat;
  background-size: 100% 100%;
}
.our-product .box .img-box {
  overflow: hidden;
}
.our-product .box:hover .img-box img {
  transform: scale(1.1);
}
.our-product .box .img-box img {
  width: 100%;
  transition: 0.5s;
}
.our-product .box .text-box {
  position: absolute;
  bottom: -60px;
  width: 100%;
}
.our-product .box .text-box a {
  background: #3178c5;
  background: linear-gradient(
    159deg,
    rgba(49, 120, 197, 1) 27%,
    rgba(123, 87, 164, 1) 100%
  );
  clip-path: polygon(0 20%, 100% 0%, 100% 100%, 0% 100%);
  width: 100%;
  padding: 25px 10px;
  background-size: 200% 200%;
  background-position: left center;
  animation: gradientMove 4s ease-in-out infinite alternate;
  position: relative;
}

@keyframes gradientMove {
  0% {
    background-position: left center;
  }
  100% {
    background-position: right center;
  }
}
@keyframes btnmove {
  0% {
    left: 0;
    opacity: 1;
  }
  44.44% {
    left: 100%;
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 1;
  }
}
.our-product .box .text-box a::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 50px;
  background-color: #70707054;
  background: #fff;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgb(255 255 255 / 20%) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  top: 0;
  left: 0;
  animation: btnmove 5s ease-in-out infinite;
}
.our-product .box .text-box h5 {
  color: var(--white);
  text-align: center;
  font-family: "TitilliumWeb-SemiBold";
}
.our-product .row {
  row-gap: 110px;
}
.our-services .search-container {
  position: relative;
  margin-bottom: 50px;
}
.our-services .search-container input[type="text"] {
  width: 100%;
  padding: 10px 40px 10px 35px;
  font-size: 16px;
  border: 1px solid var(--Smokey-Grey);
  border-radius: 15px;
  outline: none;
  box-sizing: border-box;
}
.our-services .search-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #555;
  font-size: 18px;
  pointer-events: none;
}
.our-services .clear-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--Medium-Teal-Blue);
  font-size: 25px;
  cursor: pointer;
}
.our-services .box a {
  border-radius: 25px;
  border: 1px solid var(--Smokey-Grey);
  overflow: hidden;
}
.our-services .box .title-box {
  text-align: center;
  padding: 10px 15px;
  min-height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.our-services .box .title-box h6 {
  color: var(--Medium-Teal-Blue);
  font-family: "TitilliumWeb-Bold";
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.our-services .box .info-box {
  position: relative;
  overflow: hidden;
}
.our-services .box .info-box .img-box img {
  width: 100%;
}
.our-services .box a:hover .text-box {
  transform: translateY(0);
  bottom: 0;
}
.our-services .box .info-box .text-box {
  transform: translateY(100%);
  backdrop-filter: brightness(0.5);
  transition: 0.5s;
  position: absolute;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px 10px;
}
.our-services .box .info-box .text-box p {
  color: var(--white);
  font-size: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: "Switzer-Regular";
}
.our-services .row {
  justify-content: center;
  row-gap: 25px;
}


/* Single product Page *************************************************************************/
.product-detail .single-product-box {
  background: url('/wp-content/themes/tairo/assets/images/single-product-bg.png') no-repeat;
  background-size: 100% 100%;
  background-position: center;
  padding: 2% 2%;
}
.product-detail .section-heading h2 {
  margin-bottom: 25px;
}
.product-detail .single-product-box .img-box img {
  margin: 0 auto;
  display: block;
  max-width: 43%;
  width: 100%;
}
.product-detail .specifications {
  padding: 70px 0 60px 0;
}
.product-detail .specifications .row {
  row-gap: 20px;
}
.product-detail .specifications .title {
  margin-bottom: 40px;
}
.product-detail .specifications .title h5 {
  font-size: 32px;
  font-family: "TitilliumWeb-Bold";
}
.product-detail .section-heading p {
  font-size: 20px;
  max-width: 1170px;
}
.product-detail .specifications .box {
  padding: 20px 20px;
  text-align: center;
  height: 100%;
}
.product-detail .specifications .box .img-box {
  width: 80px;
  height: 80px;
  background: #3178c5;
  background: linear-gradient(159deg, rgba(49, 120, 197, 1) 27%, rgba(123, 87, 164, 1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  margin: 0 auto;
  margin-bottom: 15px;
}
.product-detail .specifications .box .img-box img {
  width: 100%;
  max-width: 55%;
}
.product-detail .specifications .box h6 {
  font-size: 24px;
  color: var(--Medium-Teal-Blue);
  font-family: "TitilliumWeb-Bold";
}
.product-detail .specifications .box p {
  font-size: 20px;
}
.product-detail .specifications .button-box {
  padding-top: 80px;
}