



body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-size: 15px;
	background: #fff;
	font-family: 'DM Sans', sans-serif;
	color: #121212;
	/*scroll-behavior: smooth;*/
}

.t-bg {
	background: var(--main-color) !important;
}


.spread-title {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1px;
	color: var(--main-color);
}

@media (max-width: 767.98px) {
	.spread-title {
	    font-size: 13px;
	}
}

.js-anchor {
	cursor: pointer;
}

/**** customized checkbox , radio *****/

.js-radio-label span,
.js-checkbox-label span {
    font-size: 13px;
}

.js-radio-label,
.js-checkbox-label {
    position: relative;
    padding-left: 22px;
    cursor: pointer;
    font-weight: 400;
}

.js-radio-label input,
.js-checkbox-label input {
    display: none;
}


.js-checkbox-label:after {
    content: '';
    position: absolute;
    top: 4px;
    left: 0;
    display: block;
    width: 14px;
    height: 14px;
    border: 1px solid #ccc;
    background: #f9f9f9;
}

.js-checkbox-label.checked:before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    display: block;
    width: 5px;
    height: 9px;
    z-index: 2;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(45deg);
}


.js-radio-label:after {
    content: '';
    position: absolute;
    top: 1px;
    left: 0;
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: #f9f9f9;
}

.js-radio-label.checked:after {
    border: 1px solid #000;
}

.js-radio-label.checked:before {
    content: '';
    position: absolute;
    top: 5px;
    left: 4px;
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #000;
    z-index: 2;
}



/*** global ******/

.form-control:not(textarea),
.form-select {
    height: 45px;
}

.form-control,
.form-select {
    border-radius: 0;
    border: 1px solid #f1f1f1;
}

.form-control::placeholder {
    font-weight: 300;
    color: #888;
    font-size: 15px;
}

.form-group label {
    letter-spacing: 0.3px;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.form-control:focus,
.form-select:focus {
    box-shadow: none;
    border-color: var(--main-color);
    outline: none;
}



.container {
	max-width: 1400px;
}





.page {
    padding-bottom: 50px;
}


/* breadcrumb banner */



.breadcrumb-banner {
    background-attachment: sticky;
    min-height: 520px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
    color: #fff;
    display: flex;
    align-items: flex-end;
}


.breadcrumb-banner:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    /*background: rgba(35, 148, 148, 0.85);*/
    background: rgba(2,15,32,0.90);
    z-index: -1;
}



.breadcrumb-banner .content {
    background: none;
    width: 100%;
    padding: 0;
	padding-bottom: 100px;
}

.breadcrumb-banner .heading {
    font-size: 50px;
    font-weight: 900;
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
    border-left: 4px solid var(--main-color);
}

.breadcrumb-banner p {
    font-size: 20px;
    font-weight: 300;
    color: rgba(255,255,255,0.90);
    letter-spacing: 0.3px;
    padding-left: 15px;
}

@media (max-width: 767.98px) {
	.breadcrumb-banner {
		min-height: 350px;
	    background-attachment: unset;
	}

	.breadcrumb-banner .content {
		padding-bottom: 50px;
	}

	.breadcrumb-banner .heading {
	    font-size: 35px;
	    padding-left: 10px;
	    border-left: 2px solid var(--main-color);
	}

	.breadcrumb-banner p {
	    font-size: 17px;
	    padding-left: 10px;

	}

}





.t-btn.small {
    font-size: 13px;
	font-weight: 600;
}

.t-btn.big {
    font-size: 16px;
	padding: 0.9em 1.8em;
}

.t-btn.xxl {
    font-size: 20px;
}


.t-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
	letter-spacing: 0.3px;
    font-size: 14px;
    padding: 0.8em 1.6em;
	border-radius: 5px;
    position: relative;
    text-decoration: none;
	text-transform: uppercase;
    overflow: hidden;
    border: none !important;
}


.t-btn {
    z-index: 1;
    overflow: hidden;
}




.t-btn.theme {
    background: var(--main-color-2);
    color: var(--text-color-2);
}

.t-btn.theme-2 {
    background: var(--main-color);
    color: var(--text-color);
}

.t-btn.dark {
    background: #000;
    color: #fff;
}



.t-btn:hover {
    color: #fff;
}


@media (min-width: 992px) {
	.t-btn:after {
	    content: '';
	    display: block;
	    width: 17px;
	    height: 17px;
	    position: absolute;
	    bottom: 0;
		border-radius: 50%;
	    left: 50%;
	    background: rgba(0,0,0,0.5);
	    z-index: -1;
	    transform: translate(-50%, 50%);
	    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
	}

	.t-btn:hover:after {
	     width: 110%;
		 border-radius: 0;
	    height: 110%;
	    transform: translate(-50%, 0);
	    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
	}
}





/************ CALCULATOR **********/













/**** CONTACT FIXED PANEL ****/



.contact-fixed-panel {
    position: fixed;
    left: 0;
    top: 30%;
    z-index: 100 !important;
}

.contact-fixed-panel .bar {
    margin-bottom: 5px;
    min-width: 250px;
    max-width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    position: relative;
    left: calc(-100% + 40px);
    transition: all 0.2s ease-in;
}

.contact-fixed-panel .bar .icon-box {
    width: 40px;
    height: 40px;
    font-size: 22px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}


.contact-fixed-panel .bar a {
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
}

.contact-fixed-panel .bar {
    background: var(--main-color-2);
}


.contact-fixed-panel .content-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 40px);
    border-right: 1px solid rgba(0,0,0,0.15);
}


.contact-fixed-panel .bar:hover {
    left: 0;
    transition: all 0.2s ease-in;
}

@media (max-width: 768px) {
    .contact-fixed-panel {
        display: none;
    }
}


/*********** MAIN HEADER ********/


.main-header {
    background: #fff;
    box-shadow: 0 0 15px rgba(0,0,0,0.12);
}

.main-header .nav-link {
    font-size: 18px;
    color: #121212;
}

.main-header .t-btn {
    font-size: 11px;
}

.main-header .nav-link:hover {
    color: var(--main-color-2);
}

.main-header .nav-link.active {
    color: var(--main-color) !important;
}

.main-header .navbar-toggler {
    font-size: 23px;
}



.main-header .dropdown-item a {
    color: #121212;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
}

.main-header .dropdown-item a:hover,
.main-header .dropdown-item a:focus {
    color: var(--main-color);
    background: none;
}

.main-header .dropdown-item:hover {
    background: none;
}



.home .main-header:not(.sticky) .coler {
    position: relative;
}

/* .home .main-header:not(.sticky) .coler:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500%;
    background: #fff;
    display: block;
    height: 100%;
    z-index: -1;
} */



.home .main-header:not(.sticky),
.hd .main-header:not(.sticky) {
    background: transparent !important;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.home .main-header:not(.sticky) .first,
.main-header .second,
.hd .main-header:not(.sticky) .first,
.main-header .second {
    display: none;
}

.home .main-header:not(.sticky) .second,
.hd .main-header:not(.sticky) .second {
	display: block;
}

.home .main-header:not(.sticky),
.hd .main-header:not(.sticky) {
    background: transparent !important;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.main-header .nav-link {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
	padding-left: 20px !important;
	padding-right: 20px !important;
}

.home .main-header:not(.sticky) .nav-link,
.hd .main-header:not(.sticky) .nav-link {
    color: rgba(255,255,255,0.9);
}

.main-header:not(.sticky) .nav-link:hover {
    color: var(--main-color);
}





.dropdown-menu {
    background: #fff;
    border-radius: 0;
    border: none;
}


@media (max-width: 992px) {
	.main-header .navbar {
		padding-top: 0;
		padding-bottom: 0;
	}

	.home .main-header:not(.sticky) .navbar-toggler {
		color: rgba(255,255,255,0.9);
	}

	.main-header .navbar-toggler {
		color: rgba(0,0,0,0.9);
	}

	.main-header .navbar-brand img {
		width: 150px;
	}
}



/******* main footer *******/

/* .main-footer {
    background: #272727;
}


.main-footer .copyright {
    color: #fff;
    padding: 12px 0;
    font-size: 13px;
}

.main-footer ul a {
	color: #fff;
}

.main-footer .copyright .list-inline {
	display: flex;
	list-style: none;
	margin-bottom: 0;
	padding-left: 0;
	gap: 10px;
}

@media (max-width: 991.98px) {
	.main-footer .copyright .list-inline {
		flex-wrap: wrap;
		justify-content: center;
	}

	.main-footer .copyright .list-inline li {
		width: 100%;
	}

} */




.main-footer {
    position: relative;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}



.main-footer:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(2,15,32,0.95);
    z-index: -1;
}

.main-footer .top-foot {
    padding: 50px 0;
    position: relative;
}

.main-footer .top-foot .container .cont {
    padding: 20px 45px;
    border-radius: 100px;
    background: #fff;
}

.main-footer .top-foot:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15%;
    width: 70%;
    height: 1px;
    background: rgba(255,255,255,0.2);
}






.main-footer .top-foot .contact-box {
    display: flex;
    gap: 15px;
}

.main-footer .top-foot .contact-box .icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #f1f1f1;
    width: 50px;
    font-size: 25px;
	color: var(--main-color-2);
    height: 50px;
}


.main-footer .top-foot .contact-box .info-box {
    width: calc(100% - 50px - 15px);
}


.main-footer .top-foot .contact-box .title {
    display: block;
    font-size: 13px;
    color: rgba(0,0,0,0.7);
    font-weight: 600;
	text-transform: uppercase;
}

.main-footer .top-foot .contact-box .value {
    display: block;
    font-size: 19px;
    text-decoration: none;
    color: #000;
    font-weight: 700;
}






.main-footer .copyright {
	padding: 30px 0;
	position: relative;
	color: rgba(217, 217, 217, 0.9);
	font-weight: 500;
	font-size: 13px;
}

.main-footer .copyright:before {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    width: 70%;
    height: 1px;
    background: rgba(255,255,255,0.2);
}


.main-footer .main-foot {
    padding: 50px 0;
}


.main-footer .main-foot .footheading {
    position: relative;
    color: #fff;
    font-size: 19px;
    font-weight: 900;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.main-footer .main-foot .footheading:before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--main-color-2);
}

.main-foot .footheading:after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 30px;
    background: #fff;
}


.main-footer .list a {
    color: #B6B6B7;
    line-height: 3;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
}

.main-footer .list a:hover {
    color: var(--main-color-2);
}

.main-footer .main-foot  {
    color: #B6B6B7;
}

.main-footer .main-foot p  {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
}

.main-footer .list {
    list-style: square;
    padding-left: 18px;
    color: var(--main-color);
}


@media (max-width: 767.98px) {

	.main-footer .top-foot .container .cont {
	    padding: 20px 25px;
	    border-radius: 10px;
	}


	.main-footer .copyright {
		font-size: 11px;
	}

	.main-footer .top-foot .contact-box {
		flex-wrap: wrap;
		text-align: center;
		justify-content: center;
	}

	.main-footer .top-foot .contact-box .info-box {
		width: 100%;
		justify-content: center;
	}

	.main-footer .top-foot .contact-box .title {
	    font-size: 12px;
	}

	.main-footer .top-foot .contact-box .value {
	    font-size: 16px;
	}


}













/***************** HOME PAGE ***************/

/*** main-banner **/

.main-banner {
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    background-attachment: fixed;
}



.main-banner .content {
    padding: 25px;
    color: #fff;
    font-weight: 400;
    font-size: 35px;
    max-width: 750px;
    /*background: rgba(47, 190, 188, 0.7);*/
    background: rgba(42, 105, 93, 0.8);

}

.main-banner {
    display: flex;
    align-items: center;
    justify-content: center;

}

.main-banner:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: rgba(2,15,32,0.75);
}

.main-banner {
    position: relative;
    z-index: 1;
    min-height: 750px;
}

.main-banner .content {
    background: none;
    width: 100%;
    padding: 0;
}

.main-banner .heading {
    font-size: 55px;
    font-weight: 900;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
    border-left: 6px solid var(--main-color);
}

.main-banner p {
    font-size: 20px;
    font-weight: 300;
    color: rgba(255,255,255,0.90);
    letter-spacing: 0.3px;
    padding-left: 20px;
}

@media (max-width: 767.98px) {
	.main-banner {
		min-height: 100vh;
	    background-attachment: unset;
	}

	.main-banner .heading {
	    font-size: 35px;
	    padding-left: 10px;
	    border-left: 4px solid var(--main-color);
	}

	.main-banner p {
	    font-size: 17px;
	    padding-left: 10px;

	}

}


body.home {
	padding-top: 0 !important;
}






/** about section **/

.home-page .about-section {
    background: #f9f9f9;
    padding: 70px 0;
}

.home-page .about-section .benefit-box {
    background: #fff;
    box-shadow: 0 0 15px rgba(0,0,0,0.12);
    padding: 25px;
}

.home-page .about-section .benefit-box h6 {
    font-size: 17px;
}

.home-page .about-section .benefit-box .content {
    font-weight: 400;
    font-size: 15px;
    line-height: 2;
    font-style: italic;
    color: #888;
}

.home-page .about-section .benefit-box .content ul {
    padding-left: 18px;
}

.home-page .about-section .benefit-box .img-box {
    border-radius: 50%;
    display: flex;
    width: 75px;
    height: 75px;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    margin-bottom: 25px;
}


.home-page .about-section {
    position: relative;
    z-index: 1;

}

.home-page .about-section:after {
    content: '';
    width: 40%;
    height: 300px;
    position: absolute;
    left: 0;
    z-index: -1;
    top: calc(50% - 150px);
    background: var(--main-color);
}


.home-page .about-section .cont {
    max-width: 650px;
}

.home-page .about-section p {
    font-size: 18px;
    line-height: 1.7;
    font-weight: 300;
}


.home-page .about-section .section-heading {
    font-size: 55px;
    line-height: 1;
    font-weight: 700;
    margin-top: 20px;
}


@media (min-width: 768px) {
    .home-page .about-section .second {
        padding-top: 70px;
    }
}



.section-heading {
    font-size: 39px;
    font-weight: 900;
    text-align: left;
}

@media (max-width: 991.98px) {

    .section-heading {
        font-size: 25px !important;
    }






}





/**** porfolio ***/


.home-page .portfolio .lSAction {
    display: none !important;
}


.portfolio-item .img-box {
    position: relative;
}

.portfolio-item img {
    width: 100%;
    height: unset;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.portfolio-item .counter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    position: absolute;
    top: 10px;
    right: 10px;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    border-radius: 5px;
    padding: 4px 8px;
    background: var(--main-color);
    color: var(--text-color);

}

.portfolio-item .img-box {
    position: relative;
	display: block;
}

.portfolio-item .title {
    display: block;
    color: #000;
    font-weight: 600;
    margin-top: 10px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 19px;
    padding-top: 20px;
}

.portfolio-item .info {
    display: block;
    color: #555;
    font-weight: 400;
}

.portfolio-item .info {
    display: block;

    font-weight: 400;
    position: absolute;
    bottom: 0;
    left: 15px;
    z-index: 10;
    background: var(--main-color-2);
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    transform: translate(0,50%);
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;

}

.portfolio-item .number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    position: absolute;
    top: 15px;
    left: 15px;
    font-weight: 400;
    font-size: 18px;
    background: #121212;
    color: #fff;
}





.portfolio-item .date {
    background: var(--main-color);
    color: #fff;
    position: absolute;
    display: inline-block;
    padding: 2px 8px;
    font-weight: 600;
    top: 0;
    left: 0;

}


/*** counting section **/

.home-page .counting-section .count-box span {
    display: block;
    text-align: center;
}

.home-page .counting-section .count-box .count {
    font-weight: 900;
    font-size: 45px;
}

.home-page .counting-section .count-box .count.add:after {
    content: '+';
}

.home-page .counting-section .count-box .text {
    font-size: 15px;
    font-weight: 400;
	color: rgba( 255,255 ,255, 0,8);
    letter-spacing: 2px;
}

.home-page .counting-section .section-heading {
    font-size: 55px;
    font-weight: 700;
    text-align: center;
}


.counting-section {
    position: relative;
    transform: translate( 0, -100%);
    z-index: 2;
    margin-bottom: -120px;
}

.counting-section .count-box {
    background: rgba(255,255,255,0.24);
    backdrop-filter: blur(20px);
    padding: 25px;
    border-radius: 5px;
    color: #fff;
}


@media (max-width: 991.98px) {
	.counting-section {
	    transform: translate( 0, 0);
	    margin-bottom: 0;
	}

	.counting-section .count-box {
	    background: rgba(0,0,0,0.14);
	    color: #000;
	}

	.home-page .counting-section .count-box .count {
	    font-size: 35px;
	}

}



/** about **/


.home-page .team-section {
    position: relative;
}


.home-page .team-section .team-box {
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 15px rgba(0,0,0,0.12);
}

.home-page .team-section:after {
    content: '';
    display: block;
    width: 100%;
    height: 150px;
    z-index: -1;
    position: absolute;
    bottom: 30%;
    background: var(--main-color);
    left: 0;
}


.home-page .team-section:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: #f9f9f9;
    z-index: -2;
    position: absolute;
    top: 0;
    left: 0;
}

.home-page .team-section .member-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
}

.home-page .team-section .member-item .content-box {
    width: calc(100% - 250px);
}

.home-page .team-section .member-item .img-box {
    width: 225px;
    padding-right: 25px;
}

.home-page .team-section .member-item .img-box img {
    border-radius: 50%;
    width: 170px;
    height: 170px;
    object-fit: cover;
}

.home-page .team-section .member-item .name {
    font-size: 25px;
    font-weight: 500;
    display: block;
}

.home-page .team-section .member-item .position {
    font-weight: 600;
    font-size: 15px;
    color: #ccc;
    display: block;
}

.home-page .team-section .member-item p {
    margin: 20px 0;
    font-weight: 300;
    font-size: 16px;
    max-width: 300px;
}



.home-page .team-section .member-item .social-links a {
    padding: 0 10px;
    color: #ccc;
    font-size: 20px;
}


.home-page .team-section .member-item .contact-links {
    margin-top: 20px;
}

.home-page .team-section .member-item .contact-links a {
    font-size: 16px !important;
    text-decoration: none;
    color: #555;
    padding: 0 !important;
}

.home-page .team-section .member-item  .contact-links a i {
    color: var(--main-color);
    display: inline-block;
    width: 25px;
    font-size: 18px;
}

.home-page .about-text {
    font-size: 17px;
    font-weight: 300;
    color: #555;
    text-align: justify;
}

.home-page .step {
    background: #f9f9f9;
    padding: 15px;
    padding-top: 40px;
    position: relative;
    min-height: 220px;
}

.home-page .step .title {
    display: block;
    font-weight: 600;
    color: #000;
    font-size: 17px;
    margin-bottom: 15px;
}

.home-page .step p {
    font-weight: 300;
    color: #555;
}

.home-page .step .number {
    background: var(--main-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: #fff;
    font-weight: 700;
    font-size: 24px;
    outline: 10px solid #fff;
    position: absolute;
    top: -20px;
    left: -20px;

}

.home-page .about-text .content {
    max-width: 950px;
    margin: auto;
    text-align: center;
    background: #f9f9f9;
    padding: 25px;
}

.home-page .about-step .tip {
    font-weight: 300;
    font-size: 17px;
    color: #555;
}


@media (max-width: 991.98px) {
    .home-page .team-section .member-item .content-box {
        width: calc(100% - 175px);
    }


    .home-page .team-section .member-item .img-box {
        width: 125px;
        padding-right: 25px;
    }


    .home-page .team-section .member-item .img-box img {
        width: 100px;
        height: 100px;
    }

    .home-page .team-section .member-item p {
        max-width: 100%;
    }



    .home-page .step .number {
        width: 40px;
        height: 40px;
        font-size: 20px;
        left: 50%;
        transform: translate(-50%, 0);

    }
}


@media (max-width: 767.98px) {
    .home-page .team-section .member-item {
        flex-wrap: wrap;
    }

    .home-page .team-section .member-item .content-box {
        width: 100%;
        text-align: center;
    }

    .home-page .team-section .member-item .img-box {
        width: 100%;
        padding-right: 0;
        text-align: center;
    }


    .home-page .team-section .member-item .img-box img {
        width: 100px;
        height: 100px;
    }

    .home-page .team-section .member-item p {
        max-width: 100%;
    }

}









/* section about */



.home-page .about .benefit-box {
    display: flex;
    gap: 15px;
    padding-top: 25px;
    padding-bottom: 25px;
}

.home-page .about p {
    font-size: 16px;
    font-weight: 500;
    color: #444;
}

.home-page .about .benefit-box {
    border-bottom: 1px solid #f1f1f1;
}

.home-page .about .benefit-box .icon-box {
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    border-radius: 5px;
    background: var(--main-color-2);
    color: #fff;
}

.home-page .about .benefit-box .info-box {
    width: calc(100% - 85px);

}

.home-page .about .benefit-box .info-box .title {
    font-size: 19px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
    display: block;

}

.home-page .about .benefit-box .info-box p {
    font-weight: 500;
    color: #555;
    font-size: 16px;
    max-width: 450px;
    margin-bottom: 0;
}



.home-page .about .circles .inner-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed var(--main-color);
    width: calc( 100% - 15px);
    height: calc( 100% - 15px);
    animation: rotateInfinite 15s linear infinite;
}

@keyframes rotateInfinite {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-360deg);
    }
}

.home-page .about .circles {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;

    transform: translate(-50%,-50%);
}

.home-page .about .circles .first {
    font-weight: 900;
    font-size: 45px;
    margin-bottom: 5px;
}

.home-page .about .circles span {
    display: block;
    text-align: center;
    color: var(--main-color);
    font-size: 20px;
    line-height: 1;
    width: 100%;
}

.home-page .about .img-box {
    position: relative;
}



/*****  section services *****/


.home-page section.services {
    background: rgba(0,0,0,0.02);
}

.home-page .services .nav-link {
	background: #fff;
	color: #737373;
	margin-bottom: 20px;
	font-weight: 600;
	font-size: 17px;
	text-align: left;
	padding: 20px 25px;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.home-page .services .nav-link.active {
    border-radius: 5px;
    background: var(--main-color-2);
    color: var(--text-color-2);
}


.services .img-box {
    padding: 35px;
    background: #272727;
}

.services .img-box .text {
    padding-top: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}
.services .img-box .name {
    font-size: 18px;
    font-weight: 500;
}

.services .img-box .counter {
    font-weight: 900;
    font-size: 45px;
    line-height: 1;
}


.services p,
.services ul {
    font-size: 19px;
    font-weight: 300;
    color: #666;
	line-height: 1.5;
}

.services ul {
	list-style: square;
	padding-left: 18px;
}


.services strong {
    font-weight: 700;
    color: #000;
}


.home-page section.services {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}
.home-page .services:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: linear-gradient(to right, rgba(251, 251, 251, 0.5) 0%, rgba(251, 251, 251, 0.7) 25%, rgba(251, 251, 251, 1) 50%);
    z-index: -1;
}


@media (max-width: 991.98px) {
	.home-page .services:after {
	    background: linear-gradient(to bottom, rgba(251, 251, 251, 0.7) 0%, rgba(251, 251, 251, 0.7) 25%, rgba(251, 251, 251, 1) 50%);
	}

	.services p,
	.services ul {
	    font-size: 14px;
	}
}



/************* home page testimonial ***/

.home-page .testimonial {
    position: relative;
}

.home-page .testimonial img {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: bottom;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.home-page .testimonial {
    padding-bottom: 250px;
    padding-top: 50px;
}


/* .home-page .testimonial .content {
    position: absolute;
    top: 120px;
    left: 0;
    width: 100%;
} */



.home-page .testimonial {
    color: #fff;
}

.home-page .testimonial .testimonial-item .ranking-box {
    margin-bottom: 15px;
    color: #ffb539;
}

.home-page .testimonial .testimonial-item {
	font-size: 22px;
	font-weight: 400;
	line-height: 2;
	text-align: center;
	max-width: 750px;
	margin: auto;
}

.home-page .testimonial .meta-box {
    color: rgba(255,255,255,0.5);
    font-weight: 400;
}



.home-page section.testimonial .lSPager.lSpg > li:not(.active) a {
    background-color: rgba(255,255,255,0.25);
}

.home-page .testimonial .lSSlideOuter .lSPager.lSpg > li:hover a,
.home-page .testimonial .lSSlideOuter .lSPager.lSpg > li.active a {
    background-color: var(--main-color-2) !important;
}


@media (max-width: 767.98px) {
	.home-page .testimonial .testimonial-item {
		font-size: 16px;
	}

}




/**************** ABOUT PAGE **************/


/*** team section ***/
/*

.about-page .team-section {
    position: relative;
}

.about-page .section-heading {
    font-size: 35px;
    font-weight: 700;
    text-align: center;
}


.about-page .team-section .team-box {
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 15px rgba(0,0,0,0.12);
}

.about-page .team-section:after {
    content: '';
    display: block;
    width: 100%;
    height: 150px;
    z-index: -1;
    position: absolute;
    bottom: 30%;
    background: var(--main-color);
    left: 0;
}


.about-page .team-section:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: #f9f9f9;
    z-index: -2;
    position: absolute;
    top: 0;
    left: 0;
}

.about-page .team-section .member-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
}

.about-page .team-section .member-item .content-box {
    width: calc(100% - 250px);
}

.about-page .team-section .member-item .img-box {
    width: 225px;
    padding-right: 25px;
}

.about-page .team-section .member-item .img-box img {
    border-radius: 50%;
    width: 170px;
    height: 170px;
    object-fit: cover;
}

.about-page .team-section .member-item .name {
    font-size: 25px;
    font-weight: 500;
    display: block;
}

.about-page .team-section .member-item .position {
    font-weight: 600;
    font-size: 15px;
    color: #ccc;
    display: block;
}

.about-page .team-section .member-item p {
    margin: 20px 0;
    font-weight: 300;
    font-size: 16px;
    max-width: 300px;
}



.about-page .team-section .member-item .social-links a {
    padding: 0 10px;
    color: #ccc;
    font-size: 20px;
}


.about-page .team-section .member-item .contact-links {
    margin-top: 20px;
}

.about-page .team-section .member-item .contact-links a {
    display: block;
    font-size: 16px !important;
    text-decoration: none;
    color: #555;
    padding: 0 !important;
}

.about-page .team-section .member-item  .contact-links a i {
    color: var(--main-color);
    display: inline-block;
    width: 25px;
    font-size: 18px;
}

.about-page .about-text {
    font-size: 17px;
    font-weight: 300;
    color: #555;
    text-align: justify;
}

.about-page .step {
    background: #f9f9f9;
    padding: 15px;
    padding-top: 40px;
    position: relative;
    min-height: 220px;
}

.about-page .step .title {
    display: block;
    font-weight: 600;
    color: #000;
    font-size: 17px;
    margin-bottom: 15px;
}

.about-page .step p {
    font-weight: 300;
    color: #555;
}

.about-page .step .number {
    background: var(--main-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: #fff;
    font-weight: 700;
    font-size: 24px;
    outline: 10px solid #fff;
    position: absolute;
    top: -20px;
    left: -20px;

}

.about-page .about-text .content {
    max-width: 950px;
    margin: auto;
    text-align: center;
    background: #f9f9f9;
    padding: 25px;
}

.about-page .about-step .tip {
    font-weight: 300;
    font-size: 17px;
    color: #555;
}


@media (max-width: 991.98px) {
    .about-page .team-section .member-item .content-box {
        width: calc(100% - 175px);
    }

    .about-page .team-section .member-item .img-box {
        width: 125px;
        padding-right: 25px;
    }


    .about-page .team-section .member-item .img-box img {
        width: 100px;
        height: 100px;
    }

    .about-page .team-section .member-item p {
        max-width: 100%;
    }



    .about-page .step .number {
        width: 40px;
        height: 40px;
        font-size: 20px;
        left: 50%;
        transform: translate(-50%, 0);

    }
} */

.about-page {
	background: #F2F5FA;
}



.about-page .how .spread-title {
	color: var(--main-color-2);
}

.about-page .how .how-item .spec-number {
    display: inline-flex;
    align-items: center;
	font-weight: 900;
    justify-content: center;
    background: var(--main-color);
    color: #fff;
	background: #272727;
    font-size: 25px;
	border-radius: 5px;
    height: 50px;
    width: 50px;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translate(-50% , 0);
}

.about-page .how .how-item {
    background: #fff;
    padding: 25px;
    position: relative;
    padding-top: 50px;
	border-radius: 5px;
    height: 100%;
}

.about-page .how .how-item .title {
    font-weight: 900;
	color: var(--main-color);
    font-size: 19px;
    display: block;
	text-align: center;
    margin-bottom: 15px;
}

.about-page .how .how-item .text {
    font-size: 16px;
    font-weight: 300;
	text-align: center;
    color: #121212;
}


@media (max-width: 767.98px) {
	.about-page .how .content {
	    background: #F2F5FA;
		padding: 55px;
		border-radius: 5px;
	}
}



/************* REFERENCE PAGE *************/

.v-hidden {
	visibility: hidden;
	display: none;
}

.gallery-box {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gallery-box a {
    display: block;
    width: calc(100% / 5 - 40px / 5);
    position: relative;
}

.gallery-box a:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(2,15,32,0.8);
    position: absolute;
    top: 0;
    left: 0;
    backdrop-filter: blur(3px);
    transition: all 0.3s ease-in;
}


.gallery-box a:hover:after {
    backdrop-filter: blur(0);
    background: rgba(2,15,32,0);
        transition: all 0.3s ease-in;
}

.gallery-box img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;

}

.gallery-box a i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #fff;
	opacity: 0.8;
    font-size: 25px;
    z-index: 10;
    transition: all 0.1s ease-in;
}

.gallery-box a:hover i {
    font-size: 0;
    transition: all 0.1s ease-in;

}


@media (max-width: 767.98px) {
.gallery-box {
    gap: 5px;
}

.gallery-box a {
    width: calc(100% / 3 - 15px / 3);
}

}



/*********** IT PAGE ***********/

.it-page {
    background: #f9f9f9;
}

.it-page .it-item i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--main-color);
    border-radius: 50%;
    color: #fff;
    font-size: 25px;
    height: 50px;
    width: 50px;
    outline: 15px solid #f9f9f9;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translate(-50% , 0);
}

.it-page .it-item {
    background: #fff;
    padding: 25px;
    position: relative;
    padding-top: 70px;
}

.it-page .it-item .title {
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 17px;
    display: block;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.it-page .it-item .text {
    font-size: 16px;
    font-weight: 300;
    color: #888;
}


/*********** COnstruction services *******/


.construction-service-page {
    background: #f9f9f9;
}

.construction-service-page .gallery-item {
    max-width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}


.construction-service-page .build-item i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--main-color);
    border-radius: 50%;
    color: #fff;
    font-size: 25px;
    height: 50px;
    width: 50px;
    outline: 15px solid #f9f9f9;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translate(-50% , 0);
}

.construction-service-page .build-item {
    background: #fff;
    padding: 25px;
    position: relative;
    padding-top: 70px;
}

.construction-service-page .build-item .title {
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 17px;
    display: block;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.construction-service-page .build-item .text {
    font-size: 16px;
    font-weight: 300;
    color: #888;
}


.construction-service-page .section-heading {
    font-size: 55px;
    line-height: 1;
    font-weight: 700;
    margin-top: 20px;
}



.construction-service-page .lSAction {
    display: none !important;
}


.construction-service-page .portfolio-item img {
    width: 100%;
    height: 270px;
    object-fit: cover;
}

.construction-service-page .portfolio-item .img-box {
    position: relative;
}

.construction-service-page .portfolio-item .title {
    display: block;
    color: #000;
    font-weight: 600;
    margin-top: 10px;
    font-size: 17px;
}

.construction-service-page .portfolio-item .info {
    display: block;
    color: #999;
    font-weight: 400;
}

.construction-service-page .portfolio-item .date {
    background: var(--main-color);
    color: #fff;
    position: absolute;
    display: inline-block;
    padding: 2px 8px;
    font-weight: 600;
    top: 0;
    left: 0;

}

.construction-service-page .price-box {
    background: #000;
    padding: 28px;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 5px;
}

.construction-service-page .price {
    font-size: 25px;
    font-weight: 900;
    padding-left: 5px;
}


@media (max-width: 767.98px) {
    .construction-service-page .section-heading {
        font-size: 35px;
    }


}



/***************** FAQ PAGE *****************/

.faq-page img.question {
    border-radius: 10px;
}

.faq-item .faq-question {
    padding: 23px 25px;
    background: #fff;
    font-weight: 900;
    font-size: 17px;
	position: relative;
}

.faq-item .title {
	padding-right: 40px;
}

.faq-page {
    background: #F2F5FA;
}

.faq-item.active .faq-question {
    color: var(--main-color-2);
}

.faq-item .faq-answer {
    padding: 25px;
    padding-top: 0;
    color: #777;
    font-weight: 500;
}


.faq-item {
    position: relative;
}

.faq-item .roller {
    position: absolute;
    top: 50%;
	transform: translate(0, -50%);
    right: 25px;
    display: inline-flex;
    height: 30px;
    width: 30px;
    align-items: center;
    justify-content: center;
    color: var(--main-color);
    padding: 1px 8px;
    font-size: 15px;
    letter-spacing: 1px;
}




.faq-item .fa-minus,
.faq-item.active .fa-plus {
    display: none;
}

.faq-item.active .fa-minus {
    display: inline-flex;
}


.faq-item.active .roller {
    color: var(--main-color-2);
}


.faq-item .faq-answer {
    display: none;
    background: #fff;
    font-size: 16px;
	line-height: 1.8;
}



.faq-item .faq-question {
    display: flex;
    justify-content: space-between;
	cursor: pointer;
}

@media (max-width: 767.98px) {
	.faq-item .faq-answer {
	    font-size: 14px;
		padding: 15px;

	}

	.faq-item .faq-question {
	    padding: 15px;
		font-size: 14px;
	}
}








/********* PROPERTY page ********/


.property-page .about-text .content {
    max-width: 950px;
    margin: auto;
    text-align: center;
    background: #f9f9f9;
    padding: 25px;
    font-size: 17px;
    font-weight: 300;
    color: #555;
}









/*********** CONTACT PAGE ************/



.contact-page .map {
    height: 100%;
}



.contact-page .form-box .form-group label {
    position: absolute;
    display: inline-block;
    background: #fff;
    padding-left: 15px;
    color: #555;
    font-weight: 400;
    padding-right: 15px;
    left: 25px;
    transform: translate(0,-50%);
}

.contact-page .form-box label span {
    color: var(--main-color);
}

.contact-page .form-box .form-group {
    position: relative;
    margin-bottom: 35px !important;
}

.contact-page .form-box {
    padding: 70px 55px;
	padding-top: 70px;
	border-radius: 8px;
	overflow: hidden;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    position: relative;
}


.contact-page .form-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
}

.contact-page .form-control {
    border-color: rgba(0,0,0,0.15);
    border-radius: 5px;
}

.contact-page .form-box .t-btn {
    display: flex;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 19px;
}

.contact-page .form-box .t-btn:hover {
    opacity: 0.8;
}


.contact-page .form-box .form-control:not(textarea) {
    height: 55px;
}

.contact-page .form-box .heading {
    font-size: 35px;
    display: block;
    color: #000;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 45px;
}



.contact-page .contact-box {
    padding: 45px;
    background: #F2F5FA;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-page .contact-box .icon-box {
    display: inline-flex;
    color: var(--main-color-2);
    font-size: 25px;
    height: 55px;
    width: 55px;
    align-items: center;
    justify-content: center;
    background: #fff;
}


.contact-page .contact-box .title {
    font-size: 23px;
	margin-bottom: 5px;
	display: block;
	line-height: 1.2;
    font-weight: 900;
    color: #000;
}


.contact-page .contact-box .value-box {
    font-weight: 600;
    font-size: 15px;
    color: #888;
    line-height: 1.7;
}



.contact-page .contact-box .value-box a {
    color: #555;
}


.contact-page .member-item {
    position: relative;
    padding: 15px 25px;
    border-radius: 5px;
}

.contact-page .member-item .name {
    color: #fff;
    font-size: 18px;
    font-weight: 900;
}

.contact-page .member-item .position {
    display: block;
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 15px;
}

.contact-page .member-item:after {
    content: '';
    height: 85px;
    width: 8px;
    position: absolute;
    top: 50%;
    left: -4px;
    background: var(--main-color);
    transform: translate(0,-50%);
}


.contact-page .member-item .contact-links a {
    font-size: 16px;
    font-weight: 600;
    padding-right: 10px;
    color: var(--main-color);
    text-decoration: none;


}


.contact-page .member-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    backdrop-filter: blur(1px);
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(2,15,32,0.8);
    z-index: -1;
}

.contact-page .member-item {
    min-height: 350px !important;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    z-index: 1;
    overflow: hidden;
    border-radius: 15px;
    display: flex;
    align-items: flex-end;
    padding: 25px 50px;
}

.contact-page .member-item .content-box {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(20px);
    border-radius: 8px;
    width: 100%;
    padding: 25px 15px;
}




@media (max-width: 992px) {
	.contact-page .map {
		height: 450px;
		margin-top: 25px;
	}

	.contact-page .form-box .t-btn {
	    padding-top: 15px;
	    padding-bottom: 15px;
	    font-size: 17px;
	}

	.contact-page .form-box .heading {
	    font-size: 30px;
	    margin-bottom: 35px;
	}


	.contact-page .form-box {
	    padding: 70px 25px;
	}


	.contact-page .member-item .contact-links a {
	    display: block;
	}

}


/********* calculator-page *********/


.calculator-page .js-calculator .price {
    font-size: 25px;
    font-weight: 600;
    color: var(--main-color);
}

.calculator-page .js-calculator {
    padding: 25px 50px;
    max-width: 650px;
    margin: auto;
    background: var(--main-light-color);
}




/************* WINDOW PAGE ***********/

.window-page section.about.bg {
	background: #F2F5FA;
}

.window-page .circles {
	display: none !important;
}

.rec-page .bg .circles {
    background: #F2F5FA !important;
    color: var(--main-color) !important;
}

.rec-page .bg .circles .inner-circle {
    border-color: var(--main-color) !important;
}

.rec-page .bg .circles span {
    color: var(--main-color) !important;
}

.rec-page .bg .spread-title {
    color: var(--main-color-2) !important;
}

.rec-page .bg .benefit-box .icon-box {
    background: var(--main-color) !important;
}

.rec-page .bg .benefit-box {
    border-color: rgba(0,0,0,0.15) !important;
}

.rec-page .bg .benefits i {
    background: var(--main-color) !important;
}




/************* ISOLATION PAGE ****************/


/*
.isolation-page {
    background: #f9f9f9;
}

.isolation-page .slider-box {
    border: 1px solid #f1f1f1;
    position: relative;
}

.isolation-page .isolation-item .slider-box .best {
    position: absolute;
    top: 5px;
    left: 5px;
    background: #000;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    z-index: 50;
    padding: 15px;
}


.isolation-page .isolation-item {
    background: #fff;
    padding: 30px 25px;
}

.isolation-page .isolation-item .isolation-slider img {
    width: 100%;
    height: 580px;
    object-fit: cover;
}


.isolation-page .isolation-item .title {
    font-weight: 900;
    font-size: 35px;
}

.isolation-page .isolation-item p {
    font-weight: 400;
    font-size: 16px;
    color: #888;
}

.isolation-page .isolation-item ul li {
    margin-bottom: 10px;
}

.isolation-page .isolation-item ul {
    padding-left: 0;
    list-style: none;
    font-size: 15px;
    color: #000;
    font-weight: 300;
}

.isolation-page .isolation-item .price-box {
    background: #000;
    padding: 28px;
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 5px;
}

.isolation-page .isolation-item .info-tip {
    font-weight: 300;
    font-size: 13px;
    color: #555;

}


.isolation-page .isolation-item .subheading {
    font-size: 19px;
    color: #000;
    font-weight: 700;
    display: block;
}

.isolation-page .isolation-item ul i {
    color: var(--main-color-2);
    padding-right: 10px;
}

.isolation-page .about {
    background: var(--main-light-color);
}

.isolation-page .about .isolation-item {
    background: transparent;
}

.isolation-page .content .heading {
    font-size: 35px;
    font-weight: 900;
    color: var(--main-color-2);
    text-transform: uppercase;
}



.isolation-page .about .isolation-item .title {
    font-size: 42px;
}


@media (max-width: 767.98px) {
    .isolation-page .isolation-item ul {
        columns: 1;
    }

    .isolation-page .tabinator-item {
        font-size: 13px !important;
        padding: 10px !important;
    }

    .isolation-page .isolation-item .isolation-slider img {
        width: 100%;
        height: 380px;
    }
} */





/**************** DOTATION PAGE ***************/

/*
.dotation-page .breadcrumb-banner {
    min-height: calc(100vh - 50px);
    background-position: center center;
}

.dotation-page section .container .heading {
    font-size: 35px;
    font-weight: 700;
}

.dotation-page section .container p.info {
    font-size: 16px;
    font-weight: 300;
    color: #555;
    max-width: 760px;
    margin: auto;
}


@media (max-width: 767.98px) {

    .dotation-page .breadcrumb-banner .heading {
        font-size: 38px !important;
    }

    .dotation-page .breadcrumb-banner {
        min-height: calc(100vh - 100px);
    }
} */



/* timeline */




.dotation-page .timeline {
    max-width: 950px;
    margin: auto;
}






.dotation-page .timeline-section {
    background: #fff;
}

.dotation-page .timeline {
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
    z-index: 1;

}


.dotation-page .timeline .sticky-line {
    position: sticky;
    top: 0;
    left: calc(50% - 1px);
    display: block;
    width: 2px;
    height: 30%;
    background: var(--main-color-2);
    z-index: -1;
}

.dotation-page .timeline .line {
    position: absolute;
    top: 0;
    left: calc(50% - 1px);
    display: block;
    width: 2px;
    height: 100%;
    background: #ccc;
    z-index: -1;
}

.dotation-page .timeline .line:before,
.dotation-page .timeline .line:after {
    content: '';
    position: absolute;
    top: 0;
    left: calc(50% - 12px);
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--main-color);
}


.dotation-page .timeline .item {
    display: flex;
    align-items: center;
}

.dotation-page .timeline .item .info-box {
    width: calc(50% - 50px) !important;
}



.dotation-page .timeline .line:after {
    top: auto;
    bottom: 0;
}

.dotation-page .timeline .year-box {
    text-align: center;
    padding: 0 30px;

}

.dotation-page .timeline .year-box .year {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    border-radius: 50%;
    background: #000;
}

.dotation-page .timeline {
    /*max-width: 700px;*/
    margin: auto;
}

.dotation-page .timeline .info-box {
    width: min(300px, calc(50% - 25px));
    background: #F2F5FA;
    padding: 35px;
	border-radius: 5px;
}

.dotation-page .timeline .info-box p {
    font-size: 16px;
    color: #121212;
    font-weight: 300;
    margin-bottom: 0;
}

.dotation-page .timeline .info-box .title {
    font-size: 18px;
    color: #000;
    font-weight: 900;
    display: block;
    margin-bottom: 5px;
}

.dotation-page .timeline .info-box img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}


.dotation-page .timeline .item .time {
    font-size: 17px;
    font-weight: 600;
    color: var(--main-color-2);
}

.dotation-page .timeline .info-box {
    position: relative;
}

.dotation-page .timeline .info-box:after {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background: #F2F5FA;
    position: absolute;
    z-index: -1;
    top: 50%;
    right: 0;
    transform: translate(50%, -50%) rotate(45deg);
}

.dotation-page .timeline .item:nth-of-type(odd) .info-box:after {
    top: 50%;
    left: 0;
    right: auto;
    transform: translate(-50%, -50%) rotate(45deg);
}

.dotation-page .timeline .item:nth-of-type(odd) {
    margin-left: auto !important;
    justify-content: flex-end;
}

.dotation-page .timeline .item:nth-of-type(odd) .info-box {
    order: 3;
}

.dotation-page .timeline .item:nth-of-type(odd) .year-box {
    order: 2;
}

.dotation-page .timeline .item:nth-of-type(odd) .time {
    order: 1;
}



.dotation-page .timeline .info-box {
    font-size: 13px;
    color: #777;
}


@media (max-width: 600px) {
    .dotation-page .timeline .item .info-box {
        width: 100% !important;
    }

    .dotation-page .timeline .item {
        flex-wrap: wrap;
    }

    .dotation-page .timeline .item .time {
        order: 2 !important;
        position: relative;
        top: 30px;
        left: 10px;
        z-index: 5;
        font-size: 14px;
        background: var(--main-color);
        color: #fff;
        padding: 2px 5px;
    }

    .dotation-page .timeline .item:nth-of-type(odd) .time {
        left: auto;
        right: 10px;
    }

    .dotation-page .timeline .item .info-box {
        order: 3 !important;
    }

    .dotation-page .timeline .item .info-box:after {
        all: unset;
    }


    .dotation-page .timeline .item .year-box {
        order: 1 !important;
        width: 100%;
        margin-top: 25px;
    }
}




/**** about ***/



.dotation-page .intro .slider-box .lslide .active img {
    transform: scale(1.4) !important;
    transition: transform 20s linear !important;
}

.dotation-page .intro .slider-box .lslide img {
    transform: scale(1.4) !important;
    transition: transform 20s linear !important;
}

.dotation-page .intro .slider-box img  {
    width: 100%;
    aspect-ratio: 9/6;
    object-fit: cover;
}


.dotation-page .intro .title {
    color: #fff;
    display: block;
    margin-bottom: 15px;
    font-weight: 900;
    font-size: 25px;

}

.dotation-page .intro .info-box i {
    background: var(--main-color-2);
    position: absolute;
	border-radius: 5px;
    top: -8px;
    left: -8px;
    display: inline-flex;
    font-size: 25px;
	width: 45px;
	height: 45px;
    padding: 15px;
	align-items: center;
	justify-content: center;
    color: #fff;
}

.dotation-page .intro .info-box {
    padding: 45px;
    background: rgba(2,15,32,1);
    position: relative;
    width: calc(100% + 65px);
    right: -65px;
	border-radius: 5px;
    z-index: 99;
    color: rgba(255,255,255,0.8);
    font-weight: 400;
    font-size: 16px;
}




@media (max-width: 767.98px) {

    .dotation-page .intro .info-box {
        padding: 25px;
        width: 95%;
        margin: auto;
        right: 0;
        bottom: -35px;
    }

    .dotation-page .intro .info-box i {
        font-size: 25px;
        padding: 10px;
    }
}


/* how section */


.dotation-page .how .content {
    background: #F2F5FA;
	padding: 55px;
	border-radius: 5px;
}

.dotation-page .how .spread-title {
	color: var(--main-color-2);
}

.dotation-page .how .how-item .spec-number {
    display: inline-flex;
    align-items: center;
	font-weight: 900;
    justify-content: center;
    background: var(--main-color);
    color: #fff;
	background: #272727;
    font-size: 25px;
	border-radius: 5px;
    height: 50px;
    width: 50px;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translate(-50% , 0);
}

.dotation-page .how .how-item {
    background: #fff;
    padding: 25px;
    position: relative;
    padding-top: 50px;
	border-radius: 5px;
    height: 100%;
}

.dotation-page .how .how-item .title {
    font-weight: 900;
	color: var(--main-color);
    font-size: 19px;
    display: block;
	text-align: center;
    margin-bottom: 15px;
}

.dotation-page .how .how-item .text {
    font-size: 16px;
    font-weight: 300;
	text-align: center;
    color: #121212;
}


@media (max-width: 767.98px) {
	.dotation-page .how .content {
	    background: #F2F5FA;
		padding: 55px;
		border-radius: 5px;
	}
}


/********* window section ******/

.dotation-page .window .content {
    position: relative;
    min-height: 450px;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    z-index: 1;
	padding: 45px;
	display: flex;
    align-items: center;
	border-radius: 8px;
	overflow: hidden;
}

.dotation-page .window .cont {
    max-width: 750px;
	margin: auto;
}




.dotation-page .window .heading {
    font-weight: 900 !important;
	font-size: 35px;
    color: #fff;
}

.dotation-page .window p {
    font-size: 19px;
    font-weight: 400;
    color: #f1f1f1;
}

.dotation-page .window .content:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: rgba(2,15,32,0.9);

}

@media (max-width: 767.98px) {
    .dotation-page .window {
        background-attachment: unset;
    }

	.dotation-page .window p {
	    font-size: 16px;
	}
}



/** isolation ***/

.dotation-page .isolation p {
    font-size: 16px;
    font-weight: 300;
    color: #555;
}

.dotation-page .isolation .title {
    font-size: 19px;
    font-weight: 700;
    color: #000;
}

.dotation-page .isolation .img-box {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 25px;
}

.dotation-page .isolation .img-box img {
    max-width: 100% !important;
    aspect-ratio: 1/1;
    object-fit: cover;
    border: 15px solid var(--main-light-color);
}

.dotation-page .isolation .img-box .second {
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 270px !important;
    height: auto !important;
    width: 100% !important;
    z-index: 2;
    border: 15px solid var(--main-color);
    border-right-color: var(--main-light-color);
    border-top-color: var(--main-light-color);
}







/* call to action */



.dotation-page .window.call-to-action {

}

.dotation-page .window.call-to-action .content:after {
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(2,15,32,0.9);
    z-index: -1;
}




/*** DOTATION PAGES ***/


/*
.dot-page .tip {
    color: #000;
    font-weight: 400;
}


.dot-page .dotation2-slider img {
    height: 700px;
    width: 100%;
    object-fit: cover;
}

.dot-page .subheading {
    font-weight: 700;
    font-size: 35px;
}

.dot-page .black-panel {
    padding: 25px;
    display: inline-block;
    background: #000;
    text-decoration: none;
    color: #fff;
    position: relative;
}

.dot-page .black-panel i {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 22px;
    color: #fff;
    background: var(--main-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;

}

.dot-page section.second {
    background: #f9f9f9;
}

.dot-page .black-panel .title {
    font-weight: 700;
    font-size: 25px;
}

.dot-page .black-panel p {
    font-size: 16px;
    color: #ccc;
    font-weight: 400;
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .dot-page .black-panel i {
        font-size: 17px;
        width: 30px;
        height: 30px;
    }

    .dot-page .black-panel {
        padding: 20px;
    }

    .dot-page .black-panel .title {
        font-size: 20px;
    }

    .dot-page .black-panel p {
        font-size: 14px;
    }

    .dot-page .breadcrumb-banner {
        min-height: 350px;
    }

    .dot-page .breadcrumb-banner .heading {
        font-size: 35px !important;
    }

    .dot-page .content .heading {
        font-size: 30px;
    }

    .dot-page .content .subheading {
        font-size: 22px;
    }



    .dot-page .dotation2-slider img {
        height: 350px;
    }


} */
.dot-page .black-panel {
    padding: 45px 25px;
    display: block;
    text-decoration: none;
    color: #fff;
    position: relative;
	border-radius: 8px;
	z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.dot-page .black-panel:after {
    content: "";
	display: block;
	height: 100%;
	width: 100%;
	position: absolute;
	border-radius: 8px;
	top: 0;
	left: 0;
	z-index: -1;
	background: rgba(2,15,32,0.75);



}

.dot-page .black-panel i {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 22px;
    color: #fff;
    background: var(--main-color-2);
    display: inline-flex;
    align-items: center;
	border-radius: 4px;
    justify-content: center;
    width: 40px;
    height: 40px;

}

.dot-page .black-panel .title {
    font-weight: 700;
    font-size: 25px;
}

.dot-page .about .black-panel p {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    font-weight: 400;
    margin-bottom: 0;
}


@media (max-width: 767.98px) {
    .dot-page .black-panel i {
        font-size: 17px;
        width: 30px;
        height: 30px;
    }

    .dot-page .black-panel {
        padding: 20px;
    }

    .dot-page .black-panel .title {
        font-size: 20px;
    }

    .dot-page .black-panel p {
        font-size: 14px;
    }

}




/*************** REC PAGE ***************/

/* .rec-page .breadcrumb-banner {
    min-height: 550px;
}


.rec-page .about p {
    font-size: 19px;
    font-weight: 300;
    color: #555;
}

.rec-page .section-heading {
    font-size: 42px;
    font-weight: 900;
}

.rec-page .pricing {

}

.rec-page .isolation-slider img {
    height: 350px;
    width: 100%;
    object-fit: contain;
} */



.rec-page .about .benefit-box {
    display: flex;
    gap: 15px;
    padding-top: 25px;
    padding-bottom: 25px;
}

.rec-page .about p {
    font-size: 16px;
    font-weight: 500;
    color: #444;
}

.rec-page .about .benefit-box {
    border-bottom: 1px solid #f1f1f1;
}

.rec-page .about .benefit-box .icon-box {
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    border-radius: 5px;
    background: var(--main-color-2);
    color: #fff;
}

.rec-page .about .benefit-box .info-box {
    width: calc(100% - 85px);

}

.rec-page .about .benefit-box .info-box .title {
    font-size: 19px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
    display: block;

}

.rec-page .about .benefit-box .info-box p {
    font-weight: 500;
    color: #555;
    font-size: 16px;
    max-width: 550px;
    margin-bottom: 0;
}

.rec-page .img-col .cont {
    position: sticky !important;
    top: 15px;
    left: 0;
}

.rec-page .img-col {
    position: relative;
}


.rec-page .about .circles .inner-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed var(--main-color-2);
    width: calc( 100% - 15px);
    height: calc( 100% - 15px);
    animation: rotateInfinite 15s linear infinite;
}

@keyframes rotateInfinite {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-360deg);
    }
}

.rec-page .about .circles {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;

    transform: translate(-50%,-50%);
}

.rec-page .about .circles .first {
    font-weight: 900;
    font-size: 25px;
    margin-bottom: 5px;
	margin-top: 5px;
}

.rec-page .about .circles span {
    display: block;
    text-align: center;
    color: var(--main-color-2);
    font-size: 14px;
    line-height: 1;
    width: 100%;
}

.rec-page .about .img-box {
    position: relative;
}







#pricing {
    position: relative;
    z-index: 1;
}


#pricing {
	background: #F2F5FA;
}

#pricing .container {
	max-width: 1700px;
}



.rec-page .pricing-table {
    background: rgba(255,255,255,1);
    border-radius: 8px;
}

.rec-page .pricing-table .head,
.rec-page .pricing-table .foot {
    padding: 30px;
}

.rec-page .pricing-table {
    position: relative;
}

.rec-page .pricing-table .badge {
    position: absolute;
    top: -12px;
    right: 3px;
    background: var(--main-color);
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;

}

.rec-page .pricing-table .head .title {
    font-weight: 900;
    font-size: 23px;
    color: #000;
    display: block;
    margin-bottom: 5px;
}

.rec-page .pricing-table .head p {
    font-size: 16px;
    line-height: 18px;
    min-height: 36px;
    font-weight: 300;
    margin-bottom: 0;
    color: #999;
}



.rec-page .pricing-table .price {
    font-size: 13px;
    font-weight: 300;
    padding-top: 15px;
    display: block;
    color: #333;
	position: relative;
}

.rec-page .pricing-table .price:after {
	content: '';
	width: 130px;
	height: 2px;
	background: var(--main-color-2);
	position: absolute;
	top: 0;
	left: 0;
	display: block;
}

.rec-page .pricing-table .price strong {
    font-size: 35px;
    font-weight: 900;
	display: inline-block;
	padding-left: 10px;
	padding-right: 10px;
    color: #000;
}

.rec-page .pricing-table .body {
    padding: 30px;
	border-top: 1px solid #f1f1f1;
}



.rec-page .pricing-table .body .parameter {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    position: relative;
    padding: 12px 0;
    padding-left: 30px;
}

.rec-page .pricing-table .body .parameter:not(.not):after {
    content: '';
    width: 14px;
    height: 7px;
    border-bottom: 3px solid var(--main-color);
    border-left: 3px solid var(--main-color);
    transform: rotate(-45deg);
    display: block;
    position: absolute;
    left: 6px;
    top: calc(50% - 6px);
}


.rec-page .pricing-table .body .parameter.not:after {
    content: '';
    width: 15px;
    height: 2px;
    background: #888;
    transform: rotate(-45deg);
    display: block;
    position: absolute;
    left: 4px;
    top: calc(50% - 1px);
}

.rec-page .pricing-table .body .parameter.not:before {
    content: '';
    width: 15px;
    height: 2px;
    background: #888;
    transform: rotate(45deg);
    display: block;
    position: absolute;
    left: 4px;
    top: calc(50% - 1px);
}







@media (max-width: 767.98px) {

    .rec-page .section-heading {
        font-size: 42px;
    }



    #pricing {
        background-attachment: unset;
    }




}





.benefits.two {
    columns: 2;
}




@media (max-width: 767.98px) {
    .benefits.two {
        columns: 1;
    }

}






/********* PREFOOTER CONTACT SECTION *********/





/*************** ORDER PAGE ***********/


.order-page .form-section .heading {
    font-size: 35px;
    font-weight: 900;
    color: #111;
}

.order-page .desc {
    font-size: 17px;
    font-weight: 300;
    color: #555;
}


.order-page .form-section .text {
    font-size: 16px;
    font-weight: 400;
    color: #ccc;
}

.order-page .form-section .form-control::placeholder {
    color: #555;
}



/* .order-page .form-section .t-btn.dark {
    background: #fff !important;
    color: #000 !important;
} */


.order-page .form-section .form-check-input {
    border-radius: 0 !important;
}


.order-page .form-section .form-check-label {
    font-size: 16px;
    font-weight: 400;
    color: #777;
}




.order-page .form-box .form-group label {
    position: absolute;
    display: inline-block;
    background: #fff;
    padding-left: 15px;
    color: #555;
    font-weight: 400;
    padding-right: 15px;
    left: 25px;
    transform: translate(0,-50%);
}

.order-page {
	background: #F2F5FA;
}

.order-page .form-box label span {
    color: var(--main-color);
}

.order-page .form-box .form-group {
    position: relative;
    margin-bottom: 35px !important;
}

.order-page .form-box {
    padding: 70px 55px;
	padding-top: 70px;
    border-radius: 8px;
	overflow: hidden;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    position: relative;
	max-width: 750px;
	background: #fff;
	margin: auto;
}

.order-page .form-control:focus,
.order-page .form-select:focus {
	border-color: var(--main-color);
}


.order-page .form-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
}

.order-page .form-control,
.order-page .form-select {
    border-color: rgba(0,0,0,0.15);
    border-radius: 5px;
}

.order-page .form-box .t-btn {
    display: flex;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 19px;
}

.order-page .form-box .t-btn:hover {
    opacity: 0.8;
}


.order-page .form-box .form-control:not(textarea),
.order-page .form-box .form-select {
    height: 55px;
}

.order-page .form-box .heading {
    font-size: 35px;
    display: block;
    color: #000;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 45px;
}



@media (max-width: 992px) {

	.order-page .form-box .t-btn {
	    padding-top: 15px;
	    padding-bottom: 15px;
	    font-size: 17px;
	}

	.order-page .form-box .heading {
	    font-size: 30px;
	    margin-bottom: 35px;
	}

	.order-page .form-box {
	    padding: 70px 25px;
	}

}



/*  developer page */



.developer-page {
	background: #F2F5F9;
}


.developer-page .about .cont {
	padding: 35px;
	background: #fff;
	border-radius: 6px;
}

.developer-page .gallery-box a:after {
    all: unset;
}

.developer-page .gallery-box a {
    width: calc(100% / 4 - 40px / 4);

}

.developer-page .section-box .section-heading {
    font-size: 18px;
}

.developer-page .section-box {
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f1f1;

}

@media (max-width: 767.98px) {
	.developer-page .gallery-box a {
	    width: calc(100% / 3 - 20px / 3);

	}

	.developer-page .gallery-box  {
	    gap: 10px;

	}

	.developer-page .about .cont {
		padding: 20px;
	}
}




/************* FINANCE PAGE ***************/

/*

.finance-page .call-to-action {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    font-size: 30px;
    color: #fff;
    font-weight: 600;
    z-index: 1;
}

.finance-page .call-to-action:after {
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.6);
    z-index: -1;
}

.finance-page .call-to-action p {
    max-width: 750px;
    margin: auto;
    margin-bottom: 25px;
	font-size: 25px;
	color: #fff;
	font-weight: 600;
}

@media (max-width: 767.98px) {
    .finance-page .call-to-action {
        background-attachment: unset;
    }
}

 */




 .finance-page .call-to-action .content {
     background: var(--main-color-2);
     padding: 100px 70px;
     border-radius: 8px;
     position: relative;
     overflow: hidden;
 }

 .finance-page .call-to-action .heading {
     font-weight: 900;
     font-size: 40px;
	 text-transform: uppercase;
     color: #fff;
 }

 .finance-page .call-to-action p {
     font-weight: 300;
     font-size: 18px;
     color: rgba(255,255,255,0.8);
 }


 .finance-page .call-to-action .first {
     position: absolute;
     bottom: -10px;
     height: 100%;
     width: auto;
     right: 200px;
 }


 @media (max-width: 991.98px) {

     .finance-page .call-to-action .content {
         padding: 25px;
     }

     .finance-page .call-to-action .first {
         z-index: 1;
         opacity: 0.5;
         right: -15px;
     }

     .finance-page .call-to-action .heading {
     font-size: 35px;
         position: relative;
         z-index: 10;
     }

     .finance-page .finance-page .t-btn {
         position: relative;
         z-index: 10;
     }

     .finance-page .call-to-action p {
         font-size: 16px;
         position: relative;
         z-index: 10;
     }
 }



 .benefits li {
     margin-bottom: 10px;
     position: relative;
    padding-left: 30px;
 }

 .benefits {
     padding-left: 0;
     list-style: none;
     font-size: 15px;
     color: #000;
     font-weight: 300;
 }

 .benefits i {
     color: var(--text-color-2);
     display: inline-flex;
     font-size: 12px;
     position: absolute;
     left: 0;
     top: 2px;
     width: 18px;
     height: 18px;
     border-radius: 4px;
     margin-right: 10px;
     justify-content: center;
     align-items: center;
     background: var(--main-color-2);
 }







/* tabs */

.tabinator {
    margin-bottom: 10px;
    display: block;
    overflow: hidden;
    position: relative;
}

.tabinator .tabinator-item {
    display: inline-block;
    cursor: pointer;
    padding: 15px 20px;
    font-weight: 500;
    font-size: 16px;
    color: #000;
    position: relative;
    z-index: 1;
    background: #fff;
}



.tabinator .tabinator-item.active {
    background: var(--main-color);
    color: #fff;
}



.tabinator .tabinator-item:not(.active):hover {
    color: #222;
    background: var(--main-light-color);
}


.tabinator-content .content {
    display: none;
}

.tabinator-content .content.active {
    display: block;
}







/*************** MODAL CONTACT *************/

#offerModal .heading {
    font-size: 35px;
    font-weight: 900;
    color: #fff;
}

#offerModal .modal-body,
#offerModal .modal-footer {
    padding: 45px;
}

#offerModal .modal-content {
    border-radius: 0;
}

#offerModal .text {
    font-size: 16px;
    font-weight: 400;
    color: #ccc;
}

#offerModal .form-control::placeholder {
    color: #555;
}

#offerModal .form-control,
#offerModal select {
    background: rgba(255,255,255,0.82);
    border: 1px solid #555;
}

#offerModal .t-btn.dark {
    background: #fff !important;
    color: #000 !important;
}




#offerModal .modal-footer {
    border-color: rgba(255,255,255,0.2);
}

#offerModal .form-check-input {
    border-radius: 0 !important;
}


#offerModal .form-check-label {
    font-size: 16px;
    font-weight: 400;
    color: #ccc;
}

#offerModal .modal-content {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    z-index: 1;
}

#offerModal .modal-content:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.57);
    z-index: -1;
}


@media (max-width: 767.98px) {
    #offerModal .modal-body,
    #offerModal .modal-footer {
        padding: 25px;
    }
}

/* calculator modal */

#calculatorModal .js-calculator .price {
    font-size: 25px;
    font-weight: 600;
    color: var(--main-color-2);
}

#calculatorModal .js-calculator {
    padding: 25px 50px;
    max-width: 650px;
    margin: auto;
    background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	z-index: 1;
	color: rgba(255,255,255,0.75);
}

#calculatorModal .js-calculator label {
    color: rgba(255,255,255,0.75);
	font-weight: 300;
}

#calculatorModal .js-calculator:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(2,15,32,0.75);
	z-index: -1;
}

#calculatorModal .heading {
    font-size: 35px;
}

#calculatorModal .form-control {
	background: rgba(255,255,255,0.3);
	backdrop-filter: blur(20px);
	border: none;
	color: #fff;
	font-weight: 600;
}

#calculatorModal .form-control::placeholder {
	color: #fff;
	font-weight: 600;
}

#calculatorModal .text {
    font-size: 16px;
    font-weight: 400;
    color: #555;
}






/************ NEW HOME PAGE **************/

.home-page.new .breadcrumb-banner {
    min-height: 650px;
}

.home-page.new .breadcrumb-banner:after {
    background: rgba(0, 0, 0, 0.6);
}

.home-page.new section.testimonial {
    background: #f9f9f9;
}

.home-page.new section.testimonial .testimonial-item {
    max-width: 750px;
    margin: auto;
    min-height: 320px;
    padding: 25px;
    background: #fff;
}


.home-page.new section.testimonial .lSSlideOuter .lSPager.lSpg > li:hover a, .lSSlideOuter .lSPager.lSpg > li.active a {
    background-color: var(--main-color);
}

.home-page.new section.testimonial .testimonial-item .icon-box {
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    background: var(--main-color);
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(1.8);
    color: #fff;
    border-radius: 50%;
    margin-bottom: 10px;
}

.home-page.new section.testimonial .testimonial-slider > li {
	padding: 15px;
}

.home-page.new section.testimonial .testimonial-item {
    padding-top: 120px !important;
    position: relative;
    overflow: hidden;
    border: 1px solid #f1f1f1;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.12);
}

.home-page.new section.testimonial .testimonial-item p {
    font-size: 16px;
    font-weight: 300;
    font-style: italic;
}

.home-page.new section.testimonial .testimonial-item .name {
    color: #000;
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin-top: auto;
}




/* mobile menu */


@media (max-width: 1199.98px) {
    body.menu-opened .main-header .js-menu {
        display: block !important;
        z-index: 99999;
        background: #fff;
        width: 100%;
        height: 100%;
        overflow-y: auto;
        position: fixed;
        top: 0;
        left: 0;
    }

    body.menu-opened .mobile-head {
        padding: 8px 0;
        position: relative;
    }

    body.menu-opened .mobile-head .js-menu-close {
        font-size: 28px;
        display: inline-flex;
        width: 45px;
        height: 45px;
        justify-content: center;
        align-items: center;
        /*position: absolute;*/
        /*top: 15px;*/
        /*right: 15px;*/
        text-decoration: none;
        color: #ccc;
    }


    body.menu-opened .js-menu .menu-list {
        flex-wrap: wrap;
        flex-direction: column;
    }



    body.menu-opened .main-header .js-menu .menu-item {
        text-align: center;
    }

    body.menu-opened .main-header .js-menu .menu-item .menu-link {
        width: 100%;
        border-bottom: 1px solid #f1f1f1;
        font-size: 16px;
        padding: 17px 0;
    }

    body.menu-opened .js-menu .dropdown-menu {
        position: static !important;
        transform: unset !important;
        background: var(--main-bg-color);
        border: none;
    }



    body.menu-opened {
        height: 100vh !important;
        overflow: hidden;
    }
}








.main-header .main-menu .menu-list {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}



.main-header .main-menu .menu-list .menu-link,
.main-header .main-menu .menu-list .dropdown-toggle.menu-link {
    padding-left: 0px;
	padding-right: 20px;
    text-decoration: none;
    display: inline-block;
    background: transparent;
    border: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #000;
    position: relative;
}


.main-header .main-menu .menu-list .menu-link:hover,
.main-header .main-menu .menu-list .menu-link:focus {
    color: var(--main-color) !important;
}


.main-header .main-menu .menu-list .menu-link.active {
    color: var(--main-color) !important;
}

.main-header .js-menu-open {
    display: inline-flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    text-decoration: none;
    color: #fff;
}


.main-header.is-sticky .js-menu-open {
    color: var(--main-color);
}

.main-header .js-menu-open:hover {
    color: var(--main-color);
}


.main-header .dropdown-menu .dropdown-item {
    font-size: 14px;
}

.main-header .dropdown-menu {
    border-color: #f1f1f1;
}



.main-header .dropdown-menu .dropdown-item:hover,
.main-header .dropdown-menu .dropdown-item:focus {
    font-size: 14px;
    color: var(--main-color-2);
}

.main-header .js-menu .contact-info {
	flex-wrap: wrap;
	gap: 15px;
	display: flex;
}

.main-header .js-menu .contact-info a {
	display: flex;
	gap: 5px;
	align-items: center;
	font-size: 15px;
	font-weight: 400;
	color: #444;
	text-decoration: none;
}

.main-header .menu-list .t-btn {
	margin-top: 15px;
}


.main-header .js-menu .contact-info i {
	color: var(--main-color);
}

@media (min-width: 1200px) {
    .main-header:not(.is-sticky) .main-menu .menu-list .menu-link {
        color: #fff;
    }

    .main-header:not(.is-sticky) .main-menu .menu-list .menu-link:not(.active):hover {
        color: var(--main-color);
    }

	.main-header .menu-list .t-btn {
		margin-top: 0;
	}


	.main-header .main-menu .menu-list {
	    display: flex;
		align-items: center;
	}




}











/*************** To top btn *************************/

#myBtn {
    display: none;
    position: fixed;
    bottom: 15px;
    right: 10px;
    z-index: 99;
    font-size: 25px;
    color: #fff;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    background: rgba(0, 0, 0, 0.45);
}

#myBtn:hover {
    background: rgba(0, 0, 0, 0.65);
}
