/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Feb 17 2024 | 14:58:46 */
:active, :hover, :focus {
	outline: 0;
	outline-offset: 0;
}
/*CSS variable*/
:root {
	--blue1: #4256ff;
	--blue2: #2eb2ff;
	--blue0: #d9ddff;
	--white: #fff;
	--dark: #333;
}

.quiz-cont {
    justify-content: space-around;
}

/* Style CF7 */
.wpcf7 * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.wpcf7 label {
	margin: 0 0 5px 0;
	font-size: 16px;
	font-weight: 400;
}
.wpcf7 .form-field {
	width: 100%;
	background: var(--white);
	color: var(--dark);
	border-radius: 12px;
	border: var(--blue0) 2px solid;
	padding: 10px 15px;
	margin:  0 10px 15px 0;
	font-size: 14px;
}

.wpcf7 label a {
	color: var(--dark);
}
.wpcf7 .form-btn {
	background-image: linear-gradient(to bottom, var(--blue2), var(--blue1));
  text-align: center;
	margin-top: 15px;
	color: var(--white);
	padding: 12px 35px;
	border-radius: 50px;
	border: none;
	transition: all 0.5s cubic-bezier(.77, 0, .175, 1);
	cursor: pointer;
}

#callback-horiz .fields-wrap {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
}
@media (max-width: 900px) {
	#callback-horiz .fields-wrap 		{
		flex-direction: column;
		align-items: flex-start ;
	}
} 

#callback-horiz .form-btn {
	color: var(--white);
  border: 1px solid var(--white);
  border-radius: 12px;
  padding: 11px 35px;
}

#callback-horiz label, 
#callback-horiz label a{
	color: var(--white)
}

/* Style Owl Carousel - Сертификаты или Наши работы */
.owl-carousel .swiper-slide a {
	overflow: hidden;
}
.owl-carousel .swiper-slide a img {
	transition: all .4s cubic-bezier(0.4, 0, 1, 1);
	object-fit: cover;
}
.owl-carousel .swiper-slide a img:hover {
	transform: scale(1.1, 1.1);
}
@media screen and (max-width: 1000px) {
	.swiper-slide {
    	width: 48vw;
    	height: 70vw;
	}
}
@media screen and (max-width: 600px) {
	.swiper-slide {
    	width: 100vw;
    	height: 70vw;
	}
}

.owl-theme .owl-nav {
	display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    height: 48px;
    width: 48px;
    margin: 0 5px;
    background: linear-gradient(180deg, #2EB2FF 0%, #4256FF 100%);
    border-radius: 50px;
	color: #fff;
	transition: all .4s cubic-bezier(0.4, 0, 1, 1);
}
.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
	background: linear-gradient(180deg, #4256FF 0%, #2EB2FF 100%);
}

.owl-carousel .owl-dots .owl-dot span {
	height: 12px;
    width: 12px;
    margin: 0 5px;
    background: #fff;
    border: 3px solid #4256FF;
    border-radius: 50px;
	transition: all .4s cubic-bezier(0.4, 0, 1, 1);
}

.owl-carousel .owl-dots .owl-dot.active span {
	width: 40px;
	background: #4256FF;
}

/* Hide seraphinite banner */
.footer {
	position: relative;
}
.footer::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -120px;
	height: 120px;
	background: var(--blue1);
	z-index: 50;
}
	
