@import url("./default.css");
@import url("./var.css");
@import url("./blocks/header.css");
@import url("./blocks/news.css");
@import url("./blocks/promo.css");
@import url("./blocks/links.css");
@import url("./blocks/advantages.css");
@import url("./blocks/footer.css");
@import url("./blocks/modal.css");
@import url("./blocks/pagination.css");



body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-theme);
    margin: 0;
    background-color: var(--bg-color);
    transition: background-color 0.3s, color 0.3s;
}
.body_wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Занимает всю высоту экрана */
}

#content,
footer {
    width: 100%;
    /* float: left; */
}


/*SLIDER SECTION*/

#slider .slider-box {
    background: black;
}

#slider .slider-box img {
    opacity: 0.5;
}

#slider .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#carousel-caption {
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    bottom: 0;
    left: 13%;
    right: 55%;
}

#carousel-caption h3 {
    text-transform: uppercase;
    color: #fff;
}

#carousel-caption h2 {
    font-size: 48px;
    color: #f39f01;
    text-transform: uppercase;
}

#carousel-caption p {
    color: #fff;
    font-style: italic;
}

#slider .owl-item.active h2 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.3s;
}

#slider .owl-item.active h3 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.3s;
}

#slider .owl-item.active p {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    animation-delay: 0.3s;
}

#slider .owl-dots {
    text-align: center;
    bottom: 25px;
    position: absolute;
    width: 100%;
}

#slider .owl-dots button.owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    background: #ffffff;
    margin: 0 5px;
}

#slider .owl-dots button.owl-dot.active {
    background-color: #f39f01;
}

.wrapper {
    width: 100%;
    overflow: hidden;
}

.frame {
    height: 100%;
    /*width:100%;*/
}

.frame {
    -webkit-animation: zoomeffect 20s infinite;
    -moz-animation: zoomeffect 20s infinite;
    animation: zoomeffect 20s infinite;
}

@keyframes zoomeffect {
    0% {
        background-position: center;
        transform: scale(1, 1);
    }

    50% {
        background-position: center;
        transform: scale(2, 2);
    }

    100% {
        background-position: center;
        transform: scale(1, 1);
    }
}

@keyframes zoomeffect {
    0% {
        background-position: center;
        transform: scale(1, 1);
    }

    50% {
        background-position: center;
        transform: scale(1.3, 1.3);
    }

    100% {
        background-position: center;
        transform: scale(1, 1);
    }
}

#slider .button,
#slider .button::after {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

#slider .button {
    display: inline-block;
    padding: 10px 25px;
    text-align: center;
    color: #ffff;
    transition: all 0.2s;
    text-decoration: none;
    background: linear-gradient(to right, rgba(243, 159, 1, 1) 0%, rgba(243, 159, 1, 1) 20%, rgba(253, 29, 29, 1) 75%, rgba(253, 29, 29, 1) 100%);
    letter-spacing: 1px;
}

#slider .button::before,
#slider .button::after {
    background: #1e1f1f;
    content: '';
    position: absolute;
    z-index: -1;
}

#slider .button:hover {
    color: #fff;
}

#slider .button::after {
    height: 100%;
    left: 0;
    top: 0;
    width: 0;
}

#slider .button:hover:after {
    width: 100%;
}

/*Services Section*/

#services div i {
    /* width: 100px;
    height: 100px;
    font-size: 50px;
    color: #fff;
    position: relative;
    border-radius: 50%;
    padding: 20px; */
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.3s ease;
}

#services span.dashicons:after {
    content: "";
    width: 100%;
    height: 100%;
    transform: scale(0.8);
    position: absolute;
    border: 2px solid;
    top: -2px;
    left: -2px;
    border-radius: 50%;
    transition: all 0.3s ease;
    align-self: center;
    text-align: center;
}

#services span.dashicons:hover:after {
    transform: scale(1);
    box-shadow: 10px 0 20px rgba(0, 0, 0, 0.19), 6px 0 6px rgba(0, 0, 0, 0.23);
}

.services_card:hover div i{
    background-color: transparent;
    transform: rotate(45deg);
    cursor: pointer;
    box-shadow: none;
}

#services h5 {
    text-transform: uppercase;
    font-size: 18px;
    color: #fff;
}

#services p {
    color: #fff;
}

#services .owl-item:nth-child(even) {
    /* background: #f73603; */
    background: #0a2248;
}

#services .owl-item:nth-child(odd) {
    background: #f39f01;
}

#services .services_card {
    height: 240px;
    /* background-color: var(--card-bg); */
    /* border: 1px solid var(--border-color); */
}

@media screen and (min-width : 0) and (max-width : 767px) {

  section.category-title h1 {
    text-align: center;
  }

  .logo {
    text-align: center;
  }
  .top-register, .top-login{
  	padding: 12px 20px;
  }
  .menu-toggle,
  .dropdown-toggle {
    border:none;
    display: block;
    margin: 10px 0;
    height: 40px;
    text-align: center;
    cursor: pointer;
    background: #f39f01;
    color: #fff;
    border-radius: 5px;
    margin: 10px auto;
  }

  #main-menu {
    display: none;
  }
   
  .header.toggled #main-menu{
    display: block;
  }
  button.close-menu {
    display: inline-block;
  }

  #main-menu ul li {
    float: left;
    width: 100%;
  }

  #main-menu > li > ul.children,
  #main-menu > li > ul.sub-menu {
    position: absolute;
    top:-100%;
    background: #fff;
  }

  #main-menu li.focus > ul.children,
  #main-menu li.focus > ul.sub-menu ,
  #main-menu li:hover > ul.children,
  #main-menu li:hover > ul.sub-menu ,
  #main-menu li:focus > ul.children,
  #main-menu li:focus > ul.sub-menu {
    width: 100%;
    top:0;
    left: 0 !important;
    position: relative;
  }

  #main-menu ul {
    padding: 0;
    float: none;
  }

  #main-menu ul li a {
    padding: 0;
    display: initial;
  }

  #main-menu ul.children li a ,
  #main-menu ul.sub-menu li a {
    padding: 0;
    line-height:53px;
  }

  #main-menu ul li.menu-item-has-children:after {
    content: '';
    position: absolute;
    border: solid #f39f01;
    right: 10px;
    top: 50%;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    -webkit-transform: translate(0,-50%) rotate(-45deg);
    transform: translate(0,-50%) rotate(-45deg);
  }

  #main-menu ul.children li,
  #main-menu ul.sub-menu li {
    width: 100%;
    padding-left: 10px;
  }

  #main-menu ul li.menu-item-has-children:hover:after ,
  #main-menu ul li.menu-item-has-children:focus:after,
  #main-menu ul li.menu-item-has-children.focus:after {
    top: 20px;
    -webkit-transform:  rotate(45deg);
    transform:  rotate(45deg);
  }

  #main-menu a:hover,
  #main-menu ul li a:hover,
  #main-menu li:hover > a,
  #main-menu a:focus,
  #main-menu ul li a:focus,
  #main-menu li.focus > a,
  #main-menu li:focus > a,
  #main-menu ul li.current-menu-item > a,
  #main-menu ul li.current_page_item > a,
  #main-menu ul li.current-menu-parent > a,
  #main-menu ul li.current_page_ancestor > a,
  #main-menu ul li.current-menu-ancestor > a {
    background:none;
  }
  #main-menu ul li a{
  	padding: 10px 12px;
  }
  a.close-search-form{
  	display: none;
  }
}

/*MEDIA QUERY 320 TO 720*/

@media only screen and (min-width: 320px) and (max-width: 720px){
   
  .admin-bar .fix-sticky{
    margin-top: 0;
   }
	
	#main-menu ul.children li a, #main-menu ul.sub-menu li a{
		color: #242323;
	} 
  a.cart-customlocation p.cart-item-box{
  	right: 60px;
  }
  #carousel-caption {
    transform: translateY(-25%);
    top: 25%;
    bottom: 0;
    left: 5%;
    right: 10%;
  }
  #carousel-caption h3{
  	display: none;
  }
  #carousel-caption h2{
  	font-size: 20px;
  }
  #carousel-caption p, #carousel-caption hr{
  	display: none;
  }
  #slider .button{
    padding: 5px 10px;
    font-size: 10px;
  }
  #services h5{
  	font-size: 20px;
  }
  #slider .owl-dots{
  	bottom: 5px;
  }
  #services  .owl-dots {
	  text-align: center;
	  bottom:10px; 
	  position: absolute;
	  width: 100%;
	}
	#services  .owl-dots button.owl-dot {
	  width: 12px;
	  height: 12px;
	  border-radius: 50%;
	  display: inline-block;
	  background: #ffffff;
	  margin: 0 5px;
	}
	#services  .owl-dots button.owl-dot.active {
	  background-color:#f39f01;
	}
  #courses .section-content {
    margin-left: 0;
    margin-right: 0;
  }
  .course-summary .course-summary-sidebar {
    position: unset !important;
  }
  .course-summary .course-summary-sidebar.slide-top .course-summary-sidebar__inner {
    position:unset !important;
  }
  #homepage-product .owl-carousel .owl-nav.disabled{
		top: 45px;
	}
  #homepage-product .learpress-content{
  	bottom: 8%;
  	top: 44%;
  }
  #about-us hr{
  	width: 30%;
  	margin-right: 35%;
  }
  .video-section .video-blog .is-open {
    top: 0;
  }
  .video-section .video-blog{
  	padding: 50px 0;
  }
  #facilities a.open-video img{
	width: 100% !important;
  }
  #about-us .clip-path{
  	display: none;
  }
  #about-us .image1 {
	  right: 0;
	  width: 100%;
  }
  #about-us .image2 {
    position: relative;
    top: 15px;
    right: 0;
    width: 100%;
  }
  #join-us hr, #facilities hr, #team hr, #courses hr, #leatest-news hr{
  	width: 30%;
  }
  #join-us .section-content {
    margin-left: 0;
    margin-right: 0;
  }
  #join-us input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required{
  	width: 70%;
  }
  #join-us input.wpcf7-form-control.wpcf7-submit{
  	width: 40%;
  	left: 15%;
  	margin-bottom: 0;
  }
  #counter {
    transform: translateY(-0%);
    position: relative;
    left: 0;
    right: 0;
  }
  #counter .counter-text {
    margin: 20px 0;
    padding: 20px 0;
    border-right: none;
  }
  #counter .owl-dots {
	  text-align: center;
	  bottom:20px; 
	  position: relative;
	  width: 100%;
	}
	#counter .owl-dots button.owl-dot {
	  width: 12px;
	  height: 12px;
	  border-radius: 50%;
	  display: inline-block;
	  background: #ffffff;
	  margin: 0 5px;
	}
	#counter .owl-dots button.owl-dot.active {
	  background-color:#1e1f1f ;
	}
  #team .section-content {
    margin-left: 0;
    margin-right: 0;
  }
  #team .owl-carousel .owl-item img{
  	width: auto;
  }
  #team .owl-carousel .owl-nav{
    display: none;
  }
  #team .owl-dots {
    text-align: center;
    top: 15px;
    position: relative;
    width: 100%;
  }
  #team .owl-dots button.owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    background: #1e1f1f;
    margin: 0 5px;
  }
  #team .owl-dots button.owl-dot.active {
    background-color:#f39f01 ;
  }
  #offer .offer-text {
    right: 2%;
  }
  #offer .frontside-title{
  	font-size: 26px;
  }
  #offer .offer-text p{
  	display: none;
  }
  #offer .frontside a.button{
  	margin-top: 30px;
  }
  #offer .button{
    font-size: 14px;
  }
  #offer .discount{
  	margin: 0 40px;
  	width: 60px;
  	height: 60px;
  }
  #offer .frontside h4{
  	font-size: 24px;
  }
  #offer .backside h4{
  	font-size: 24px;
  }
  #offer .backside .discount-backside{
  	width: 60px;
  	height: 60px;
  }
  #offer .owl-carousel .owl-item img{
  	width: 100%;
  }
  #offer .owl-dots {
	  text-align: center;
	  top: 15px;
	  position: relative;
	  width: 100%;
	}
	#offer .owl-dots button.owl-dot {
	  width: 12px;
	  height: 12px;
	  border-radius: 50%;
	  display: inline-block;
	  background: #ffffff;
	  margin: 0 5px;
	}
	#offer .owl-dots button.owl-dot.active {
	  background-color:#f39f01 ;
	}
	#offer .backside .backside-title{
		font-size: 18px;
	}
	#offer .backside .offer-backside{
		top: 5px;
	}
	#testimonial .owl-dots {
	  text-align: center;
	  top: 15px;
	  position: relative;
	  width: 100%;
	}
	#testimonial .owl-carousel .owl-item img{
		width: 100%;
	}
	#testimonial .owl-dots button.owl-dot {
	  width: 12px;
	  height: 12px;
	  border-radius: 50%;
	  display: inline-block;
	  background: #ffffff;
	  margin: 0 5px;
	}
	#testimonial .owl-dots button .owl-dot .active {
	  background-color: #f39f01;
	}
	#leatest-news .post-date {
    bottom: 84%;
    left: 64%;
    top: 1px;
    right: 25px;
  }
  #leatest-news .section-content{
  	margin-left: 0;
  	margin-right: 0;
  }
  #leatest-news img{
  	height: auto;
  }
  #newsletter .dashicons {
    display: inline;
  }
  #newsletter input.wpcf7-form-control.wpcf7-text.wpcf7-email.wpcf7-validates-as-required.wpcf7-validates-as-email{
  	width: 70%;
  }
  #contact input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required,
  #contact input.wpcf7-form-control.wpcf7-number.wpcf7-validates-as-required.wpcf7-validates-as-number {
    width: 70%;
    padding: 8px 15px;
  }
  #contact textarea.wpcf7-form-control.wpcf7-textarea{
    width: 70%;
    height: 100px;
  }
  #contact input.wpcf7-form-control.wpcf7-submit {
    right: 90px;
    padding: 6px 20px;
  }
  #contact-form .section-2 h2{
  	font-size: 26px;
  }
  .aks-accordion h6{
  	margin-right: 50%;
  }
  .aks-accordion-item-content{
  	margin-left: 0;
  }
  .aks-accordion-item-title{
  	margin-left: 15px;
  }
  #newsletter h3{
  	left: 0;
  }
  .contact-info .dashicons {
    display: initial;
  }
  .footer-area .wp-block-image{
  	margin: 30px 0 1em;
  }
  .sidebar-area .post-thumbnail img{
  	height: 54px;
  }
}
 
/*MEDIA 721 TO 1023*/
@media only screen and (min-width: 721px) and (max-width: 1023px){
	.top-header .button1, .top-header .button2 {
    padding: 10px 5px;
    font-size: 12px;
  }
  .logo{
    margin: 0;
    padding: 5px 0;
  }
   
	.logo-image {
    float: none;
  }
	.header-text span, .header-email span {
    font-size: 12px;
  } 
	a.cart-customlocation p.cart-item-box{
		right: 10px;
	}
	#main-menu ul li a{
		padding: 10px 12px;
    font-size: 14px;
	}
	#carousel-caption{
  	position: absolute;
    transform: translateY(-25%);
    top: 25%;
    bottom: 0;
    left: 35%;
    right: 5%;
  }
	#carousel-caption h2{
		font-size: 30px;
	}
	#carousel-caption h3{
		font-size: 20px;
	}
	#carousel-caption p{
		display: none;
	}
	.course-summary .course-summary-sidebar.slide-top .course-summary-sidebar__inner {
    position:unset !important;
  }
  #learn-press-course .course-summary-sidebar .course-sidebar-preview .lp-course-buttons form,
   #learn-press-course .course-summary-sidebar .course-sidebar-preview .lp-course-buttons button{
   	width: 50% !important;
   	position: relative;
    left: 25%;
   }
	#homepage-product .owl-carousel .owl-nav.disabled{
		top: 45px;
	}
	.course-summary .course-summary-sidebar {
    position: unset !important;
  }
	#facilities a.open-video img{
	width: 100% !important;
  }
	#homepage-product .courses-admin .price{
		margin-left: 25%;
	}
	#homepage-product .learpress-content{
		bottom: 13%;
		top: 54%;
	}
	#about-us .image1{
		right: 50%;
	}
	#about-us .image2 {
    position: absolute;
    top: 44%;
    right: 29%
  }
  #counter {
    transform: translateY(-60%);
  }
  #join-us .section-content {
    margin-left: 8%;
    margin-right: 8%;
  }
  #join-us input.wpcf7-form-control.wpcf7-submit{
  	margin-bottom: 50px;
  }
  #counter .counter-text{
  	margin: 10px -5px;
  	padding: 15px 0px;
  }
  #offer h3{
  	font-size: 28px;
  }
  #offer .frontside h4{
  	font-size: 24px;
  }
  #offer .discount{
  	width: 60px;
  	height: 60px;
  }
  #team .owl-carousel .owl-item img{
  	width: auto;
  }
  #team .section-content {
    color: #777777;
    margin-left: 15%;
    margin-right: 15%;
  }
  #team .team-border{
  	right: 35px;
  	left: 35px;
  }
  #team .owl-carousel .owl-nav{
  	bottom: 70px;
  }
  #team .owl-carousel .owl-nav button.owl-next{
  	right: -3%;
  }
  #team .owl-carousel .owl-nav button.owl-prev{
  	left: -3%;
  }
  #testimonial .owl-carousel .owl-item img{
		width: 100%;
	}
	#leatest-news img{
  	height: auto;
  }
  #leatest-news .section-content,#courses .section-content{
  	margin-left: 8%;
  	margin-right: 8%;
  }
  #leatest-news .post-date {
    left: 66%;
    right: 30px;
    top: 1px;
  }
  #newsletter .dashicons{
  	margin-top: 0;
  }
  .contact-info .dashicons {
    display: initial;
  }
  #contact-form .section-2 h2{
  	font-size: 34px;
  }
  #contact-form .section-2 h4 span{
  	font-size: 20px;
  }
  .aks-accordion-item-title{
  	margin-left: 0;
  }
  .aks-accordion h6{
  	margin-right: 35%;
  }
  .aks-accordion-item-content{
  	margin-left: 0;
  }
  #newsletter h3 {
    bottom: 20px;
    font-size: 34px;
  }
  #newsletter input.wpcf7-form-control.wpcf7-submit{
  	padding: 10px 10px;
  }
  #contact textarea.wpcf7-form-control.wpcf7-textarea{
  	width: 92%;
  }
  #contact input.wpcf7-form-control.wpcf7-number.wpcf7-validates-as-required.wpcf7-validates-as-number,
  #contact input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required{
  	width: 44%;
  }
  .sidebar-area .course-title{
  	font-size: 17px;
  }
  .sidebar-area .course-description {
    font-size: 14px;
  }
  .sidebar-area .sidebar-widget .title{
  	font-size: 22px;
  }
}

/*MEDIA 1024 TO 1119*/
@media only screen and (min-width: 1024px) and (max-width: 1199px){
  .top-header .button1, .top-header .button2 {
   	padding: 10px 15px;
    font-size: 12px;
  }
  .logo-image img{
    width: 100%;
  }
  a.cart-customlocation p.cart-item-box{
  	right: 20px;
  }
  #main-menu ul li a{
  	padding: 10px 10px;
  }
  #carousel-caption {
    left: 50%;
    right: 5%;
  }
  #carousel-caption h3{
  	font-size: 18px;
  }
  #carousel-caption h2{
  	font-size: 30px;
  }
  #counter .counter-text{
  	margin: 30px -5px;
  }
  #homepage-product .courses-admin .price{
  	margin-left: 3%;
  	font-size: 16px;
  }
  #homepage-product .courses-admin p{
  	font-size: 12px;
  }
  #homepage-product .courses-admin{
    top: 90%;
  }
  #homepage-product .owl-carousel .owl-nav.disabled{
    top: 95px;
  }
  #about-us .image2 {
    position: absolute;
    top: 60%;
    right: -10%;
  }
  #counter h5{
  	font-size: 13px;
  }
  #team .section-content{
  	margin-left: 25%;
  	margin-right: 25%;
  }
  #team .owl-carousel .owl-nav button.owl-prev{
  	left: -5%;
  }
  #team .owl-carousel .owl-nav button.owl-next{
  right: -5%;
  }
  #offer .frontside-title{
  	font-size: 24px;
  }
  #offer .frontside h4{
  	font-size: 18px;
  }
  #offer .backside h4{
  	font-size: 22px;
  }
  #offer .discount{
  	width: 45px;
  	height: 45px;
  	margin: 0 40px;
  }
  .discount span{
  	font-size: 13px;
  }
  #offer a.button{
  	font-size: 12px;
  }
  #offer .backside .offer-backside{
  	top: 0;
  }
  #offer .backside .discount-backside{
  	width: 60px;
  	height: 60px;
  }
  #leatest-news .post-date {
    left: 74%;
    top: 2px;
  }
  #newsletter h3{
  	position: relative;
  	bottom: 15px;
  }
  #leatest-news img{
  	height: auto;
  }
  .aks-accordion h6{
  	margin-right: 45%;
  }
  .aks-accordion-item-content{
  	margin-left: 40px;
  }
  #contact-form .section-2 h4{
  	font-size: 16px;
  }
}

/* Theme Switcher Styles */
.theme-switcher {
    display: block;
    /* align-items: center; */
    margin-right: 20px;
}

.theme-toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.theme-toggle-btn:hover {
    background-color: var(--card-bg);
}

.theme-toggle-btn i {
    font-size: 1.2rem;
    color: var(--text-color);
}

.light-icon, .dark-icon {
    display: none;
}
.align-self-stretch {
  align-self: stretch!important;
}

.aspect-ratio-2x1-first-news-homepage {
  padding-top: 100%;
}
.aspect-ratio-1x1 {
  padding-top: 100%;
}
@media (min-width: 1200px) {
  .aspect-ratio-2x1-first-news-homepage {
    padding-top: 48%;
  }
}
.aspect-ratio {
  height: 0;
  position: relative;
}
.aspect-ratio .aspect-ratio-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.waves-effect {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.bg-cover {
  background-size: cover;
}
.hover:hover .hover-zoom {
  transform: scale(1.15);
  transition: 0.2s linear;
}

.hover .hover-zoom {
  transition: 0.2s linear;
}

.t-center {
  text-align: center;
}

.sf-special-hidden {
  display: none;
}
