
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  /* background-color: #; */
  --nav-font: "Poppins",  sans-serif;
}


:root { 
  --background-color: #ffffff; 
  --default-color: #444444; 
  --heading-color: #151515; 
  --accent-color: #ffc451; 
  --surface-color: #ffffff; 
  --contrast-color: #312f2f; 


:root {
  --nav-color: rgba(255, 255, 255, 0.905);  /* The default color of the main navmenu links */
  --nav-hover-color: #ffc451; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ffc451; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #2a2727;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
   font-family: 'Poppins', sans-serif;
   background-color: #312f2f;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}
.icon-back1{
  margin-top: 20px;
}
.icon-back1 a{
  background-color: #d47317;
 padding-top: 15px;
 padding-bottom: 15px;
padding-left: 20px;
padding-right: 20px;
color: white;
border-radius: 10px;


}
.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {

  color: var(--default-color);
background-color: rgba(255, 255, 255, 0.667);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 5px solid #d47317;
  height: 70px;

}



.header .logo img {
  max-height:90px;
  /* margin-right: -1px; */
  width: 150px;
}
 #navbar-brand {
  display: none;
 }
.header .logo h1 {
  font-size: 32px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .logo span {
  color: var(--accent-color);
  font-size: 32px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  font-size: 14px;
  padding: 8px 30px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  border: 2px solid var(--accent-color);
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--default-color);
  background: var(--accent-color);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(0, 0, 0, 0);
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: rgba(0, 0, 0, 0.8);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .dropdown ul{
    background-color: white !important;
  }
  .dropdown ul li{
    border-bottom: 1px solid #d47317;
  }
  .navmenu li {
    position: relative;
   
  }
  .navmenu li  #desktop-logo{
    background-color: transparent !important;
  }
  .navmenu li a{
    color:black;
    font-weight:500;
    font-size: 17px;
    font-weight: 600;
  }
  .navmenu a,
  .navmenu a:focus {
    color: white;
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

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

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #df1529;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 0;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

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

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

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

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    background-color: var(--nav-dropdown-hover-color);
  }

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

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

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

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), white 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: color-mix(in srgb, var(--accent-color), white 90%);
    font-size: 20px;
    font-weight: bold !important;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    background-color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

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

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
    background-color: white;
  } 
  .mobile-nav-active .navmenu>ul li{
    border-bottom: 1px solid #d47317;
  }
  .mobile-nav-active .navmenu>ul li .dropdown-active{
    background-color: #d47317;
    color: white;
  }
  .mobile-nav-active .navmenu>ul li .dropdown-active li{
    border-bottom: 1px solid white;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.upperFotter .upperFotter_right:before {
  content: '';
  width: 70%;
  position: absolute;
  top: 30px;
  right: -90px;
  height: 233px;
  background: #07121c;
  transform: skew(-33deg);
  z-index: 4;
}
.upperFotter .upperFotter_right .box-1 {
  position: relative;
  padding-left: 80px;
  padding-top: 50px;
  padding-bottom: 50px;
}
.upperFotter .upperFotter_right .box-1:before {
  content: '';
  width: 25000px;
  position: absolute;
  height: 100%;
  top: 60px;
  margin-right: 50px;
  right: 100%;
  height: 400px;
  transform: skew(-33deg);
  background-color: #855034;
  z-index: -1;
}
.upperFotter .upperFotter_right .text-box {
  position: relative;
  z-index: 10;
  top: 50px;
}
.upperFotter .upperFotter_right .text-box h3 {
  font-size: 24px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}
.upperFotter .upperFotter_right .text-box p {
  font-size: 16px;
  color: #fff;
  line-height: 30px;
  margin: 0;
}
.upperFotter .upperFotter_right .text-box .number a {
  color: #d0855d;
  font-size: 24px;
  font-weight: 700;
  font-style: normal;
  vertical-align: middle;
}
.upperFotter .upperFotter_right .text-box .number+b {
  font-weight: 700;
  color: #fff;
  font-size: 24px;
  text-transform: uppercase;
  vertical-align: middle;
  margin-left: 12px;
}
.upperFotter .upperFotter_right .text-box .contactBtn {
  display: inline-block;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 45px;
  border: 1px solid #fff;
  color: #fff;
  font-style: normal;
  padding: 0 25px;
  margin-left: 25px;
  margin-top: 15px;
  transition: .3s;
}
.upperFotter {
  float: left;
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: -1;
}
.footer-1{
  background: #07121c;
padding-top: 40px;
padding-bottom: 40px;
box-sizing: border-box;
}
.copy-right-1{
  background-color: #ce7813;
color: black;
padding-top: 10px;
padding-bottom: 10px;
color: white;
}
.copy-right-1 a{
  color: white;
}
.heading-footer h5{
  color: white;

}
.heading-footer h5 span{
  color: #ce7813;
}
.heading-footer p{
  color: white;
  text-align: justify;
}
.heading-footer ul {
  list-style-type: none;
padding: 0px ;
}
.heading-footer ul li{
  border-bottom: 1px solid rgba(128, 128, 128, 0.119);
margin-top: 15px;
margin-bottom: 15px;
color: white;
}
.heading-footer ul li i{
  color: #ce7813;
}
.heading-footer ul li a i{
  color: #ce7813;
}
.heading-footer ul li a {
  color: white;
}
.heading-footer  .para-footer .btn-1{
  background-color:#ce7813;
  padding: 10px 20px 10px 20px;
  color: white;
}
.para-footer li span a{
  background-color:#ce7813;
  padding: 10px 20px 10px 20px;
  color: white;
 
}
.para-footer li span{
  margin: auto;
}
.boder-none-1{
border:none !important;
margin-top: 25px !important;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #000;
  transition: all 0.6s ease-out;
}

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

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

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/


@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 58px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
}

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


#hero img{
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

#hero .carousel-caption{
 left: 0px !important;
  position: absolute;
right: inherit !important;
text-align: left !important;
background-color:#d075137a;
padding: 10px;
bottom: 20% !important;

}
#hero .carousel-caption h5{
  font-size: 30px;
  color: white;
 
}

.hero h2 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  font-family: var(--nav-font);
}

.hero h2 span {
  color: var(--accent-color);
}

.hero p {
  margin: 10px 0 0 0;
  font-size: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.hero .icon-box {
  padding: 30px 20px;
  transition: ease-in-out 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero .icon-box i {
  font-size: 32px;
  line-height: 1;
  color: var(--accent-color);
}

.hero .icon-box h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 20px;
  line-height: 26px;
}

.hero .icon-box h3 a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: ease-in-out 0.3s;
}

.hero .icon-box:hover {
  border-color: var(--accent-color);
}

.hero .icon-box:hover h3 a {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.heading-1 h1{
  color: #ce7813;
}
.heading-1 footer{
  color: white !important;
}
.laminate p{
  color: white;
  text-align: justify;
}

.about-us{
  /* background-color: #07121c; */

/* padding: 20px 0px 35px 0px;  */
}
.about-icon{
margin-top: 50px;
display: flex;
justify-content:space-around;
}
.about-icon>.about-icon-1>li{
list-style-type: none;
color: white;

}
.about-icon>.about-icon-1>li>span{
font-size: 14px;

 }
.about-icon>.about-icon-1>li>i{
color:#ce7813;
 }

 .about-icon li{
  color:white !important;
 }
.about-icon>.about-icon-2>li{
list-style-type: none;
color: white;
}
.about-icon>.about-icon-2>li>i{
color:#ce7813;
  }
  .about-icon>.about-icon-2>li>span{
    font-size: 14px;
     
      }
      
.button-about>a{
background-color:#ce7813;
padding: 10px 30px;
margin-top: 20px;
color:white;

}
.button-about>a:hover{
text-decoration: none;
color:white;
}
.about-us-img{
margin-left: 100px;
}
.about-us-img>img{
width:100%;
height: 400px;
}
.about-position{
position: relative;
}
.about-box{
background-color:#ce7813;
padding: 30px;
width: 60%;

position: absolute;
margin-top: -156px;
}
.about-box>i{
font-size: 40px;
color: white;

}
/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/

.inspired {
background-image: url(../../pasco/img/MG-1009/MG-1009-2.jpg);
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  
  padding: 45px 0px 45px 0px;
}
.inspired .card-body>footer{
  color: #00aff0;
  font-family: 'Raleway', sans-serif;
  font-size: 20px;
  font-weight: 400;
}
/* .card-body>p{
 color: white;
 font-size: 15px;
 padding: 0;
 margin: 0;
} */
.inspired .card-body{
 margin-top:70px;
}
.inspired .card{
 border: 5px solid #ce7813 !important;
 background-color: rgba(0, 0, 0, 0.6) !important;
height: 330px;
margin-top: 80px;
/* box-shadow: rgba(227, 225, 225, 0.24) 10px  19px 15px; */

}

.inspired .icon-card{
 
    text-align: center;
   
  
}
.inspired .icon-card>i{
 background-color: rgba(0, 0, 0, 0.543) !important;
padding-top: 10px;
margin-top:px;
border-radius: 50%;
width: 70px;
 position: absolute;
 margin-top:-40px;
 height: 70px;
 left:40%;
 font-size: 35px;
 color: #ce7813;
 border: 2px solid #ce7813;
}
.inspired h3{
  color: #f0ab5c;
  font-size: 25px;
}
.inspired p{
  color: white;
}
.inspired footer{
  color: white !important;
  font-weight: bold !important;
}

/*--------------------------------------------------------------
# our  brand 
--------------------------------------------------------------*/
.main-1
{
width: 100%;
margin-top: 20px;

margin-bottom: 20px;
}

.about-us-1{
  /* background: url(../img/brand.jpg); */

  background-size:cover;
  background-position: center center;
  /* background-attachment: fixed; */
  height: 65vh;
  /* padding-top: 20px;
  padding-bottom: 20px; */
display: flex;
align-items: center;
justify-content: center;

}
.main-1 ul
{
display: flex;
justify-content: space-between;
align-items: center;
box-shadow: 7px -10px 5px 0px rgba(0,0,0,0.4);
height: 150px;
border-top:2px solid #ce7813;
border-bottom:2px solid #ce7813;
text-align: center;
/* background-color: rgba(99, 97, 97, 0.352); */
background-color: rgba(0, 0, 0, 0.598);
border-radius: 10px;
}
.main-1 ul li
{
 width: 100%;
  height: 100px;
list-style: none;
display: flex;
justify-content: center;
align-items: center;
position: relative;
overflow: hidden;
cursor: pointer;
}
.main-1 ul li img
{
filter: saturate(11%);
width: 87%;
margin-right: 20px;


}
.main-1 span
{
position: absolute;
width: 100%;
height: 100%;
top: 200px;
left: 0px;
bottom: 0px;
right: 0px;
display: flex;
justify-content: center;
align-items: center;
transition: .5s;
}
.main-1 ul li:hover span
{
top: 0;
}
.main-1 ul li:hover span img
{
top: 0;
filter: saturate(100%);
}
.grayscale img{
  width: 100%;
  filter: grayscale(100%);
 
}
.grayscale img:hover{
  filter: grayscale(0%);
}
#our-brand-box img{
  width: 150px;
}
#our-brand-box p{
 text-align: justify;
  padding: 0px;
  color: white;
}
#our-brand-box{
  width: 100%;
  border: 3px solid #ce7813;
padding: 10px;
margin-bottom: 10px;
margin-top: 10px;
border-radius: 15px;
}
.container-1 {
  position: relative;
 margin-top: 20px;
 border-radius: 50%;
 height: 250px;
 width: 250px;
 border: 2px solid white;
 display: flex;
 align-items: center;
}
.image-1 {
  display: block;
  width: 250px;
  height: auto;

  padding: 20px;

}
.overlay-1 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ce77137b;
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: .5s ease;
  border-radius: 50%;
}
.text-1 {
  color: white;
  font-size: 12px;
  position: absolute;
  top: 50%;
left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;


}
.container-1:hover .overlay-1 {
  height: 100%;
}


/* start Design Your House section */

.house{
  background: linear-gradient(rgba(24,24,24,.65),rgba(24,24,24,.65)),url(../../pasco/img/MG-2327/MG-2327-2.png);
  background-size: cover;
  padding: 20px 0px 35px 0px;
  background-attachment: fixed;
}
marquee img{
margin: 20px;
}
.house-heading>h1{
  font-size:65px !important;
    padding: 50px 0px;
    margin: 5px 0 13px;
   color: #ce7813;
   font-weight:500 !important;

}
.house-heading>h1>span{
  font-size: 40px;

}
.house-box{
  background-color: rgba(255,255,255,0.2);
  padding: 25px 20px 27px 20px;
  margin-right: 26px;
  transition: all 0.3s;
  min-height: 210px;
  min-width: 355px;
  cursor: pointer;
  border-radius: 10px;
  box-shadow: 6px 14px 8px 0px rgba(0,0,0,0.66);

transition: background-color 2s;

}
.house-box>h1{
  font-size: 37px;
    margin: 0 0 9px;
    padding: 0;
    line-height: 36.5px
}
.house-box>h2::after{
  content: " ";
    display: block;
  
    height: 2px;
    width: 50px;
    background-color: white;
    margin-top: 8px;
}
.house-box>p{
  font-size: 15px;
  margin: 0;
  padding: 0;
  color: white;
  text-align: justify;
}
.house-box:hover{
  background-color:#ce7813;
}


/* end Design Your House section */


.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 26px;
  line-height: 0;
}

.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;
  transform: scale(-1, -1);
}

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

.testimonials .swiper-wrapper {
  height: auto;
}

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 50%);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--default-color);
  opacity: 1;
}

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

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

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

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

.team .team-member .social a {
  background: color-mix(in srgb, var(--contrast-color), transparent 25%);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: ease-in-out 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.team .team-member .social a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
}

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

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

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

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

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

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.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: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.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;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

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

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

  /*start enqury form*/
  
  .all-banner img
  { 
      height:70vh;
      width:100%;
    object-fit: cover;
      
      }
      label
      {
          margin-bottom:10px;
          margin-top:10px;
          color:#ce7813;
          font-weight:bold;
          }
          #btnSubmit
          {
              
             margin-top:20px;
             
              
              
              
              }
              .form-bg
              {     background-color: #735450;
  padding: 20px 0px 35px 0px;

                  
                  }


/* start about us page */

* {
  font-family: Nunito, sans-serif;
}

.text-blk {
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  line-height: 20px;
  color: white;
  font-size: 14px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 40px;
  margin-left: 0px;
}

.responsive-container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  justify-content: flex-start;
}

.responsive-container-block.bigContainer {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat-x: initial;
  background-repeat-y: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  /* background-color: rgb(51, 51, 51); */
  padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  margin: 0 0 0 0;
}

.responsive-container-block.Container {
  max-width: 1320px;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  margin-right: auto;
  /* margin-bottom: 10px; */
  margin-left: auto;
  /* padding-top: 10px;
  padding-right: 0px;
  padding-bottom: 10px; */
  padding-left: 0px;
}

.responsive-container-block.leftSide {
  width: auto;
  align-items: flex-start;
  padding-top: 10px;
  padding-right: 0px;
  padding-bottom: 10px;
  padding-left: 0px;
  flex-direction: column;
  position: static;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  max-width: 300px;
}

.text-blk.heading {
  font-size: 40px;
  line-height: 64px;
  font-weight: 900;
  color: #d0855d;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 40px;
  margin-left: 0px;
}

.text-blk.btn {
  color: rgb(0, 178, 235);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat-x: initial;
  background-repeat-y: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
  box-shadow: rgba(160, 121, 0, 0.2) 0px 12px 35px;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  border-bottom-left-radius: 100px;
  padding-top: 20px;
  padding-right: 50px;
  padding-bottom: 20px;
  padding-left: 50px;
  cursor: pointer;
}

.responsive-container-block.rightSide {
  width: 675px;
  position: relative;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  display: flex;
  height: 700px;
  min-height: auto;
}

.number1img {
  margin-top: 39%;
  margin-right: 80%;
  margin-bottom: 29%;
  margin-left: 0px;
  height: 32%;
  width: 20%;
  position: absolute;
}

.number2img {
  margin-top: 19%;
  margin-right: 42%;
  margin-bottom: 42%;
  margin-left: 23%;
  width: 35%;
  height: 39%;
  position: absolute;
}

.number3img {
  width: 50%;
  height: 30%;
  position: absolute;
  margin-top: 62%;
  margin-right: 64%;
  margin-bottom: 30%;
  margin-left: 23%;
}

.number4vid {
  width: 34%;
  height: 33%;
  position: absolute;
  margin-top: 62%;
  margin-right: 27%;
  margin-bottom: 0px;
  margin-left: 39%;
}

.number5img {
  position: absolute;
  width: 13%;
  height: 21%;
  margin-top: 38%;
  margin-right: 27%;
  margin-bottom: 41%;
  margin-left: 60%;
}

.number6img {
  position: absolute;
  margin-top: 0px;
  margin-right: 3%;
  margin-bottom: 67%;
  margin-left: 62%;
  width: 35%;
  height: 33%;
}

.number7img {
  position: absolute;
  width: 25%;
  margin-top: 40%;
  margin-right: 0px;
  margin-bottom: 18%;
  margin-left: 75%;
  height: 42%;
}

.text-blk.subHeading {
  font-size: 14px;
  line-height: 25px;
  text-align: justify;
}

@media (max-width: 1024px) {
  .responsive-container-block.Container {
    flex-direction: column-reverse;
  }

  .text-blk.heading {
    text-align: center;
    max-width: 370px;
  }

  .text-blk.subHeading {
    text-align: center;
  }

  .responsive-container-block.leftSide {
    align-items: center;
    max-width: 480px;
  }

  .responsive-container-block.rightSide {
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 100px;
    margin-left: auto;
  }

  .responsive-container-block.rightSide {
    margin: 0 auto 70px auto;
  }
}

@media (max-width: 768px) {
  .responsive-container-block.rightSide {
    width: 450px;
    height: 450px;
  }

  .responsive-container-block.leftSide {
    max-width: 450px;
  }
}

@media (max-width: 500px) {
  .number1img {
    display: none;
  }

  .number2img {
    display: none;
  }

  .number3img {
    display: none;
  }

  .number5img {
    display: none;
  }

  .number6img {
    display: none;
  }

  .number7img {
    display: none;
  }

  .responsive-container-block.rightSide {
    width: 100%;
    height: 250px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 100px;
    margin-left: 0px;
  }

  .number4vid {
    position: static;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    width: 100%;
    height: 100%;
  }

  .text-blk.heading {
    font-size: 25px;
    line-height: 40px;
    max-width: 370px;
    width: auto;
  }

  .text-blk.subHeading {
    font-size: 14px;
    line-height: 25px;
  }

  .responsive-container-block.leftSide {
    width: 100%;
  }
}

.wk-desk-1 {
  width: 8.333333%;
}

.wk-desk-2 {
  width: 16.666667%;
}

.wk-desk-3 {
  width: 25%;
}

.wk-desk-4 {
  width: 33.333333%;
}

.wk-desk-5 {
  width: 41.666667%;
}

.wk-desk-6 {
  width: 50%;
}

.wk-desk-7 {
  width: 58.333333%;
}

.wk-desk-8 {
  width: 66.666667%;
}

.wk-desk-9 {
  width: 75%;
}

.wk-desk-10 {
  width: 83.333333%;
}

.wk-desk-11 {
  width: 91.666667%;
}

.wk-desk-12 {
  width: 100%;
}

@media (max-width: 1024px) {
  .wk-ipadp-1 {
    width: 8.333333%;
  }

  .wk-ipadp-2 {
    width: 16.666667%;
  }

  .wk-ipadp-3 {
    width: 25%;
  }

  .wk-ipadp-4 {
    width: 33.333333%;
  }

  .wk-ipadp-5 {
    width: 41.666667%;
  }

  .wk-ipadp-6 {
    width: 50%;
  }

  .wk-ipadp-7 {
    width: 58.333333%;
  }

  .wk-ipadp-8 {
    width: 66.666667%;
  }

  .wk-ipadp-9 {
    width: 75%;
  }

  .wk-ipadp-10 {
    width: 83.333333%;
  }

  .wk-ipadp-11 {
    width: 91.666667%;
  }

  .wk-ipadp-12 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .wk-tab-1 {
    width: 8.333333%;
  }

  .wk-tab-2 {
    width: 16.666667%;
  }

  .wk-tab-3 {
    width: 25%;
  }

  .wk-tab-4 {
    width: 33.333333%;
  }

  .wk-tab-5 {
    width: 41.666667%;
  }

  .wk-tab-6 {
    width: 50%;
  }

  .wk-tab-7 {
    width: 58.333333%;
  }

  .wk-tab-8 {
    width: 66.666667%;
  }

  .wk-tab-9 {
    width: 75%;
  }

  .wk-tab-10 {
    width: 83.333333%;
  }

  .wk-tab-11 {
    width: 91.666667%;
  }

  .wk-tab-12 {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .wk-mobile-1 {
    width: 8.333333%;
  }

  .wk-mobile-2 {
    width: 16.666667%;
  }

  .wk-mobile-3 {
    width: 25%;
  }

  .wk-mobile-4 {
    width: 33.333333%;
  }

  .wk-mobile-5 {
    width: 41.666667%;
  }

  .wk-mobile-6 {
    width: 50%;
  }

  .wk-mobile-7 {
    width: 58.333333%;
  }

  .wk-mobile-8 {
    width: 66.666667%;
  }

  .wk-mobile-9 {
    width: 75%;
  }

  .wk-mobile-10 {
    width: 83.333333%;
  }

  .wk-mobile-11 {
    width: 91.666667%;
  }

  .wk-mobile-12 {
    width: 100%;
  }
}

.about-page-banner  .breadcrumb{
  background-color:#d472175c;
  width: 300px;
  padding: 10px;
  position: absolute !important;
  bottom: 0px !important;
  
}
.about-page-banner-instruction {
  background: url(../img/instruction-banner.png);
  background-size: cover;
  height: 90vh;
  background-position: center center;
  display: flex;
  align-items: center;
  position: relative;
}
.about-page-banner-our-products {
  background: url(../img/our-products-banner.png);
  background-size: cover;
  height: 90vh;
  background-position: center center;
  display: flex;
  align-items: center;
  position: relative;
}
.about-page-banner-our-brand {
  background: url(../img/our-brand-banner.png);
  background-size: cover;
  height: 90vh;
  background-position: center center;
  display: flex;
  align-items: center;
  position: relative;
}
.breadcrumb li{
  font-weight: bold;
}
.breadcrumb li a {
  color: black !important;
  font-weight: bold;
}
.breadcrumb .breadcrumb-item.active {
  color: white;}
 .breadcrumb{
  background-color:#d4721773;
  width: 300px;
  padding: 10px;
  position: absolute;
  bottom: 43px;
}
.about-page-banner {
                    background: url(../img/banner.png);
                    background-size: cover;
                    height: 90vh;
                    background-position: center center;
                    display: flex;
                    align-items: center;
                    position: relative;
                }
                .about-page-banner .breadcrumb{
                  background-color:#d4721773;
                  width: 300px;
                  padding: 10px;
                  position: absolute !important;
                  bottom: 0px !important;
                }
                .about-page-text h2{
                  color: #ce7813;
                }

                /* start why us */
                .why-us img{
                  width: 100% !important;
                }
                .why-us-1{
                  /* background-color:#ce7813 ; */
                  height: 400px;
                  width: 100%;
                  display: flex;
                  align-items: center;
                  /* border-right: 3px solid white; */
               
                }
                .why-us-1 h4{
                  color: #ce7813;
                  font-size: 30px;
                }
                .why-us-1 p{
                  color: white;
                  text-align: justify;
                }
                .why-us-2{
                  /* background-color:#735450 ; */
                  height: 400px;
               
               display: flex;
               align-items: center; 
             
                }
                .why-us-2 h4{
                  color: #ce7813;
                  font-size: 30px;
                  margin-bottom: 20px;
                }
                .about-icon-1 li{
                  color: white;
                  list-style-type: none;
               /* font-size: 18px !important; */
               margin-bottom: 20px;
                }
                .about-icon-1 li i{
                  color: #ce7813;
                }
              .about-icon-2 li{
                margin-bottom: 20px; 
              }
                .why-us{
                  background: linear-gradient(rgba(24, 24, 24, 0.6), rgba(24, 24, 24, 0.4)), url(../img/why.png);
                  background-size: cover;
                  height: 100vh;
                  background-position: center center;
                  display: flex;
                  align-items: center;
                }
                .border-right{
                  border-right: 3px solid white;
                  height: 400px;
                  margin-left: 60px;
                  position: relative;
                  left: -74px;
                }

                /* start instruction section */

               /* The actual timeline (the vertical ruler) */
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* The actual timeline (the vertical ruler) */
.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: white;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

/* Container around content */
.container-3 {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

/* The circles on the timeline */
.container-3::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -17px;
  background-color: white;
  border: 4px solid #FF9F55;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

/* Place the container-3 to the left */
.left {
  left: 0;
}

/* Place the container to the right */
.right {
  left: 50%;
}

/* Add arrows to the left container (pointing right) */
.left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid white;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent white;
}

/* Add arrows to the right container (pointing left) */
.right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid white;
  border-width: 10px 10px 10px 0;
  border-color: transparent white transparent transparent;
}

/* Fix the circle for containers on the right side */
.right::after {
  left: -16px;
}

/* The actual content */
.content {
  padding: 20px 30px;
  background-color:#ce7813;
  position: relative;
  border-radius: 6px;
  text-align: center;

}
.content-img {
  border: 2px solid white;
  /* text-align: center; */
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: auto;
}
.content-img img{
  padding: 5px;
  margin-top: 10px;
  margin-left: 5px;
  width: 70px;
  height: 70px;

}
/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
  /* Place the timelime to the left */
  .timeline::after {
  left: 31px;
  }
  
  /* Full-width containers */
  .container-3 {
  width: 100%;
  padding-left: 70px;
  padding-right: 25px;
  }
  
  /* Make sure that all arrows are pointing leftwards */
  .container-3::before {
  left: 60px;
  border: medium solid white;
  border-width: 10px 10px 10px 0;
  border-color: transparent white transparent transparent;
  }

  /* Make sure all circles are at the same spot */
  .left::after, .right::after {
  left: 15px;
  }
  
  /* Make all right containers behave like the left ones */
  .right {
  left: 0%;
  }
}
                   /* start contact-us desing */

                 
                   .contact-us-form{
                    background: linear-gradient(rgba(24, 24, 24, 0.6), rgba(24, 24, 24, 0.4)), url(../img/slider/s5.jpg);
                    background-size: cover;
                    height: 100%;
                    background-attachment: fixed;
                    background-position: center center;
                    /* padding: 80px; */
                 
                  }
                .contact_us_6 * {
                  font-family: Nunito, sans-serif;
                }
                
                .contact_us_6 .text-blk {
                  margin-top: 0px;
                  margin-right: 0px;
                  margin-bottom: 0px;
                  margin-left: 0px;
                  line-height: 25px;
                }
                
                .contact_us_6 .responsive-cell-block {
                  min-height: 75px;
                  
                }
                .bg-right{
                  background-color: #735450;
                  padding: 20px;
                }
                
                .contact_us_6 input:focus,
                .contact_us_6 textarea:focus {
                  outline-color: initial;
                  outline-style: none;
                  outline-width: initial;
                }
                
                .contact_us_6 .container-block {
                  min-height: 75px;
                  width: 100%;
                  padding-top: 10px;
                  padding-right: 10px;
                  padding-bottom: 10px;
                  padding-left: 10px;
                  display: block;
                }
                
                .contact_us_6 .responsive-container-block {
                  min-height: 75px;
                  display: flex;
                  flex-wrap: wrap;
                  justify-content: flex-start;
                  margin-top: 0px;
                  margin-right: auto;
                  margin-bottom: 50px;
                  margin-left: auto;
                  padding-top: 0px;
                  padding-right: 0px;
                  padding-bottom: 0px;
                  padding-left: 0px;
                }
                
                .contact_us_6 .responsive-container-block.big-container {
                  padding-top: 10px;
                  padding-right: 30px;
                  width: 35%;
                  padding-bottom: 10px;
                  padding-left: 30px;
                  background-color:#ce7813;
                  position: absolute;
                  height: 950px;
                  right: 0px;
                }
                
                .contact_us_6 .responsive-container-block.container {
                  position: relative;
                  min-height: 75px;
                  flex-direction: row;
                  z-index: 2;
                  flex-wrap: nowrap;
                  align-items: center;
                  justify-content: center;
                  padding-top: 0px;
                  padding-right: 30px;
                  padding-bottom: 0px;
                  padding-left: 30px;
                  max-width: 1320px;
                  margin-top: 0px;
                  margin-right: auto;
                  margin-bottom: 0px;
                  margin-left: auto;
                }
                
                .contact_us_6 .container-block.form-wrapper {
                  background-color:#735450;
                  max-width: 450px;
                  text-align: center;
                  padding-top: 50px;
                  padding-right: 40px;
                  padding-bottom: 50px;
                  padding-left: 40px;
                  box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 20px 7px;
                  border-top-left-radius: 6px;
                  border-top-right-radius: 6px;
                  border-bottom-right-radius: 6px;
                  border-bottom-left-radius: 6px;
                  margin-top: 90px;
                  margin-right: 0px;
                  margin-bottom: 60px;
                  margin-left: 0px;
                }
                
                .contact_us_6 .text-blk.contactus-head {
                  font-size: 36px;
                  line-height: 52px;
                  font-weight: 900;
                }
                
                .contact_us_6 .text-blk.contactus-subhead {
                  color: #9c9c9c;
                  width: 300px;
                  margin-top: 0px;
                  margin-right: auto;
                  margin-bottom: 50px;
                  margin-left: auto;
                  display: none;
                }
                
                .contact_us_6 .responsive-cell-block.wk-desk-6.wk-ipadp-6.wk-tab-12.wk-mobile-12 {
                  margin-top: 0px;
                  margin-right: 0px;
                  margin-bottom: 26px;
                  margin-left: 0px;
                  min-height: 50px;
                }
                
                .contact_us_6 .input {
                  width: 100%;
                  height: 50px;
                  padding-top: 1px;
                  padding-right: 15px;
                  padding-bottom: 1px;
                  padding-left: 15px;
                  border-top-width: 2px;
                  border-right-width: 2px;
                  border-bottom-width: 2px;
                  border-left-width: 2px;
                  border-top-style: solid;
                  border-right-style: solid;
                  border-bottom-style: solid;
                  border-left-style: solid;
                  border-top-color: #eeeeee;
                  border-right-color: #eeeeee;
                  border-bottom-color: #eeeeee;
                  border-left-color: #eeeeee;
                  border-image-source: initial;
                  border-image-slice: initial;
                  border-image-width: initial;
                  border-image-outset: initial;
                  border-image-repeat: initial;
                  font-size: 16px;
                  color: black;
                }
                
                .contact_us_6 .textinput {
                  width: 98%;
                  min-height: 150px;
                  padding-top: 20px;
                  padding-right: 15px;
                  padding-bottom: 20px;
                  padding-left: 15px;
                  border-top-width: 2px;
                  border-right-width: 2px;
                  border-bottom-width: 2px;
                  border-left-width: 2px;
                  border-top-style: solid;
                  border-right-style: solid;
                  border-bottom-style: solid;
                  border-left-style: solid;
                  border-top-color: #eeeeee;
                  border-right-color: #eeeeee;
                  border-bottom-color: #eeeeee;
                  border-left-color: #eeeeee;
                  border-image-source: initial;
                  border-image-slice: initial;
                  border-image-width: initial;
                  border-image-outset: initial;
                  border-image-repeat: initial;
                  font-size: 16px;
                }
                
                .contact_us_6 .submit-btn {
                  width: 98%;
                  background-color: #ce7813;
                  height: 60px;
                  font-size: 20px;
                  font-weight: 700;
                  color: white;
                  border-top-width: 0px;
                  border-right-width: 0px;
                  border-bottom-width: 0px;
                  border-left-width: 0px;
                  border-top-style: outset;
                  border-right-style: outset;
                  border-bottom-style: outset;
                  border-left-style: outset;
                  border-top-color: #767676;
                  border-right-color: #767676;
                  border-bottom-color: #767676;
                  border-left-color: #767676;
                  border-image-source: initial;
                  border-image-slice: initial;
                  border-image-width: initial;
                  border-image-outset: initial;
                  border-image-repeat: initial;
                  border-top-left-radius: 40px;
                  border-top-right-radius: 40px;
                  border-bottom-right-radius: 40px;
                  border-bottom-left-radius: 40px;
                }
                
                .contact_us_6 .form-box {
                  z-index: 2;
                  margin-top: 0px;
                  margin-right: 48px;
                  margin-bottom: 0px;
                  margin-left: 0px;
                }
                
                .contact_us_6 .text-blk.input-title {
                  text-align: left;
                  padding-top: 0px;
                  padding-right: 0px;
                  padding-bottom: 0px;
                  padding-left: 10px;
                  font-size: 14px;
                  margin-top: 0px;
                  margin-right: 0px;
                  margin-bottom: 5px;
                  margin-left: 0px;
                  color: #9c9c9c;
                }
                
                .contact_us_6 ::placeholder {
                  color: #dadada;
                }
                
                .contact_us_6 .mob-text {
                  display: block;
                  text-align: left;
                  margin-top: 0px;
                  margin-right: 0px;
                  margin-bottom: 25px;
                  margin-left: 0px;
                }
                
                .contact_us_6 .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-desk-12.wk-ipadp-12 {
                  margin-top: 0px;
                  margin-right: 0px;
                  margin-bottom: 20px;
                  margin-left: 0px;
                }
                
                .contact_us_6 .text-blk.contactus-subhead.color {
                  color: white;
                }
                
            
                
                .contact_us_6 .map-part {
                  width: 100%;
                  height: 100%;
                }
                
                .contact_us_6 .text-blk.map-contactus-head {
                  font-weight: 900;
                  font-size: 22px;
                  line-height: 32px;
                  margin-top: 0px;
                  margin-right: 0px;
                  margin-bottom: 10px;
                  margin-left: 0px;
                  color: #ce7813;
                }
                
                .contact_us_6 .text-blk.map-contactus-subhead {
                  max-width: 300px;
                  margin-top: 0px;
                  margin-right: 0px;
                  margin-bottom: 20px;
                  margin-left: 0px;
                }
                
                .contact_us_6 .social-media-links.mob {
                  margin-top: 0px;
                  margin-right: 0px;
                  margin-bottom: 30px;
                  margin-left: 0px;
                  width: 230px;
                 
                  display: flex;
                  justify-content: flex-start;
                }
                
                .contact_us_6 .link-img {
                  width: 30px;
                  height: 30px;
                  margin-top: 0px;
                  margin-right: 25px;
                  margin-bottom: 0px;
                  margin-left: 0px;
                }
                
                .contact_us_6 .link-img.image-block {
                  margin-top: 0px;
                  margin-right: 0px;
                  margin-bottom: 0px;
                  margin-left: 0px;
                }
                
                .contact_us_6 .social-icon-link {
                  margin: 0 25px 0 0;
                  padding: 0 0 0 0;
                }
                
                @media (max-width: 1024px) {
                  .contact_us_6 .responsive-container-block.container {
                    justify-content: center;
                  }
                
                  .contact_us_6 .map-box {
                    position: absolute;
                    top: 0px;
                    max-height: 320px;
                  }
                
                  .contact_us_6 .map-box {
                    max-width: 100%;
                    width: 100%;
                  }
                
                  .contact_us_6 .responsive-container-block.container {
                    padding-top: 0px;
                    padding-right: 0px;
                    padding-bottom: 0px;
                    padding-left: 0px;
                  }
                
                  .contact_us_6 .map-part {
                    width: 100%;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                  }
                
                  .contact_us_6 .container-block.form-wrapper {
                    margin-top: 0px;
                    margin-right: 0px;
                    margin-bottom: 0px;
                    margin-left: 0px;
                  }
                
                  .contact_us_6 .mob-text {
                    display: block;
                  }
                
                  .contact_us_6 .form-box {
                    margin-top: 200px;
                    margin-right: 60px;
                    margin-bottom: 40px;
                    margin-left: 0px;
                  }
                
                  .contact_us_6 .link-img {
                    margin-top: 0px;
                    margin-right: 0px;
                    margin-bottom: 0px;
                    margin-left: 0px;
                    display: flex;
                    justify-content: space-evenly;
                  }
                
                  .contact_us_6 .social-media-links.mob {
                    justify-content: space-evenly;
                  }
                
                  .contact_us_6 .responsive-cell-block.wk-desk-7.wk-ipadp-12.wk-tab-12.wk-mobile-12 {
                    text-align: center;
                    display: flex;
                    justify-content: flex-end;
                    align-items: center;
                    flex-direction: row;
                  }
                
                  .contact_us_6 .text-blk.contactus-subhead {
                    display: block;
                  }
                
                  .contact_us_6 .mob-text {
                    text-align: center;
                    margin-top: 0px;
                    margin-right: 0px;
                    margin-bottom: 0px;
                    margin-left: 0px;
                  }
                
                  .contact_us_6 .responsive-container-block.container {
                    flex-wrap: wrap;
                  }
                
                  .contact_us_6 .form-box {
                    margin-top: 200px;
                    margin-right: 0px;
                    margin-bottom: 40px;
                    margin-left: 0px;
                  }
                }
                
                @media (max-width: 768px) {
                  .contact_us_6 .submit-btn {
                    width: 100%;
                  }
                
                  .contact_us_6 .input {
                    width: 100%;
                  }
                
                  .contact_us_6 .textinput {
                    width: 100%;
                  }
                
                  .contact_us_6 .container-block.form-wrapper {
                    margin-top: 80px;
                    margin-right: 0px;
                    margin-bottom: 0px;
                    margin-left: 0px;
                  }
                
                  .contact_us_6 .text-blk.input-title {
                    padding-top: 0px;
                    padding-right: 0px;
                    padding-bottom: 0px;
                    padding-left: 0px;
                  }
                
                  .contact_us_6 .form-box {
                    padding-top: 0px;
                    padding-right: 20px;
                    padding-bottom: 0px;
                    padding-left: 20px;
                  }
                
                  .contact_us_6 .container-block.form-wrapper {
                    padding-top: 50px;
                    padding-right: 15px;
                    padding-bottom: 50px;
                    padding-left: 15px;
                  }
                
                  .contact_us_6 .mob-text {
                    display: block;
                  }
                
                  .contact_us_6 .responsive-container-block.container {
                    padding-top: 0px;
                    padding-right: 0px;
                    padding-bottom: 0px;
                    padding-left: 0px;
                  }
                
                  .contact_us_6 .form-box {
                    margin-top: 200px;
                    margin-right: 0px;
                    margin-bottom: 0px;
                    margin-left: 0px;
                  }
                
                  .contact_us_6 .container-block.form-wrapper {
                    margin-top: 0px;
                    margin-right: 0px;
                    margin-bottom: 0px;
                    margin-left: 0px;
                  }
                
                  .contact_us_6 .form-box {
                    margin-top: 220px;
                    margin-right: 0px;
                    margin-bottom: 0px;
                    margin-left: 0px;
                  }
                
                  .contact_us_6 .form-box {
                    margin-top: 220px;
                    margin-right: 0px;
                    margin-bottom: 50px;
                    margin-left: 0px;
                  }
                
                  .contact_us_6 .text-blk.contactus-head {
                    font-size: 32px;
                    line-height: 40px;
                  }
                }
                
                @media (max-width: 500px) {
                  .contact_us_6 .container-block.form-wrapper {
                    padding-top: 50px;
                    padding-right: 15px;
                    padding-bottom: 50px;
                    padding-left: 15px;
                  }
                
                  .contact_us_6 .container-block.form-wrapper {
                    margin-top: 60px;
                    margin-right: 0px;
                    margin-bottom: 0px;
                    margin-left: 0px;
                  }
                
                  .contact_us_6 .responsive-cell-block.wk-ipadp-6.wk-tab-12.wk-mobile-12.wk-desk-6 {
                    margin-top: 0px;
                    margin-right: 0px;
                    margin-bottom: 15px;
                    margin-left: 0px;
                  }
                
                  .contact_us_6 .responsive-container-block {
                    margin-top: 0px;
                    margin-right: 0px;
                    margin-bottom: 35px;
                    margin-left: 0px;
                  }
                
                  .contact_us_6 .text-blk.input-title {
                    font-size: 12px;
                  }
                
                  .contact_us_6 .text-blk.contactus-head {
                    font-size: 26px;
                    line-height: 35px;
                  }
                
                  .contact_us_6 .input {
                    height: 45px;
                  }
                }

                /* start our bradn page */

                .brand-page{
               background-color: #855034;
                  background-size:cover;
                  background-position: center center;
                  /* background-attachment: fixed; */
                  height: 85vh;
                display: flex;
                align-items: center;
                justify-content: center;
                
                }

                /* start product page */
                .products-img img{
                  width: 100%;
                  height: 250px;
                  object-fit: cover;
                }
                .product-bg{
                  margin-top: 8px;
                  color: black;
                }
                .products-img {
                  margin-top: 30px;
                  border: 10px white solid;
                  height: 300px;
                  background-color: white;
                }
                #outer-brand{
             

                }
          
                .outer-brand .inner-brand img{
                  width: 100% !important;
                  /* padding: 10px; */
                  padding-left: 15px;
                  padding-right: 15px;
                }
                .outer-brand a{
                  color:#ce7813;
                  font-weight: bold;

                }
                .outer-brand p{
                  color: white;
                }
                #project-logo img{
                  width:200px !important;
                  padding: 10px;

                }
            
             #project-boder img{
              width:200px !important;
              
             }
                .outer-logo{
                  margin-top: 40px;
            border-left: 2px solid #ce7813;
            border-right: 2px solid #ce7813;
                 
                  background-color: rgba(211, 204, 204, 0.292);
                border-radius: 10px;
                text-align: center;
                padding-left: 10px;
                padding-right: 10px;
                padding-top: 10px;
                padding-bottom: 10px;
                height: 85vh;
                width: 100%;

                }
                .outer-logo img{
                  width: 100%;
                  border-bottom: 1px solid #d47317;
                  margin-bottom: 10px;
                }
                .outer-logo p{
                  font-size: 13px;
                  color: white;
                text-align: center;
                margin-top: 10px;
                line-height: 25px;
                letter-spacing: 0.5px;
                  
                }

                .outer-logo a{
                  border: 2px solid #fff112;
                  padding: 8px 22px;
                  color: white;
                  border-radius: 5px;
                }
                  .outer-logo a:hover{
                    background-color: #00aff0;
                  }

                
    /* start about-us-enquiry section */
     .about-us-enquiry{
      background: linear-gradient(rgba(24,24,24,0.6),rgba(24,24,24,0.4)),url(../img/our-products-banner.png);
      background-size: cover;
     height: 40vh;
     background-attachment: fixed;
     display: flex;
     align-items: center;
     }
    
    .about-enquiry-text>h4{
      font-size: 16px;
      line-height: 40px;
      color: white ;
    }
    .about-enquiry-text>a{
     border: 2px solid #fff112;
     padding: 8px 22px;
     color: white;
     
    }
   
    .about-enquiry-text>a:hover{
      text-decoration: none;
      color: white;
      background-color: #00aff0;
     }
    
    /* end about-us-enquiry section */


    #callme {
      position: fixed;
      left:34px;
      top:58%;
     
      cursor: pointer;
      opacity: 1;
      z-index: 99990;
      display: none;
    }
    #callme #callmeMain {
     
      /* -moz-background-clip: padding;
      -webkit-background-clip: padding-box; */
      /* background-clip: padding-box; */
      background-color:#333333;
      width: 100px;
      height: 40px;
      margin-top:127px;
      color:#00aff0;
      z-index: 9;
      display: none;
      /* -webkit-animation: zcwmini2 1.5s 0s ease-out infinite;
      -moz-animation: zcwmini2 1.5s 0s ease-out infinite; */
      animation: zcwmini2 1.5s 0s ease-out infinite;
    }
      #callme #callmeMain:before {
          content: "";
          position: absolute;
          width:100%;
          height:60%;
          top: 0;
          left: 0;
          z-index: 9;
          display: none;
         
          /* background-image: url('../img/enquire-now-button.png'); */
          /* background-repeat: no-repeat;
          background-position: center center; */
          -webkit-animation: zcwphone2 1.5s linear infinite;
          -moz-animation: zcwphone2 1.5s linear infinite;
          animation: zcwphone2 1.5s linear infinite;
      }
      #callmeMain>img{
        width: 100px;
        height: 50px;
        top:127px;
        left: 0;
        z-index: 9;
        display: none;
        position: absolute;
        animation: zcwphone2 1.5s linear infinite;
      }
    
   
    }
    .thank-you{
      height: 60vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
    .thank-you h1{
      color: #d47317;
      font-weight: 700;
      font-size: 100px;
      margin-top: 50px;
    }
 