:root {
	--primary:#ED6B00;
	--dark:#333333;	
    --font-heading:"Oswald", sans-serif;
    --font-body:"Jost", sans-serif;
    --icon: "Font Awesome 7 Free", sans-serif;
}
*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: var(--font-body);
	font-size: 18px;
	line-height: 1.5;
	font-weight: 400;
	color: #333333;
}
::selection {
    background: var(--primary);
    color: #fff;
    text-shadow: none;
}
a, input[type="submit"], button, button[type="submit"], :before, :after {
    -webkit-transition: all .2s ease-in-out !important;
    -moz-transition: all .2s ease-in-out !important;
    -o-transition: all .2s ease-in-out !important;
    -ms-transition: all .2s ease-in-out !important;
    transition: all .2s ease-in-out !important;
    text-decoration: none;
}
a:hover, input[type="submit"]:focus,  button, button[type="submit"]:focus, .dontae-row button:focus{
	text-decoration:none !important;
	outline:none !important;
}
h1, h2, h3, h4, h5, h6{
	font-family: var(--font-heading);
	margin: 0;
	font-weight: 300;
	text-transform: uppercase;
	line-height: 1;
}
h1{
	font-size: 80px;
}
h2{
	font-size: 70px;
}
h3{
	font-size: 34px;
}
h4{
	font-size: 24px;
}
p{
	letter-spacing: 2.5px;
	margin-bottom: 0;
}
strong, span{
	font-size: inherit;
	line-height: inherit;
	color: inherit;
	text-transform: inherit;
	font-family: inherit;
}
strong{
	font-weight: 800;
}
.pt-20{
	padding-top: 20px;
}
.pb-20{
	padding-bottom: 20px;
}
.pt-50{
	padding-top: 50px;
}
.pt-60{
	padding-top: 60px;
}
.pb-60{
	padding-bottom: 60px;
}
.mt-10{
	margin-top: 10px;
}
.mt-15{
	margin-top: 15px;
}
.mt-20{
	margin-top: 20px;
}
.mt-25{
	margin-top: 25px;
}
.mt-30{
	margin-top: 30px;
}
.mt-35{
	margin-top: 35px;
}
.mt-40{
	margin-top: 40px;
}
.mt-50{
	margin-top: 50px;
}
.mb-15{
	margin-bottom: 15px;
}
.prime-bg{
	background-color: var(--primary);
}
.dark-bg{
	background-color: var(--dark);
}
.text-prime{
	color: #ED6B00;
}
.text-dark{
	color: #333333;
}
.font-heading{
	font-family: var(--font-heading);
}
header{
	z-index: 1111;
}
.custom-btn ul li a{
	width: 166px;
	height: 54px;
}
.custom-btn ul li a, button{
	position: relative;
}
.custom-btn ul li a:after, button:after{
    content: "";
    border-radius: 5px;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
    opacity: 0;    
}
.custom-btn ul li a:hover, button:hover {
    -webkit-transform: scale(1.05, 1.05);
    transform: scale(1.05, 1.05);
}
.custom-btn ul li a:hover:after, button:hover:after{
    opacity: 1;
}
.custom-btn ul li a.big-btn{
	width: 184px;
}
.navbar-collapse .navbar-nav li.nav-item {
    margin-right: 28px;
}
.navbar-collapse .navbar-nav li.nav-item .nav-link{
	color: #fff;
}
figure{
	margin: 0;
}
.bg-image{
	background-size:cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.banner-section{
	background-image: url(/assets/images/banner-bg.webp);
	min-height: 1123px;
}
.banner-content-box p{
	letter-spacing: 2.5px;
}
.banner-social-list ul li a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}
.banner-social-list ul li a i {
    font-size: 20px;
    color: #000;
}
.banner-social-list {
    left: calc(100% - 99%);
}
.marquee-row {
    text-transform: uppercase;
    font-weight: 700;
    color: #DCDDEC;
    letter-spacing: -0.03em;
    font-size: 4.1rem;
    white-space: nowrap;
    width: 100%;
    display: flex;
    align-items: center;
    word-spacing: 0;
    overflow: hidden;
    gap: 80px;
    -webkit-mask-image: linear-gradient(var(--mask-direction, to right), hsl(0 0% 0% / 0), hsl(0 0% 0% / 1) 20%, hsl(0 0% 0% / 1) 80%, hsl(0 0% 0% / 0));
}
.marquee-row .marquee-inner {
    -webkit-animation: slide-left 15s linear infinite;
    animation: slide-left 15s linear infinite;
    overglow: hidden;
    gap: 80px;
    display: flex;
    align-items: center;
    margin: 4px 0;
}
.marquee-row .marquee-inner .marquee-image {
    width: 266px;
    height: 108px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 6px rgb(0 0 0 / 25%);
}
.about-section .icon-box-row .icon-box .icon-wrapper {
    width: 75px;
    height: 75px;
    flex:0 0 75px;
    z-index: 1;
}
.about-section .icon-box-row .icon-box .icon-wrapper:before{
	width: 100%;
	height: 100%;
	background-color: var(--primary);
	content: "";
	position: absolute;
	left: 0;
	top:0;
	border-radius: 100%;
	z-index: -1;
}
.top-30{
	top: 30px;
}
.bottom-20{
	bottom: 20px;
}
.services-section .card{
	padding: 25px 22px;
}
.services-section .card-image {
    width: 120px;
    height: 120px;
    background-color: rgb(234 105 1 / 10%);
    z-index: 1;
}
.services-section .card-image:before, .services-section .card-image:after{
	content: "";
	position: absolute;
	z-index: -1;
	background-color: var(--primary);
}
.services-section .card-image:before{
	width: 98px;
	height: 98px;	
	opacity: 50%;
}
.services-section .card-image:after{
	width: 78px;
	height: 78px;
}
.services-section .card .card-body h3{
	font-size: 24px;
}
.services-section .card .card-body p{
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 1px;
}
.services-section .card .card-btn a{
	width: 28px;
	height: 28px;
	background-color: var(--primary);
}
.services-section .card .card-btn a i{
	font-size: 16px;
}
.serviceSwiper .swiper-button-prev, .serviceSwiper .swiper-button-next{
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(255 255 255 / 10%);
}
.serviceSwiper .swiper-button-prev:before, .serviceSwiper .swiper-button-prev:after, .serviceSwiper .swiper-button-next:before, .serviceSwiper .swiper-button-next:after{
	content: "";
	position: absolute;
	z-index: -1;
}
.serviceSwiper .swiper-button-prev:before, .serviceSwiper .swiper-button-next:before{
	width: 44px;
	height: 44px;
	background-color: #fff;
}
.serviceSwiper .swiper-button-prev:after, .serviceSwiper .swiper-button-next:after{	
    width: 54px;
    height: 54px;
    background-color: rgb(255 255 255 / 20%);
}
.work-section .card-image {
    flex: 0 0 120px;
}
.z-index-1{
	z-index: -1;
}
.contact-section .icon-box-row .icon-box .icon-wrapper {
    width: 78px;
    height: 78px;
}
.contact-section .icon-box-row .icon-box .icon-wrapper i{
	font-size: 30px;
}
.contact-section .icon-box-row .icon-box .desc-wrapper h3{
	font-size: 26px;
}
.contact-section .icon-box-row .icon-box .desc-wrapper a{
	font-size: 22px;
}
.contact-form{
	padding: 25px 30px;
	border:1px solid #8C8C8C;
	border-radius: 10px;
}
.contact-form label {
    font-weight: 500;
    font-size: 16px;
    margin-left: 40px;
}
.contact-form label span {
    color: #FF0000;
}
.contact-form input,  .contact-form textarea{
    height: 70px;
    background: #F0F0F0;
    border: 0;
    padding: 24px 40px;
    font-size: 16px;
}
.contact-form textarea {
    height: 140px;
    resize: none;
}
.contact-form button{
	height: 60px;
	border-radius: 10px;
	font-size: 22px;
	margin: 0 30px;
}
.testimonials-section .swiper {
    padding: 25px 25px;
    box-shadow: 0 4px 4px rgb(0 0 0 / 25%);
}
.testimonials-section .swiper-slide .card {
    padding: 35px 25px;    
}
.testimonials-section .swiper-slide .card .card-header .card-info h3{
	font-size: 30px;
}
.testimonials-section .swiper-slide .card .card-header .card-info h4{
	font-size: 20px;
}
.testimonials-section .swiper-slide .card .card-body{
	font-size: 18px;
	line-height: 32px;
}
.testimonials-section .swiper-slide .card .card-footer i{
	color: #FFC200;
	font-size: 22px;
	-webkit-transform: rotate(35deg);
	transform: rotate(35deg);
}
.footer-social-list a {
    width: 36px;
    height: 36px;
    box-shadow: 0 0 4px rgb(0 0 0 / 25%);
}
.footer-widget h3 {
    font-size: 30px;
    font-weight: 400;
}
.footer-widget ul.menu li {
    line-height: 33px;
}
.footer-widget ul li a {
    color: #333333;
}
.footer-copy{
	padding: 20px 0px;
}



/* Key Frames */
@keyframes slide-left{
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}