/*------ Normalise CSS ------*/
a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}table{border-collapse:collapse;border-spacing:0}button:focus, textarea:focus, div:focus {outline: 0 !important;}select:focus {outline: none;}a, a:hover {text-decoration: none;color: inherit;}button{background: transparent;border: 0;padding: 0;line-height: 0;}button:focus{outline: none;box-shadow: none;}input::placeholder,textarea::placeholder{color:var(--placeholder)!important}input::-moz-placeholder,textarea::-moz-placeholder{color:var(--placeholder)!important;opacity:1}input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:var(--placeholder)!important;opacity:1}input:focus{outline:0!important}input::-webkit-inner-spin-button,input::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}input[type=number]{-moz-appearance:textfield}ul{list-style-type:none;padding:0;margin:0}a:hover{text-decoration:none}p{margin:0}button{border:0}button:focus{outline:0}

/*------ Font CSS ------*/

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Thin.woff2') format('woff2'),
        url('../fonts/Montserrat-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-ExtraLight.woff2') format('woff2'),
        url('../fonts/Montserrat-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Light.woff2') format('woff2'),
        url('../fonts/Montserrat-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.woff2') format('woff2'),
        url('../fonts/Montserrat-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Medium.woff2') format('woff2'),
        url('../fonts/Montserrat-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-SemiBold.woff2') format('woff2'),
        url('../fonts/Montserrat-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.woff2') format('woff2'),
        url('../fonts/Montserrat-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-ExtraBold.woff2') format('woff2'),
        url('../fonts/Montserrat-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Black.woff2') format('woff2'),
        url('../fonts/Montserrat-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/*------ Font CSS End ------*/

/*------ Main CSS ------*/

* {
    box-sizing: border-box;
}
:root {
    --primary-color: #FEFAEE;
    --secondry-color: #9B8F7F;
    --text-color: #444444;
}
body {
    font-family: 'Montserrat';
    background: var(--primary-color);
    color: var(--text-color);
    font-weight: 400;
	padding: 0;
    margin: 0;
}
a {
    transition: .3s ease-out;
}
a:hover {
    color: var(--secondry-color) !important;
}
.no-scroll {
    overflow: hidden;
}
.white-bg {
    background: white;
}
.grey-bg {
    background: #676767;
}
.cream-bg {
    background: #f0ebe5;
}
.purple-bg {
    background: #5d5b68;
}
.white-texture {
    background: url("http://mistycourtyard-munnar.com/assets/images/banner/white-texture.jpg") repeat;
}
.loader {
    width: 100%;
    height: 100%;    
    background: url('../img/banner/sand.jpg') 50% 50% no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 0px;
    top: 0px;    
    z-index: 9999;
}
.loader:before {
    content: "";
    width: 180px;
    height: 180px;
    position: absolute;
    left: calc(50% - 90px);
    top: calc(50% - 90px);
    background: url("../img/brand-logo.png") no-repeat;
    background-size: cover;
    animation: moveElements 3s ease-in-out 100ms infinite;
}
@keyframes moveElements {
    0%{transform: translateY(-2rem)}
    50%{transform: translateY(2rem) }
    100%{transform: translateY(-2rem)}
}
@keyframes rotationCircle {
    0%{transform: rotate(0deg) }
    100%{transform: rotate(360deg)}
}
.row {
    clear: both;
  }

/*------ Main CSS End ------*/

/*------ Header ------*/

.header-block {
    float: left;
    width: 100%;
    height: 100px;
    position: fixed;
    left: 0;
    top: 0;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    z-index: 10;
}
.header-inner {
    float: left;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.menu-block {
    float: left;
    width: 33.33%;
}
.hamburger-menu {
    float: left;
    width: auto;
    position: relative;
    z-index: 1;
}
.line {
    width: 40px;
    height: 1px;
    background: #fff;
    display: block;
    position: relative;
    top: 0;
    margin-bottom: 9px;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.line.line:nth-child(3) {
    margin-bottom: 0;
}
.on .line:nth-child(1) {
    background: transparent;
}
.on .line:nth-child(2) {
    transform: rotate(45deg) translate(0px,0);
    background: white;
}
.on .line:nth-child(3) {
    transform: rotate(-47deg) translate(7px,-7px);
    background: white;
}
.menu-panel {
    float: left;
    width: 100%;
    height: 100vh;
    position: fixed;
    left: -100%;
    top: 0;
    background: #5d5b68;
    background-size: cover;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.brand-logo {
    float: left;
    width: 33.33%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.brand-logo img {
    float: left;
    width: 135px;
    object-fit: cover;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.other-details {
    float: left;
    width: 33.33%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.other-details li {
    float: left;
    font-size: 14px;
    color: white;
    margin-left: 15px;
    text-transform: uppercase;
}
.other-details li a:hover {
    color: white !important;
}
.other-details li i {
    float: left;
    margin-right: 7px;
}
.menu-link {
    float: left;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.menu-link li {
    font-size: 50px;
    font-weight: 200;
    color: white;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.menu-link li.active {
    color: var(--secondry-color);
}
.menu-link li:last-child {
    margin: 0;
}
.menu-panel.active {
    left: 0;
}
.header-block.sticky {
    height: 80px;
    background: white;
    box-shadow: 0 1px 4px 0 rgb(0 0 0 / 10%);    
}
.sticky .header-inner {
    height: 80px;
}
.sticky .line {
    background: var(--secondry-color);
}
.sticky .on .line {
    background: white;
}
.sticky .on .line:nth-child(1) {
    background: transparent;
}
.sticky .other-details li {
    color: var(--secondry-color);
}
.sticky .other-details li a:hover {
    color: var(--secondry-color) !important;
}
.sticky .brand-logo img {
    width: 85px;
}
.sticky-logo {
    display: none;
}
.sticky .sticky-logo {
    display: block;
}
.sticky .non-sticky-logo {
    display: none;
}

/*------ Header End ------*/

/*------ Banner ------*/

.banner-area {
    float: left;
    width: 100%;
    height: 100vh;
}
.banner-area .carousel {
    float: left;
    width: 100%;
    height: 100%;
}
.banner-area .carousel-inner {
    float: left;
    width: 100%;
    height: 100%;
}
.banner-area .carousel-item {
    float: left;
    width: 100%;
    height: 100%;
}
.banner-area .carousel-item:before {
    content: "";
    width: 100%;
    height: 100%;
    background: black;
    opacity: .5;
    position: absolute;
    left: 0;
    top: 0;
}
.banner-area .carousel-control-next, 
.banner-area .carousel-control-prev {
    width: auto;
    padding: 0 20px;
}
.banner-area .carousel-item img {
    float: left;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner-area .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin: 6px;
}
.banner-area .carousel-text {
    float: left;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 15%;
}
.banner-area .carousel-text h1 {
    font-size: 50px;
    line-height: normal;
    font-weight: 300;
    color: white;
    text-align: center;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgb(0 0 0 / 15%);
}
.banner-area .carousel-text p {
    font-size: 22px;
    line-height: normal;
    color: white;
    font-weight: 100;
    text-shadow: 0 2px 4px rgb(0 0 0 / 15%);
}
.logo-badge {
    float: left;
    width: 125px;
    height: 125px;
    position: absolute;
    right: 35px;
    top: 120px;
    z-index: 3;
}
.logo-badge img {
    float: left;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*------ Banner End ------*/

/*------ Content Area ------*/

.content-area {
    float: left;
    width: 100%;
    padding: 60px 20px;
}
.texture {
    background: url("../img/banner/sand.jpg") 50%;
    background-attachment: fixed;
    background-position: top;
}
.boiler-text {
    float: left;
    width: 100%;
    padding: 0 20px;
    display: flex;
    flex-flow: column;
    align-items: center;
}
.boiler-text h3 {
    float: left;
    width: auto;
    font-size: 40px;
    line-height: 66px;
    font-weight: 600;
    margin-bottom: 20px;    
    text-transform: uppercase;
    position: relative;
}
.boiler-text p {
    float: left;
    width: 100%;
    font-size: 25px;
    line-height: 40px;
    color: #848484;
    font-weight: 300;
    text-align: justify;
}
.boiler-logo {
    float: left;
    width: 150px;
    height: 150px;
    border: 2px solid var(--secondry-color);
    background: var(--primary-color);
    border-radius: 50%;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.5px 2px 0 var(--secondry-color);
    margin-bottom: 20px;
}
.boiler-logo img {
    float: left;
    width: 100%;
    object-fit: contain;
}
.boiler-image img {
    float: left;
    width: 100%;
    object-fit: contain;
}
.boiler-image iframe {
    float: left;
    width: 100%;
    height: 500px;
}
.section-header h3 {
    float: left;
    width: 100%;
    font-size: 40px;
    line-height: 66px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    position: relative;
}
.grey-bg .section-header h3,
.purple-bg .section-header h3 {
    color: white;
}
.section-content {
    float: left;
    width: 100%;
}
.section-content p {
    float: left;
    width: 100%;
    font-size: 25px;
    line-height: 40px;
    color: #848484;
    font-weight: 300;
    text-align: justify;
    margin-bottom: 30px;
}
.grey-bg .section-content p,
.purple-bg .section-content p {
    color: white;
}
.each-feature {
    float: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 30px 0;
    transition: .3s ease-out;
    opacity: .5;
}
.each-feature:hover {
    opacity: 1;
}
.icon-box {
    float: left;
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
}
.icon-box img {
    float: left;
    width: 100%;
    height: 100%;
}
.each-feature h5 {
    font-size: 18px;
    text-transform: uppercase;
    color: white;
}
.grid-x {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
}
.align-justify {
    justify-content: space-between;
}
.cell {
    flex: 0 0 auto;
    min-height: 0px;
    min-width: 0px;
    width: 100%;
}
.grid-x > .medium-shrink, 
.grid-x > .medium-full, 
.grid-x > .medium-1, 
.grid-x > .medium-2, 
.grid-x > .medium-3, 
.grid-x > .medium-4, 
.grid-x > .medium-5, 
.grid-x > .medium-6, 
.grid-x > .medium-7, 
.grid-x > .medium-8, 
.grid-x > .medium-9, 
.grid-x > .medium-10, 
.grid-x > .medium-11, 
.grid-x > .medium-12 {
    flex-basis: auto;
}
.grid-x > .medium-12, 
.grid-x > .medium-11, 
.grid-x > .medium-10, 
.grid-x > .medium-9, 
.grid-x > .medium-8, 
.grid-x > .medium-7, 
.grid-x > .medium-6, 
.grid-x > .medium-5, 
.grid-x > .medium-4, 
.grid-x > .medium-3, 
.grid-x > .medium-2, 
.grid-x > .medium-1, 
.grid-x > .medium-shrink {
    flex: 0 0 auto;
}
.grid-x > .medium-6 {
    width: 50%;
}
.project {
    height: 350px;
    position: relative;
    margin-bottom: 0px;
    transition: 1.5s cubic-bezier(0.33, 0.63, 0.9, 0.95);
    opacity: 0;
    transform-origin: center top;
    transform-style: preserve-3d;
    transform: translateY(10%);
    transition: opacity 0.3s cubic-bezier(0.215, 0.61, 0.355, 1), transform 1s cubic-bezier(0.215, 0.61, 0.355, 1), padding 0.3s cubic-bezier(0.65, 0.21, 0.6, 0.87);
    padding: 1px;
}
.project {
    min-height: 650px;
    height: 80vh;
}
.project.is-inview {
    transform: none;
    opacity: 1;
}
.project .image-container {
    width: 100%;
    height: 100%;
    position: relative;
    transition: 0.3s cubic-bezier(0.65, 0.21, 0.6, 0.87);
}
.project .image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.project .image-container .image {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: 0.3s cubic-bezier(0.65, 0.21, 0.6, 0.87);
}
.project.half {
    min-height: 350px;
    height: 30vh;
}
.image img {
    float: left;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s cubic-bezier(0.65, 0.21, 0.6, 0.87);
}
.project .text {
    transition: 0.3s cubic-bezier(0.65, 0.21, 0.6, 0.87);
    position: absolute;
    z-index: 2;
    padding: 20px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
    bottom: 0;
    width: 100%;
}
.project .text {
    position: relative;
    opacity: 0;
    background: none;
}
.project:hover .text {
    opacity: 1;
}
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #080708;
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
}
.project .overlay {
    opacity: 0;
    transition: 0.3s cubic-bezier(0.65, 0.21, 0.6, 0.87);
}
.project:hover .overlay {
    opacity: 0.4;
}
.project:hover .image-container .image img {
    transform: scale(1.05);
}
.text .title {
    float: left;
    width: 100%;
    color: white;
    font-size: 32px;
    margin-bottom: 5px;
    line-height: normal;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
}
.project .text p {
    margin-bottom: 0;
    color: #FFF8E8;
    font-size: 20px;
    text-align: center;
}
.each-testimonial {
    float: left;
    width: 100%;
    background: rgb(155 143 127 / 40%)
}
.testimonial-content {
    float: left;
    width: 100%;
    height: 350px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.testimonial-user {
    float: left;
    width: 100%;
    height: 350px;
}
.testimonial-user img {
    float: left;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-content h5 {
    font-size: 25px;
    line-height: 30px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 5px;
    position: relative;
}
.testimonial-content h5:before {
    content: "\e67f";
    font-family: 'themify';
    font-size: 66px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: .2;
}
.testimonial-content p {
    font-size: 22px;
    font-weight: 300;
}
.testimonial .carousel-control-next, 
.testimonial .carousel-control-prev {
    width: 60px;
    height: 60px;
    background: var(--secondry-color);
    left: auto;
    top: auto;    
    bottom: 0;
}
.testimonial .carousel-control-next {
    right: 0;
}
.testimonial .carousel-control-prev {
    right: 61px;
}
.gallery {
    margin: 15px 0;
    cursor: pointer;
}
.gallery img {
    float: left;
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.more-button {
    float: left;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}
.border-btn {
    float: left;
    width: auto;
    height: 40px;
    line-height: 40px;
    background: var(--secondry-color);
    color: white;
    border: 1px solid var(--secondry-color);
    padding: 0 20px;
}
.border-btn:hover {
    background: white;
}
.input-box {
    float: left;
    width: 100%;
}
.input-box input {
    float: left;
    width: 100%;
    height: 50px;
    border: 1px solid #dedede;
    background: transparent;
    padding: 0 25px;
    color: var(--white);
    margin-bottom: 20px;
}
.input-box input::placeholder, 
.input-box textarea::placeholder {
    color: #bdbdbd !important;
}
.input-box textarea {
    float: left;
    width: 100%;
    height: 150px;
    border: 1px solid #dedede;
    background: transparent;
    padding: 20px 25px;
}
.form-wrapper .button-block {
    float: left;
    width: 100%;
    margin-top: 20px;
}
.form-wrapper .button-block .general-btn {
    float: left;
    width: auto;
    height: 50px;
    line-height: 50px;
    border: 1px solid var(--secondry-color);
    color: white;
    background: var(--secondry-color);
    padding: 0 20px;
    cursor: pointer;
}
.form-wrapper .button-block .general-btn:hover{
    background: var(--golden);
    color: var(--white);
}
.gridbox .col-lg-6 {
    margin-bottom: 30px;
}
.each-grid-box {
    float: left;
    width: 100%;
    height: 100%;
    background: white;
    box-shadow: 0 1px 4px 0 rgb(0 0 0 / 10%);
}
.grid-img {
    float: left;
    width: 100%;
    /* height: 300px; */
    position: relative;
}
.grid-img:before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 15%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}
.grid-img img {
    float: left;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.grid-details {
    float: left;
    width: 100%;
    padding: 30px;
}
.grid-details h5 {
    float: left;
    width: 100%;
    font-size: 26px;
    line-height: 30px;
    font-weight: 600;
    color: var(--secondry-color);
    text-transform: uppercase;
    margin-bottom: 10px;
}
.grid-details p {
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    margin-bottom: 0;
}
.accordion-box, 
.accordion-box .accordion,
.accordion-box .accordion-item  {
    float: left;
    width: 100%;
}
.accordion-box .accordion-item {
    margin-bottom: 15px;
    border-radius: 0;
}
.accordion-box .accordion-button {
    background: var(--secondry-color);
    font-size: 18px;
    font-weight: 600;
    color: white;
    cursor: pointer;
}
.accordion-box .accordion-button:not(.collapsed) {
    background: var(--secondry-color);
    color: white;
}
.accordion-box .accordion-button::after {
    content: "\e64b";
    font-family: 'themify';
    background: none;
}
.accordion-box .accordion-body {
    float: left;
    width: 100%;
    padding: 20px;
}
.accordion-box .accordion-body p {
    float: left;
    width: 100%;
    font-size: 20px;
    line-height: 26px;
}
.accordion-box .accordion-body p:last-child {
    margin-bottom: 0;
}
.accordion-box .accordion-item:first-of-type .accordion-button {
    border-radius: 0;
}

/*------ Content Area End ------*/

/*------ Footer ------*/

.footer-block {
    float: left;
    width: 100%;
    padding: 60px 0 0 0;
    background: #1c1c1c;
}
.footer-base {
    float: left;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.footer-logo {
    float: left;
    width: 125px;
}
.footer-logo img {
    float: left;
    width: 100%;
}
.footer-base address {
    font-size: 14px;
    color: #858585;
    text-align: center;
    line-height: 28px;
    margin: 20px 0;
}
.footer-base address i {
    margin-right: 10px;
}
.social-link {
    float: left;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}
.social-link li {
    margin: 0 20px;
}
.social-link li a {
    color: #858585;
}
.ta-ico:before {
    content: "";
    width: 20px;
    height: 13px;
    background: url("../img/icons/ta-icon.png") no-repeat;
    display: inline-block;
}
.ta-ico:hover:before {
    background: url("../img/icons/ta-icon-theme.png") no-repeat;
}
.copyright-block {
    float: left;
    width: 100%;
    border-top: 1px solid #303030;
}
.copyright-block {
    float: left;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.copyright-block p {
    font-size: 14px;
    color: #858585;
}
.back-to-top {
    float: left;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-color: var(--secondry-color);
    color: white;
    box-shadow: 0 2px 6px 0 rgb(0 0 0 / 30%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 35px;
    bottom: 20px;
    cursor: pointer;
    display: none;
    z-index: 2;
}
.back-to-top:hover {
    color: white !important;
}
.back-to-top .ti-angle-up {
    float: left;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*------ Footer End ------*/

/*------ Media Queries ------*/

@media (min-width: 992px) {
    
}

@media (min-width: 1200px) {

}

@media(max-width: 1280px) {

    .banner-area .carousel-text h1 {
        font-size: 30px;
    }
    .banner-area .carousel-text p {
        font-size: 18px;
    }
    .logo-badge {
        width: 90px;
        height: 90px;
    }

}

@media(max-width: 1199px) {

}

@media(max-width: 1024px) {
   
}

@media(max-width: 991px) {

    .loader:before {
        width: 125px;
        height: 125px;
        left: calc(50% - 62.5px);
        top: calc(50% - 62.5px);
    }
    .other-details {
        display: none;
    }
    .header-block {
        height: 70px;
    }    
    .header-inner {
        height: 70px;
        padding: 0 10px;
    }    
    .menu-block {
        width: auto;
        margin-right: 20px;
    }
    .line {
        width: 30px;
    }
    .brand-logo { 
        width: auto;
    }    
    .brand-logo img {
        width: 85px;
    }  
    .menu-link li {
        font-size: 25px;
    }  
    .banner-area .carousel-text h1 {
        font-size: 19px;
        font-weight: 600;
        margin-bottom: 10px;
    }    
    .banner-area .carousel-text p {
        font-size: 15px;
        text-align: center;
    }    
    .banner-area .carousel-control-next, 
    .banner-area .carousel-control-prev {
        padding: 0 10px;
    }    
    .logo-badge {
        width: 80px;
        height: 80px;
        right: calc(50% - 40px);
        top: auto;
        bottom: 60px;
    }    
    .header-block.sticky {
        height: 70px;
    }    
    .sticky .header-inner {
        height: 70px;
    }    
    .sticky .brand-logo img {
        width: 85px;
    }    
    .content-area {
        padding: 30px 10px;
    }   
    .texture {
        background-attachment: unset;
    } 
    .boiler-logo {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }    
    .boiler-text {
        padding: 0;
    }
    .boiler-text h3,
    .section-header h3 {
        font-size: 25px;
        line-height: normal;
    }    
    .boiler-text p,
    .section-content p {
        font-size: 18px;
        line-height: 32px;
    }    
    .grid-details h5 {
        font-size: 18px;
    }
    .grid-details p {
        font-size: 16px;
    }
    .each-feature {
        margin-bottom: 10px;
    }
    .each-feature h5 {
        font-size: 14px;
    }
    .icon-box {
        width: 45px;
        height: 45px;
    }
    .grid-x > .medium-6 {
        width: 100%;
    }
    .project, .project.half {
        height: 300px;
        min-height: auto;
    }
    .project .text {
        opacity: 1;
    } 
    .project .overlay {
        opacity: 0.4;
    }
    .text .title {
        font-size: 18px;
    }
    .project .text p {
        font-size: 16px;
    }
    .testimonial-content {
        height: auto;
    }    
    .testimonial-content h5 {
        font-size: 18px;
        text-align: justify;
    }    
    .testimonial-content p {
        color: var(--text-color) !important;
        font-weight: 400;
    }    
    .testimonial-user {
        height: 260px;
    }    
    .gallery {
        margin: 0 0 30px;
    }
    .accordion-box .accordion-body p {
        font-size: 18px;
        line-height: 32px;
    }    
    .copyright-block {
        padding: 0 20px;
        text-align: center;
    }    
    .copyright-block p {
        font-size: 12px;
    }    
    
}

@media(max-width: 767px) {

}

/*------ Media Queries End ------*/

.carousel-control-prev {
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")
}

.carousel-control-next {
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")
}