/**
* Template Name: Valera
* Updated: Mar 10 2023 with Bootstrap v5.2.3
* Template URL: https://bootstrapmade.com/valera-free-bootstrap-theme/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #000000;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

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

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



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

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #EBA694;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

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

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

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

/*--------------------------------------------------------------
# Header
  background: rgba(21, 5, 23, 0.25);

--------------------------------------------------------------*/
#header {
  background-image: linear-gradient(#A36E70, #E7AAA6);
  transition: all 0.5s;
  z-index: 997;
  position: relative;
  height: 70px;
}

@media (max-width: 992px) {
  #header {
    height: 60px;
  }
}

#header.fixed-top,
#header.header-inner-pages {
  background: rgba(21, 5, 23, 0.8);
}

#header.fixed-top {
  position: fixed;  /*change to fixed if want header top */
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 40px;
}

.scrolled-offset {
  margin-top: 70px;
}

@media (max-width: 991px) {
  .scrolled-offset {
    margin-top: 60px;
  }
}

/*--------------------------------------------------------------
# Header Social Links
--------------------------------------------------------------*/
.header-social-links {
  padding-left: 20px;
}

.header-social-links a {
  color: rgba(255, 255, 255, 0.6);
  margin-left: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.header-social-links a i {
  line-height: 0;
}

.header-social-links a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .header-social-links {
    padding: 0 15px 0 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  white-space: nowrap;
  padding: 10px 30px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 19px;
  font-weight: 600;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -7px;
  left: 0;
  background-color: #ff7f5d;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #fff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 12px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.9s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #150517;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #ff7f5d;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: -370%;  /* for upside use "-370" or default 100% */
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/* New Css for droptop */

.navbar .droptop ul {
  display: block;
  position: absolute;
  left: 12px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.9s;
}

.navbar .droptop ul li {
  min-width: 200px;
}

.navbar .droptop ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #150517;
}

.navbar .droptop ul a i {
  font-size: 12px;
}

.navbar .droptop ul a:hover,
.navbar .droptop ul .active:hover,
.navbar .droptop ul li:hover>a {
  color: #ff7f5d;
}

.navbar .droptop:hover>ul {
  opacity: 1;
  top: 100%;  /* for upside use "-370" or default 100% */
  visibility: visible;
}

.navbar .droptop .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .droptop .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .droptop .dropdown ul {
    left: -90%;
  }

  .navbar .droptop .dropdown:hover>ul {
    left: -100%;
  }
}

/* end droptop */



/* New Css for droptop 2 */

.navbar .dropdown2 ul {
  display: block;
  position: absolute;
  left: 72px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.9s;
}

.navbar .dropdown2 ul li {
  min-width: 200px;
}

.navbar .dropdown2 ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #150517;
}

.navbar .dropdown2 ul a i {
  font-size: 12px;
}
.navbar .dropdown2:hover>ul {
  opacity: 1;
  top: -370%;  /* for upside use "-370" or default 100% */
  visibility: visible;
}

.navbar .dropdown2 .dropdown2 ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown2 .dropdown2:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown2 .dropdown2 ul {
    left: -90%;
  }

  .navbar .dropdown2 .dropdown2:hover>ul {
    left: -100%;
  }
}

.navbar .droptop2 ul {
  display: block;
  position: absolute;
  left: 72px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.9s;
}

.navbar .droptop2 ul li {
  min-width: 200px;
}

.navbar .droptop2 ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #150517;
}

.navbar .droptop2 ul a i {
  font-size: 12px;
}

.navbar .droptop2 ul a:hover,
.navbar .droptop2 ul .active:hover,
.navbar .droptop2 ul li:hover>a {
  color: #ff7f5d;
}

.navbar .droptop2:hover>ul {
  opacity: 1;
  top: 100%;  /* for upside use "-370" or default 100% */
  visibility: visible;
}

.navbar .droptop2 .dropdown2 ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .droptop2 .dropdown2:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .droptop2 .dropdown2 ul {
    left: -90%;
  }

  .navbar .droptop2 .dropdown2:hover>ul {
    left: -100%;
  }
}

/* end droptop2 */



/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #150517;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #ff7f5d;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #ff7f5d;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section

  background: url("../img/hero-bg.jpg") top center;
    width: 100%;

--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-size: cover;
  position: relative;
  margin-bottom: -70px;
}

.background-video {
  height: 100%;
  width: 100%;
    position: absolute;
    background-size: cover;
    top: 0;
    left: 0;
    object-fit: cover; 

    
/*     width: 100vw;
      height: 100vh;
      object-fit: cover;
      position: relative;
      top: 0;
      left: 0;
      z-index: -1;*/


}

@media  (min-width: 1400px) and (max-width: 1600px) {
  .background-video {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 115vh;
   }
}

@media (max-width: 992px) {
  #hero {
    margin-bottom: -60px;
  }
}
@media (max-width: 2266px) {
  .background-video {
    width: 100%;
    height: 141vh;
    position: absolute;
    background-size: cover;
   }
}

#hero:before {
  content: "";
/*  background: rgba(21, 5, 23, 0.5) linear-gradient(rgba(26, 0, 33, 0.5) 0%, rgba(26, 0, 33, 0.5) 5%, rgba(38, 6, 51, 0.5) 40%, rgba(147, 47, 69, 0.7) 76%, rgba(236, 97, 93, 0.7) 94%, rgba(236, 97, 93, 0.5) 100%) repeat scroll 0% 0%;*/
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0px;
  right: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#hero h1 {
  margin: 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
}

#hero h2 {
  color: #eee;
  margin: 15px 0 0 0;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 40px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 30px;
  border: 2px solid #fff;
  color: #fff;
}

#hero .btn-get-started:hover {
  background: #ff7f5d;
  border: 2px solid #ff7f5d;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 30px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

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

.section-bg {
  background-color: #fafafa;
}

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

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

.section-title p {
  margin-bottom: 0;
  color: #919191;
  font-size: 14px;
}

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

https://techmonkshub.com/akaya/ecohosting/assets/img/hero/hero_banner_about.png
https://techmonkshub.com/akaya1/assets/img/about_bgt.png
--------------------------------------------------------------*/
.bg_about{
    background-position: center;
    background-size: cover;
    height: 100vh;
    background-repeat: no-repeat;
    background-image: url(https://techmonkshub.com/akaya1/assets/img/about_akaya.png);
}

.title {
    display: block;
    padding: 8px 85px 30px;
    text-decoration: none;
    font-family: "Poppins";
    color: #080808;
    font-weight: 700;
    font-size: 25px;
    margin-top:12%;
    letter-spacing: 0.1em;
    border-right: 0px solid #000000; 
}
.p1 {
    display: block;
    text-decoration: none;
    font-family: "Poppins";
    color: #080808;
    font-size: 15px;
    text-indent: 50px;
    padding-left:50px;
    font-style: normal;
    font-weight: 380;
    line-height: 30px;
    text-align: left;
}


@media  (min-width: 1800px) and (max-width: 2600px) {
.title_margin_top { margin-top:0%; }
.p1 { font-size: 14px; }
}

@media  (min-width: 1400px) and (max-width: 1799px) {
.title_margin_top { margin-top:5%; }
.p1 { font-size: 14px; }
}

@media  (min-width: 1200px) and (max-width: 1399px) {
.title_margin_top { margin-top:7%; }
.p1 { font-size: 13px; }
}

@media  (min-width: 1000px) and (max-width: 1199px) {
.title_margin_top { margin-top:8%; }
.p1 { font-size: 13px; }
}


.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

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

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li+li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #ff7f5d;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: #ff7f5d;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #ff7f5d;
}

.about .content .btn-learn-more:hover {
  background: #ff7f5d;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Project 
https://techmonkshub.com/akaya/ecohosting/assets/img/hero/hero_banner_akaya_one.png
--------------------------------------------------------------*/
.bg_project{
    background-position: center;
    background-size: cover;
    height: 100vh;
    background-repeat: no-repeat;
    background-image: url(https://techmonkshub.com/akaya1/assets/img/project.png);
}

 .project_title {
   display: block;
   text-decoration: none;
   font-family: "Poppins";
   color: #EBA694;
   position: absolute;
   font-style: normal;
   font-weight: 600;
   font-size: 25px;
   line-height: 33px;
   position: absolute;
   left: 3%;
   /* identical to box height */
   letter-spacing: 0.03em;
   }


   .project_margin_top{
    margin-top:10%;
        margin-left:10%;

    }
/*
    @media (min-width: 2400px)  { .project_margin_top{ margin-top:8%;margin-left:11%;} }
    @media (min-width: 2300px)  { .project_margin_top{ margin-top:9%;margin-left:11%;} }
    @media (min-width: 2200px) { .project_margin_top{ margin-top:10%;margin-left:11%} }
    @media (min-width: 2100px)  { .project_margin_top{ margin-top:11%;margin-left:10%} }
    @media (min-width: 2000px) { .project_margin_top{ margin-top:12%;margin-left:10%} }
    @media (min-width: 1900px)  { .project_margin_top{ margin-top:13%;margin-left:9%} }
    @media (min-width: 1800px)  { .project_margin_top{ margin-top:16%;margin-left:9%} }*/
    
    @media (min-width: 2500px) and (max-width: 2600px)  { 
        .project_margin_top{ margin-top:7%;margin-left:11%}
        }
    @media (min-width: 2300px) and (max-width: 2499px)  { 
        .project_margin_top{ margin-top:9%;margin-left:11%}
        }
        
    @media (min-width: 2200px) and (max-width: 2299px)  { 
        .project_margin_top{ margin-top:9.5%;margin-left:10%}
        }
    @media (min-width: 2100px) and (max-width: 2199px)  { 
        .project_margin_top{ margin-top:9%;margin-left:10%}
        }
    @media (min-width: 1900px) and (max-width: 2099px)  { 
        .project_margin_top{ margin-top:13%;margin-left:9%}
        }
    @media (min-width: 1800px) and (max-width: 1899px)  { 
        .project_margin_top{ margin-top:16%;margin-left:9%}
        }
    @media (min-width: 1600px) and (max-width: 1799px)  { 
        .project_margin_top{ margin-top:18%;margin-left:7%}
        }
    @media (min-width: 1400px) and (max-width: 1599px)  { 
        .project_margin_top{ margin-top:21%;margin-left:5%}
        }
    @media (min-width: 1200px) and (max-width: 1399px)  { 
        .project_margin_top{ margin-top:25%;margin-left:2%}
        }
     @media (min-width: 1000px) and (max-width: 1199px)  { 
        .project_margin_top{ margin-top:27%;margin-left:-2%}
        }
        
 /*   @media (min-width: 1600px)  { .project_margin_top{ margin-top:20%;margin-left:7%} }
    @media (min-width: 1500px)  { .project_margin_top{ margin-top:22%;margin-left:4%} }
    @media (min-width: 1400px) { .project_margin_top{ margin-top:23%;margin-left:1%} }
    
    @media (min-width: 1300px)  { .project_margin_top{ margin-top:23%;margin-left:5%} }
    @media (min-width: 1200px) { .project_margin_top{ margin-top:25%;margin-left:2%} }
    @media (min-width: 1100px) { .project_margin_top{ margin-top:27%;margin-left:-2%} }*/


/*--------------------------------------------------------------
# Construction Update 
--------------------------------------------------------------*/
.bg_construction{
    background-position: center;
    background-size: cover;
    height: 100vh;
    background-repeat: no-repeat;
    background-image: url(https://techmonkshub.com/akaya1/assets/img/construction_laptop.png);
}


/*--------------------------------------------------------------
# Channel Partner
--------------------------------------------------------------*/
.bg_channel_partner{
    background-position: center;
    background-size: cover;
    height: 100vh;
    background-repeat: no-repeat;
    background-image: url(https://techmonkshub.com/akaya1/assets/img/channel_laptop.png);
}

   .channel_title {
   display: block;
   text-decoration: none;
   font-family: "Poppins";
   color: #EBA694;
   position: absolute;
   font-style: normal;
   font-weight: 700;
   font-size: 25px;
   line-height: 37px;
   position: absolute;
   /* identical to box height */
   letter-spacing: 0.03em;
      left: 3%;
   }
     .channel_sub_title {
   position: absolute;
   width:12.5%;
   font-family: "Poppins";
   font-style: normal;
   font-weight: 450;
   font-size: 16px;
   line-height: 32px;
   color: #FFFFFF;
   left: 3%;
   margin-top:5%;
   }
 
   .channel_label {
   font: 12px;
   color: #F1B3A7;
   }
   .channel_input {
   margin: 20px;
   padding: 2px
   }
  /* .channel_btn_sub {
   background-color: #CD9388; /* Green *
   border: none;
   color: black;
   padding: 6px;
   font-family: "Poppins";
   font-style: normal;
   font-weight: 550;
   text-decoration: none;
   font-size: 17px;
   cursor: pointer;
   border-radius: 20px;
   width: 160px;
   overflow: hidden;
   clear: both;
   float: left;
    T R B L
   } */
   
        .channel_btn_sub {
   background-color: #CD9388; /* Green */
   border: none;
   color: black;
   padding: 6px;
   font-family: "Poppins";
   font-style: normal;
   font-weight: 550;
   text-decoration: none;
   font-size: 20px;
   cursor: pointer;
   border-radius: 20px;
   width: 160px;
   }
   
   .channel_submit_btn_margin{
    margin-left:25%;
    }
    
/*  2600 - 2450 - 25
    2449 - 2300 - 26
    2299 - 2149 - 27
    2148 - 1998 - 28
    1997 - 1848 - 29
    1847 - 1698 - 30
    1697 - 1548 - 31
    1547 - 1398 - 32
    1397 - 1248 - 33
    1247 - 1098 - 34*/
    
    @media (min-width: 2450px) and (max-width: 2600px) { .channel_submit_btn_margin{ margin-left:45%;} }
    @media (min-width: 2300px) and (max-width: 2449px) { .channel_submit_btn_margin{ margin-left:36%;} }
    @media (min-width: 2149px) and (max-width: 2299px) { .channel_submit_btn_margin{ margin-left:37%;} }
    @media (min-width: 1998px) and (max-width: 2148px) { .channel_submit_btn_margin{ margin-left:38%;} }
    @media (min-width: 1848px) and (max-width: 1997px) { .channel_submit_btn_margin{ margin-left:39%;} }
    @media (min-width: 1698px) and (max-width: 1847px) { .channel_submit_btn_margin{ margin-left:40%;} }
    @media (min-width: 1548px) and (max-width: 1697px) { .channel_submit_btn_margin{ margin-left:41%;} }
    @media (min-width: 1398px) and (max-width: 1547px) { .channel_submit_btn_margin{ margin-left:44%;} }
    @media (min-width: 1248px) and (max-width: 1397px) { .channel_submit_btn_margin{ margin-left:48%;} }
    @media (min-width: 1098px) and (max-width: 1247px) { .channel_submit_btn_margin{ margin-left:50%;} }

   
  .channel_form_padding {
         padding-left:4%;
     }
   
   .input_name_channel{
       width:200px;height:19px;background: #CD9388;border-style:none;font-size:10px;
   }
   
   .input_email_channel{
       width: 150px;height:19px;background: #CD9388;border-style: none; font-size:10px;
   }
   
    @media (min-width: 1400px) and (max-width: 1600px) { 
      .input_name_channel{
       width:150px;height:19px;background: #CD9388;border-style:none;font-size:10px;
   }
   
   .input_email_channel{
       width: 100px;height:19px;background: #CD9388;border-style: none; font-size:10px;
      }
   }
      
   @media (min-width: 1500px) and (max-width: 1799px) { 
      .input_name_channel{
       width:170px;height:19px;background: #CD9388;border-style:none;font-size:10px;
   }
   
   .input_email_channel{
       width: 120px;height:19px;background: #CD9388;border-style: none; font-size:10px;
      }
    
   }
   
    @media (min-width: 1081px) and (max-width: 1279px) { 
     .channel_form_padding {
         padding-left:0%;
     }
   }
   

    @media (min-width: 1280px) and (max-width: 1300px) { 
     .channel_form_padding {
         padding-left:4%;
     }
   }
   
    @media (min-width: 1331px) and (max-width: 1440px) { 
     .channel_form_padding {
         padding-left:7%;
     }
   }
   
    @media (min-width: 1441px) and (max-width: 1699px) { 
     .channel_form_padding {
         padding-left:9%;
     }
   }
   
    @media (min-width: 1700px) and (max-width: 1999px) { 
     .channel_form_padding { padding:0% 0% 0% 11%;}
   }
  
   
   @media (min-width: 2000px) and (max-width: 2600px) { 
     .channel_form_padding {
         padding-left:15%;
     }
      /*.channel_btn_sub {
         margin-right: 15%; 
     }*/
   }
   

/*--------------------------------------------------------------
# Contact 
--------------------------------------------------------------*/
.bg_contact{
    background-position: center;
    background-size: cover;
    height: 100vh;
    background-repeat: no-repeat;
    background-image: url(https://techmonkshub.com/akaya1/assets/img/hero_banner_contact.png);
}
.contact_title {
    display: block;
    padding: 8px 65px 0px;
    text-decoration: none;
    font-family: "Poppins";
    color: #080808;
    font-weight: 700;
    font-size: 25px;
    margin-right:65%;
    margin-top:100px;
    text-align:center;
    border-right: 0px solid #000000; 
    letter-spacing: 0.03em;

}
.contact_sub_title {
   margin-right:10%;
   margin-top:-30px
}

/* Extra large devices (large desktops from 1400px to 1536 (13inch screen) */
@media (min-width: 1400px) and (max-width: 1600px) { 
    .contact_title {
    display: block;
    padding: 8px 65px 0px;
    text-decoration: none;
    font-family: "Poppins";
    color: #080808;
    font-weight: 700;
    font-size: 25px;
    margin-right:48%;
    margin-top:10px;
    text-align:center;
    border-right: 0px solid #000000; 
    letter-spacing: 0.03em;
    }
.contact_sub_title {
   margin-right:10%;
   margin-top:-50px;
   width:500px;
   height:200px;
   }
}

/* Extra Extra large devices (large desktops 27inch , 2560px)*/

@media (min-width: 2000.98px) and (max-width: 2560.98px) { 
    .contact_title {
    display: block;
    padding: 8px 0px 0px;
    text-decoration: none;
    font-family: "Poppins";
    color: #080808;
    font-weight: 700;
    font-size: 35px;
    margin-right:95%;
    text-align:center;
    border-right: 0px solid #000000; 
    letter-spacing: 0.03em;
    }
.contact_sub_title {
   margin-right:95%;
   margin-top:-50px;
   height:248px;
   }
}
/*--------------------------------------------------------------
# Career

   left: 10.25%;
   right: 56.78%;
   top: 100%;
   bottom: 60.81%;
--------------------------------------------------------------*/
.bg_career{
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    background-image: url(https://techmonkshub.com/akaya1/assets/img/career_section.png);
  }


      .btn_career {
   background-color: #CD9388; /* Green */
   border: none;
   color: black;
   padding: 6px;
   font-family: "Poppins";
   font-style: normal;
   font-weight: 550;
   text-decoration: none;
   font-size: 20px;
   cursor: pointer;
   border-radius: 20px;
   width: 160px;
   }
   
      .career_submit_btn_margin{
    margin-left:30%;
    }
    
/*  2600 - 2450 - 25
    2449 - 2300 - 26
    2299 - 2149 - 27
    2148 - 1998 - 28
    1997 - 1848 - 29
    1847 - 1698 - 30
    1697 - 1548 - 31
    1547 - 1398 - 32
    1397 - 1248 - 33
    1247 - 1098 - 34*/
    
    @media (min-width: 2450px) and (max-width: 2600px) { .career_submit_btn_margin{ margin-left:25%;} }
    @media (min-width: 2300px) and (max-width: 2449px) { .career_submit_btn_margin{ margin-left:27%;} }
    @media (min-width: 2149px) and (max-width: 2299px) { .career_submit_btn_margin{ margin-left:29%;} }
    @media (min-width: 1998px) and (max-width: 2148px) { .career_submit_btn_margin{ margin-left:31%;} }
    
    @media (min-width: 1920px)  { .career_submit_btn_margin{ margin-left:25%;} }
    @media (min-width: 1440px) { .career_submit_btn_margin{ margin-left:20%;} }
    
    @media (min-width: 1280px) and (max-width: 1340px) { .career_submit_btn_margin{ margin-left:20%;} }

   .input_name_career{
       width:150px;height:19px;background: #CD9388;border-style:none;font-size:10px;
   }
   
   .input_email_career{
       width: 150px;height:19px;background: #CD9388;border-style: none; font-size:10px;
   }
   
   @media (min-width: 1200px) and (max-width: 1440px) { 
     .career_form_padding { padding:0% 0% 0% 7%;}
   }
    @media (min-width: 1441px) and (max-width: 1799px) { 
     .career_form_padding { padding:0% 0% 0% 9%;}
    }
    @media (min-width: 1800px) and (max-width: 1920px) { 
     .career_form_padding { padding-left:10%;}
    }
     @media (min-width: 1921px) and (max-width: 2600px) { 
     .career_form_padding { padding-left:13%;}
    }
   
  @media (max-width: 1600px) {
    .input_name_career{
       width:120px;height:19px;background: #CD9388;border-style:none;font-size:10px;
   }
   
   .input_email_career{
       width: 120px;height:19px;background: #CD9388;border-style: none; font-size:10px;
   }
    
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 0;
}

.counts .counters span {
  font-size: 48px;
  display: block;
  color: #ff7f5d;
}

.counts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Our Values
--------------------------------------------------------------*/
.our-values .card {
  border: 0;
  padding: 160px 20px 20px 20px;
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.our-values .card-body {
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  transition: ease-in-out 0.4s;
  border-radius: 5px;
}

.our-values .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}

.our-values .card-title a {
  color: #150517;
}

.our-values .card-text {
  color: #5e5e5e;
}

.our-values .read-more a {
  color: #777777;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  transition: 0.4s;
}

.our-values .read-more a:hover {
  text-decoration: underline;
}

.our-values .card:hover .card-body {
  background: #ff7f5d;
}

.our-values .card:hover .read-more a,
.our-values .card:hover .card-title,
.our-values .card:hover .card-title a,
.our-values .card:hover .card-text {
  color: #fff;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 15px 0;
  text-align: center;
}

.clients img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  filter: grayscale(100);
}

.clients img:hover {
  filter: none;
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  height: 100%;
}

.services .icon-box:hover {
  transform: translateY(-5px);
}

.services .icon {
  position: absolute;
  left: -20px;
  top: calc(50% - 30px);
}

.services .icon i {
  font-size: 64px;
  line-height: 1;
  transition: 0.5s;
}

.services .title {
  margin-left: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #111;
}

.services .icon-box:hover .title a {
  color: #ff7f5d;
}

.services .description {
  font-size: 14px;
  margin-left: 40px;
  line-height: 24px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid #fff;
}

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

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

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #ffbbaa;
  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 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: #fff;
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.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 #ff7f5d;
}

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

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: #280a2c;
  background-size: cover;
  padding: 60px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #ff7f5d;
  border: 2px solid #ff7f5d;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  list-style: none;
  margin-bottom: 20px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  margin: 0 15px 10px 15px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #ff7f5d;
}

.portfolio #portfolio-flters li.filter-active::before,
.portfolio #portfolio-flters li.filter-active::after {
  color: #ff7f5d;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-img {
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-img img {
  transition: all 0.5s ease-in-out;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  bottom: 0;
  z-index: 3;
  right: 15px;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: white;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #fff;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #ff7f5d;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item:hover .portfolio-img img {
  transform: scale(1.2);
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.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 #ff7f5d;
}

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

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(21, 5, 23, 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;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #150517;
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  background: rgba(255, 127, 93, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: ease-in-out 0.3s;
  color: #fff;
}

.team .member .social a i {
  line-height: 0;
}

.team .member .social a:hover {
  background: #ff7f5d;
}

.team .member .social i {
  font-size: 18px;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #150517;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #777777;
  background: #f8f8f8;
}

.pricing h4 {
  font-size: 36px;
  color: #ff7f5d;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.pricing h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing ul li {
  padding-bottom: 16px;
}

.pricing ul i {
  color: #ff7f5d;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

.pricing .btn-buy {
  background: #ff7f5d;
  display: inline-block;
  padding: 8px 35px 9px 35px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: #ff9377;
}

.pricing .featured h3 {
  color: #fff;
  background: #ff7f5d;
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #ff7f5d;
  color: #fff;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

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

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #ffa790;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: #ff7f5d;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

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

.contact .info i {
  font-size: 20px;
  color: #ff7f5d;
  float: left;
  width: 44px;
  height: 44px;
  background: #fff8f6;
  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: #150517;
}

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

.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: #ff7f5d;
  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:focus,
.contact .php-email-form textarea:focus {
  border-color: #ff7f5d;
}

.contact .php-email-form input {
  height: 44px;
}

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

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

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

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

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

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #fafafa;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 500;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #3b0e41;
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: url("../img/footer-bg.jpg") center center no-repeat;
  color: #fff;
  font-size: 14px;
  position: relative;
}

#footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(2, 0, 2, 0.6);
  z-index: 1;
}

#footer .footer-top {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 0;
}

#footer .footer-top h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding-bottom: 0;
  margin-bottom: 0;
}

#footer .footer-top p {
  font-size: 15;
  font-style: italic;
  margin: 30px 0 0 0;
  padding: 0;
}

#footer .footer-top .footer-newsletter {
  text-align: center;
  font-size: 15px;
  margin-top: 30px;
}

#footer .footer-top .footer-newsletter form {
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #ff7f5d;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #ff9377;
}

#footer .footer-top .social-links {
  margin-top: 30px;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #ff7f5d;
  color: #fff;
  text-decoration: none;
}

#footer .footer-bottom {
  border-top: 1px solid #3b0e41;
  z-index: 2;
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
}

#footer .copyright {
  float: left;
}

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

@media (max-width: 768px) {

  #footer .copyright,
  #footer .credits {
    float: none;
    text-align: center;
  }

  #footer .credits {
    padding-top: 5px;
  }
}


           .static-text {
            color: #fff;
            position: absolute;
            top: 1px;
            width: 100%; /* Remove this line */
            background-image: url(https://akaya.in/assets/img/base_amenities.png);
            background-position: center;
            background-size: cover;
            height: 100vh;
            background-repeat: no-repeat;
            }
           /* .carousel-dark .carousel-indicators .active{
            background-color: #EBA694;
            }
            .carousel-dark .carousel-indicators{
            position: absolute;
            bottom: 50px;
            }   */

              /*-- ======= CONSTRUCTION UPDATE ======= */
            .constr_update_proeject {
            left: 6.61%;
            right: 85.8%;
            top: 32.92%;
            bottom: 66.69%;
            font-family: 'Montserrat';
            font-style: italic;
            font-weight: 600;
            font-size: 25px;
            line-height: 30px;
            text-align: center;
            color: #FFFFFF;
            }
            .constr_update_project {
            position: absolute;
            width: 15%;
            font-family: "Poppins";
            font-weight: 500;
            font-style: italic;
            letter-spacing: 1.8px;
            font-size: 20px;
            line-height: 32px;
            color: #FFFFFF;
            left: 3%;
            padding: 2px;
            }
            .constr_update_project_inactive {
            position: absolute;
            width: 15%;
            font-family: "Poppins";
            font-weight: 550;
            letter-spacing: 1.8px;
            font-style: italic;
            font-size: 20px;
            line-height: 32px;
            color: #EBA694;
            left: 3%;
            padding: 2px;
            }

         /*** T H E - M A G I C - O F - O B J E C T - F I T ***/
         /*****************************************************/
         .video-container {
         height: 90vh;
         position: relative;
         overflow: hidden;
         @media(min-width: 600px) {
         height: 100vh;
         }
         }
         video {
         object-fit: cover; // Set the magic
         position: absolute;
         height: 100%;
         width: 100%;
         top: 0;
         left: 0;
         }
         .top-right {
         position: absolute;
         top: 40px;
         right: 40px;
         color: #FFFFFF;
         }
         .bottom-right {
         position: absolute;
         bottom: 220px;
         right: 40px;
         color: #FFFFFF;
         }
         .bottom-right_scroll {
         position: absolute;
         bottom: 100px;
         right: 240px;
         color: #FFFFFF;
         }
         .bottom-right_social_1 {
         position: absolute;
         bottom: 50%;
         right: 40px;
         color: #FFFFFF;
         }
         .bottom-right_social_2 {
         position: absolute;
         bottom: 55%;
         right: 50px;
         color: #FFFFFF;
         }
         .bottom-right_social_3 {
         position: absolute;
         bottom: 60%;
         right: 40px;
         color: #FFFFFF;
         }
         #showMe {
         animation: cssAnimation 0s 4s forwards;
         visibility: hidden;
         }
         @keyframes cssAnimation {
         to {
         visibility: visible;
         }
         }
         @keyframes rightFadeInOut {
         0% {
         position: absolute;
         right: 40px;
         opacity: 0;
         }
         75% {
         position: absolute;
         right: 40px;
         opacity: 1;
         }
         100% {
         opacity: 1;
         right: 40px;
         }
         }
         .second-text {
         animation-name: rightFadeInOut;
         animation-delay: 4s;
         animation-duration: 9s;
         }
      
      
        /*-- ======= Hero Section animation invest in trust with icon ======= */

         @keyframes rightFadeEffect {
         0% {
         position: absolute;
         opacity: 0;
         }
         75% {
         position: absolute;
         opacity: 1;
         }
         100% {
         opacity: 1;
         }
         }
         .icon_fade_effect {
         animation-name: rightFadeEffect;
         animation-delay: 4s;
         animation-duration: 9s;
         }
         
         

/*-- ======= White color while scrolling ======= */
         .onscroll_down {
                     color: #000000;
                     text-decoration: none;
          }

 .main-text {
            color: #fff;
            position: absolute;
            top: 1px;
            width: 100%; /* Remove this line */
            background-image: url(https://akaya.in/assets/img/base_const.png);
            background-position: center;
            background-size: cover;
            height: 100vh;
            background-repeat: no-repeat;
            }

                  /*-- ======= Channel Section ======= */


            .channel_label {
            font-weight: 500;
            font-size: 22px;
            }
            .channel_input {
            margin: 20px;
            padding: 2px;
            width: 190px;
            height:19px;
            background: #CD9388;
            border-style: none;
            font-size:10px;
            padding-bottom:12px
            }
            .channel_label_white {
            font-weight: 500;
            font-size: 22px;
            color:#fff;
            }
            @media  (min-width: 1024px) and (max-width: 1100px) {
            .input {
            margin: 10px;
            padding: 2px
            }
            .channel_input {
            margin: 20px;
            padding: 2px;
            width: 120px;
            height:19px;
            background: #CD9388;
            border-style: none;
            font-size:10px;
            padding-bottom:12px
            }
            .channel_form_padding {
            padding-left: ;
            }
            .channel_label_white {
            font-weight: 500;
            font-size: 18px;
            color:#fff;
            }
            .channel_submit_btn_margin {
            margin-left: 35%;
            }
            .career_submit_btn_margin {
            margin-left: 25%;
            }
            }

 .contact_titlee {
            display: block;
            text-decoration: none;
            font-family: "Poppins";
            color: #080808;
            font-weight: 700;
            font-size: 25px;
            margin-top: 0%;
            float: left;
            letter-spacing: 0.03em;
            }

   label {
            font: 17px;
            color: #F1B3A7;
            }
            input {
            margin: 20px;
            padding: 2px
            }
            .career_title {
            display: block;
            text-decoration: none;
            font-family: "Poppins";
            color: #EBA694;
            position: absolute;
            font-style: normal;
            font-weight: 600;
            line-height: 37px;
            position: absolute;
            left: 3%;
            /* identical to box height */
            letter-spacing: 0.03em;
            font-size: 30px;
            }
            .career_sub_title {
            position: absolute;
            width:19%;
            font-family: "Poppins";
            color: #FFFFFF;
            left: 3%;
            letter-spacing:1px;
            font-weight: 420;
            font-size: 25px;
            font-style: normal;
            }
            
            
                        .first {
            opacity: 0.0;
            background-color: #4CAF50;
            padding: 60px;
            }
            .second {
            background-color: #4CAF50;
            padding: 60px;
            opacity: 0.0;
            }
            .third {
            background-color: #4CAF50;
            padding: 60px;
            opacity: 0.0;
            }
            .four {
            background-color: #4CAF50;
            padding: 60px;
            opacity: 0.0;
            }
            .five {
            background-color: #4CAF50;
            padding: 60px;
            opacity: 0.0;
            }
            .six {
            background-color: #4CAF50;
            padding: 60px;
            opacity: 0.0;
            }
            .seven {
            background-color: #4CAF50;
            padding: 40px;
            opacity: 0.7;
            }
            .eight {
            background-color: #4CAF50;
            padding: 40px;
            opacity: 0.8;
            }
            .nine {
            background-color: #4CAF50;
            padding: 20px;
            opacity: 0.9;
            }
            .tenth {
            background-color: #4CAF50;
            padding: 20px;
            opacity: 0.10;
            }
            /*   @media (min-width: 768px) and (max-width: 1199.98px) { .margin_project_box_1 { padding:60px;} }. */
            @media (min-width: 1200px) and (max-width: 1699.98px) {
            .margin_project_box_1 {
            padding: 4.5%;
            }
            }
            @media (min-width: 1700px) and (max-width: 1999.98px) {
            .margin_project_box_1 {
            padding: 60px;
            }
            }
            @media (min-width: 2000px) and (max-width: 2600.98px) {
            .margin_project_box_1 {
            padding: 95px;
            }
            }
            .project_banner {
            background-position: center;
            background-size: cover;
            height: 100vh;
            background-repeat: no-repeat;
            }
            
            
            .h22 {
            position: relative;
            overflow: hidden;
            }
            .h22:after {
            content: "";
            top: 48%;
            width: 150px;
            margin-left: 10px;
            height: 1px;
            position: absolute;
            background: #EBA694;
            opacity: 50%;
            }
            .project_txt {
            font-family: 'Poppins';
            font-style: normal;
            font-weight: 450;
            font-size: 15px;
            /* identical to box height */
            letter-spacing: 0.15em;
            color: #EBA694;
            }
            .project_txt_active {
            font-family: 'Poppins';
            font-style: normal;
            font-weight: 450;
            font-size: 15px;
            /* identical to box height */
            letter-spacing: 0.15em;
            color: #fff;
            }