body
{
	color:var(--secondary_color);
	font-family:var(--secondary_font);
	position: relative;
}
/* topbar-open */
#top
{
	box-shadow:0 0 6px rgba(0 0 0/16%);
	opacity:0;
    visibility:hidden;
	transition: all .15s ease;
	position: fixed;
    width:70px;
	height:50px;
    right:25px;
	display:flex;
	align-items:center;
	justify-content:center;
    bottom:-25px;
    margin:0;
    z-index:10000;
	background:var(--primary_color);
}
#top svg
{
	width:28px;
	fill:#f7f7f7;
	height:28px;
}
.topbar
{
	line-height: 0;
	padding:8px 0px;
	background: var(--secondary_color);
}
.topabr-left
{
	font-size:13px;
	line-height:23px;
	font-weight: 400;
	color:var(--addit_white);
}
.topabr-left span{
	margin-right: 20px;
}
.topbar-right
{
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.topbar-right span
{
	font-size:15px;
	line-height:23px;
	font-weight: 400;
	color:var(--addit_white);
	margin-right: 15px;
	display: inline-block;
}
.topbar-social
{
	display: flex;
	align-items: center;
}

.topbar-social a i{
	color:var(--addit_white);
}
.topbar-social a
{
	margin-right:20.5px;
}
.topbar-social a:last-child
{
	margin-right: 0;
}
.topbar-social svg
{
	width:11.96px;
	height:11.96px;
	transition: all 0.5s ease;
	fill:var(--addit_white);
}
.topbar-social a:hover svg
{
	fill:var(--primary_color);
}
.topbar-social .facebook svg
{
	width: 7.3px;
	height: 14.61px;
}
.topbar-social .twitter svg
{
	width:14.66px;
	height:11.96px;
}
.topbar-social .instagram svg
{
	width:11.96px;
	height:11.96px;
}
/* topbar-close */
/* top-brand-open */
.topbar-branding
{
	padding:11px 0px;
}
.top-contact
{
	display: flex;
	justify-content: flex-end;
}
.top-contact-inner
{
	display: flex;
	align-items: center;
}
.top-contact-inner svg
{
	transition: all 0.5s ease;
	position: relative;
	z-index: 2;
	fill:var(--primary_color);
	/* margin-top:10px; */
}
.top-contact-call svg
{
	width:29.04px;
	height: 32.29px;
}
.top-contact-icon
{
	display:flex;
	align-items: center;
    justify-content: center;
	width: 60px;
	position: relative;
	min-width: 60px;
	height: 60px;
	line-height:60px;
	border-radius: 50%;
	background: #EBEBEB;
	text-align: center;
}
.top-contact-icon::before
{
	position: absolute;
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 50%;
    transition: .9s;
    transform: scale(.5);
    opacity: 0;
    background: var(--primary_color);
}
.top-contact-inner:hover .top-contact-icon::before
{
	transform: scale(1);
	opacity: 1;
}
.top-contact-inner:hover svg
{
	fill:var(--addit_white);
}
.top-contact-content
{
	margin-left: 15px;
}
.top-contact-content span
{
	font-size: 17px;
	color:var(--primary_color);
	line-height: 25px;
	font-weight: 600;
	display:block;
}
.top-contact-content a
{
	transition: all 0.5s ease;
	font-size: 14px;
	line-height: 21px;
	font-weight: 400;
	display:block;
	color:var(--secondary_color);	
}
.top-contact-content a:hover
{
	color:var(--primary_color);
}
.top-contact-email svg
{
	width:29.47px;
	height: 33.25px;
}
.top-contact-email
{
	margin-left: 32px;
	padding-left: 32px;
	border-left: 1px solid #EBEBEB;
}
/* top-brand-close */

/* top-dropdown-open */
.nav-item.dropdown:hover .dropdown-menu ul{
	padding:0px;
}
.nav-item.dropdown:hover .dropdown-menu
{
	transform:scaleY(1) translateX(-50%);
	opacity:1;
	top:100%;
}
.nav-item.dropdown
{	
	display:flex;
}
.nav-item.dropdown span
{
	/*margin-left:10px;
	min-width:10px;*/
	display:block;
}
.nav-item.dropdown .dropdown-menu
{
	background:var(--addit_white);
	border-radius:0px;
	top:48.5px;
	display:block;
	left:50%;
	transform:scaleY(0) translateX(-50%);
	padding:0px;
	border:none;
	transition:all 0.5s;
	opacity:0;
	border-top:3px solid var(--primary_color);
	min-width:250px;
	white-space:unset;
}
.nav-item.dropdown .dropdown-menu li:last-child
{
	border:none;
}
.nav-item.dropdown .dropdown-menu li
{
	border-bottom:1px solid rgba(0,0,0,0.04);
}
.nav-item.dropdown .dropdown-menu li a
{
	display: block;
    padding: 15px 20px;
    position: relative;
	font-size:15px;
	line-height:21px;
	-webkit-transition: all .3s linear;
    transition: all .3s linear;
}
.nav-item.dropdown .dropdown-menu li a:before
{
	width:6px;
	height:2px;
	content:'';
	top:50%;
	transform:translateY(-50%);
	background:var(--primary_color);
	transition: .5s all;
	position:absolute;
	opacity: 0;
    left: 10px;
}
.nav-item.dropdown .dropdown-menu li a:hover,.nav-item.dropdown .dropdown-menu li a.active
{
	padding-left:35px;
	color:var(--primary_color);
	background:var(--addit_white);
}
.nav-item.dropdown .dropdown-menu li a:hover:before,.nav-item.dropdown .dropdown-menu li a.active:before
{
	opacity: 1;
    left: 20px;
}
.nav-item.dropdown .dropdown-item
{
	line-height:30px;
}
.nav-item.dropdown span{
	    font-weight: 500;
    color: var(--secondary_color);
    display: inline-block;
}
.nav-item.dropdown span:after
{
	display: inline-block;
    border: solid var(--secondary_color);
    border-width: 0px 2px 2px 0px;
    padding: 3px;
	transition: all .5s;
	position:absolute;
	top:48%;
    transform:translateY(-50%) rotate(45deg);
    -webkit-transform:translateY(-50%) rotate(45deg);
}

@media(max-width:1199px)
{
	.nav-menus .nav-item:last-child .dropdown-menu
	{
		right:0px;
		left:unset;
		transform:scale(0) translate(0,0);
	}
	.nav-item.dropdown:hover .dropdown-menu
	{
		transform:scale(1) translate(-50%,0);
	}
	.nav-menus .nav-item:last-child:hover .dropdown-menu
	{
			transform:scale(1) translateY(0);
	}
}
@media(max-width:991px)
{
	.nav-menus .nav-item:hover .nav-link,.nav-item.active .nav-link
	{
		/*background:var(--primary_color);
		color:var(--addit_white);*/
	}
	.nav-item.dropdown .dropdown-menu
	{
		border:none;
		padding:10px 20px;
		/*display:none;*/
		transform: scale(1) translateY(0) !important;
		opacity:1;
	}

	.nav-item.dropdown .dropdown-menu.show
	{
		display:block;
	}
	.nav-menus .nav-item
	{
		margin:0px;
		margin-bottom:10px;
	}
	.nav-item.dropdown
	{
		display:block;
	}
	.nav-menus .nav-item span:after
	{
		left:50%;
		transform: translate(-50%,-50%) rotate(45deg);
	}
	.nav-menus .nav-item:hover span:after,.nav-menus .nav-item.active span:after
	{
		border-color:var(--addit_white);
	}
	.nav-item.dropdown span
	{
		/*display:block;
		right:10px;
		min-width:30px;
		z-index:1;
		position:absolute;
		top:0px;
		min-height:38px;*/
	}
	.nav-item.dropdown a.nav-link
	{
		display:block;
		width:100%;
	}
}

/* top-dropdown-close */

/* top-navbar-open */
.top-navbar .navbar
{
	border-radius: 10px;
	background:var(--addit_white);
	padding: 0;
	box-shadow: 0 3px 10px rgba(0 0 0/16%);
}
.top-navbar .navbar .nav-link,
{
	font-size: 15px;
	line-height: 23px;
	transition: all 0.5s ease;
	font-weight:500;
	text-transform: uppercase;
	padding: 0;
	color:var(--secondary_color);
}
.top-navbar .navbar .nav-link:hover,.top-navbar .navbar .nav-link.active
{
	color:var(--primary_color);
}
.top-navbar .navbar ul
{
	padding:10px 40px ;
}
.top-navbar .navbar .nav-item
{
	position: relative;
	padding-right:20.5px;
	margin-right:20.5px;
}
.top-navbar .navbar .nav-item:last-child
{
	padding-right: 0;
	margin-right: 0;
}
.top-navbar .navbar .nav-item:last-child::before
{
	display: none;
}
.top-navbar .navbar .nav-item::before
{
	position: absolute;
	right:-0.5px;
	width: 1px;
	height:8px;
	top:50%;
	transform: translateY(-50%);
	content: '';
	background: #707070;
}
#header{
	    z-index: 999;
    position: relative;
}
#header .nav-button
{
	border-radius:0px 10px 10px 0px;
	transition: all 0.5s ease;
	font-size: 15px;
	line-height: 23px;
	font-weight:600;
	text-transform: uppercase;
	background:var(--primary_color);
	padding:13px 41px;
}
#header .top-brand img{
	width:100px;	
}
#header .nav-button:hover
{
	background: var(--secondary_color);
}
/* top-navbar-close */
/* header-close */

img
{
	max-width:100%;
}
#header a,#header a:hover,#header a:focus
{
	outline:0px;
	text-decoration:none;
}
#header input,#header input:hover,#header input:focus,#header button,#header button:hover,#header button:focus
{
	border-radius: 0;
	outline:0px;
	border:0px;
    box-shadow: none;
}

#header a
{
	font-weight:500;
	/* color:var(--secondary_color); */
	display:inline-block;
}
#header p
{
	font-size:17px;
	font-family: var(--primary_font);
	line-height:24px;
	color: var(--addit_black);
	margin-bottom:0px;
	font-weight:400;
}
#header .site-buttons
{
	font-size: 15px;
	line-height: 23px;
	font-weight: 600;
	color:var(--addit_white);
	padding: 14.5px 26px;
	background: var(--primary_color);
	text-transform: uppercase;
	transition: all 0.5s ease;
}
#header .site-buttons:hover
{
	color:var(--addit_white);
	transform: translateY(-8px);
	background:var(--secondary_color) ;
}


/* ======================== */
/* RESPONSIVE CSS */
/* ======================== */
/* @media(max-width:1199px) */
/* { */
    /* h2 */
    /* { */
        /* font-size: 40px; */
    /* } */
/* } */
#header h1,#header h2,#header h3,#header h4,#header h5,#header h6
{
	margin-bottom:0px;
	font-weight:700;
}
#header h2
{
	font-size: 42px;
	padding: 6.5px 0px;
	line-height: 50px;
}
@media(max-width:991px)
{
    #header h2
    {
        font-size: 34px;
		line-height:44px;
    }
}
	body
	{
		color:var(--secondary_color);
		font-family:var(--secondary_font);
	}
img
{
	max-width:100%;
}
.request-form a,.request-form a:hover,.request-form a:focus
{
	outline:0px;
	text-decoration:none;
}
.request-form input,.request-form input:hover,.request-form input:focus,.request-form button,.request-form button:hover,.request-form button:focus
{
	border-radius: 0;
	outline:0px;
	border:0px;
    box-shadow: none;
}

.request-form a
{
	font-weight:500;
	color:var(--secondary_color);
	display:inline-block;
}
.request-form p
{
	font-size:17px;
	font-family: var(--primary_font);
	line-height:24px;
	color: var(--addit_black);
	margin-bottom:0px;
	font-weight:400;
}
.request-form .section-head span
{
	font-size: 17px;
	line-height: 25px;
	text-transform: uppercase;
	font-weight: 500;
	display: flex;
	color: var(--primary_color);
	margin-bottom: 5px;
}
.request-form .section-head span::before
{
	position: relative;
	top:12px;
	margin-right: 20.5px;
	content: '';
	display: inline-block;
	width: 83px;
	height: 1px;
	background: var(--primary_color);
}
.request-form .site-buttons
{
	font-size: 15px;
	line-height: 23px;
	font-weight: 600;
	color:var(--addit_white);
	padding: 14.5px 26px;
	background: var(--primary_color);
	text-transform: uppercase;
	transition: all 0.5s ease;
}
.request-form .site-buttons:hover
{
	color:var(--addit_white);
	transform: translateY(-8px);
	background:var(--secondary_color) ;
}


/* ======================== */
/* RESPONSIVE CSS */
/* ======================== */
/* @media(max-width:1199px) */
/* { */
    /* h2 */
    /* { */
        /* font-size: 40px; */
    /* } */
/* } */
.request-form h1,.request-form h2,.request-form h3,.request-form h4,.request-form h5,.request-form h6
{
	margin-bottom:0px;
	font-weight:700;
}
.request-form h2
{
	font-size: 42px;
	padding: 6.5px 0px;
	line-height: 50px;
}
@media(max-width:991px)
{
    .request-form h2
    {
        font-size: 34px;
		line-height:44px;
    }
}

/* ======================== */
/* RESPONSIVE CSS */
/* ======================== */
@media(max-width:991px)
{
    .top-navbar
    {
        width: 100%;
        position:absolute;
        /* top:100%; */
        z-index: 999;
    }
    .top-navbar .navbar ul
    {
        padding: 12px 20px;
    }
    .top-navbar .navbar .nav-item
    {
        margin:8px 0;
    }
    .top-navbar .navbar .nav-button
    {
        margin-left: 20px;
        margin-bottom: 20px;
		display:none;
    }
    .top-navbar .navbar .nav-item::before
    {
        display: none;
    }
    .top-contact
    {
        display: none;
    }
    .menu-opner  svg
    {
        width: 25px;
        height: 25px;
        fill:var(--addit_white);
    }
    .menu-opner
    {
        text-align: right;
    }
    .menu-opner .navbar-toggler
    {
        background:var(--primary_color);
    }
}
@media(max-width:767px)
{
    .contact-left-icon
    {
        width: 84px;
        height: 84px;
        min-width: 84px;
    }
}
@media(max-width:575px)
{
    .contact-left-inner svg
    {
        width: 35px;
        height: 35px;
    }
    .contact-left-icon
    {
        width:65px;
        min-width:65px;
        height:65px;
    }
    .inner-banner h1
    {
        font-size: 45px;
        line-height: 55px;
    }
	 #top
    {
        display: none;
    }
    .top-brand
    {
        max-width: 200px;
    }
	.topabr-left {
		text-align: center;
		margin-bottom: 10px;
	}
	.topbar-right{
		justify-content:center;
	}
}
@media(max-width:500px)
{
    .request-form-inner .input-box
    {
        flex:0 0 100%;
    }
    .request-form-inner .math-captha
    {
        margin-top:25px;
    }
    .request-form-inner
    {
        padding: 21px 15px;
    }
}
@media(max-width:400px)
{
    .contact-left-content h3,.testomonials-slide-inner h3,.footer-contact-inner h3,.request-form-inner h3
    {
        font-size: 20px;
        line-height: 30px;
    }
}

/*banner-close*/
.home-banner
{
	position:relative;
	margin-top:-22px;
}
.single-banner
{
	background:url('../images/banner-img.webp') no-repeat right;
	background-size:cover;	
	min-height:54.8vw;	
	display:flex !important;
	align-items:center;
	justify-content:center;
}
.banner-content .banner-title
{
	font-size:42px;
	line-height:45px;
	font-family:var(--primary_font);
	margin-bottom:27px;
	color:var(--addit_white);
}
.banner-content
{
	max-width:745px;
	margin-top:131px;
	margin-bottom:135px;	
}
.banner-content p
{
	font-size:16px;
	margin-bottom:30px;
	color:var(--addit_white);
}

.testslider-prevnext
{
	position:absolute;
	right:15px;
	display:flex;
	top:50%;
	align-items:center;
	transform:rotate(90deg) translate(9px,-50%);
}
.testslider-prevnext i.testslider-next
{
	transform:rotate(180deg) translateY(-1px);
}
.slider-counter
{
	margin:0px 16px;
	border-radius:50%;
	min-height:74px;
	min-width:74px;
	border:2px solid var(--addit_white);
	transform:rotate(-90deg);
	display:flex;
	align-items:center;
	justify-content:centere;
}
.slider-counter .num
{
	width:100%;
	text-align:center;
	font-size:28px;
	line-height:34px;
	color:var(--addit_white);
	font-weight:400;
	font-family:var(--secondary_font);
}
.testslider-prevnext svg
{
	width:36.67px;
	height:24.46px;
	fill:var(--addit_white);
}
@media(max-width:1300px)
{
	.banner-content
	{
		margin-top:170px;
		margin-bottom:65px;
	}
}

@media(max-width:1300px)
{
	.banner-content
	{
		margin-top:170px;
		margin-bottom:65px;
	}
}
@media(max-width:1199px)
{
	.banner-content
	{
		max-width:700px;
		margin-top:150px;
		margin-bottom:70px;
	}
	.innerbanner-content h1
	{
		font-size:42px;
		line-height:45px;
	}
	
}
@media(max-width:991px)
{
	.home-banner{
		
	margin-top:0px;
	}
	.innerbanner
	{
		padding-top:140px;
	}
	.innerbanner-content
	{
		min-height:320px;
	}
	.innerbanner-content h1
	{
		font-size:40px;
		line-height:52px;
	}
	.banner-content .banner-title
	{
		font-size:40px;
		line-height:40px;
		margin-bottom:40px;
	}
	.single-banner
	{
		position:relative;
	}
	.single-banner:before
	{
		/*width:100%;
		height:100%;
		position:absolute;
		left:0px;
		top:0px;
		content:'';
		background:rgba(255 255 255/0.7);*/
	}
	.banner-content
	{
		position:relative;
		z-index:1;
	}
	.banner-content
	{
		margin-top:120px;
		margin-bottom:80px;
	}
	.banner-content
	{
		max-width:380px;
	}
	.banner-content .banner-title
	{
		margin-bottom:25px;
		font-size:35px;
		line-height:47px;
	}
	.banner-content
	{
		position:relative;
		z-index:1;
	}
}
@media(max-width:767px)
{
	.banner-content
	{
		        margin-top: 80px;
        margin-bottom: 80px;
		max-width:unset;
	}
	.home-banner .slick-dotted.slick-slider
	{
		margin-bottom:0px;
	}
	.home-banner .slick-dots
	{
		bottom:20px;
	}
	.home-banner .slick-dots button
	{
		display:none;
	}
	.home-banner .slick-dots li
	{
		width:15px;
		height:15px;
		margin:0px 5px;
		background:transparent;
		border:1px solid var(--secondary_color);
		border-radius:50%;
	}
	.home-banner .slick-dots li.slick-active
	{
		border-color:var(--primary_color);
		background:var(--primary_color);
	}
	.innerbanner-content
	{
		padding:20px 0px;
	}
	.innerbanner-content h1
	{
		font-size:35px;
		line-height:42px;
	}
	.innerbanner-content
	{
		min-height:200px;
	}
}
@media(max-width:575px)
{
	.innerbanner-content
	{
		max-width:70%;
		min-height:180px;
	}
	.innerbanner-content h1
	{
		font-size:30px;
		line-height:42px;
	}
	.banner-content
	{
		max-width:450px;
	}
	
	.banner-content p
	{
		display:none;
	}
	.gallery-inner
	{
		margin-left:auto;
		margin-right:auto;
	}
}
@media(max-width:450px)
{
	
	.banner-content .banner-title
	{
		font-size:32px;
		line-height:43px;
	}
	.innerbanner-content
	{
		max-width:unset;
	}
}
@media(max-width:400px)
{
	.banner-content .banner-title
	{
		font-size:32px;
		line-height:43px;
	}
	

}
/*banner-close*/
/*some-interesting-facts-open*/

.some-facts {
    background: url('	/sites/default/files/2025-07/motherboard-2_0.jpg') no-repeat center;
    background-size: cover;
    margin-top: 60px;
    margin-bottom:40px;
}
.some-face-bgimage{
    padding: 60px 0px;
	background:linear-gradient(to top, rgba(53, 53, 74, 0.5) 0%, rgba(53, 53, 74, 0.7) 75%, rgba(53, 53, 74, 0.9) 100%);
}

.some-facts-left {	
    position: relative;
    margin-right: -15px;
    padding-right: 20px;
}

.some-facts-left::before,
.some-facts-left::after {
    position: absolute;
    height: 34.3%;
    width: 20px;
    content: '';
    background: var(--addit_white);
    bottom: 0px;
    right: 0px;
}

.some-facts-left::after {
    top: 0px;
    bottom: unset;
}

.some-facts-inner {
    border: 20px solid var(--addit_white);
    border-right: 0px;
    padding: 40px 58px;
    padding-right: 35px;
}

.some-facts-left h2 {
    margin-bottom: 25px;
    color: var(--primary_color);
}

.some-facts-left span {
    color: var(--addit_white);
}

.some-facts-left span::after {
    background: var(--addit_white);
}

.some-facts-left p {
    color: var(--addit_white);
}

.some-facts-right {
    max-width: 499px;
    margin-left: auto;
    padding-left: 15px;
}

.some-facts-right-inner {
    display: flex;
    justify-content: space-between;
    margin: 0px -15px;
}

.some-facts-right-inner div {
    padding: 0px 15px;
    text-align: center;
}

.some-facts-right-inner h3 {
    font-size: 40px;
    line-height: 56px;
    font-weight: 600;
    font-family: var(--secondary_font);
    color: var(--addit_white);
    padding-bottom: 11.5px;
    position: relative;
    display: inline-block;
    margin-bottom: 19.5px;
}

.some-facts-right-inner h3::before {
    position: absolute;
    bottom: 0px;
    width: 81%;
    height: 2px;
    background: var(--addit_white);
    content: '';
    left: 50%;
    transform: translateX(-50%);
}

.some-facts-right-inner span {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: var(--addit_white);
    display: block;
}

.some-facts .section-head {
    /* margin-bottom: 79px; */
    /* max-width: 50%; */
    /* padding-right: 15px; */
}
.solid-section .section-head span::after,
.some-facts .section-head span::after{
	background-color: var(--addit_white);
}
.solid-section .section-head span,
.some-facts .section-head span {
    color: var(--addit_white);
}

.some-facts-right-inner span {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: var(--addit_white);
	font-family: var(--secondary_font);
    display: block;
    text-transform: uppercase;
}
.some-facts .section-head h2 {
    color: var(--addit_white);
}
.some-facts p{
   font-size: 16px;
   font-family: var(--secondary_font);
    color: var(--addit_white);
    line-height: 25px;
    font-weight: 400;
    /* margin-left: auto; */
    max-width: 443px;
	margin:0px;
}
/*some-interesting-facts-close*/

@media (max-width: 991px) {
    .some-facts .section-head h2{
        font-size: 35px;
        line-height: 45px;
    }
}
@media (max-width: 767px) {
    .some-facts .section-head h2{
        font-size: 30px;
        line-height: 42px;
    }
}
/* @media (max-width: 575px) { */
    /* .some-facts .section-head h2{ */
        /* font-size: 27px; */
        /* line-height: 35px; */
    /* } */
/* } */
/* responsive */

@media(max-width:1199px) {
    .some-facts-inner {
        padding: 63px 22px;
    }
}

@media(max-width:991px) {
    .some-facts-left {
        margin-right: 0px;
    }
    .some-facts-right {
        margin-top: 0px;
        padding-left: 0px;
        max-width: unset;
    }
}

@media(max-width:450px) {
    .some-facts-right-inner h3 {
        font-size: 30px;
        line-height: 40px;
    }
    .some-facts-right-inner {
        flex-wrap: wrap;
        justify-content: center;
    }
    .some-facts-right-inner div {
        margin-top: 30px;
        flex: 0 0 50%;
	}
    .some-facts .section-head span:after {
        width: 50px;
    }

    .some-facts .section-head span {
        padding-left: 65px;
    }
}


footer{ 
	 margin-top:60px; 
 } 


#footer-top{
	background-color: var(--quinary_color);
	/*background:url('../images/ftr-top-bg.png');*/
	box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, .24);
	background-repeat:no-repeat;
	background-size:cover;
	background-position:center bottom;
}

#footer-top .ftr-top-section .btn-wrapper {
	display: flex;
	justify-content: center;
}
.ftr-top-description{
	padding:20px 15px;
}
.ftr-top-description h4{
	font-size: 24px;
        line-height: 34px;
        margin: 0px;
	font-family:var(--primary_font);
	color:var(--primary_color);
	font-weight:700;
}


#footer-top{
	/*margin-top: 199px;*/
}
#footer-main {
	/*background:url('../images/ftr-main-bg.png');*/
	background-color: var(--primary_color);
	background-repeat:no-repeat;
	background-size:cover;
	background-position:center;
	padding:77px 0 0 0;
}
#footer-top a,#footer-top a:link,#footer-top a:hover,#footer-top a:active,#footer-top a:focus,#footer-top a:visited{
	text-decoration:none;
	outline:none;
}
.ftr-menus{
	margin-bottom:63.5px;
}
.ftr-logo img{
	margin-bottom:35px;
}		
.ftr-logo p{
	margin-bottom:22.5px;
	padding-bottom:22.5px;
	border-bottom:solid 1px var(--addit_white);
}		
.ftr-menus p{
	color:var(--addit_white);
}		
.ftr-contact-detail-content{
	display:flex;
	align-items:center;
	line-height:0;
	margin-bottom:19px;
	width:100%;
}
.ftr-contact-detail-content:last-of-type{
	margin-bottom:0;
}
.ftr-contact-icon{
	margin-right:14.4px;
	display:inline-block;
	line-height:0;
}
a.ftr-contact-content{
	display:inline-block;
	font-family:var(--secondary_font);
	font-size:16px;
	font-weight:400;
	color:var(--addit_white);
	line-height:23px;
	width:100%;
}
#footer-main a{
	color:white;
	transition:all .5s;
}
#footer-main a:hover{
	color:var(--addit_white)!important;
}
#footer-main .icon-ftr-phone{
	height:22.5px;
	width:22.5px;
	fill:var(--addit_white);
}
#footer-main .icon-ftr-mail{
	height:18px;
	width:24.4px;
	fill:var(--addit_white);
}
#footer-main .icon-ftr-loc{
	height:23.5px;
	width:25px;
	fill:var(--addit_white);
}
#footer-main .icon-ftr-clock{
	height:25px;
	width:25px;
	fill:var(--addit_white);
}
.ftr-menus h5{
	color:var(--addit_white);
	font-family:var(--primary_font);
	font-size:23px;
	font-weight:600;
	line-height:28px;
	margin-top:calc(101px - 77px);
	margin-bottom:49px;
	position:relative;
	display:inline-block;
	width:auto;
	z-index:2;
}
.ftr-menus h5::before{
	content:'';
	position:absolute;
	bottom:5px;
	height:1px;
	width:100%;
	border-bottom:solid 8px var(--secondary_color);
	z-index:-1;
}
.icon-ftr-list{
	height:6.4px;
	width:13px;
	fill:var(--addit_white);
	transition:all .5s;
	margin-right:7.5px;
}
.ftr-menus li:hover .icon-ftr-list{
	fill:var(--addit_white);
}
.ftr-menus ul{
	list-style:none;
	padding:0;
	margin:0;
}
.ftr-menus li{
	display:flex;
	align-items:center;
	margin-bottom:17px;
}
.ftr-menus li a{
	font-family:var(--secondary_font);
	font-size:16px;
	color:var(--addit_white);
	font-weight:400;
	line-height:23px;
	display:inline-block;
	width:100%;
	text-decoration:none;
}
.ftr-subscribe p{
	margin-bottom:29px;
}
.ftr-subscribe form{
	margin-bottom:33px;
}
.subscribe-box{
	border-top:solid 1px var(--addit_white);
	border-left:solid 1px var(--addit_white);
	border-bottom:solid 1px var(--addit_white);
	display:flex;
	align-items:center;
	border-radius:93px;
	justify-content:space-between;
}
.subscribe-box .form-item {
    margin-block: 0px;
}
.subscribe-box .form-actions{
    margin-block:0px;
}
.subscribe-box input[type="email"]{
	width:100%;
	border:none;
	background:none;
	padding:0 19px;
}
.subscribe-box input[placeholder]{
	color:var(--addit_white);
	font-size:11px;
	font-family:var(--secondary_font);
	font-weight:400;
	box-shadow: none;
}
.subscribe-box input[type="submit"]{
	margin:0px;
	color:var(--addit_white);
	font-size:18px;
	font-family:var(--secondary_font);
	font-weight:400;
	background:var(--secondary_color);
	padding:11px;
	border-radius:127px;
	border:solid 1px var(--addit_white);
	transition:all .5s;
	cursor:pointer;
	float:right;
	line-height:25px;
}
.subscribe-box input[type="submit"]:hover{
	background:none;
}
.icon-ftr-facebook{
	height:27px;
	width:27px;
	fill:var(--addit_white);
}
.icon-ftr-insta{
	height:27px;
	width:27px;
	fill:var(--addit_white);
}
.icon-ftr-gplus{
	height:27px;
	width:27px;
	fill:var(--addit_white);
}
.ftr-social-icons a{
	margin-right:10px;
}
.ftr-social-icons a:last-of-type{
	margin-right:0;
}
.ftr-copyright-link{
	color:var(--primary_color);
}
#ftr-copyright{
	background:var(--quinary_color);
	padding:8px 0;
}
.ftr-copyright-section{
	text-align:center;
	font-size:14px;
	font-family:var(--secondary_font);
	color:var(--addit_white);
	font-weight:400;
	line-height:20px
}

.ftr-copyright-section p{
	display:inline;
	color:var(--addit_black);
	font-size: 13px;
}
.ftr-contact-detail-content:last-child .ftr-contact-icon svg{
	height:25px;
	width:25px;
}
.time{
	font-weight: 600;
	color: var(--addit_white);
	font-size:15px;
}
.ftr-contact-detail4 .time{
	font-size:16px;
	font-weight:500;
}
#top {
    box-shadow: 0 0 6px rgba(0 0 0/16%);
    opacity: 0;
    visibility: hidden;
    transition: all .15s ease;
    position: fixed;
    width: 70px;
    height: 50px;
    right: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: -25px;
    margin: 0;
    z-index: 10000;
    background: var(--secondary_color);
}
#top svg {
    width: 28px;
    fill: var(--addit_white);
    height: 28px;
	margin-top: 5px;
}
@media all and (min-width: 992px){
	.ftr-top-img-sec{
		margin-top:calc(125px - 199px);
	}
}
@media all and (max-width: 991px) {
	.ftr-top-img-sec{
		text-align:center;
	}
}
@media all and (min-width: 576px) {
	.ftr-top-description h4{
		font-size:22px;
		line-height:32PX;
	}
}
@media all and (max-width: 575px) {
	.ftr-top-description h4{
		font-size:22px;
		line-height:32px;
	}
}
/* responsive css */
@media all and (min-width: 1200px){
	.ftr-logo{
		padding-right:80px;
	}
}
@media all and (min-width: 992px) and (max-width: 1199px) {
	.ftr-logo{
		padding-right:28px;
	}
}
@media all and (min-width: 992px){
	.ftr-top-img-sec{
		margin-top:calc(125px - 199px);
	}
}
@media all and (max-width: 991px) {
	.ftr-top-img-sec{
		text-align:center;
	}
	footer {
		margin-top: 75px;
	}
}
@media all and (min-width: 768px) and (max-width: 991px) {
	.ftr-logo{
		padding-right:60px;
	}
}
.price-back{
	border-radius:10px;
}
h3.price-title{
	font-size: 22px;
    color: var(--primary_color);
    /* min-height: 50px; */
    font-weight: 500;
}

/* home about close */
#about-us{
	margin:60px 0px;
}
#about-us .about-us-left {
    position:relative;
    margin-left: 52px;  
    margin-top:68px;
}
#about-us .about-us-left-section {
    display: flex;
    align-items: center;
    max-width: 234px;
    padding: 14px 30px 15px 19px;
    background-color: var(--addit_white);
    border-radius: 41px 0px 40px 0px;
    box-shadow: 0px 3px 10px #00000029;
    position: relative;
    right: -232px;
    margin-top: -75px;
}
#about-us .about-bg {
    background:var(--secondary_color);
    height:149px;
    width:168px;
    background: var(--secondary_color);
    height: 168px;
    width: 149px;
    bottom: 8px;
    left: -26px;
    z-index: -1;
    position: absolute;
}
#about-us .about-us-left-section  h5 {
    font-size: 18px;
    line-height: 24px;
    color: var(--primary_color);
    font-weight: 700;
    font-family: var(--primary_font);
    margin-bottom: 0px;
    padding-lefT: 13px;
	
}
#about-us .about-us-left-section span {
    font-size: 17px;
    line-height: 22px;
    color: var(--primary_color);
    font-weight: 700;
    font-family: var(--primary_font);
    position: relative;
    background: var(--addit_white);
    border-radius: 50%;
    height: 70px;
    width: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circular-wrap {
    display: flex;
    border-radius: 8px;
    flex-direction: column;
    align-items: center ;
    color:var(--addit_white);
}
.circular-progress {
    position: relative;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    background:conic-gradient(var(--secondary_color) 326deg, var(--primary_color) 0deg);
    display: flex;
    justify-content: center;
    align-items: center;
}
.circular-progress::before {
    content:'';
    position:absolute;
    height: 60px;
    width:60px;
    border-radius: 50%;

}

.dot-image {
    animation-name: veritcal;
    animation-timing-function: linear;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    right: 26px;
    top: 111px;
    z-index: -1;
    position: absolute;
  }
@keyframes veritcal {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(70px);
    }
    100% {
      transform: translateY(0px);
    }
}
.cleaning-image {
    animation-duration: 2s;
    animation: scale 2s alternate infinite;
    left: -52px;
    top: -68px;
    box-shadow: 0 0 10px #00000029;
    border-radius: 100px;
    position: absolute;   
}
  
@-webkit-keyframes scale {
    0% {
      transform: scale(0.9);
      -webkit-transform: scale(0.9);
    }
    100% {
      transform: scale(1.08);
      -webkit-transform: scale(1.08);
    }
}
#about-us .about-us-right  {
    padding-top:69px;
}
#about-us .about-us-right p {
    margin-bottom:20px;
}
#about-us .about-us-right ul {
    list-style: none;
}
#about-us .about-us-right ul li {
        font-size: 16px;
    list-style: url(../images/checkmark.svg);
    line-height: 33px;
    color: var(--addit_black);
    /* padding-left: 34px; */
    /* margin-bottom: 30px; */
    font-weight: 500;
	color:var(--tertiary_color);
	    list-style-position: inside;
    font-family: var(--primary_font);
    text-transform: capitalize;
}
#about-us .cleaning-image img {
   width: 150px;
    height: 142px;
    border-radius: 50%;
}

#checkmark{
   fill:var(--secondary_color); 
}
/* about-us ends */
/* RESPONSIVE CSS */
@media all and (max-width: 1199px) and (min-width: 992px) {
    #about-us .about-us-left-section {
        right:-180px;
    }
    #about-us .about-us-right ul li {
        font-size: 16px;
        line-height: 19px;
        padding-lefT: 34px;
    }
}
@media all and (max-width: 991px) {
    #about-us .about-us-right {
        padding-top:50px;
    }
	
}
@media all and (max-width: 767px) {
    #about-us .about-us-left > img {
        max-width:80%;
    }
    #about-us .about-us-right ul li {
        font-size:18px;
        line-height: 24px;
        padding-left:35px;
        margin-bottom:23px;
    }
	.dot-image {
        display:none;
    }
}
@media all and (max-width: 575px) {
    #about-us .about-us-left > img {
        max-width: 69%;
    }
    #about-us .about-us-left-section {
        right:-150px;
    }
    
}
@media all and (max-width: 480px) {
    #about-us .about-us-left-section {
        display: none;
    }
    #about-us .about-bg {
        height: 146px;
        width: 139px;
        bottom: -18px;
        left: -20px;
    }
    #about-us .about-us-left > img {
        max-width: 85%;
    }
	    
}
@media all and (max-width: 400px) {
    .cleaning-image {
        max-width: 123px;
        top:-56px;
    }
    #about-us .about-us-left > img {
        max-width: 95%;
    }
}
/* home about close */
/* home products start */

.project {
    margin: 60px 0px;
}
.project h2 {
	font-family: var(--primary_font);
	color: var(--secondary_color);
    margin-bottom: 0px;
	 font-size: 35px;
    line-height: 50px;
    font-weight: 600;
}
.project-nav ul {
    margin: 0px;
    max-width: fit-content;
    margin-left: auto;
    display: flex;
    padding: 0px;
	list-style:none;
	
}

.project-nav ul li {
    margin: 0px 10.5px;
	list-style:none;
}

.project-nav ul li:first-child {
    margin-left: 0px;
}

.project-nav ul li:last-child {
    margin-right: 0px;
}

.project-nav li span {
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    line-height: 23px;
    display: block;
    font-weight: 500;
    color: var(--tertiary_color);
    position: relative;
    padding-bottom: 4px;
}

.project-nav li span::before {
    position: absolute;
    transition: all 0.3s ease;
    bottom: 0px;
    left: 0px;
    content: '';
    height: 1px;
    width: 0%;
    background: var(--primary_color);
}

.project-nav li.current_menu_item span,
.project-nav li.current_menu_item span::before,
.project-nav li:hover span,
.project-nav li:hover span:before {
    width: 100%;
    color: var(--primary_color);
}

.project-items-wrp .grid-item{
    padding-bottom: 15px;
}
.project-items-wrp {
	
}

.project-inner {
	height:100%;
    overflow: hidden;
    position: relative;
    margin-top: 30px;
	border-radius: 15px;
	background-color: var(--primary_color);
}

.project-inner a{
	height:100%;
	width: 100%;
}
.project-inner img {
    transition: all 0.3s ease;
	height: 236px;
    width: 100%;
}

.project-inner:hover img {
	opacity: 0.7;
    transform: scale(1.1);
}

.project-inner-content {
    position: absolute;
    bottom: 11px;
    left: 11px;
    right: 11px;
    background: white;
    border-radius: 4px;
    padding: 15px 30px;
    opacity: 0;
    transform: translateY(-15px);
    transition: all 0.3s ease;
}

.project-inner-content span {
    font-size: 16px;
    line-height: 23px;
    color: var(--primary_color);
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.project-inner-content h3 {
    font-size: 20px;
    line-height: 28px;
	margin-bottom: 0px;
    font-family: var(--secondary_font);
}

.project-inner:hover .project-inner-content {
    opacity: 1;
    transform: none;
}

.gallery-row{
	align-items:end;
}
.gallery-row .project-nav{
	padding-bottom:12px;
}
/*project-close*/


/* responsive */

@media(max-width:1199px) {
    .project-nav ul {
        margin-left: 0px;
        max-width: 100%;
        margin-top: 35px;
        justify-content: center;
    }
}

@media(max-width:767px) {
    .project-nav ul {
        flex-wrap: wrap;
    }
    .project-nav ul li {
        margin-bottom: 15px;
    }
    .project-inner .project-inner-content {
        padding: 15px 20px;
        transform: none;
        opacity: 1;
    }
    .project-inner-content span {
        font-size: 13px;
        line-height: 16px;
        margin-bottom: 5px;
    }
    .project-inner-content h3 {
        font-size: 16px;
        line-height: 20px;
    }
}

@media (max-width: 991px) {
    .project h2{
        font-size: 35px;
        line-height: 45px;
    }
}
@media (max-width: 767px) {
    .project h2{
        font-size: 30px;
        line-height: 42px;
    }
}
/* @media (max-width: 575px) { */
    /* .project h2{ */
        /* font-size: 25px; */
        /* line-height: 35px; */
    /* } */
/* } */
@media(max-width:450px) {
    .project .section-head span:after {
        width: 50px;
    }

    .project .section-head span {
        padding-left: 65px;
    }
}

/* home products close */
  .solid-section {
        margin-top:70px;    }

.client-section  {
	padding:0px;
	margin:60px 0px;
}
.client-section  .section-head.text-center{
	margin-bottom:40px;
}
.inner-banner{
	padding-top: 125px;
    margin-top: -22px;
    padding-bottom: 50px;
}
.breadcrumb{
	background-color: transparent;
	padding: 15px 0px;

}
.breadcrumb-item a{
	color: #211246;
}
.breadcrumb-item a:hover{
	color:var(--addit_ewhite);
}
.breadcrumb-item.active{
	color: var(--addit_white);
}
.breadcrumb-item+.breadcrumb-item::before{
	color:var(--addit_white);
}
#service{
	/*margin-top:125px;*/
	padding-top:73px;
	/*background:url('../images/service-bg.png');*/
	background-size:100% 345px;
	background-repeat:no-repeat;
	background-position:center top;
}
#service h2{
	font-size:60px;
	font-weight:800;
	font-family:var(--primary_font);
	line-height:73px;
}
#service h3{
	font-size:47px;
	font-weight:700;
	font-family:var(--primary_font);
	color:var(--primary_color);
	line-height:57px;
}
#service h6{
	font-family:var(--primary_font);
	font-size:18px;
	color:var(--secondary_color);
	font-weight:600;
	line-height:22px;
	margin-bottom:9px;
}
#service p{
	font-size:16px;
	color:var(--tertiary_color);
	line-height:25px;
	font-family:var(--secondary_font);
	font-weight:400;
}
#service .service-description{
	margin-bottom:20px;
}
/* button, button:hover, button:focus, button:active, input, input:hover, input:focus, input:active, select, select:hover, select:focus, select:active, textarea, textarea:hover, textarea:focus, textarea:active{ */
/* outline:none; */
/* }	 */
#service a,#service a:link,#service a:hover,#service a:active,#service a:focus,#service a:visited{
	text-decoration:none;
	outline:none;
}
#service img{
	width:100%;
	height:180px;
	max-width:100%;
}
#service .btn-wrapper a{
	display:inline-block;
	padding:18px 40px;
	border-radius:28px;
	background:var(--addit_white);
	font-size:16px;
	font-family:var(--primary_font);
	color:var(--primary_color);
	font-weight:600;
	line-height:19px;
	transition:all .5s;
}
#service .btn-wrapper a:hover{
	background:var(--secondary_color);
	color:var(--addit_white);
}
/* responsive css */


@media all and (max-width: 991px) {
	#service .display{
		display:block!important;
	}
	#service .search-btn{
		display:none;
	}
}
/* @media all and (max-width: 767px) { */
	
/* } */
@media all and (max-width: 575px) {
	#service h3{
		font-size: 36px;
		line-height: 44px;
	}
	/* #service h3{ */
		/* font-size: 29px; */
		/* line-height: 40px; */
	/* } */
}

.service-sec-wrapper{
	text-align:center;
}
.service-sec-wrapper h3{
	margin-bottom:calc(48px + 18px);
}
.service-sec-wrapper .btn-wrapper{
	margin-top:5px;
}
.service-sec-wrapper .btn-wrapper a{
	box-shadow:0px 0px 6px 0px var(--addit_black)29;
	border:solid 1px var(--secondary_color);
	padding:11px 24px;
}
.service-section{
	justify-content:center;
	line-height:0;
}
.icon-service{
	height:47px;
	width:91px;	
	fill:var(--quaternary_color);
	transition:all .5s;
}
.service-content{
	background:var(--addit_white);
	border:solid 1px var(--primary_color);
	border-radius:10px;
	transition:all .5s;
}
.service-content:hover{
	border:solid 1px var(--secondary_color);
}
.service-content:hover .icon-service{
	fill:var(--secondary_color);
}
.service-content img{
	margin-bottom:28px;
	margin-top:15px;
}
#service .service-content h5 a ,#service-page .service-content h5 a{
	color:var(--addit_black);
	transition:all .5s;
}
#service .service-content h5 a:hover ,#service-page .service-content h5 a:hover{
	color:var(--secondary_color);
}
.service-content h5{
	font-size:22px;
	font-weight:700;
	color:var(--primary_color);
	font-family:var(--primary_font);
	line-height:24px;
	/* margin-bottom:22px; */
}
.service-content p{
	margin-bottom:38.5px;
}

/* responsive css */
@media all and (min-width: 1200px){
	.related-service-description h5{
		font-size:23px;
		line-height:28px;
	}
	.service-content{
		padding:0 15px;
	}
}
@media all and (max-width: 1199px) {
	.service-detail-inner-description{
		margin-bottom:50px;
	}
}
@media all and (min-width: 992px) and (max-width: 1199px) {
	.service-content{
		padding:0 15px;
	}
	.related-service-description h5{
		font-size:18px;
		line-height:23px;
	}
	#service-page .service-description h5{
		font-size:19px;
		line-height:22px;
	}
}
@media all and (min-width: 992px){
	#service-page .service1, #service-page .service2, #service-page .service3{
		margin-bottom:68px;
	}
}
@media all and (max-width: 991px) {
	.how-work1, .how-work2{
		margin-bottom:50px;
	}
	.service1, .service2{
		margin-bottom:68px;
	}
	#service {
		margin-top: 75px;
	}
}
@media all and (min-width: 768px) and (max-width: 991px) {
	.service-content{
		padding:0 15px;
	}
	.related-service-description h5{
		font-size:21px;
		line-height:25px;
	}
	#service-page .service-description h5{
		font-size:20px;
		line-height:22px;
	}
}
@media all and (max-width: 991px) {
	#service-page {
		margin-top: 75px;
	}
	.inner-banner{
		margin-top	:0px;
	}
}
@media all and (max-width: 767px) {
	.service-sidebar{
		margin-bottom:67px;
	}
	#service-page .service1, #service-page .service2, #service-page .service3{
		margin-bottom:68px;
	}
}
@media all and (min-width: 576px) and (max-width:767px) {
	.related-service-description h5{
		font-size:23px;
		line-height:28px;
	}
	.service-content{
		padding:0 15px;
	}
}
@media all and (min-width: 576px) {
	.service-detail-description h4{
		font-size:42px;
		line-height:52px;
	}
}
@media all and (max-width: 575px) {
	.service-detail-description h4{
		font-size:30px;
		line-height:40px;
	}
	.service-content{
		padding:0 15px;
	}
	.related-service-description h5{
		font-size:19px;
		line-height:24px;
	}
}
/* blog section start */
#blog-section{
	margin-top:90px;
	margin-bottom:100px;
}
.blog-heading{
	text-align:center;
}
.blog-heading h5{
	margin-bottom:25.5px;
}
.blog-heading h5:before{
	bottom:-9.5px;
	left:50%;
	transform:translateX(-50%);
	width:68.12px;
}
.blog-heading h2{
	margin-bottom:55.5px;
}
.single-blog{
	background-color:var(--quinary_color);
	position:relative;
	padding:72px 44px 76px;
}
.single-blog:before{
	content:"";
	position:absolute;
	height:66px;
	width:11px;
	left:0px;
	top:36px;
	background-color:var(--secondary_color);
}
.single-blog:after{
	content:"";
	position:absolute;
	top:0px;
	left:0px;
	border:4px solid var(--secondary_color);
	height:441px;
	width:350px;
	z-index:-1;
	transition:all 0.5s ease;
}	
.single-blog:hover:after{
	top:17px;
	left:20px;
}
.single-blog span{
	font-size:14px;
	line-height:21px;
	font-family:var(--secondary_font);
	color:var(--quaternary_color);
	margin-bottom:10px;
}
.single-blog h3{
	margin-bottom:10px;
	margin-top:10px;
}
.single-blog h3 a{
	color:var(--secondary_color);
	text-decoration:none;
}
.single-blog p{
	margin-bottom:23px;
}
.single-blog .blog-date{
	font-size:16px;
	line-height:25px;
	color:#000;
	font-family:var(--quinary_font);
	margin-bottom:0px;
}
.service-contact-btn a{
	display:inline-flex;
	align-items:center;
	text-decoration:none;
	background-color: var(--addit_white);
	margin-top: 10px;
}
.service-contact-btn a svg{
	height:15px;
	width:15px;
	fill:white;
	margin-right:10px;
}
.service-contact-btn .btn-back:hover{
	bottom:10px;
	color:white;
}
/* blog section end */

/* blog page start */
.blog-detail{
	margin: 60px 0px;
}
.service-contact-btn i{
	margin-right:8px;
}
.blog-1{
	margin-bottom:50px;
}
.blog-1:hover .blog-1-img2{
	opacity:1;
}
.blog-1-img a img{
	width:100%;
	position:relative;
	/* height:400px; */
}
.blog-1-img2{
	background-image:url("../images/blog-6-img.png");
	position:absolute;
	top:0px;
	left:15px;
	width:730px;
	height:400px;
	opacity:0;
}
.blog-1-content span{
	font-size:12px;
	line-height:28px;
	color:var(--secondary_color);
	font-family:var(--primary_font);
	display:inline-flex;
	align-items:center;
	margin-bottom:5px;
}
.blog-1-content span svg{
	fill:var(--secondary_color);
	height:15px;
	width:13.36px;
	margin-right:8.6px;
}
.blog-1-content h2 a{
	margin-bottom:20px;
	text-decoration:none;
	font-size:40px;
	line-height:48px;
	font-family:var(--secondary_font);
	color:var(--primary_color);
}
.blog-1-content h2 a:hover{
	color:var(--secondary_color);
}
.blog-1-content p{
	margin-bottom:0px;
}
.other-blogs-img a img{
	width:100%;
	position:relative;
	margin-bottom:30px;
	/* height:370px; */
}
.other-blogs-img2{
	background-image:url("../images/blog-5-img.png");
	position:absolute;
	top:0px;
	left:15px;
	height:370px;
	width:350px;
	opacity:0;
}
.other-blog:hover .other-blogs-img2{
	opacity:1;
}
.other-blogs-content span{
	font-size:12px;
	line-height:28px;
	color:var(--secondary_color);
	font-family:var(--primary_font);
	display:inline-flex;
	align-items:center;
	margin-bottom:10px;
}
.other-blogs-content span svg{
	height:15px;
	width:13.36px;
	fill:var(--secondary_color);
	margin-right:8.6px;
}
.other-blogs-content h3 a{
	font-size:30px;
	line-height:40px;
	margin-bottom:10px;
	line-height:40px;
	color:var(--primary_color);
	text-decoration:none;
}
.other-blogs-content h3 a:hover{
	color:var(--secondary_color);
}
.other-blogs-content p{
	margin-bottom:0px;
}
.blog-detail-img1 img{
	width:100%;
	margin-bottom:30px;
}
.blog-detail-content p:first-child{
	margin-bottom:50px;
}
.blog-detail-content h3{
	margin-bottom:20px;
}
.blog-detail-content p:nth-child(3){
	margin-bottom:0px;
}
.blog-detail-img2 img, .blog-detail-img3 img{
	width:100%;
	margin:30px 0px;
}
.blog-detail-content p:nth-child(5){
	margin-bottom:20px;
}
.blog-detail-content ul{
	margin-bottom:0px;
}
.blog-detail-content ul li{
	display:inline-flex;
	font-size:16px;
	line-height:24px;
	font-family:var(--primary_font);
	color:var(--quaternary_color);
	margin-bottom:10px;
}
.blog-detail-content ul li span{
	height:8.26px;
	width:11.04px;
	margin-right:10px;
}
.blog-detail-content ul li span svg{
	height:8.26px;
	width:11.04px;
	fill:var(--secondary_color);
}
.blog-detail-content ul li:last-child{
	margin-bottom:0px;
}
.blog-detail-content p:last-child{
	margin-top:20px;
	margin-bottom:0px;
}
.recent-post-block{
	margin-bottom:50px;
}
.recent-post-block h2{
	margin-bottom:30px;
}
.recent-post-blogs span{
	display:inline-flex;
	align-items:center;
	font-size:12px;
	line-height:28px;
	margin-bottom:5px;
	font-family:var(--primary_font);
	color:var(--secondary_color);
}
.recent-post-blogs span svg{
	height:15px;
	width:13.36px;
	fill:var(--secondary_color);
	margin-right:8.6px;
}
.recent-post-blogs p a{
	font-size:18px;
	line-height:28px;
	font-family:var(--primary_font);
	color:var(--primary_color);
	text-decoration:none;
	margin-bottom:0px;
}
.recent-post-blogs p a:hover{
	color:var(--secondary_color);
}
.recent-post-blogs p{
	margin-bottom:0px;
}
.recent-post-blogs{
	margin-bottom:20px;
}
.recent-post-block .recent-post-blogs:last-child{
	margin-bottom:0px;
}
.sidebar-contact-block{
	background-image:url("../images/fooer-bg-img.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	padding:27px 38px 32px;
}
.sidebar-contact-block h4{
	color:white;
	margin-bottom:10px;
}
.sidebar-contact-block p{
	color:white;
	margin-bottom:28px;
}

#page-5 #footer{
	margin-top:77px;
}
#page-5 .captcha span{
	font-size: 13px;
    line-height: 25px;
    font-family: var(--primary_font);
    color: var(--primary_color);
    font-weight: 300;
}
#page-5 .captcha label{
	font-size: 12px;
    line-height: 18px;
    font-family: var(--primary_font);
    color: var(--primary_color);
	font-weight: 300;
    margin-right: 10px;
}
input:hover, .form-element:hover{
	border: 1px solid #ededed;
	box-shadow:none;
}
input:focus, textarea:focus{
	    box-shadow: none !important;
}
#page-5 .captcha{
	padding:0;
}
#page-5 .captcha input{
	margin:0;
}
#page-5 .captcha .form-item__description, #page-5 .captcha{
	color:#000;
}

/* blog page close */

/* ======================== */
/* RESPONSIVE CSS */
/* ======================== */
@media (max-width: 1199px){
	.blog-1-img2{
		width:609.98px;
		height:334.23px;
	}
	.other-blogs-img2{
		width:289.98px;
		height:306.55px;
	}
	.single-blog:after{
		width:450px;
		height:417px;
	}
	#blog-section .single-blog:last-child{
		margin-top:30px;
	}
	#blog-section .row{
		justify-content:center;
	}
}
@media (max-width: 991px){
	.blog-1-img2{
		width:690px;
		height:378.08px;
	}
	.blog-1-img{
		margin-bottom:30px;
	}
	.other-blogs .other-blog:last-child{
		margin-top:40px;
	}
	.other-blogs-img2{
		width:330px;
		height:348.84px;
	}
	.recent-post-block{
		margin-top:50px;
	}
	.sidebar-contact-block{
		background-size:cover;
	}
	.single-blog:after{
		width:330px;
		height:441px;
	}
}
@media (max-width: 767px){
	.blog-1-img2{
		width:510px;
		height:279.44px;
	}
	.other-blogs-img2{
		width:240px;
		height:253.7px;
	}
	.single-blog:after{
		display:none;
	}
}
@media (max-width: 575px){
	.blog-1-img a:last-child{
		display:none;
	}
	.other-blogs-img a:last-child{
		display:none;
	}
	.other-blogs .other-blog:nth-child(2){
		margin-top:40px;
	}
	.other-blogs-img{
		max-width:400px;
	}
}
