@charset "utf-8";

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.2/font/bootstrap-icons.css");

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');

/* font-family: "Titillium Web", sans-serif;
font-family: "Poppins", sans-serif; */


* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


/* ------Scrollbar CSS Start----- */

/* Firefox */

/* Chrome, Edge, and Safari */

*::-webkit-scrollbar {
    width: 5px;
}
*::-webkit-scrollbar-track {
    background: var(--white);
}
*::-webkit-scrollbar-thumb {
    background-color: var(--black);
    border-radius: 5px;
   border: 0px;
}

/* ------Scrollbar CSS End----- */



/*--- Common Style Start---*/

:root {
    --black: #101010;
    --dark: #101010;
    --white: #fff;
    --blue: #4777FB;
    --menu: #000000;
    --light-gray: #878787;
    --light-white: #F7F8FC;
    --body-font: 'Poppins', sans-serif;
    --heading: 'Titillium Web', sans-serif;
}

html,
body {
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 23px;
    color: var(--black);
    font-family: var(--body-font);
    
}
p {
    padding: 0;
    font-weight: 400;
}
p:last-child {
    margin-bottom: 0;
}

a {
    display: inline-block;
    text-decoration: none !important;
    -webkit-transition: all 300ms ease-in-out;
   -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

a:hover,
a:focus {
    color: var(--color-black);
}

figure {
    margin: 0;
    padding: 0;
   display: block;
}

img {
    width: 100%;
    height: 100%;
}

h1,
h2 {
  margin-bottom: 15px;
  font-family: var(--heading);
}
h3 {
    font-size: 22px; font-family: var(--heading);
}
h4 {font-size: 20px;}
h5 {font-size: 18px;}
h6 {font-size: 16px;}
ul {padding-left: 0px; margin-bottom: 0px;}

ul li{
    list-style: none;
  }
  
  a {
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }
  
  a:hover,
  a:focus {
    text-decoration: none;
    color: unset;
  }
  
  figure {
    margin: 0;
    padding: 0;
    display: block;
  }
  
  img {
    max-width: 100%;
  }

  .bgdark{background-color: #000;}

.ptb{padding:60px 0;}
.pt{padding-top:60px;}
.pb{padding-bottom:60px;}
/*--- Common Style End---*/

/* ==========loader common css========== */
.loader-off.loaderWrap {
    opacity: 0;
    visibility: hidden;
}
.loader img {
    width: 50px;
}

.loaderWrap {
  position: fixed;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 9991;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.9);
  transition: all 300ms ease-in-out; 
}
.loader{
    animation: loader 2s infinite linear;
}
/* ============Loader Two CSS Start=============== */

@keyframes loader {
    0% {
      transform: rotate(-45deg);
    }
    50% {
      transform: rotate(-135deg);
    }
    100% {
      transform: rotate(-225deg);
    }
  }


/*--- Bootstrap Form Start ---*/

.form-control {
    height: 40px;
    border: 1px solid var(--white);
    padding: 10px 15px;
    background-color: var(--white);
    font-size: 13px;
    color: var(--black);
    letter-spacing: 0;
    border-radius: 0;
    box-shadow: none !important;
}

.form-control:focus {
    outline: none !important;
    border: 1px solid transparent !important;
    box-shadow: none !important;
}

select.form-control:not([size]):not([multiple]) {
    height: 50px;
}

textarea.form-control {
    height: 100px;
    resize: none;
}

.form-control::placeholder {
    color: var(--color-gray);
}

.sec-space {
    padding: 60px 0;
}

.sec-space-bottom {
    padding: 0 0 60px;
}

.sec-space-top {
    padding: 60px 0 0;
}

/*- Bootstrap Form End -*/

/*-- Button Start --*/

.btn {
    background-color: #f8b221;
    border-radius: 5px;
    height: 50px;
    line-height: 50px;
    padding: 0 25px;
    font-size: 18px;
    font-weight: 600;
    margin-top: 15px;
    border: 1px solid transparent;
    text-transform: uppercase;
    position: relative;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

buton:focus,
.btn:focus,
buton:active,
.btn:active {
    outline: none;
    box-shadow: none !important;
    border: 1px solid transparent;
}

.btn-solid {
    background: #0D9B7A;
    color: var(--white);
    z-index: 9;
    position: relative;
    border: 1px solid transparent;
    transition: all .4s;
}

.btn-solid:hover {
    background: #5d0087;
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--black);
    z-index: 9;
    position: relative;
    height: auto;
    line-height: normal;
    transition: all .4s;
    padding: 0px;
    font-weight: 600;
}
.btn-outline:before {
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--black);
    height: 1px;
    width: 100%;
    content: '';
    z-index: -1;
    transition: all .4s;
}

.btn-outline:hover::before {
    border: 1px solid var(--black);
    border-top: 0px;
    height: 1px;
    width: calc(100% + 15px);
    transition: all .4s;
}

/*-- Button End --*/

/*--- TITLE Start---*/

.heading h3 {
    font-size: 36px;
    line-height: 46px;
    font-weight: 800;
    margin-bottom: 0px;
    font-family: var(--heading);
}
.heading h6 {
    font-size: 14px;
    color: var(--green-blue);
    margin-bottom: 10px;
    text-transform: uppercase;
}
.heading {
    margin-bottom: 30px;
}

/*--- TITLE End---*/


/*---   BANNER START   ---*/

.bannerarea {
    position: relative;
}
.bannertxt img {
    max-width: 200px;
    margin-bottom: 10px;
}

.banner-home .col6 {
    position: absolute;
    top: 0;
    right: 5%;
    bottom: 0;
    width: 50%;
}

.banner-home .col6 .banimg {
    height: 100%;
}
.banner-home .col6 .banimg img{object-fit: cover;}

.bannertxt h2, .bannertxt h1, .bannertxt h3, .bannertxt h4 {
    color: #ffffff;
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 20px;
    background: rgb(156, 105, 60);
    background: linear-gradient(90deg, rgba(156, 105, 60, 1) 0%, rgba(221, 172, 69, 1) 33%, rgba(209, 161, 68, 1) 50%, rgba(151, 101, 59, 1) 69%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.bannertxt p{
    font-size: 18px;
    line-height: 28px;
    color: #000;
}
.bannertxt h2 sup {
    background: #97653b;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner-home{
    position: relative;
}

.inner_banner {
    position: relative;
    padding-top: 22%;
}

.inner_banner img {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

/*---   BANNER END   ---*/


.proimg {
    text-align: center;
}

.proimg img {
    object-fit: contain;
    width: 85%;
    box-shadow: 0 2px 15px 0 #ccc;
    padding: 15px;
    background-color: #fff;
}
.prosec:nth-child(even) .proimgsec {
    order: 1;
}
.prosec {
    background: #000000;
}
.prosec:nth-child(even) {
    background-color: #262626;
}

.prosec .inner_con, .bgdark .inner_con h3, .bgdark .inner_con h4 {
    color: #fff;
}
.prosec .inner_con h2,
.bgdark .inner_con h2, .thankcss h2
{
    background: rgb(156, 105, 60);
    background: linear-gradient(90deg, rgba(156, 105, 60, 1) 0%, rgba(221, 172, 69, 1) 33%, rgba(209, 161, 68, 1) 50%, rgba(151, 101, 59, 1) 69%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
}
.prosec .inner_con h2 sup, .bgdark .inner_con h2 sup, .thankcss h2 sup {
    background: #97653b;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.thankcss h2{font-size: 4rem; line-height: 4.9rem; margin-bottom:20px; font-weight:600;}

.enquiry_modal  button.close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    background-color: #fff;
    opacity: 1;
    width: 30px;
    height: 30px;
}

.absimg{
    bottom: 0;
    left: 5%;
    max-width: 40%;
}
.absimg img {
    position: relative;
    z-index: 9;
    object-fit: contain;
}
.absimg:after {
    content: "";
    background-color: #ff0000;
    filter: blur(50px);
    width: 320px;
    height: 320px;
    position: absolute;
    top: 42px;
    left: 50%;
    transform: translateX(-46%);
    z-index: 1;
    border-radius: 50%;
    box-shadow: 0 0px 90px red;
}

.bigtxt h2 {
    font-size: 50px;
    line-height: 56px;
}

.profilesec {
    position: relative;
    padding-top: 60%;
    margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
}

.profilesec img {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.procon {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #fff;
    padding: 20px 0;
    background-image: linear-gradient(to bottom, #00000030, #000000);
}

.procon h2 {
    margin-bottom: 5px;
    font-size: 46px;
    line-height: 60px;
    font-weight: 700;
    color: #f8b221;
}
.procon p {
    font-size: 16px;
    line-height: 22px;
}
.procardinn {
    align-items: center;
}
.proinmg {
    flex: 0 0 290px;
    max-width: 290px;
}

.probtn {
    flex: 0 0 100%;
    max-width: 100%;
}
.procard {
    background: #000;
    margin: 0 0 20px 0;
    padding: 20px;
    color: #fff;
    border-radius: 20px;
}

.proconin {
    flex: 1;
    margin: 0 0 0 33px;
}
.proconin .inner_con h2 {
    color: #f8b221;
}

.proinmg img {
    object-fit: cover;
    height: auto;
    min-height: 215px;
    border-radius: 10px;
}

.probtn .btn {
    display: block;
}