/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Prlx - Creative Digital Agency HTML Template
* File          : Main CSS file
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. General css
02. Navigation area css
03. Banner area css
04. About Service area css
05. About us area css
06. Infobar area css
07. Services area css
08. Portfolio area css
09. Our Team area css
10. Testimonial area css
11. Infobar area css
12. Contact us area css
13. Footer area css
14. Responsive Media Query css
-------------------------------------------------------------------------------------- */

/************************************/
/***** 	   01. General css		 ****/
/************************************/

body{
	font-family: 'Poppins', sans-serif;
	padding-top: 97px;
	color: #797979;
}

img{
	max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6{
	font-weight: 700;
}

a{
	text-decoration: none;
}

a:hover{
	text-decoration: none;
}

::-webkit-scrollbar-track {background-color: #f1f1f1;border-left: 1px solid #ededed;}
::-webkit-scrollbar {width: 7px;background-color: #111;}
::-webkit-scrollbar-thumb {background: #111;}

.container {
	max-width: 1270px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding-right: 15px;
    padding-left: 15px;
}

.row {
    margin-right: -15px;
    margin-left: -15px;
	position: relative;
	z-index: 1;
}

.row > * {
	padding-right: 15px;
	padding-left: 15px;
}


.row.no-gutters{
	margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters > * {
	padding-right: 0px;
	padding-left: 0px;
}

.preloader{
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #111;
	z-index: 9999;
}

.lds-ellipsis{
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -32px;
	margin-left: -32px;
	width: 64px;
	height: 64px;
}

.lds-ellipsis span{
	position: absolute;
	top: 27px;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: #fff;
	animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis span:nth-child(1) {
	left: 6px;
	animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis span:nth-child(2) {
	left: 6px;
	animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis span:nth-child(3) {
	left: 26px;
	animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis span:nth-child(4) {
	left: 45px;
	animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1{
	0% {
		transform: scale(0);
	}
	
	100% {
		transform: scale(1);
	}
}

@keyframes lds-ellipsis3{
	0% {
		transform: scale(1);
	}
	
	100% {
		transform: scale(0);
	}
}

@keyframes lds-ellipsis2{
	0% {
		transform: translate(0, 0);
	}
	
	100% {
		transform: translate(19px, 0);
	}
}

.btn-custom{
	position: relative;
	display: inline-block;
	color: #000;
	border: 2px solid #111;
	padding: 12px 30px;
	font-weight: 400;
}

.btn-fill{
	overflow: hidden;
}

.btn-fill:before{
	content: '';
	position: absolute;
	width: 100%;
    height: 0;
    top: 50%;
    left: 50%;
    background: #111;
    opacity: 0;
	z-index: -1;
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
	transition: all 0.6s;
}

.btn-fill:hover{
    color: #fff !important;
}

.btn-fill:hover:before{
	height: 450%;
	opacity: 1;
}

.btn-dark-default{
	position: relative;
	display: inline-block;
	color: #fff;
	background: #111;
	padding: 12px 30px;
	font-weight: 400;
	margin: 0 10px;
	transition: all 0.4s;
}

.btn-dark-default:hover{
	background: #000;
	color: #fff;
}

.image-hover-effect{
	position: relative;
}

.image-hover-effect:before,
.image-hover-effect:after{
	content: "";
    background: #fff;
    height: 0;
    width: 0;
    z-index: 1;
    position: absolute;
    -webkit-transition-duration: 1.3s;
    -o-transition-duration: 1.3s;
    transition-duration: 1.3s;
}

.image-hover-effect:before{
	right: 0;
    opacity: 1;
    top: 0;
}

.image-hover-effect:after{
	bottom: 0;
    opacity: .7;
    left: 0;
}

.image-hover-effect:hover:after,
.image-hover-effect:hover:before{
    height: 100%;
    opacity: 0;
    width: 100%;
}

/************************************/
/***** 	02. Navigation area css	 ****/
/************************************/

.dropdown-overlay.open-dropdown{
	display: none;
}

.core-nav .nav-container{
	max-width: 1270px;
	width: 1270px;
}

nav.header-layout-2{
	background: #fff;
    z-index: 100;
	transition: all 0.4s;
}

nav.header-layout-2.sticky-header{
	background: #fff;
	box-shadow: 0px 0px 25.84px 12.16px rgba(0, 0, 0, 0.04);
}

nav.header-layout-2 .wrap-core-nav-list,
nav.header-layout-2 .nav-header{
    background: transparent;
}

nav.header-layout-2 .brand{
    display: block;
    position: relative;
    width: 200px;
    top: 25px;
    margin: auto;
	transition: all 0.4s;
}

nav.header-layout-2 .menu li a{
    display: block;
    padding: 38px 15px;
    text-decoration: none;
    color: #000;
	font-size: 13px;
	text-transform: uppercase;
	transition: all 0.4s;
}

nav.header-layout-2.sticky-header .menu li a{
	padding: 25px 15px;
}

nav.header-layout-2.sticky-header .brand{
	top: 12px;
}

nav.header-layout-2 .menu li.active a,
nav.header-layout-2 .menu li a:hover{
    color: #797979;
}

.core-nav .dropdown>.dropdown-menu{
	top: calc(100% - 4px);
	border: none;
	border-bottom: 3px solid #111;
	border-radius: 0;
}

.core-nav .dropdown>.dropdown-menu>li:last-child a{
	border-bottom: none;
}

.core-nav .dropdown>.dropdown-menu>li>a,
nav.header-layout-2.sticky-header .dropdown>.dropdown-menu>li>a{
	padding: 12px 15px;
}

/************************************/
/***** 	 03. Banner area css	 ****/
/************************************/

.banner-slider .container-fluid{
	padding-left: 0;
	padding-right: 0;
}

.banner-slider-2{
	position: relative;
}

.banner-slider-2 .banner-slide{
	text-align: center;
	position: relative;
	padding: 120px 80px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.banner-slider-2 .banner-slide h2{
	font-size: 45px;
	font-weight: 700;
	color: #FFF;
	line-height: 1.2em;
	margin-bottom: 1em;
}

.banner-slider-2 .banner-slide p{
	color: #FFF;
	margin-bottom: 40px;
}

.banner-slider-2 .banner-slide .header-slider-button{
	margin-top: 30px;
}

.banner-slider-2 .banner-slide .header-slider-button a{
	margin: 0 10px;
	color: #FFF;
	border-color: #FFF;
	transition: 0.3s;
}

.banner-slider-2 .banner-slide .header-slider-button a:hover {
	border-color: #000;
	transition: 0.3s;
}

.banner-slider-2 .banner-slide .header-slider-button a:before{
	background: #000;
}

.banner-slider-2 .banner-slide .header-slider-button a.btn-dark{
	background: #000;
	color: #fff;
}

.banner-slider-2 .banner-pagination{
	position: absolute;
	left: 0;
	right: 0;
	bottom: 40px;
	text-align: center;
	z-index: 100;
}

.banner-slider-2 .banner-pagination .swiper-pagination-bullet{
	background: none;
	opacity: 1;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	border: 1px solid #111111;
	transition: all 0.3s;
}

.banner-slider-2 .banner-pagination .swiper-pagination-bullet-active{
	background: #111;
	transform: scale(1.20);
}

/****************************************/
/***** 	04. About Service area css	 ****/
/****************************************/

.about-services-layout-2{
	padding: 80px 0 40px;
}

.about-services-layout-2 .about-service-single{
	text-align: center;	
	padding: 0 10px;
}

.about-services-layout-2 .about-service-single .icon-box{
	font-size: 80px;
	color: #111;
	line-height: 1em;
}

.about-services-layout-2 .about-service-single h3{
	font-size: 20px;
	color: #111;
	font-weight: 700;
	margin: 1em 0 1.5em;
}

.about-services-layout-2 .about-service-single p{
	font-size: 14px;
	line-height: 1.8em;
	margin: 0;
}

/************************************/
/***** 	05. About us area css	 ****/
/************************************/

.section-title{
	text-align: center;
	margin-bottom: 80px;
}

.section-title p{
	text-transform: uppercase;
	margin: 0 0 6px;
}

.section-title h2{
	font-size: 30px;
	color: #111;
	font-weight: 700;
}

.left-title{
	text-align: left;
}

.aboutus-layout-2{
	padding: 40px 0 80px;
}

.aboutus-layout-2 .about-image{
	position: relative;
	text-align: center;
	padding-right: 46px;
}

.aboutus-layout-2 .about-image figure{
	display: inline-block;
	margin: 0;
	padding-top: 40px;
	padding-left: 40px;
	position: relative;
}

.aboutus-layout-2 .about-image figure:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: calc(100% - 40px);
	height: calc(100% - 40px);
	background: url(../images/about-bg.png) no-repeat left top;
	z-index: -1;
}

.aboutus-layout-2 .about-image figure img{
	border: 10px solid #fff;
	box-shadow: 0px 0px 25.84px 12.16px rgba(0, 0, 0, 0.04);
}

.aboutus-layout-2 .btn-video{
	position: absolute;
	right: -46px;
	margin-top: -40px;
	top: 50%;
	width: 92px;
	height: 92px;
	background: #111;
	color: #fff;
	font-weight: 500;
	border-radius: 50%;
	border: 2px solid #fff;
	padding: 20px 10px 0;
	transition: all 0.4s;
}

.aboutus-layout-2 .btn-video:hover{
	background: #000;
	color: #fff;
}

.aboutus-layout-2 .about-content{
	margin: 0
}

.aboutus-layout-2 .about-content h3{
	font-size: 25px;
	color: #111;
	line-height: 1.4em;
	margin-bottom: 30px;
}

.aboutus-layout-2 .about-content p{
	line-height: 1.8em;
	margin-bottom: 1.8em;
}

/************************************/
/***** 	06. Infobar area css	 ****/
/************************************/

.infobar-layout-2{
	position: relative;
	padding: 80px 0;
	background: url(../images/infobar-bg.jpg) no-repeat center center;
	background-size: cover;
}

.infobar-layout-2:before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0,0,0,0.15);
}

.infobar-layout-2 .row{
	position: relative;
	z-index: 1;
}

.infobar-layout-2 .sub-title h2{
	font-size: 30px;
	color: #FFF;
	font-weight: 700;
	margin: 0;
}

.infobar-layout-2 .contact-info{
	text-align: center;
}

.infobar-layout-2 .contact-info p{
	font-size: 20px;
	color: #FFF;
	margin: 0;
}

.infobar-layout-2 .button-contact{
	text-align: right;
}

.with-errors li{
	color: #dc3545;
}

.text-danger,
.text-success{
	font-size: 20px;
}

/************************************/
/***** 	07. Services area css	 ****/
/************************************/

.services-layout-2{
	padding: 80px 0 40px;
}

.services-layout-2 .service-single{
	margin-bottom: 40px;
}

.services-layout-2 .service-single h6{
	line-height: 1em;
	color: #111;
	font-size: 70px;
}

.services-layout-2 .service-single h3{
	font-size: 20px;
	color: #111;
	margin-bottom: 30px;
}

.services-layout-2 .service-single p{
	font-size: 14px;
	line-height: 1.8em;
}

.services-layout-2 .button-service{
	text-align: center;
	margin-top: 30px;
}

/************************************/
/***** 	08. Portfolio area css	 ****/
/************************************/

.portfolio-layout-2{
	padding: 40px 0;
}

.portfolio-layout-2 .swiper-slide{
	width: auto;
}

.portfolio-layout-2 .portfolio-slide figure{
	margin: 0;
}

.portfolio-layout-2 .portfolio-slide figure img{
	width: 100%;
}

.portfolio-layout-2 .portfolio-slide .portfolio-info{
	margin-top: 20px;
}

.portfolio-layout-2 .portfolio-slide h3{
	font-size: 20px;
	color: #111;
	margin: 0 0 4px;
}

.portfolio-layout-2 .portfolio-slide p{
	font-size: 14px;
	font-weight: 500;
}

.portfolio-layout-2 .portfolio-slide a{
	color: inherit;
}

.portfolio-layout-2 .portfolio-nav{
	text-align: right;
	margin-top: 14px;
}

.portfolio-layout-2 .portfolio-nav .portfolio-prev,
.portfolio-layout-2 .portfolio-nav .portfolio-next{
	display: inline-block;
	width: 36px;
	height: 36px;
	background: #111;
	color: #fff;
	line-height: 36px;
	border-radius: 50%;
	font-size: 24px;
	text-align: center;
	cursor: pointer;
	margin-left: 4px;
}

.portfolio-layout-2 .portfolio-nav .portfolio-prev:hover,
.portfolio-layout-2 .portfolio-nav .portfolio-next:hover{
	background: #000;
}

.mfp-content{
	background: #fff;
	max-width: 480px;
	border-radius: 8px;
	overflow: hidden;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
	opacity: 0;
	-webkit-backface-visibility: hidden;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
	opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
	opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg{
	opacity: 0;
}

.popup-box .desc{
	padding: 30px 30px 10px 30px;
}

.popup-box .portfolio-popup-header{
	margin-bottom: 20px;
}

.popup-box .portfolio-popup-header h4{
	font-size: 18px;
    color: #111;
	font-weight: 600;
	margin-bottom: 4px;
}

.popup-box .portfolio-popup-header p{
	font-size: 14px;
	margin: 0;
}

.popup-box .portfolio-popup-header p:before{
	content: '/';
	margin-right: 4px;
}

.popup-box .portfolio-popup-body p{
	font-size: 14px;
	line-height: 1.8em;
}

/************************************/
/***** 	09. Our Team area css	 ****/
/************************************/

.team-layout-2{
	padding: 40px 0 0;
}

.team-layout-2 .container-fluid{
	padding-left: 0;
	padding-right: 0;
}

.team-layout-2 .team-single{
	position: relative;
}

.team-layout-2 .team-single figure{
	margin: 0;
}

.team-layout-2 .team-single figure img{
	width: 100%;
}

.team-layout-2 .team-single .team-overlay{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0);
	cursor: url(../images/cursor.png), default;
	transition: all linear 0.4s;
}

.team-layout-2 .team-single .team-author{
	text-align: center;
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	padding: 0 20px;
	transform: translate(0,-50%);
	opacity: 0;
	margin-top: 40px;
	transition: all 0.5s;
}

.team-layout-2 .team-single .team-author h3{
	color: #fff;
	font-size: 22px;
	font-weight: 600;
	margin: 0;
}

.team-layout-2 .team-single .team-author p{
	font-size: 14px;
	color: #fff;
	margin: 0;
}

.team-layout-2 .team-single:hover .team-overlay{
	background: rgba(0,0,0,0.60);
}

.team-layout-2 .team-single:hover .team-author{
	opacity: 1;
	margin-top: 0;
}

.team-layout-2 .team-social-link{
	margin-top: 10px;
}

.team-layout-2 .team-social-link a{
	display: inline-block;
	color: #fff;
	border-bottom: 1px solid transparent;
	font-size: 14px;
	padding: 0 6px;
	transition: all 0.4s;
}

.team-layout-2 .team-social-link a:hover{
	border-color: #fff;
}

.team-layout-2 .team-nav{
	text-align: right;
	margin-top: 14px;
}

.team-layout-2 .team-nav .team-prev,
.team-layout-2 .team-nav .team-next{
	display: inline-block;
	width: 36px;
	height: 36px;
	background: #111;
	color: #fff;
	line-height: 36px;
	border-radius: 50%;
	font-size: 24px;
	text-align: center;
	cursor: pointer;
	margin-left: 4px;
}

.team-layout-2 .team-nav .team-prev:hover,
.team-layout-2 .team-nav .team-next:hover{
	background: #000;
}

.team-layout-2 .swiper-button-disabled{
	opacity: 0.8;
}

.team-layout-2 .swiper-button-disabled:hover{
	background: #111 !important;
}

/****************************************/
/***** 	 10. Testimonial area css	 ****/
/****************************************/

.testimonial-layout-2{
	padding: 80px 0;
}

.testimonial-layout-2 .testimonial-image{
	text-align: center;
}

.testimonial-layout-2 .testimonial-slide p{
	font-size: 24px;
	color: #111;
	font-weight: 700;
	font-style: italic;
	line-height: 1.8em;
	margin-bottom: 1.4em;
}

.testimonial-layout-2 .testimonial-slide h4{
	display: inline-block;
	font-size: 18px;
	font-weight: 400;
	position: relative;
}

.testimonial-layout-2 .testimonial-slide h4:after{
	content: '';
	width: 60px;
	height: 1px;
	background: #797979;
	position: absolute;
	right: -80px;
	top: 50%;
}

.testimonial-layout-2 .testimonial-pagination{
	margin-top: 40px;
}

.testimonial-layout-2 .testimonial-pagination .swiper-pagination-bullet{
	background: none;
	opacity: 1;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	border: 1px solid #111111;
	transition: all 0.3s;
}

.testimonial-layout-2 .testimonial-pagination .swiper-pagination-bullet-active{
	background: #111;
	transform: scale(1.20);
}

/************************************/
/***** 	11. Infobar area css	 ****/
/************************************/

.info-layout-2{
	padding: 80px 0;
	background: url(../images/info-bg.jpg) no-repeat center center;
	background-size: cover;
	position: relative;
}

.info-layout-2:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.info-layout-2 .infobar-box{
	text-align: center;
}

.info-layout-2 .infobar-box h2{
	font-size: 50px;
	color: #FFF;
	margin-bottom: 1em;
}

.info-layout-2 .infobar-box .btn-custom{
	color: #FFF;
	border-color: #FFF;
	transition: 0.3s;
	z-index: 1;
}
.info-layout-2 .infobar-box .btn-custom:hover {
	border-color: #111;
	transition: 0.3s;
}

/************************************/
/***** 	12. Contact us area css	 ****/
/************************************/

.contactus-layout-2{
	padding: 80px 0;
}

.contactus-layout-2 .contact-section-title{
	margin-bottom: 30px;
}

.contactus-layout-2 .contact-section-title h2{
	font-size: 30px;
	font-weight: 700;
	color: #111;
	margin-bottom: 20px;
}

.contactus-layout-2 .contact-section-title p{
	font-size: 14px;
	line-height: 1.6em;
}

.contactus-layout-2 .quick-contact{
	margin-bottom: 30px;
}

.contactus-layout-2 .quick-contact p{
	font-size: 14px;
	line-height: 1.6em;
}

.contactus-layout-2 .social-links a{
	margin-right: 8px;
	display: inline-block;
	color: #111;
	transition: all 0.4s;
}

.contactus-layout-2 .social-links a:hover{
	color: #797979;
}

.contactus-layout-2 .contact-form .form-control{
	border: none;
	color: #111;
	border-radius: 0;
	padding: 14px 0;
	height: auto;
	font-size: 16px;
	resize: none;
	border-bottom: 1px solid #797979;
	outline: 0;
	box-shadow: none;
}

.contactus-layout-2 .contact-form .form-control::placeholder{
	color: #111;
}

.contactus-layout-2 .contact-form .btn-contact{
	border: none;
	position: relative;
	background: none;
	display: inline-block;
	color: #000;
	border: 2px solid #111;
	padding: 10px 30px;
	font-weight: 400;
	margin-top: 10px;
	cursor: pointer;
	transition: all 0.4s;
}

.contactus-layout-2 .contact-form .with-errors{
	color: #ed4849;
}

/************************************/
/***** 	 13. Footer area css	 ****/
/************************************/

footer.footer-layout-2{
	padding: 60px 0;
	background: #111;
}

footer.footer-layout-2 .footer-menu{
	text-align: right;
}

footer.footer-layout-2 .footer-menu ul{
	padding: 0;
	margin: 0;
	list-style: none;
}

footer.footer-layout-2 .footer-menu ul li{
	display: inline-block;
}

footer.footer-layout-2 .footer-menu ul li a{
	font-size: 14px;
	color: #fff;
	text-transform: uppercase;
	font-weight: 500;
	margin-left: 15px;
	transition: all 0.4s;
}

footer.footer-layout-2 .footer-menu ul li a:hover{
	color: #797979;
}

footer.footer-layout-2 .footer-copyright{
	text-align: right;
	position: relative;
	padding-top: 20px;
	margin-top: 20px;
}

footer.footer-layout-2 .footer-copyright:before{
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	width: 360px;
	height: 1px;
	background: #797979;
}

footer.footer-layout-2 .footer-copyright p{
	font-size: 14px;
	color: #fff;
	line-height: 1.8em;
	margin: 0;
}

footer.footer-layout-2 .footer-copyright p a{
	color: #fff;
	border-bottom: 1px solid #fff;
	transition: all 0.4s;
}

footer.footer-layout-2 .footer-copyright p a:hover{
	color: #797979;
	border-color: #797979;
}

footer.footer-layout-2 .footer-copyright .terms-wrapper {
	margin-top: 10px;
	display: flex;
	column-gap: 5px;
	justify-content: flex-end;
}

footer.footer-layout-2 .footer-copyright .terms-wrapper a {
	font-size: 14px;
	color: #FFF;
}

/*************************************/
/***** 	  14. Pricing area css	  ****/
/*************************************/

.pricing-layout-4{
	padding: 80px 0;
}

.pricing-layout-4 .pricing-single{
	min-height: 482px;
	background: #fff;
	padding: 14%;
	border: 2px solid #111;
}

.pricing-layout-4 .pricing-single .pricing-header{
	text-align: center;
	margin-bottom: 40px;
}

.pricing-layout-4 .pricing-single .pricing-header h3{
	color: #111;
	font-size: 25px;
	margin-bottom: 20px;
}

.pricing-layout-4 .pricing-single .pricing-header h6{
	font-size: 35px;
	color: #111;
	font-weight: 500;
	margin: 0;
}

.pricing-layout-4 .pricing-single .pricing-header p{
	font-weight: 500;
}

.pricing-layout-4 .pricing-single .pricing-header .btn-buy{
	display: inline-block;
	font-size: 20px;
	font-weight: 500;
	color: #111;
	border: 1px solid #797979;
	padding: 8px 30px;
	margin-top: 10px;
	z-index: 1;
	transition: all 0.4s;
}

.pricing-layout-4 .pricing-single .pricing-header .btn-buy:before{
	background: #111;
}

.pricing-layout-4 .pricing-body{
	margin-bottom: 30px;
}

.pricing-layout-4 .pricing-body ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.pricing-layout-4 .pricing-body ul li{
	font-size: 14px;
	padding: 4px 0 4px 20px;
	position: relative;
}

.pricing-layout-4 .pricing-body ul li:before{
	content: '';
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #111;
	position: absolute;
	top: 10px;
	left: 0;
}

.pricing-layout-4 .pricing-footer{
	text-align: center;
}

.pricing-layout-4 .pricing-footer .btn-read-pricing{
	display: inline-block;
	color: #111;
	font-weight: 500;
	border-bottom: 1px solid #111;
	transition: all 0.4s;
}

.pricing-layout-4 .pricing-footer .btn-read-pricing:hover{
	color: #797979;
	border-color: #797979;
}

.pricing-layout-4 .recommanded{
	position: relative;
}

.pricing-layout-4 .recommanded:before{
	content: 'Best Value';
	background: #111;
	color: #fff;
	width: 100px;
	text-align: center;
	font-size: 14px;
	padding: 2px 10px;
	position: absolute;
	top: -12px;
	margin-left: -50px;
	left: 50%;
	border-radius: 15px;
}

/********************************************/
/*****  16. Our Advantages css	 ****/
/********************************************/

.how-we-work-layout-1{
	position: relative;
	padding: 100px 0 0;
	margin-bottom: 100px;
	background: url(../images/how-work-bg.jpg) no-repeat center center;
	background-size: cover;
}

.how-we-work-layout-1:before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: rgba(0,0,0,0.15);
}

.how-we-work-layout-1 .how-work-container{
	position: relative;
	margin-top: -100px;
	bottom: -100px;
}

.how-we-work-layout-1 .section-title p {
	color: #FFF;
}

.how-we-work-layout-1 .section-title h2 {
	color: #FFF;
}

.how-we-work-layout-1 .how-work-single{
	min-height: 270px;
	background: #fff;
	padding: 40px 30px;
	text-align: center;
	border: 2px solid #111;
}

.how-we-work-layout-1 .how-work-single h3{
	font-size: 18px;
	color: #111;
	font-weight: 700;
	margin-bottom: 1em;
}

.how-we-work-layout-1 .how-work-single p{
	font-size: 14px;
	line-height: 1.8em;
	margin: 0;
}

.language-switcher {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: fit-content;
	height: fit-content;
	margin: auto;
	padding: 10px;
	display: flex;
	flex-direction: column;
	row-gap: 3px;
	background: #111;
	z-index: 50;
}

.language-switcher a {
	font-size: 14px;
	color: #fff;
	line-height: 1.8em;
	margin: 0;
	text-decoration: none;
}

.language-switcher .divider {
	width: 100%;
	height: 1px;
	background: #FFF;
	opacity: 0.5;
}

.language-switcher .not-active {
	pointer-events: none;
	opacity: 0.5;
}

.content-section {
	padding: 80px 0;
}

.accept-cookies-block {
	position: fixed;
	left: 10px;
	bottom: 10px;
	display: flex;
	max-width: 460px;
	padding: 50px;
	flex: 1 0 0;
	background: #FFF;
	border: 2px solid #111;
	z-index: 999999999;
}

.accept-cookies-block .content-inner {
	display: flex;
	flex-direction: column;
	gap: 5px;
	align-items: center;
}

.accept-cookies-block .content-text p {
	color: #000;
	font-size: 14px;
	font-weight: 400;
	line-height: 160%;
	text-align: center;
}

.accept-cookies-block .content-inner .button {
	padding: 10px 30px;
	border: 2px solid #000;
	color: #000;
	cursor: pointer;
	transition: 0.3s;
}

.accept-cookies-block .content-inner .button:hover {
	background: #FFF;
	color: #000000;
	transition: 0.3s;
}

@media (max-width: 450px) {

	.accept-cookies-block {
		max-width: calc(100vw - 20px);
	}

}

/********************************************/
/*****  16. Responsive Media Query css	 ****/
/********************************************/

@media only screen and (max-width: 1200px){
	nav.header-layout-1 .menu li a{
		padding: 38px 10px;
	}
	
	nav.header-layout-1.sticky-header .menu li a{
		padding: 25px 10px;
	}
}

@media (min-width: 920px) {
    nav.header-layout-2 .wrap-core-nav-list.center .col-menu.left {
        padding-right: 100px !important;
    }
	
    nav.header-layout-2 .wrap-core-nav-list.center .col-menu.right {
        padding-left: 100px !important;
    }
}

@media (max-width: 992px) {
	body{
		padding-top: 60px;
	}
	
	.btn-custom{
		padding: 8px 20px;
	}
	
    nav.header-layout-2 .wrap-core-nav-list,
    nav.header-layout-2 .nav-header {
        background: #fff;
    }
	
    nav.header-layout-2 .full-container,
    nav.header-layout-2 .nav-container {
        padding-left: 0;
        padding-right: 0;
    }
	
    nav.header-layout-2 .nav-header {
        min-height: 71px;
    }
	
    nav.header-layout-2 .nav-header .brand {
        margin: 0 auto 5px;
        float: none;
        top: 17px;
    }
	
    nav.header-layout-2 .nav-header .toggle-bar {
        font-size: 18px;
        position: absolute;
        top: 22px;
        left: 15px;
    }

	nav.header-layout-2 .nav-header .toggle-bar span{
		color: #111111;
	}
	
    nav.header-layout-2 .menu li a {
        padding: 10px 10px;
        border-top: solid 1px #efefef;
    }
	
	nav.header-layout-2 .menu li a {
        padding: 10px 10px !important;
        border-top: solid 1px #efefef;
    }
	
	.core-nav .dropdown>.dropdown-menu{
		border-bottom: none;
	}
	
	.dropdown > a:after{
		content: '\f054';
		display: inline-block;
		font-family: FontAwesome;
		font-size: 8px;
		margin-left: 4px;
		position: relative;
		top: -1px;
		transition: all 0.4s;
	}
	
	.dropdown.open > a:after{
		transform: rotate(90deg);
	}
	
	.core-nav .nav-container{
		width: 100%;
	}
	
	.core-nav .dropdown:after{
		content: '';
		display: block;
		clear: both;
	}
	
	.core-nav .dropdown>.dropdown-menu>li>a{
		padding: 10px 15px;
		border-bottom: none;
	}
	
	.about-services-layout-2{
		padding: 60px 0 0;
	}
	
	.services-layout-2{
		padding: 60px 0 30px;
	}
	
	.aboutus-layout-2{
		padding: 30px 0 60px;
	}
	
	.infobar-layout-2,
	.testimonial-layout-2,
	.info-layout-2,
	.contactus-layout-2{
		padding: 60px 0;
	}
	
	.portfolio-layout-2{
		padding: 30px 0;
	}
	
	.team-layout-2{
		padding: 30px 0 0;
	}
	
	.section-title{
		margin-bottom: 60px;
	}
	
	.section-title h2,
	.contactus-layout-2 .contact-section-title h2,
	.infobar-layout-2 .sub-title h2{
		font-size: 24px;
	}
	
	.aboutus-layout-2 .about-content h3{
		font-size: 22px;
	}
	
	.banner-slider-2 .banner-slide{
		padding: 60px 30px 80px;
	}
	
	.banner-slider-2 .banner-slide h2{
		font-size: 30px;
	}
	
	.services-layout-2 .service-single h6{
		font-size: 50px;
	}
	
	.services-layout-2 .service-single h3{
		font-size: 18px;
		margin-bottom: 20px;
	}
	
	.testimonial-layout-2 .testimonial-slide p{
		font-size: 18px;
	}
	
	.testimonial-layout-2 .testimonial-slide h4{
		font-size: 16px;
	}
	
	.testimonial-layout-2 .testimonial-pagination{
		margin-top: 20px;
	}
	
	.testimonial-layout-2 .testimonial-pagination .swiper-pagination-bullet{
		width: 10px;
		height: 10px;
	}
	
	.info-layout-2 .infobar-box h2{
		font-size: 26px;
	}
	
	footer.footer-layout-2 .footer-menu ul li a{
		margin-left: 5px;
	}

	.pricing-layout-4{
		padding: 60px 0 30px;
	}

	.pricing-layout-4 .pricing-single{
		max-width: 420px;
		margin: 0 auto 30px;
		padding: 50px 40px;
	}

	.pricing-layout-4 .recommanded{
		margin-top: 12px;
	}

	.how-we-work-layout-1 .how-work-single{
		margin-bottom: 30px;
	}

}

/* Mobile Layout */
@media only screen and (max-width: 767px){
	
	.section-title h2,
	.contactus-layout-2 .contact-section-title h2,
	.infobar-layout-2 .sub-title h2{
		font-size: 22px;
	}
	
	.section-title{
		text-align: center;
	}
	
	.banner-slider-2 .banner-slide h2{
		font-size: 22px;
	}
	
	.banner-slider-2 .banner-pagination{
		bottom: 20px;
	}
	
	.banner-slider-2 .banner-pagination .swiper-pagination-bullet{
		height: 10px;
		width: 10px;
	}
	
	.aboutus-layout-2 .btn-video{
		right: auto;
		top: auto;
		left: 50%;
		bottom: 0;
		margin-top: 0;
		margin-bottom: -40px; 
		margin-left: -25px;
	}
	
	.about-services-layout-2 .about-service-single h3{
		font-size: 18px;
	}
	
	.about-service-single{
		margin-bottom: 40px;
	}
	
	.aboutus-layout-2 .about-image{
		margin-bottom: 80px;
	}
	
	.services-layout-2 .service-single{
		text-align: center;
	}
	
	.infobar-layout-2 .sub-title{
		text-align: center;
		margin-bottom: 20px;
	}
	
	.infobar-layout-2 .contact-info{
		margin-bottom: 30px;
	}
	
	.infobar-layout-2 .contact-info p{
		font-size: 18px;
	}
	
	.infobar-layout-2 .button-contact{
		text-align: center;
	}
	
	.portfolio-layout-2 .portfolio-nav,
	.team-layout-2 .team-nav{
		text-align: center;
		margin: 0 0 30px;
	}
	
	.portfolio-layout-2 .portfolio-slide figure img{
		width: 100%;
	}
	
	.info-layout-2 .infobar-box h2{
		font-size: 22px;
	}
	
	footer.footer-layout-2 .footer-logo{
		max-width: 200px;
		text-align: center;
		margin: 0 auto 20px;
	}
	
	footer.footer-layout-2 .footer-copyright:before{
		width: 100%;
	}
	
	footer.footer-layout-2 .footer-menu,
	footer.footer-layout-2 .footer-copyright{
		text-align: center;
	}

	footer.footer-layout-2 .footer-copyright .terms-wrapper {
		justify-content: center;
	}

}

