
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  /* font-family: "Roboto", sans-serif; */
  font-family: "Poppins", sans-serif;
  color: #272829;

  /* background: linear-gradient(-45deg, #000000, #180000, #000e13, #110a0a);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite; */
  background-color: #000;
	height: 100vh;
}
@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
.black-text{
  color: #000 !important;
}

a {
  color: #b28200;
  text-decoration: none;
}

a:hover {
  color: #067ded;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
 
}
.hv-100{
  height: 100vh;
}
.white-txt{
  color: #fff;
}
h2{

  font-size: 3rem;
}
h3{
  font-size: 2.05rem;
    color: #e8e8e8;
    letter-spacing: 0px;
    font-weight: 200;
    margin-top: 5px;
    position: relative;
    z-index: 2;
    
}
h3 span{
  letter-spacing: 15.1px;
  text-transform: uppercase;
  font-weight: 400;
  background: #f4f4f4;
  color: #000;
  padding: 0px 1px 0 17px;
}
h4{
  font-size: 2rem;
  color: #353535;
  font-weight: 300;
  line-height: 38px;
}
p{
  font-size: 1.2rem;
    color: #424242;
    font-weight: 300;
}
.bx {
  color: #fff;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #b28200;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #e6ae10;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

.more-btn{
  border: 1px solid #333;
    border-radius: 50px;
    font-size: 22px;
    color: #333;
    font-weight: 300;
    text-decoration: none;
    padding: 17px 60px;
    transition: ease all 0.5s;
    position: relative;
    text-transform: uppercase;
    background: #eeeeee96;
}
.more-btn:hover{
  /* background-color: #f00; */
   transform: scaleX(1);
   transform-origin: bottom left;
   position: relative;
   color: #000;
}
.more-btn::before{
  content: "";
    display: block;
    position: absolute;
    top: 0;
    right: unset;
    bottom: 0;
    left: 0px;
    inset: 5px 8px 5px 8px;
    background-color:#fdf603;
    z-index: -1;
    transition: transform .8s ease;
  transform: scaleX(0);
  transform-origin: bottom left;
  border-radius: 50px;
  color: #000;
}
.more-btn:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
  color: #333;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #000000;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #b28200;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 9997;
  transition: all 0.5s;
  padding: 15px;
  overflow-y: auto;
}

@media (max-width: 991px) {
  #header {
    width: 194px;
    background: none;
    border-right: 0;
    left: -300px;
  }
}

@media (min-width: 991px) {
  #main {
    margin-left: 0px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.nav-menu {
  padding: 0;
  display: block;
}

.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu>ul>li {
  position: relative;
  white-space: nowrap;
}

.nav-menu a,
.nav-menu a:focus {
  display: flex;
  align-items: center;
  color: #fff;
  padding: 10px 15px;
  margin-bottom: 8px;
  transition: 0.3s;
  font-size: 15px;
  border-radius: 50px;
  background: #000000;
  border: 2px solid rgba(255, 254, 252, 0.4);
  height: 56px;
  width: 100%;
  overflow: hidden;
  transition: 0.3s;
}

.nav-menu a i,
.nav-menu a:focus i {
  font-size: 20px;
}

.nav-menu a span,
.nav-menu a:focus span {
  padding: 0 5px 0 7px;
  color: #45505b;
}
.nav-link img {
  /* width: 42px; */
  height: 25px;
}
@media (min-width: 992px) {

  .nav-menu a,
  .nav-menu a:focus {
    width: 56px;
  }

  .nav-menu a span,
  .nav-menu a:focus span {
    display: none;
    color: #fff;
  }
}

.nav-menu a:hover,
.nav-menu .active,
.nav-menu .active:focus,
.nav-menu li:hover>a {
  color: #fff;
  background: #e6ae0e;
}

.nav-menu a:hover span,
.nav-menu .active span,
.nav-menu .active:focus span,
.nav-menu li:hover>a span {
  color: #fff;
}

.nav-menu a:hover,
.nav-menu li:hover>a {
  width: 100%;
  color: #fff;
}

.nav-menu a:hover span,
.nav-menu li:hover>a span {
  display: block;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  position: fixed;
  right: 10px;
  top: 10px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 28px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 0;
  cursor: pointer;
  border-radius: 50px;
  padding: 5px;

  background: url(../img/burger-menu.svg) no-repeat center;
    width: 30px;
      height: 30px;
      color: #fff;
}

.mobile-nav-toggle i {
  color: #45505b;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active #header {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle {
  color: #fff;
  background: url(../img/close.svg) no-repeat center;
  background-color: #b28200;
  background-size: 80%;
}

.video-bg{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/hero-bg.jpg") top right no-repeat;
  background-size: contain;
  position: relative;
  background-color: #000;

  background-image: url('../img/hero-bg.jpg');
  background-repeat: no-repeat;
  background-position: top right;
  background-image: -webkit-image-set(url('../img/hero-bg.webp'));

  
}



@media (min-width: 992px) {
  #hero {
    padding-left: 160px;
  }
}


#hero:before {
  content: "";
  background: rgb(1 0 0 / 0%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
.size-4{
  font-size: 4.5rem;
}
 h1 {
  margin: 0;
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 56px;
  color: #ccc;
  /* position: relative; */
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: -2px;
  background-image: url('../img/txt-bg.jpg');
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: moveFlag 5s linear infinite;
}

@keyframes moveFlag {
  from {
    background-position: 50% 0%;
  }
  to {
    background-position: 50% 100%;
  }
}


h1 span{
  /* font-size: 4rem; */
  font-weight: 300;
  margin: 0;
  font-weight: 300;
  line-height: 56px;
  color: #eee;
  z-index: 2;
  display: inline-block;
  /* background-color: #791e04; */
  padding: 6px 4px 2px 4px;
  text-transform: uppercase;

  /* background-image: url('../img/txt-bg.jpg'); */
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: moveFlag 3s linear infinite;
}

@keyframes moveFlag {
  from {
    background-position: 50% 0%;
  }
  to {
    background-position: 50% 100%;
  }
}

#hero p {
  color: #45505b;
  margin: 15px 0 0 0;
  font-size: 26px;
  font-family: "Poppins", sans-serif;
}

#hero p span {
  color: #b28200;
  letter-spacing: 1px;
}

#hero .social-links {
  margin-top: 30px;
}
.social-links img {
  height: 20px;
}

#hero .social-links a {
  font-size: 24px;
  display: inline-block;
  color: #45505b;
  line-height: 1;
  margin-right: 20px;
  transition: 0.3s;
}

#hero .social-links a:hover {
  color: #b28200;
}

@media (max-width: 992px) {
  #hero {
    text-align: center;
  }

  #hero h1 {
    font-size: 32px;
    line-height: 36px;
  }

  #hero p {
    margin-top: 10px;
    font-size: 20px;
    line-height: 24px;
  }
}



/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #45505b;

}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #b28200;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}
.pt-100{
  padding-top: 100px;
  padding-bottom: 100px;
}
.portfolio-img img{
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 20px;
  box-shadow: 0 0 10px #eee;
}
.pt-150{
  padding-top: 150px !important;
}




/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about-box{
  width: 100%;
    display: inline-block;
    border-radius: 2px 2px 2px 2px;
    background: #ffffff;
    padding: 5% 8%;
    position: relative;
    box-shadow: 0 0 20px #27484100;
}
.about-boximg{
  position: absolute;
  left: 0;
  top:0;
}

.about{
  /* background: url(../img/about-bg.jpg) no-repeat 0% 0; */
  /* background-color: #eee; */
  background-size: cover;
  min-height: 70vh;
  /* padding: 5%; */
  position: relative;
}
#about{
  position: relative;
    
    background-color: #eee;
    height: 100%;
}
#about::before{
  width: 100%;
  height: 100%;
  position: absolute;
  display: inline-block;
  content: "";
  background: url(../img/about-bg.png) no-repeat 100% 100%;
    background-size: 39%;
  left: unset;
  right: 0;
  bottom: 0;
  background-attachment: fixed;
  z-index: 0;
}
.about-bg{
  /* background: url(../img/about-bga.jpg) repeat-x 0% 0; */
  background-size: cover;
  /* background: #9ddfdf; */
}
.about .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #728394;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.about .content ul strong {
  margin-right: 10px;
}

.about .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: #b28200;
  line-height: 0;
}

.about .content p:last-child {
  margin-bottom: 0;
}
.about-div{
  /* background: rgb(0 0 0 / 50%); */
    padding: 30px !important;
    border-radius: 10px;
}

.skills{}
.skills ul{
  margin: 0;
  padding: 0;
  float: left;
}
.skills li{
  list-style: none;
  margin: 0 10px 10px 0;
  padding: 4px 15px;
  float: left;
  border: 1px solid #333;
  border-radius: 10px;
  font-size: 2rem;
  font-weight: 300;
  text-transform: capitalize;
  color: #222;
}

.flash-news {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  padding-bottom: 25px;
}

.news-track {
  display: flex;
  width: max-content;
  animation: scrollNews 30s linear infinite;
}

.flash-news:hover .news-track {
  animation-play-state: paused;
}

.news-track span {
  padding-right: 15px; /* spacing between loops */
}

@keyframes scrollNews {
  0% {
    transform: translateX(0);        /* 👈 start from left */
  }
  100% {
    transform: translateX(-50%);     /* 👈 half width because duplicated */
  }
}


/* My work ----------------- */

.portfolio-bg{
  background: url(../img/black-bg-a.jpg) no-repeat right bottom;
  background-color: #000 !important;
  background-size: cover;
  position: relative;
}
.portfolio-div{
  width: 90%;
  display: inline-block;
  margin-left: 5%;
}
.portfolio-div img{
  width: 100%;
  border-radius: 10px;
}
.portfolio-div h2{
  font-size: 30px;
    font-weight: 300;
  text-transform: capitalize;
  margin-bottom: 5px;
  position: relative;
  color: #eee;
  letter-spacing: -0.5px;
}
.portfolio-div h3{
  font-size: 20px;
  font-weight: 400;
  text-transform: capitalize;
  margin-bottom:10px;
  position: relative;
  color: #adadad;
  letter-spacing: 0px;
}
.portfolio-div p{
  font-size: 16px;
  font-weight: 200;
  text-transform: capitalize;
  margin-bottom: 20px;
  position: relative;
  color: #bbbbbb;
}

.btn-icon {
  transition: all 0.3s ease;
  border-radius: 9999px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.btn-icon svg {
  transition: transform 0.3s ease;
}
.btn-icon:hover, .group:hover .btn-icon {
            background-color: #f02e46;
            border-color: #f02e46;
            color: #0a0a0a;
            transform: none; 
        }
        .btn-icon:active {
          transform: scale(0.95);
          background-color: #ffffff;
          border-color: #ffffff;
      }
      
      .btn-icon-plain:hover {
          background-color: #f02e46;
          border-color: #f02e46;
          color: #0a0a0a;
      }
      .btn-icon-plain:active {
          transform: scale(0.9);
          background-color: #ffffff;
          border-color: #ffffff;
      }  
      
      @keyframes fly-arrow {
        0% { transform: translate(0, 0); opacity: 1; }
        25% { transform: translate(100%, -100%); opacity: 0; } /* Exit top-right */
        26% { transform: translate(-100%, 100%); opacity: 0; } /* Teleport to bottom-left */
        100% { transform: translate(0, 0); opacity: 1; }       /* Enter over the remaining 75% of time */
    }
    
    /* Apply animation to View All Projects button hover */
    .btn:hover svg {
        animation: fly-arrow 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    }

 /* Apply animation to Work Card Arrows on card hover */
 .group:hover .btn-icon svg, .btn-icon:hover svg {
  animation: fly-arrow 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}      

.flex {
  display: flex;
}
.h-10 {
  height: 2.5rem;
}
.h-10 {
  height: 2.5rem;
}
.w-5 {
  width: 1.25rem;
}
.h-5 {
  height: 1.25rem;
}
.shrink-0 {
  flex-shrink: 0;
}
.rounded-full {
  border-radius: 9999px;
}
.border-gray-700 {
  --tw-border-opacity: 1;
  border-color: rgb(55 65 81 / var(--tw-border-opacity, 1));
}
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.client-div img{
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  filter: grayscale(1);
}
.client-div img:hover{
  filter: grayscale(0);
}

/**===============================
        Parallax
===============================**/
.my-work img {
  --parallax: .1; /* Parallax factor */
  --radius: 1rem; /* Radius */
  --parallax-position: calc(100%*var(--parallax)/(1 + var(--parallax)));
  --angle: calc(90deg*var(--parallax));
  cursor: pointer;
  aspect-ratio: calc(1 + var(--parallax));
  width: 22rem;
  height: 26rem;
  clip-path: inset(0 var(--parallax-position) 0 0 round var(--radius));
  object-fit: cover;
  transform: perspective(40rem) var(--x-axis, rotateY(var(--angle)));
  transition: 0.5s;
  /**===============================
          Hover
  ===============================**/
}
.my-work img:hover {
  clip-path: inset(0 0 0 var(--parallax-position) round var(--radius));
  --x-axis:translateX(calc(-1*var(--parallax-position))) rotateY(calc(-1*var(--angle))) ;
}

/**===============================
      Styles
===============================**/


.my-work .img-wrapper {
  display: grid;
  place-content: center;
  grid-auto-flow: column;
  gap: 2rem;
}

.my-work .heading-wrapper {
  display: flex;
  margin: 0 0 2.4rem 0;
  justify-content: center;
  color: white;
  font-size: 2.4rem;
  font-family: "Gill Sans", sans-serif;
}

/* ENd MY work ----------------- */


/*--------------------------------------------------------------
# Facts
--------------------------------------------------------------*/
.facts .count-box {
  padding: 30px 30px 25px 30px;
  margin-top: 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #fff;
}

.facts .count-box i {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: #b28200;
  color: #fff;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

.facts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #011426;
}

.facts .count-box p {
  padding: 0;
  margin: 0;
 
  font-size: 14px;
}

.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #b28200;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #b28200;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(69, 80, 91, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  padding: 70px 20px 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.05);
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}

.services .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .icon-box h4 a {
  color: #45505b;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}

.services .iconbox-blue i {
  color: #47aeff;
}

.services .iconbox-blue:hover .icon i {
  color: #fff;
}

.services .iconbox-blue:hover .icon path {
  fill: #47aeff;
}

.services .iconbox-orange i {
  color: #ffa76e;
}

.services .iconbox-orange:hover .icon i {
  color: #fff;
}

.services .iconbox-orange:hover .icon path {
  fill: #ffa76e;
}

.services .iconbox-pink i {
  color: #e80368;
}

.services .iconbox-pink:hover .icon i {
  color: #fff;
}

.services .iconbox-pink:hover .icon path {
  fill: #e80368;
}

.services .iconbox-yellow i {
  color: #ffbb2c;
}

.services .iconbox-yellow:hover .icon i {
  color: #fff;
}

.services .iconbox-yellow:hover .icon path {
  fill: #ffbb2c;
}

.services .iconbox-red i {
  color: #ff5828;
}

.services .iconbox-red:hover .icon i {
  color: #fff;
}

.services .iconbox-red:hover .icon path {
  fill: #ff5828;
}

.services .iconbox-teal i {
  color: #11dbcf;
}

.services .iconbox-teal:hover .icon i {
  color: #fff;
}

.services .iconbox-teal:hover .icon path {
  fill: #11dbcf;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #90c8fc;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #b28200;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #b28200;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

#testimonialCarousel .carousel-inner {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
}

#testimonialCarousel .carousel-inner::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

#testimonialCarousel .carousel-item {
  flex: 0 0 auto;
  width: 35%;
}
.carousel-control-prev,
.carousel-control-next {
  display: none;
}


#testimonialCarousel .carousel-inner {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: auto;
  scrollbar-width: none;
}

#testimonialCarousel .carousel-inner::-webkit-scrollbar {
  display: none;
}

#testimonialCarousel .carousel-item {
  flex: 0 0 85%; /* mobile card width */
}

@media (min-width: 576px) {
  #testimonialCarousel .carousel-item {
    flex: 0 0 33.333%;
  }
}




/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #b28200;
  float: left;
  width: 44px;
  height: 44px;
  background: #eef7ff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #45505b;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #728394;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #b28200;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email] {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #b28200;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #0678e3;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #000;
  color: #45505b;
  font-size: 14px;
  text-align: center;
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

#footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}
#footer h4 {
  font-size: 2rem;
  font-weight: 200;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
  color: #eee;
}
#footer h4 a{
  font-size: 2rem;
  font-weight: 200;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
  color: #eee;
}
#footer h4 img{
  width: 35px;
}
#footer p {
  font-size: 14px;
  font-style: normal;
  padding: 0;
  margin: 0 0 40px 0;
}

#footer .social-links {
  margin: 0 0 40px 0;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #000;
  color: #bcbcbc;
  border: 1px solid #eee;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #b28200;
  color: #fff;
  text-decoration: none;
}
a.twitter {
  line-height: 20px !important;
}

.x-ic{
  width: 14px;
  display: inline-block;
  margin-top: -5px;
}

#footer .copyright {
  margin: 0 0 5px 0;
}

#footer .credits {
  font-size: 13px;
}



/* gallery-horizontal-scroll _____________________________________________*/


* {
  margin: 0;
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  display: none;
}
body {
  margin: 0;
}

.scroll {
  position: relative;
  width: 82vw;
    float: right;
  /* background-color: #eee; */
  overflow: hidden;
  z-index: 1;
  margin: 0;
  padding: 0;
}

.m-scroll {
  overflow: hidden;
  height: 100%;
  white-space: nowrap;
  animation: scrollText 10000s infinite linear;
  margin: 0;
  font-size: 0;
  /* display: flex; */
  justify-content: space-between;
  width: 450%;
  padding: 50px;
}

.m-scroll>span {
  display: inline-block;
    margin: 0;
    padding: 0;
    color: white;
    width: 260px;
    height: 260px;
    /* border: 1px solid #eee; */
    padding: 20px 6px;
    margin: 10px;
    /* box-shadow: 0 0 10px rgb(195, 195, 195, 0.5); */
  
    padding: 35px;
    border-radius: 0%;
    background: #fff;
    position: relative;
}
.m-scroll>span img {
  width: 100%;
  border-radius: 30%;
  opacity: 0.95;
}
.m-scroll>span img:hover{
  opacity: 1;
}
.m-scroll>span::before{
  width: 30%;
    height: 300px;
  /* border-radius: 100%; */
  /* border: 2px #eee dashed; */
  display: block;
  content: "";
  position: absolute;
  top: -2%;
    right: -2%;
}

@keyframes scrollText {
  from {
    transform: translateX(5%);
  }
  to {
    transform: translateX(-64%);
  }
}


.testimoni-div{
  width: 20%;
  float: left;
  background-color: #ff5828;
  margin-right: 20px;
}

.carousel img {
  width: 70px;
  max-height: 70px;
  border-radius: 50%;
  margin-right: 1rem;
  overflow: hidden;
}
.carousel-inner {
  padding: 1em;
}

@media screen and (min-width: 576px) {
  .carousel-inner {
    display: flex;
    width: 100%;
    margin-inline: auto;
    padding: 1em 0;
    overflow: hidden;
  }
  .carousel-item {
    display: block;
    margin-right: 0;
    flex: 0 0 calc(100% / 2);
  }
}
@media screen and (min-width: 768px) {
  .carousel-item {
    display: block;
    margin-right: 0;
    flex: 0 0 calc(100% / 3);
  }
}
.carousel .card {
  margin: 0 0.5em;
  border: 0;
}

.carousel-control-prev,
.carousel-control-next {
  width: 3rem;
  height: 3rem;
  background-color: #d4d4d4;
    border-radius: 27%;
  top: 50%;
  transform: translateY(-50%);
}











.scroll-slider {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
  height: 100vh;
}
.scroll-wrapper {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  height: 100%;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.scroll-slide {
  flex: 1 0 75vw;
  max-width: 75vw;
  height: 100%;
}
.item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80%;
}
.item-container {
  position: relative;
}
.item-title {
  font-size: 4vw;
  font-weight: bold;
  line-height: 1;
  text-shadow: 0 0 5px #000;
}
@media (min-width: 40em) {
  .item-body {
    position: absolute;
    left: 100%;
    top: 50%;
    width: 50%;
    transform: translate(-25%, -50%);
 }
}
.tag {
  margin-right: 0.5rem;
}
.tag > a {
  display: block;
    padding: 0.50rem 1.9rem;
    font-size: 1rem;
    text-transform: capitalize;
    font-weight: 400;
    background: rgb(0 0 0 / 69%);
    color: #fff;
    border: 1px solid #fff;
    border-radius: 2px;
}
.tag > a:hover {
  background: rgba(239, 186, 9, 0.69);
  color: #000;
}
.bg-dark{
  background-color: #000 !important;
}

/* paralax_________________________ */

.parallax-slide {
  height: 100vh;
}
.content-slide {
  height: 100vh;
  background: #fff;
  text-align: center;
}
h1 {
  padding-top: 5%;
}


#parallax1 {
  background: url(../img/fog-new.png) no-repeat 0% 0%;

  /* background-image: -webkit-image-set(url('../img/hero-bg.webp')); */

  background-repeat: no-repeat;
  background-position: 0% 0%;
  background-attachment: fixed;
  background-size: cover;
  position: relative;
  /* background-color: #000; */
  /* z-index: 10; */
  width: 100%;
  height: 100vh;
}
#parallax1::before {
  width: 100%;
  height: 100vh;
  
  background-image: url('../img/hero-bg.png');
  background-position: -10% 0%;
  background-repeat: no-repeat;
  background-size: contain;
  display: none;
  content: "";
  position: absolute;
  z-index: 0;
} 
#parallax1::after {
  width: 100%;
  height: 100vh;
  /* background-color: rgba(0, 0, 0, 0.4); */
  background-image: url('../img/hero-bg.png');
  background-position: -10% 0%;
    background-repeat: no-repeat;
    background-size: contain;
  display: block;
  content: "";
  position: fixed;
  z-index: 0;
} 
.z-10{
  z-index: 10;
  position: relative;
}
.fog-div{
  /* background: url(../img/fog-bg.png) no-repeat 0% 0%; */
  background-size: cover;
    width: 100%;
    height: 100vh;
    position: absolute;
    z-index: -1;
    opacity: 0.5;
}

.pb-50{
  padding-bottom: 50px;
}
.pb-100{
  padding-bottom: 100px;
}
.pb-150{
  padding-bottom: 150px;
}




/* textmovemnt------- */

.spancediv{
  height:300px;  
  border-radius:30px;
  color:#fff;
  font-size:50px;
  text-align:center;
  display:flex;
  align-items:center;
  justify-content:center;
}

.big-title,.big-titles,.big-titlesw{
  font-size: 12rem;
    position: absolute;
    left: 10px;
    white-space: nowrap;
    right: 81vw;
    margin: 0;
    padding: 0;
    bottom: 23px;
    z-index: -1;
    color: #274841;
    text-shadow: 0px 0px 2px #ffffff;
    /* */
    text-transform: uppercase;
}
img.tp-arw {
  height: 19px;
}



/* ---- FOrm ------/ */

.free-quote .form-control {
	background: none;
	color: #737d83;
	height: 50px;
  margin-bottom: 50px;
  font-size: 20px;
  font-weight: 200;
	text-align: left;
	padding: 6px;
	border: 0;
    border-bottom: 1px solid #737d83;
  }
  select#countrycode {
    font-size: 20px;
    color: #737d83;
    font-weight: 200;
}

  .h-80{
	height: 70px !important;
  }
  .form-control {
	height: 43px;
	border-radius: 0;
  }
  .free-quote .form-control:focus {
	border: 2px solid #fff;
  }
  .free-quote h3{
	font-size: 23px;
	font-weight: 500;
	color: #ecbb4a;
	line-height: 24px;
  }
  .free-quote-new{
	background-color: #2c2c2c !important;
  } 
.free-quote p{
	text-align: left;
	font-weight:normal;
	line-height: 10px;
	font-size: 1.3rem;
}

.form-control::placeholder {
	color: #ccc;
}

.mb-0{
	margin-bottom: 0 !important;
}

.enquire-btn {
	background-color: #000;
	text-transform: capitalize;
	padding: 9px 60px !important;
	border-radius: 4px !important;
	color: #fff !important;
	letter-spacing: 0;
	border: 0;
	font-size: 1.1rem;
	width: 100%;
	position:relative;
	font-family: "Montserrat", sans-serif;
	text-transform: uppercase;
	font-weight: 600;
  border: 1px solid #ccc;
  }
  .enquire-btn:hover {
	background-color: #dfdfdf;
	color: #fff !important;
  }
  .mail-pop{
	position: fixed;
	left: 35%;
	top: 33%;
	margin: 0 auto;
	height: 350px;
	width: 30%;
	z-index: 99999;
	border-radius: 5px;
	padding:40px 50px 40px;
	text-align: right;
	background: url(../img/send.png) no-repeat 97% 106%;
	background-color: #fff;
	background-size: 28%;
	box-shadow: 0 0 20px #232121;
	text-align:center;
  }
  
  .mail-pop h4{
	margin-top: 10%;
	color: #a58338;
	font-size: 2.3rem;
	text-align: center;
	font-weight: 700;
	line-height: 46px;
	direction: rtl;
  }
  .close-pop{
   width:50px;
	position:absolute; 
	right:10px;
	top:10px;
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1;
	color: #333;
	opacity:1;
	z-index: 99999;
  }
  .close-pop:hover{
	 color: #000;
  }




     /* Loader spinner styles */
     .loader {
		border: 2px solid #f4b636;
		border-top: 3px solid #000;
		border-radius: 50%;
		width: 15px;
		height: 15px;
		animation: spin 1s linear infinite;
		position: absolute;
		top: 37%;
		left: 12%;
		transform: translate(-50%, -50%); /* Center it */
		display: none; /* Hidden by default */
	  }
	  .loader-bottom {
		border: 2px solid #f4b636;
		border-top: 3px solid #000;
		border-radius: 50%;
		width: 15px;
		height: 15px;
		animation: spin 1s linear infinite;
		position: absolute;
		top: 37%;
		left: 12%;
		transform: translate(-50%, -50%); /* Center it */
		display: none; /* Hidden by default */
	  }
	  .loader-pop {
		border: 2px solid #f4b636;
		border-top: 3px solid #000;
		border-radius: 50%;
		width: 15px;
		height: 15px;
		animation: spin 1s linear infinite;
		position: absolute;
		top: 37%;
		left: 12%;
		transform: translate(-50%, -50%); /* Center it */
		display: none; /* Hidden by default */
	  }
	  .loader-sm {
		border: 2px solid #f4b636;
		border-top: 3px solid #000;
		border-radius: 50%;
		width: 15px;
		height: 15px;
		animation: spin 1s linear infinite;
		position: absolute;
		top: 37%;
		left: 12%;
		transform: translate(-50%, -50%); /* Center it */
		display: none; /* Hidden by default */
	  }
	  .loader-top {
		border: 2px solid #f4b636;
		border-top: 3px solid #000;
		border-radius: 50%;
		width: 15px;
		height: 15px;
		animation: spin 1s linear infinite;
		position: absolute;
		top: 37%;
		left: 12%;
		transform: translate(-50%, -50%); /* Center it */
		display: none; /* Hidden by default */
	  }
	  
	  
	  /* Keyframes for the spin animation */
	  @keyframes spin {
		0% {
			transform: rotate(0deg);
		}
		100% {
			transform: rotate(360deg);
		}
	  }

/* --- END Form -----/ */


/* rotation----------------- */

#circle {
  position: absolute;
  width: 40%;
  overflow: hidden;
  top: -92%;
  left: -13%;
  z-index: revert-layer;
 }

#circle text { 
  font-size: 13px;
    font-weight: normal;
    letter-spacing: 5px;
}

#circle svg {     
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;

  -webkit-animation-name: rotate;
     -moz-animation-name: rotate;
      -ms-animation-name: rotate;
       -o-animation-name: rotate;
          animation-name: rotate;
  -webkit-animation-duration: 30s;
     -moz-animation-duration: 30s;
      -ms-animation-duration: 30s;
       -o-animation-duration: 30s;
          animation-duration: 30s;
  -webkit-animation-iteration-count: infinite;
     -moz-animation-iteration-count: infinite;
      -ms-animation-iteration-count: infinite;
       -o-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
     -moz-animation-timing-function: linear;
      -ms-animation-timing-function: linear;
       -o-animation-timing-function: linear;
          animation-timing-function: linear;

}

@-webkit-keyframes rotate {
    from { -webkit-transform: rotate(360deg); }
    to { -webkit-transform: rotate(0); }
}
@-moz-keyframes rotate {
    from { -moz-transform: rotate(360deg); }
    to { -moz-transform: rotate(0); }
}
@-ms-keyframes rotate {
    from { -ms-transform: rotate(360deg); }
    to { -ms-transform: rotate(0); }
}
@-o-keyframes rotate {
    from { -o-transform: rotate(360deg); }
    to { -o-transform: rotate(0); }
}
@keyframes rotate {
    from { transform: rotate(360deg); }
    to { transform: rotate(0); }
}



/* End Rotation--------------- */


.award{
  position: relative;
  background: url(../img/award-bg.jpg) no-repeat left top;
  background-size: cover;
  background-color: #24272a;
}
.award::after{
  width: 100%;
  height: 100%;
  display: block;
  content: "";
  position: absolute;
  left: 5%;
  bottom: 0;
  /* background: url(../img/reward.png) no-repeat 0% 100%; */
  z-index: 1;
  
}
#news{
  z-index: 2;
    position: relative;
}

/* ===== media query ======= */

@media screen and (min-width: 768px) {
  .mob-news{
    display: none;
  }
}
@media screen and (max-width: 1500px) {
  .scroll {
    position: relative;
    width: 80vw;
    float: right;
  }
}
@media screen and (max-width: 1024px) {
  #circle{
    display: none;
  }
  #parallax1 {
    /* background: url(../img/hero-bg.jpg) no-repeat right; */
    /* background-attachment: fixed;
    background-size: cover;
    background-position: 76% 98%; */
  }
  section#parallax1 h1 {
    margin-top: 82%;
    font-size: 3rem;
    line-height: 43px;
  }
  .bi-list::before {
    /* content: "\f479";
    
    font-size: 40px; */
    /* background: url(../img/burger-menu.svg) no-repeat center;
    width: 30px;
      height: 30px;
      color: #fff; */
    
}
#about {
  position: relative;
  padding-bottom: 150px !important;
}
.abt-img{
  width: 50%;
  margin: 0 auto;
}
}

@media screen and (max-width: 767px) {
  .carousel-control-prev,
.carousel-control-next {
  display: block;
}
  #testimonialCarousel .carousel-item {
    flex: 0 0 auto;
    width: 100%;
  }
  #about::before {
    background: url(../img/about-bg.png) no-repeat 100% 100%;
    background-size: 90%;
  }
  
  #parallax1{
    justify-content: start !important;
    padding: 0;
  }
  #parallax1::after {
    background-position: 60% 102%;
        background-repeat: no-repeat;
        background-size: 200%;
  }
  section#parallax1 h1 {
    margin-top: 0%;
    font-size: 2.8rem;
    letter-spacing: -0.4px;
    line-height: 43px;
  }
  section#parallax1 h3 {
    font-size: 1.29rem;
    color: #e8e8e8;
    letter-spacing: 0px;
    font-weight: 300;
  }
  section#parallax1 h3 span {
    letter-spacing: 10px;
    text-transform: uppercase;
    font-weight: 400;
    padding: 0px 1px 0 11px;
  }
 
  .scroll-slider{
    display: none;
  }
  .item-title {
    font-size: 5vw;
    margin-top: 19px;
    margin-left: 20px;
    letter-spacing:1px;
  }
  ul.nav.tags {
    margin-bottom: 20px;
    margin-left: 20px;
  }
  .size-4 {
    font-size: 2.5rem;
    letter-spacing: -1.5px;
}
  h1 {
    margin: 0;
    font-size: 3.4rem;
    line-height: 46px;
  }
  h1 span{
    margin: 0;
    font-size: 2.3rem;
  }
  h2{
    font-size: 2rem;
    font-weight: 200;
    line-height: 33px;
  }
  h2 span {
    font-size: 2.5rem;
    font-weight: 500;
  }
  #footer h4 a {
    font-size: 1.4rem;
    font-weight: 200;
    float: left;
}
#footer h4 img {
  width: 25px;
  margin-right: 6px;
}
.free-quote {
  margin-top: 40px;
}
.free-quote .form-control {
  height: 45px;
  margin-bottom: 25px;
  font-size: 20px;
}
select#countrycode {
  font-size: 20px;
  color: #737d83;
  font-weight: 200;
}
.m-scroll>span {
    width: 250px;
    height: 250px;
}
.pb-100 {
  padding-bottom: 50px;
}
  .m-scroll{
    animation: scrollText 25s infinite linear;
    margin: 0;
    font-size: 0;
    /* display: flex; */
    justify-content: space-between;
    width: 2300%; 
  }
  .m-none{
    display: none !important;
  }
  #about {
    position: relative;
    padding-bottom: 39px !important;
    padding-top: 70px !important;
}
.scroll{
  z-index: 9999;
  width: 90vw;
}
.award {
  padding: 50px 17px 20px !important;
}
.award::after {
  background-size: contain;
}
h2.text-center.text-white.pb-4 {
  padding-bottom: 200px !important;
}
footer h1 {
  overflow: hidden;
}
}

@media screen and (max-width: 389px) {
  #parallax1::after {
    background-position: 59% 135%;
    background-repeat: no-repeat;
    background-size: 200%;
  }
}
