/* common css ******************************************************************************/
/* Roundkey */
@font-face {
    font-family: "Roundkey-Bold";
    src: url('../fonts/Roundkey/Roundkey-Bold.otf');
}
/* Roboto */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

@font-face {
    font-family: 'Roboto Condensed';
    src: url('../fonts/Roboto/RobotoCondensed-Bold.eot');
    src: url('../fonts/Roboto/RobotoCondensed-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Roboto/RobotoCondensed-Bold.woff2') format('woff2'),
        url('../fonts/Roboto/RobotoCondensed-Bold.woff') format('woff'),
        url('../fonts/Roboto/RobotoCondensed-Bold.ttf') format('truetype'),
        url('../fonts/Roboto/RobotoCondensed-Bold.svg#RobotoCondensed-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

:root {
    --white: #fff;
    --black: #000;
    --yellow:#FDCF26;
    --yellow-1:#FFCC29;
    --light-green:#97B225;
    --blue:#26396E;
    --black_0C0B0B:#0C0B0B;
    --grey:#707070;
    --input_A8A8A8:#A8A8A8;
    --floral-white:#FFFBED;
    --greenish-yellow:#F9FFDE;
}
.white {
    color: var(--white);
}
.black {
    color: var(--black);
}
.blue{
    color: var(--blue);
}
.yellow-1{
    color: var(--yellow-1);
}
.green{
    color: var(--light-green);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
*::before,
*::after {
    box-sizing: border-box;
}
.common::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--black);
}
body {
    background: var(--white);
    font-family: 'Roboto', sans-serif;
}
body.show {
    position: fixed;
    top: 0;
    width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
    line-height: 1.2;
    color: var(--white);
    font-weight: 700;
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
    margin-bottom: 0;
}
h1 {
    font-size: 104px;
    font-family: "Roundkey-Bold";
    color: var(--white);
    text-transform: uppercase;
    line-height: 85px;
}
h2 {
    font-size: 42px;
    font-family: "Roboto", sans-serif;
    font-weight: 900;
}
h3 {
    font-size: 36px;
}
h4 {
    font-size: 28px;
}
h5 {
    font-size: 24px;
}
h6 {
    font-size: 18px;
}
p {
    margin: 0;
    padding: 0;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--black);
}
p:last-child {
    margin-bottom: 0;
}
.small {
    font-size: 16px;
}
ul,
ol {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
    text-transform: capitalize;
    display: inline-block;
    line-height: 1.2;
    color: inherit;
    font-family: inherit;
}
span {
    display: inline-block;
}
.section-heading {
	text-align: center;
	margin-bottom: 50px;
}
.btn-common {
    font-size: 30px;
    padding: 12px 25px;
    background: var(--yellow);
    color: var(--black) !important;
    border-radius: 10px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto Condensed';
    font-weight: bold;
    cursor: pointer;
    transition: all .5s ease;
}
.btn-common:hover{
    background: var(--black_0C0B0B);
    color: var(--white) !important;
}
.btn-common img {
    max-width: 30px;
    margin-right: 10px;
}
section {
	overflow: hidden;
}
.bg {
    padding: 70px 0;
}
.mobile {
    display: none !important;
}
.desktop {
    display: block !important;
}
img,
video {
    max-width: 100%;
}
.button-box {
	padding-top: 70px;
}
.button-box ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}
.owl-theme .owl-dots .owl-dot span {
    background: var(--black);
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--white);
    outline: 2px solid var(--white);
    outline-offset: 3px;
}
.owl-nav {
    margin-top: 0;
}
.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.owl-nav button.owl-prev {
    left: 0;
}
.owl-nav button.owl-next {
    right: 0;
}
.form-control-common {
	background: var(--white);
	border: 1px solid var(--black);
	font-size: 20px;
	padding: 15px 50px 15px 20px;
	width: 100%;
	appearance: textfield;
	color: var(--black);
	border-radius: 0;
	box-shadow: none;
	resize: none;
    outline: none;
}
.input-group {
	padding-bottom: 30px;
}

.section-heading h2 {
    text-transform: uppercase;
}

/* header css start ******************************************************************************/
@keyframes smoothScroll {
    0% {
        transform: translateY(-60px);
        opacity: 0;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}
#header.show {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: smoothScroll 1s forwards;
    z-index: 1000;
    box-shadow: 0 0 10px 2px #000;
}
#header {
    background: transparent;
    padding: 15px 0;
    transition: .5s all;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
}
#header .header-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#header .logo-box img {
    max-width: 360px;
    width: 100%;
}
#header .main-nav .click-menu,
#header .main-nav .cancel-menu {
    display: none;
    cursor: pointer;
    position: relative;
    z-index: 11;
    width: 30px;
    height: 30px;
}
#header .main-nav .click-menu span,
#header .main-nav .cancel-menu span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: .5s all ease-in-out;
    position: relative;
    border-radius: 5px;
}
#header .main-nav .cancel-menu span {
    position: absolute;
    height: 4px;
}
#header .main-nav .cancel-menu span:first-child {
    transform: rotate(45deg);
}
#header .main-nav .cancel-menu span:last-child {
    transform: rotate(-45deg);
}
#header .main-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding-left: 20px;
}
#header .button-box {
	margin-left: 20px;
	padding-top: 0;
}
#header .main-nav nav ul li {
	display: inline-block;
	position: relative;
	margin-right: 20px;
}
#header .main-nav nav ul li a {
	color: var(--white);
	padding: 5px;
	font-size: 18px;
}

/* homeBanner css ******************************************************************************/
#homeBanner .homeBanner-part {
    background: url("../images/banner.png") no-repeat;
    background-size: 100% 100%;
    background-position: top center;
    min-height:870px;
    height: 100%;
    display: flex;
    align-items: end;
    position: relative;
}

#homeBanner .homeBanner-part .box2 img {
    position: relative;
    right: -140px;
}
#homeBanner .homeBanner-part .box1 p {
    color: var(--white);
    font-family: 'Roboto Condensed';
    font-weight: bold;
    font-size: 29px;
    line-height: 36px;
    position: relative;
    text-transform: uppercase;
}
#homeBanner .homeBanner-part .box1 .img-text-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 8px;
}
#homeBanner .homeBanner-part .box1 p::after {
    background: url(../images/yellow-line.png);
    left: 0;
    position: absolute;
    top: 100%;
    content: "";
    width: 100%;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
}
/* output css ******************************************************************************/

.output-part{
    background: var(--light-green);
}
#output .output-box .output-wrapper {
    max-width: 75%;
    width: 100%;
    margin: 0 auto;
    padding: 20px 20px;
    background-position: center;
    background-size: 100% 100%;
    gap: 80px;
    z-index: 89;
}
#output .output-box .box-1 h2 {
    font-family: "Roundkey-Bold";
    font-size: 50px;
    text-transform: uppercase;
    border-right: 2px solid white;
    color: var(--white);
    width: 90%;
}

#output .output-box .box-2 {
    display: flex;
    justify-content: space-between;
}

#output .output-box .box-2 .result {
    display: flex;
    align-items: center;
}
#output .output-box .box-2 .result img {
    max-width: unset;
    margin-right: 10px;
}
#output .output-box .box-2 .text h3 {
    font-family: "Roundkey-Bold";
    line-height: 0.8;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 0;
    min-width: 125px;
}
#output .output-box .box-2 .text span {
    font-size: 50px;
    line-height: 55px;
}
/* features css ******************************************************************************/
#features .features-part {
    padding: 90px 0 140px;
}
#features .features-box .box h5 span{
    display: block;
    color: var(--black_0C0B0B);
}
#features .features-box .box img {
    margin-bottom: 15px;
}

#features .features-box .box img {
    width: auto;
}
#features .box {
    border-radius: 10px;
    padding: 25px 20px;
    margin-bottom: 30px;
    text-align: center;
    transition: 0.5s;
}
#features .col-md-2 {
    padding: 0 15px;
}
#features .box h6{
    color: var(--black);
    font-family: 'Roboto Condensed';
    font-weight: bold;
    text-transform: uppercase;
    min-height: 90px;
}
#features .box h6 span {
    display: block;
}
#features .box-floral-white{
    background-color: var(--floral-white);
}
#features .box-greenish-yellow{
    background-color: var(--greenish-yellow);
}
#features .box:hover {
    transform: scale(1.1);
    transition: 0.5s ease-in-out;
    box-shadow: 2px 2px 14px 0px #00000030;
}
#features .img-box {
    min-height: 100px;
    min-height: 100px;
    align-items: center;
    justify-content: center;
}
#features .box h6 span.botton-text {
    font-size: 13px;
}

#features  .features-box br{
    display: none;
}

#features  .features-box .featuresSlider{
    display: none;
}

#features .features-box .featuresSlider .img-box {
    display: flex;
}


/* benefits css ******************************************************************************/
#benefits {
    overflow: visible;
}
.benefits-part {
    background: url('../images/benifit-bg.png');
    background-position: center;
    background-size: 100% 100%;
}
.benefits-box .section-heading {
    text-align: left;
}
.benefits-box .left .text-box-wapper{
    position: relative;
}
.benefits-box .left .text-box-wapper::after {
    content: "";
    width: 170%;
    height: 1px;
    background: var(--yellow);
    position: absolute;
    position: absolute;
    bottom: -30px;
    left: -50%;
    z-index: 0;
}
#benefits  .benefits-box img {
    margin-top: -70px;
    position: relative;
}
.benefits-box .left .text-box-wapper {
    display: flex;
    text-align: left;
    gap: 80px;
}
.benefits-box .left .text-box-wapper .text-box h2 {
    font-size: 81px;
    font-family: "Roundkey-Bold";
    line-height: 80px;
    margin-bottom: 0;
    min-width: 200px;
}

.benefits-box .left .text-box-wapper .text-box h5 {
    font-family: 'Roboto Condensed';
    font-weight: bold;
    font-size: 26px;
    margin-bottom: 2px;
    text-transform: uppercase;
    color: var(--white);
}
.benefits-box .left p.text {
    font-family: 'Roboto Condensed';
    font-weight: bold;
    font-size: 40px;
    margin-bottom: 2px;
    text-transform: uppercase;
    color: var(--white);
    text-align: left;
    line-height: 50px;
    max-width: 472px;
    width: 100%;
    position: relative;
}
.benefits-box .left p.text::after {
    content: url('../images/green-line.png');
    right: 60px;
    position: absolute;
    top: 80%;
}
#benefits .benefits-box .join-br{
    display: none;
}

/* location-info-section css ******************************************************************************/
#location-info-section{
    background: var(--black_0C0B0B);
    padding-top: 100px;
}
.location-info-inner .location-box {
    display: flex;
    flex-wrap: wrap;
    column-gap: 15px;
}
.location-info-inner .location-box h5{
    font-weight: 500;
}
.location-info-inner .address-box p {
    border-bottom: 1px solid var(--yellow-1);
    padding-bottom: 15px;
    margin-left: 25px;
}
.location-info-inner .address-box p, .location-info-inner .number a{
    color: var(--white);
    font-size: 17px;
} 
.location-info-inner .location-box{
    margin-bottom: 10px;
}
.location-info-inner {
    margin-bottom: 70px;
}
.location-info-inner .number img {
    margin-right: 15px;
}
.location-info-inner .number a{
    color: var(--white);
}

/* footer css ******************************************************************************/
#footer{
    background: var(--black);
}
 #footer .footer-part {
    background-color: var(--black);
    padding: 40px 0 150px;
}
#footer .footer-part .footer-box {
    border-top: 1px solid #707070;
    padding-bottom: 50px;
    padding-top: 40px;
}
#footer .footer-part .footer-box p{
    color: var(--white);
}
#footer .footer-part .footer-box .box {
    border-right: 1px solid #707070;
    height: 100%;
    width: 100%;
    padding: 0 30px;
}

#footer .footer-part .footer-box .box-3 {
   border: none;
}
#footer .footer-part .box .logo-box{
    text-align: center;
}
#footer .footer-part .box .logo-box img{
    max-width: 300px;
    width: 100%;
}
#footer .footer-part .box .name p {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 10px;
    color: var(--yellow-1);
}
#footer .footer-part .footer-box .box .img-box {
    min-width: 25px;
}
#footer .footer-part .box .location {
    display: flex;
    align-items: center;
    align-items: baseline;
    margin-bottom: 15px;
}
#footer .footer-box .connect{
    margin-bottom: 35px;
}

#footer .footer-part .box .location .text p {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    margin-left: 14px;
    line-height: 1.3;
    text-transform: capitalize;
    font-size: 18px;
}

#footer .footer-part .box .call {
    display: flex;
    margin-bottom: 15px;
    align-items: center;
}
#footer .footer-part .box .call .number a {
    text-decoration: none;
    color: var(--white);
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 18px;
    margin-left: 10px;
}

#footer .footer-part .box .tollfree h5 span{
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--yellow-1);
    font-size: 20px;
}
#footer .footer-part .box .tollfree h5 {
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
}
#footer .footer-part .box .tollfree a{
    text-decoration: none;
}
#footer .footer-part .box .connect p {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    margin: 0;
}
#footer .footer-part .box .connect a{
    text-decoration: none;
    color: var(--white);
    font-family: "Roboto", sans-serif;
    font-weight: 300;
}

#footer .footer-part .box .social-media {
    display: flex;
    margin-top: 15px;
}
#footer .footer-part .box .social-media img{
    max-width: 85%;
}

#footer  .registar-footer {
    background: var(--yellow);
    padding: 12px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 999;
}
#footer .registar-footer .button-box ul {
    justify-content: center;
}
#footer .registar-footer .button-box ul .btn-common{
    background: var(--black_0C0B0B);
    color: var(--white) !important;
    text-transform: uppercase;
    padding: 15px 60px;
}
#footer .registar-footer .button-box ul .btn-common:hover{
    background: var(--white);
    color: var(--black_0C0B0B) !important;
}

#footer .footer-box .top-2 .mob-view{
    display: none;
}





/* Popup Modal css */

#enquireNowModal .modal-content{
    padding: 50px 0;
}
#enquireNowModal .modal-body {
    padding: 16px 80px;
}
#enquireNowModal .modal-content .modal-header{
    justify-content: center;
    border: 0;
}
#enquireNowModal .modal-content .modal-title {
    font-size: 24px;
    color: var(--blue);
    text-transform: uppercase;
}
#enquireNowModal .modal-content .btn-close {
    position: absolute;
    right: 10px;
    top: 10px;
    opacity: 1;
}

#enquireNowModal .modal-content .common-form .form-check{
    display: flex;
    align-items: center;
}

#enquireNowModal .modal-content .common-form .form-control-common{
    border-radius: 5px;
    border-color: var(--grey);
    text-transform: capitalize;
    color: var(--input_A8A8A8) !important;
}
#enquireNowModal .modal-content .common-form .form-control-common::placeholder{
    color: var(--input_A8A8A8);
}
#enquireNowModal .modal-content .common-form select.form-control-common {
    padding: 15px 50px 15px 20px;
    font-weight: 400;
    background-image: url(../images/down-arrow.png);
    background-repeat: no-repeat;
    background-position: 92% 50%;
    appearance: none;
    color: var(--input_A8A8A8) !important;
    width: 100%;
    max-width: 500px;
}
#enquireNowModal .modal-content .common-form .input-group.select-input-group p,
#enquireNowModal .modal-content .common-form .wpcf7-form-control-wrap{
    width: 100%;
    max-width: 500px;
}
#enquireNowModal .common-form input[type="radio"] {
    margin-right: 10px;
}
#enquireNowModal .modal-content .common-form  .input-group {
    gap: 30px;
    justify-content: center;
}
.wpcf7-spinner{
    position: absolute !important;
}
#enquireNowModal .modal-content .common-form  .input-group .form-check .form-check-label {
    font-size: 20px;
    color: var(--input_A8A8A8);
}
#enquireNowModal .modal-content .common-form  .input-group .form-check .form-check-1 {
    width: 25px;
    height: 25px;
    margin-right: 20px;
    accent-color: #279f0c;
}

#enquireNowModal .modal-content .common-form .input-group .btn-common{
    border-radius: 5px;
}


/* Thank you popup modal  */
.thank-you-modal {
	text-align: center;
	height: 50vh;
	display: flex;
	align-content: center;
	justify-content: center;
}
.thank-you-modal h2{
    color: var(--blue);
    text-transform: capitalize;
    font-size: 66px;

}

.thank-you-modal .line {
	height: 2px;
	width: 20%;
	background: var(--light-green);
	margin: 30px auto;
}
.thank-you-modal p{
  color: var(--input_A8A8A8);
  font-size: 24px;
}

.zoom {
	animation: zoom 1s linear alternate infinite;
}


@keyframes zoom {
    
    0% {
        transform: scale(0.8);
    }
    100% {
        transform: scale(1);
    }
}
