/* Premor HTML Template */

@import url('https://fonts.googleapis.com/css?family=Poppins:300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap');
@import url('https://fonts.googleapis.com/css?family=Muli:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i');
@import url('https://fonts.googleapis.com/css?family=Lobster+Two:400,400i,700,700i');


@import url('owl.css');
@import url('font-awesome.css');
@import url('flaticon.css');
@import url('custom-animate.css');
@import url(../css/aos.css);
@import url(../css/swiper.min.css);
@import url(../css/header.css);




  @media (min-width:1200px) {
  .container {
    max-width: 1170px;
    padding: 0px;
  }
}

a{
	transition: all 500ms ease;
}





/*=================     main header style  ==================*/

.main-header {
	position: absolute;
	padding: 0px;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99;
}

.main-header .logo {
	position: relative;
	float: left;
	margin-top: 35px;
}

.main-header ul li {
	display: inline-block;
	transition: all 500ms ease;
}

.main-header ul li a {
	position: relative;
	display: inline-block;
	font-family: 'Muli', sans-serif;
	color: #2f2f2f;
	font-size: 16px;
	font-weight:  600;
	text-transform: uppercase;
}

.main-header .menu,
.main-header .link-btn {
	display: inline-block;
}

.main-header .menu{
	position: relative;
	top: -30px;
	margin-left: 15px;
}

.main-header .link-btn{
	margin-top: 38px;
}

.theme-btn{
	position: relative;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 18px;
    color: #fff !important;
    display: inline-block;
    vertical-align: middle;
    padding: 13.5px 40px;
    font-family: 'Muli', sans-serif;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 0px 20px 30px -10px rgba(211, 87, 251, 0.50);
    transition: all 500ms ease;
    background: linear-gradient(90deg, var(--c1, #2da5ff), var(--c2, #f147fc ) 51%, var(--c1, #2da5ff)) var(--x, 0)/ 200%;
}

.theme-btn:hover{
    --x: 100%;
}

.anim-icon {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.anim-icon .icon {
    position: absolute;
    background-repeat: no-repeat;
}

.banner-section .anim-icon .icon-1 {
    background: url(../images/anim-icon-5.png);
    width: 569px;
    height: 706px;
    left: 300px;
    top: 150px;
    background-repeat: no-repeat;
}



/*=================     banner style  ==================*/


.banner-section {
    position: relative;
    padding: 203px 0 298px;
    background: #e6eaf4;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}

.banner-section .content-box{
	position: relative;
	display: block;
	margin-top: 85px;
}

.banner-section .content-box .banner-logo{
	position: relative;
	display: inline-block;
	margin-bottom: 37px;
	animation: fa-spin 5s ease infinite;
}

.banner-section .content-box h2{
	position: relative;
	display: block;
	font-size: 40px;
	line-height: 49px;
	font-weight: 600;
	color: #191919;
	margin-bottom: 16px;
}

.banner-section .content-box .text{
	position: relative;
	display: block;
	font-size: 20px;
	line-height: 30px;
	font-family: 'Muli', sans-serif;
	color: #595a5c;
	font-weight: 400;
	margin-bottom: 63px;
}

.banner-section .image-box{
	position: relative;
	display: block;
	margin-right: -350px;
	margin-left: 60px;
}

.banner-section .image-box .image{
	position: relative;
	display: inline-block;
	border-radius: 10px;
	-webkit-box-shadow: 2px 10px 50px rgba(0, 0, 0, 0.20);
    box-shadow: 2px 10px 50px rgba(0, 0, 0, 0.20);
}

.banner-section .image-box .image-2{
	position: absolute;
	right: 0px;
	bottom: -371px;
}

.banner-section .image-box .image-3{
	position: absolute;
	left: 0px;
	bottom: -458px;
	box-shadow: none;
}


.banner-section .image-box .image img{
	border-radius: 10px;
}


@-webkit-keyframes banner-animate {
  0% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
  }

  50% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
  }
}

@keyframes banner-animate {
  0% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
  }

  50% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
  }
}

.banner-animate {
    animation-name: banner-animate; 
    animation-duration: 70s; 
    animation-iteration-count: infinite;
    animation-timing-function: linear;
	
	-webkit-animation-name: banner-animate; 
    -webkit-animation-duration: 70s; 
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
	
	-moz-animation-name: banner-animate; 
    -moz-animation-duration: 70s; 
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
	
	-ms-animation-name: banner-animate; 
    -ms-animation-duration: 70s; 
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
	
	-o-animation-name: banner-animate; 
    -o-animation-duration: 70s; 
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}



/* feature text */

.feature-text {
	position: relative;
	padding: 90px 0;
	background-color: #f7f9f8;
}

.feature-text .feature-text-block {
	position: relative;
	padding: 0 80px;
}

.feature-text .feature-text-block h2 {
	font-weight: 600;
	margin-bottom: 20px;
}


/* main demo */

.main-demo {
	position: relative;
	display: block;
	padding: 212px 0 124px;
}

.main-demo:before{
	position: absolute;
	content: '';
	background: url(../images/demo-shap.png);
	width: 100%;
	height: 295px;
	left: 0px;
	bottom: -160px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.main-demo .title-box h1{
	position: relative;
	display: block;
	font-size: 45px;
	line-height: 55px;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	color: transparent;
    background: -webkit-linear-gradient(0deg, #3b9fff, #e84bfc 75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 11px;
}

.main-demo .title-box h3{
	position: relative;
	display: block;
	font-size: 31px;
	line-height: 40px;
	font-family: 'Muli', sans-serif;
	font-weight: 700;
	color: #09090a;
}

.main-demo .title-box{
	position: relative;
	display: block;
	margin-bottom: 56px;
}

.main-demo .image{
	position: relative;
	display: block;
	overflow: hidden;
	margin-bottom: 25px;
	box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.2);
	transition: all 500ms ease;
}

.main-demo .image:hover{
	box-shadow: 0px 20px 30px -10px rgba(211, 87, 251, 0.50);
}

.main-demo .image img{
	width: 100%;
	transition: all 5s ease;
}

.main-demo .image:hover img{
	transform: scale(1.5);
}

.main-demo .inner-box{
	position: relative;
	display: block;
	margin-bottom: 45px;
}

.main-demo .inner-box h4{
	position: relative;
	display: block;
	font-size: 18px;
	line-height: 28px;
	font-family: 'Muli', sans-serif;
	font-weight: 700;
	color: #fff;
}

.main-demo .inner-box h4 a{
	position: relative;
	display: inline-block;
	color: #09090a;
	padding: 2px 17px;
	text-align: center;
}

.main-demo .inner-box h4 a:hover{
	color: #fff;
	background: linear-gradient(90deg, var(--c1, #FB4477), var(--c2, #FB996D ) 51%, var(--c1, #FB4477)) var(--x, 0)/ 200%;
}

.main-demo .inner-box.update-more h4{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}


/* about-section */

.about-section{
	position: relative;
	display: block;
	background: #fdfbff;
	padding: 105px 0px 250px 0px;
}

.about-section:before{
	position: absolute;
	content: '';
	background: url(../images/shap-1.png);
	width: 462px;
	height: 579px;
	top: 0px;
	right: 0px;
	background-repeat: no-repeat;
}

.about-section .inner-box h3{
	position: relative;
	display: block;
	font-size: 24px;
	line-height: 30px;
	font-family: 'Muli', sans-serif;
	font-weight: 600;
	margin-bottom: 26px;
	margin-top: -24px;
	color: transparent;
	background: -webkit-linear-gradient(0deg, #b351fb, #e14ef6 50%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.about-section .inner-box h3 span{
	font-family: 'Lobster Two';
    font-weight: 400;
}

.about-section .inner-box h1{
	position: relative;
	display: block;
	font-size: 42px;
	line-height: 48px;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	color: #2f2f2f;
	margin-bottom: 24px;
}

.about-section .inner-box .text{
	position: relative;
	display: block;
	font-size: 18px;
	line-height: 28px;
	color: #6b6a6c;
}

.about-section .inner-box{
	position: relative;
	display: block;
	margin-right: 40px;
	margin-top: 138px;
}

.about-section .image-box{
	position: relative;
	display: block;
	margin-right: -215px;
	margin-left: 160px;
}

.about-section .image-box .image{
	position: relative;
	display: inline-block;
	-webkit-box-shadow: 2px 10px 50px rgba(0, 0, 0, 0.20);
    box-shadow: 2px 10px 50px rgba(0, 0, 0, 0.20);
}

.about-section .image-box .image-2{
	position: absolute;
	left: -100px;
	bottom: -160px;
}

.about-section .image-box img{
	width: 100%;
}


/* premium-section */

.premium-section{
	position: relative;
	display: block;
	padding: 122px 0px 0px 0px;
}

.premium-section .title-box h4{
	position: relative;
	display: block;
	font-size: 18px;
	font-family: 'Muli', sans-serif;
	color: #d176f7;
	font-weight: 700;
	margin-bottom: 18px;
}

.premium-section .title-box h1{
	position: relative;
	display: block;
	font-size: 42px;
	line-height: 50px;
	font-family: 'Poppins', sans-serif;
	color: #09090a;
	font-weight: 600;
	margin-bottom: 50px;
}

.premium-section img{
	width: 100%;
}



/* portfolio-section */

.portfolio-section{
	position: relative;
	display: block;
	padding: 150px 0px 450px 0px;
}

.portfolio-section:before{
	position: absolute;
	content: '';
	background: url(../images/shap-2.png);
	top: 0px;
	right: 0px;
	width: 876px;
	height: 783px;
	background-repeat: no-repeat;
}

.portfolio-section .image-box{
	position: relative;
	display: block;
	margin-left: -348px;
	margin-right: 190px;
}

.portfolio-section .image-box img{
	width: 100%;
}

.portfolio-section .image-box .image{
	position: relative;
	display: inline-block;
	-webkit-box-shadow: 2px 10px 50px rgba(0, 0, 0, 0.20);
    box-shadow: 2px 10px 50px rgba(0, 0, 0, 0.20);
}

.portfolio-section .image-box .image-2{
	position: absolute;
	bottom: -210px;
	right: -140px;
}

.portfolio-section .image-box .image-3{
	position: absolute;
	left: 100px;
	bottom: -340px;
}

.portfolio-section .content-box h4{
	position: relative;
	display: block;
	font-size: 18px;
	font-family: 'Muli', sans-serif;
	color: #d176f7;
	font-weight: 700;
	margin-bottom: 19px;
}

.portfolio-section .content-box h1{
	position: relative;
	display: block;
	font-size: 42px;
	line-height: 48px;
	font-family: 'Poppins', sans-serif;
	color: #09090a;
	font-weight: 600;
	margin-bottom: 26px;
}

.portfolio-section .content-box .text {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 28px;
    color: #6b6a6c;
}

.portfolio-section .content-box{
	position: relative;
	display: block;
	margin-top: 240px;
	margin-right: 60px;
}

/* feature-section */

.feature-section{
	position: relative;
	display: block;
	background: #f1f9ff;
	padding: 120px 0px 90px 0px;
}

.feature-section .single-item{
	position: relative;
	display: block;
	background: #fff;
	padding: 55px 30px 77px 30px;
	text-align: center;
	margin-bottom: 30px;
}

.feature-section .single-item .icon-box{
	position: relative;
	display: block;
	margin-bottom: 19px;
}

.feature-section .single-item h3{
	position: relative;
	display: block;
	font-size: 24px;
	line-height: 35px;
	color: #323048;
	font-weight: 600;
	margin-bottom: 14px;
}

.feature-section .single-item .text{
	position: relative;
	display: block;
	font-size: 16px;
	line-height: 28px;
	color: #323048;
}

/* header style */

.header-style{
	position: relative;
	display: block;
	padding: 120px 0px 120px 0px;
}

.header-style:before{
	position: absolute;
	content: '';
	background: url(../images/shap-3.png);
	width: 692px;
	height: 784px;
	left: 0px;
	top: 100px;
	background-repeat: no-repeat;
}

.header-style .content-box h4 {
    position: relative;
    display: block;
    font-size: 18px;
    font-family: 'Muli', sans-serif;
    color: #d176f7;
    font-weight: 700;
    margin-bottom: 19px;
}

.header-style .content-box h1 {
    position: relative;
    display: block;
    font-size: 42px;
    line-height: 48px;
    font-family: 'Poppins', sans-serif;
    color: #09090a;
    font-weight: 600;
    margin-bottom: 26px;
}

.header-style .content-box .text {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 28px;
    color: #6b6a6c;
    margin-bottom: 26px;
}

.header-style .content-box{
	position: relative;
	display: block;
	margin-top: 80px;
}

.header-style .header-slide .single-item{
	position: relative;
	display: block;
	margin-bottom: 30px;
	margin-left: 30px;
	margin-right: 30px;
}

.header-style .header-slide .single-item img{
	width: 90%;
	box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.20);
}

.header-style .bx-viewport{
	min-height: 440px !important;
}


/* footer-style */

.footer-style{
	position: relative;
	display: block;
	padding: 120px 0px 120px 0px;
}

.footer-style .title-box h4 {
    position: relative;
    display: block;
    font-size: 18px;
    font-family: 'Muli', sans-serif;
    color: #d176f7;
    font-weight: 700;
    margin-bottom: 19px;
}

.footer-style .title-box h1 {
    position: relative;
    display: block;
    font-size: 42px;
    line-height: 48px;
    font-family: 'Poppins', sans-serif;
    color: #09090a;
    font-weight: 600;
    margin-bottom: 14px;
}

.footer-style .title-box .text {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 28px;
    color: #6b6a6c;
}

.footer-style .title-box{
	position: relative;
	display: block;
	margin-bottom: 100px;
}

.footer-style .title-box:before{
	position: absolute;
	content: '';
	background: url(../images/shap-4.png);
	width: 470px;
	height: 278px;
	left: 50%;
	top: -80px;
	transform: translateX(-50%);
}

.footer-style .footer-image .image{
	position: relative;
	display: block;
	margin-bottom: 30px;
	border-radius: 10px;
	box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.10);
}

.footer-style .footer-image .image img{
	width: 100%;
	border-radius: 10px;
}


/** element-section **/

.element-section{
	position: relative;
	display: block;
	background: #f1f9ff;
	padding: 120px 0px 0px 0px;
}

.element-section .title-box h4 {
    position: relative;
    display: block;
    font-size: 18px;
    font-family: 'Muli', sans-serif;
    color: #d176f7;
    font-weight: 700;
    margin-bottom: 19px;
}

.element-section .title-box h1 {
    position: relative;
    display: block;
    font-size: 42px;
    line-height: 48px;
    font-family: 'Poppins', sans-serif;
    color: #09090a;
    font-weight: 600;
    margin-bottom: 14px;
}

.element-section .title-box h1 span{
	color: #ff2da4;
}

.element-section .title-box .text {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 28px;
    color: #6b6a6c;
}

.element-section .title-box{
	position: relative;
	display: block;
	margin-bottom: 80px;
}

.element-section .title-box:before{
	position: absolute;
	content: '';
	background: url(../images/shap-5.png);
	width: 483px;
	height: 241px;
	left: 50%;
	top: -40px;
	transform: translateX(-50%);
}

.element-section .swiper-slide{
	padding: 200px 0px;
}

.element-section .link-box{
	position: relative;
	display: block;
	background: #5788fe;
	padding: 30px 0px 25px 0px;
}

.element-section .link-box h4{
	position: relative;
	display: inline-block;
	font-size: 20px;
	line-height: 30px;
	color: #fff;
	font-weight: 700;
	margin-right: 15px;
}

.element-section .link-box .theme-btn{
	box-shadow: 0px 20px 30px -10px rgba(0, 0, 0, 0.50);
}

/** woocommerce-section **/

.woocommerce-section{
	position: relative;
	display: block;
	margin: 250px 0px 350px 0px;
	padding: 130px 0px 150px 0px;
}

.woocommerce-section:before{
	position: absolute;
	content: '';
	background-image: -webkit-linear-gradient(45deg, #5245ff 0%, #a067f8 75%);
	width: 50%;
	height: 100%;
	left: 0px;
	top: 0px;
}

.woocommerce-section .content-box h4 {
    position: relative;
    display: block;
    font-size: 18px;
    font-family: 'Muli', sans-serif;
    color: #fff;
    font-weight: 700;
    margin-bottom: 19px;
}

.woocommerce-section .content-box h1 {
    position: relative;
    display: block;
    font-size: 42px;
    line-height: 48px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    font-weight: 600;
    margin-bottom: 26px;
}

.woocommerce-section .content-box .text {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 28px;
    color: #fff;
    margin-bottom: 26px;
}

.woocommerce-section .btn-box .theme-btn{
	box-shadow: 0px 20px 30px -10px rgba(0, 0, 0, 0.50);
}

.woocommerce-section .image-box{
	position: relative;
	display: block;
	margin-right: -275px;
}

.woocommerce-section .image-box .image{
	position: absolute;
	display: inline-block;
	box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.10);
}

.woocommerce-section .image-box .image-1{
	left: -15px;
	top: -200px;
}

.woocommerce-section .image-box .image-2{
	left: -90px;
	margin-top: 240px;
}

.woocommerce-section .image-box .image-3{
	left: 270px;
	top: 340px;
}

.woocommerce-section .image-box .image-4{
	right: -50px;
	top: 130px;
}

/* call-action */

.call-action{
	position: relative;
	display: block;
	width: 100%;
	padding: 350px 0px 250px 0px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	z-index: 1;
	margin-bottom: -190px;
}

.call-action .content-box h2{
	position: relative;
	display: block;
	font-size: 36px;
	color: #fff;
	line-height: 48px;
	font-weight: 600;
	margin-bottom: 60px;
}

.call-action .content-box a{
	position: relative;
    font-weight: 600;
    font-size: 18px;
    color: #fff !important;
    display: inline-block;
    vertical-align: middle;
    padding: 13.5px 40px;
    font-family: 'Muli', sans-serif;
    cursor: pointer;
    border-radius: 25px;
    box-shadow: 0px 20px 30px -10px rgba(0, 0, 0, 0.3);
    transition: all 500ms ease;
    background: linear-gradient(90deg, var(--c1, #fb4477), var(--c2, #fb986d ) 51%, var(--c1, #fb4477)) var(--x, 0)/ 200%;
}

.call-action .content-box a:hover {
    --x: 100%;
}


/* footer */

.footer{
	position: relative;
	display: block;
	padding: 240px 0px 160px 0px;
}

.footer:before{
	position: absolute;
	content: '';
	background: url(../images/footer-bg.jpg);
	width: 100%;
	height: 680px;
	left: 0px;
	top: 0px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.footer .content-box h4 {
    position: relative;
    display: block;
    font-size: 18px;
    font-family: 'Muli', sans-serif;
    color: #fff;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer .content-box h2{
	position: relative;
	display: block;
	font-size: 36px;
	color: #fff;
	line-height: 48px;
	font-weight: 600;
	margin-bottom: 50px;
}

.footer .content-box a{
	position: relative;
    font-weight: 600;
    font-size: 18px;
    color: #fff;
    display: inline-block;
    vertical-align: middle;
    padding: 11.5px 40px;
    font-family: 'Muli', sans-serif;
    cursor: pointer;
    border-radius: 30px;
    border: 2px solid #fff;
    transition: all 500ms ease;
}

.footer .content-box a:hover{
	background: #fff;
	color: #222;
}



.float-bob-y {
    animation-name: float-bob-y;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: float-bob-y;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: float-bob-y;
    -moz-animation-duration: 2s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: float-bob-y;
    -ms-animation-duration: 2s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: float-bob-y;
    -o-animation-duration: 2s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}


/* responsive */

@media only screen and (max-width: 1200px){
  
  .banner-section .image-box,
  .about-section .image-box img,
  .about-section:before{
  	display: none;
  }

  .about-section .inner-box{
  	margin: 0px;
  }

  .about-section{
  	padding-bottom: 100px;
  }

  .feature-section .single-item{
  	min-height: 430px;
  }

  .main-header{
  	padding: 0px 30px;
  }

  .main-menu .navigation .megamenu{
  	min-width: 700px;
  	left: 0px;
  }

}


@media only screen and (max-width: 991px){

	.portfolio-section .image-box{
		display: none;
	}

	.portfolio-section .content-box{
		margin: 0px;
	}

	.portfolio-section{
		padding-bottom: 150px;
	}

	.header-style .content-box{
		margin: 0px 0px 50px 0px;
	}

	.woocommerce-section .image-box{
		display: none;
	}

	.woocommerce-section:before{
		width: 100%;
	}

	.woocommerce-section{
		margin: 0px;
	}

	.nav-outer{
		display: none;
	}

}


@media only screen and (max-width: 767px){

	.feature-section .single-item{
		min-height: auto;
	}

	.banner-section{
		padding-bottom: 100px;
	}

	.main-demo{
		padding: 100px 0px 70px 0px;
	}

	.about-section{
		padding: 70px 0px;
	}

	.portfolio-section{
		padding-bottom: 70px;
	}

	.header-style .header-slide .single-item img{
		width: 100%;
	}

	.header-style .header-slide .single-item{
		margin-left: 0px;
	}

	.header-style{
		padding-bottom: 70px;
	}

	.element-section .link-box h4{
		margin-bottom: 15px;
	}

}