/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

	1. 	Document Setup
	2. 	Element Base
	3. 	Helper Classes
	4. 	Site Header
	5. 	Home Page
	6. 	Plugins
	7. 	Page Templates
		a. 	Template: Front Page
		b. 	Template: 
		c. 	Template: 
		d. 	Template: 
		e. 	Template: 
		f. 	Template: 
		g. 	Template: 
		h. 	Template: 
		...
		z. 	Template: Full Width
	8.  Post: Archive
	9.  Post: Single
	10. Blocks
	11. Entry Content
	12. Comments
	13. Site Pagination
	14. Error 404
	15. Widgets
	16. Site Footer
	17. Media Queries

----------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */
/*	1. Document Setup
/* -------------------------------------------------------------------------- */
.mobile-menu{
	display: none;
}

html {
	scroll-behavior: smooth;
	
}
body{
	overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}

/* Base Transitions -------------------------- */

a,
path {
	transition: all 0.15s linear;
}


/* Screen Reader Text ------------------------ */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	-webkit-clip-path: inset(50%);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
	word-break: normal;
}
.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	-webkit-clip-path: none;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	right: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Skip Link --------------------------------- */
.skip-link {
	left: -9999rem;
	top: 2.5rem;
	z-index: 999999999;
	text-decoration: underline;
}

.skip-link:focus {
	display: block;
	left: 6px;
	top: 7px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	line-height: normal;
	padding: 15px 23px 14px;
	z-index: 100000;
	right: auto;
}


/* Fonts ------------------------------------- */
:root {
	/*
	restrict the font size between 14px and 18px.
	adjust the vw value to set when the font grows/shrinks.
	*/
	font-size: clamp(14px, 2vw, 18px);
	/* Font Size */
	--global--font-size-base: 1rem; /* 18px */
	--global--font-size-xs: 0.777rem; /*  14px */
	--global--font-size-sm: 0.888rem; /*  16px */
	--global--font-size-md: 1.111rem; /*  20px */
	--global--font-size-lg: 1.555rem; /*  28px */
	--global--font-size-xl: 1.888rem; /*  34px */
}


/* Accessibility Settings -------------------- */
@media ( prefers-reduced-motion: reduce ) {
	* {
		animation-duration: 0s !important;
		transition-duration: 0s !important;
	}
}


/* -------------------------------------------------------------------------- */

/*	2. Element Base
/* -------------------------------------------------------------------------- */
main {
	display: block;
}

h1,
.heading-size-1 {
	font-size: 3.6rem;
	font-weight: 800;
	line-height: 1.138888889;
}

h2,
.heading-size-2 {
	font-size: 3.2rem;
}

h3,
.heading-size-3 {
	font-size: 2.8rem;
}

h4,
.heading-size-4 {
	font-size: 2.4rem;
}

h5,
.heading-size-5 {
	font-size: 2.1rem;
}

h6,
.heading-size-6 {
	font-size: 1.6rem;
	letter-spacing: 0.03125em;
	text-transform: uppercase;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Space Grotesk', sans-serif;
}

p {
	line-height: 1.5;
	margin: 0 0 1em 0;
}

a {
	text-decoration: none;
}

a:hover,
a:focus {
	text-decoration:none
}


/* Lists ------------------------------------- */

ul,
ol {
	margin: 0 0 3rem 0;
	padding: 0;
}

ul {
	list-style: disc;
}

ul ul {
	list-style: circle;
}

ul ul ul {
	list-style: square;
}

ol {
	list-style: decimal;
}

ol ol {
	list-style: lower-alpha;
}

ol ol ol {
	list-style: lower-roman;
}

li {
	line-height: 1.5;
	margin: 0.5rem 0 0 1rem;
}

li > ul,
li > ol {
	margin: 1rem 0 0 2rem;
}

.reset-list-style,
.reset-list-style ul,
.reset-list-style ol {
	list-style: none;
	margin: 0;
}

.reset-list-style li {
	margin: 0;
}

dt,
dd {
	line-height: 1.5;
}

dt {
	font-weight: 700;
}

dt + dd {
	margin-top: 0.5rem;
}

dd + dt {
	margin-top: 1.5rem;
}


/* Quotes ------------------------------------ */

blockquote {
	position: relative;

	/*rtl:ignore*/
	border-width: 0 0 0 0.2rem;
	color: inherit;
	font-size: 1em;
	margin: 4rem 0;

	/*rtl:ignore*/
	padding: 0.5rem 0 0.5rem 2rem;
}

blockquote.wp-block-quote::before {
    content: '“';
    font-size: 18rem;
    position: absolute;
    top: -145px;
    left: -60px;
    color: rgba(255, 255, 255, 0.25);
	opacity: 0.5;
}

cite {
	color: #6d6d6d;
	font-size: 0.85rem;
	font-style: normal;
	font-weight: 600;
	line-height: 1.25;
}

blockquote cite {
	display: block;
	margin: 2rem 0 0 1rem;
}

blockquote p:last-child {
	margin: 0;
}


/* Code -------------------------------------- */

code,
kbd,
pre,
samp {
	font-family: monospace;
	font-size: 0.9em;
	padding: 0.4rem 0.6rem;
}

code,
kbd,
samp {
	background: rgba(0, 0, 0, 0.075);
	border-radius: 0.2rem;
}

pre {
	border: 0.1rem solid #dcd7ca;
	line-height: 1.5;
	margin: 4rem 0;
	overflow: auto;
	padding: 3rem 2rem;
	text-align: left;
}

pre code {
	background: transparent;
	padding: 0;
}


/* Media ------------------------------------- */

figure {
	display: block;
	margin: 0;
}

iframe {
	display: block;
	max-width: 100%;
}

video {
	display: block;
}

svg,
img,
embed,
object {
	display: block;
	height: auto;
	max-width: 100%;
}

figcaption,
.wp-caption-text {
	color: #6d6d6d;
	display: block;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.2;
	margin-top: 1.5rem;
	text-align: center;
}

figcaption a,
.wp-caption-text a {
	color: inherit;
}

blockquote.instagram-media,
iframe.instagram-media {
	margin: auto !important;
}


/* GALLERIES */
.gallery {
	display: flex;
	flex-wrap: wrap;
	margin: 3em 0 3em -0.8em;
	width: calc(100% + 1.6em);
}

.gallery-item {
	margin: 0.8em 0;
	padding: 0 0.8em;
	width: 100%;
}

.gallery-caption {
	display: block;
	margin-top: 0.8em;
}


/* -------------------------------------------------------------------------- */

/*	3. Helper Classes
/* -------------------------------------------------------------------------- */

/* Layout ------------------------------------ */
body {
}

.no-margin {
	margin: 0;
}

.no-padding {
	padding: 0;
}

.screen-height {
	min-height: 100vh;
}

.admin-bar .screen-height {
	min-height: calc(100vh - 32px);
}

@media (max-width: 782px) {
	.admin-bar .screen-height {
		min-height: calc(100vh - 46px);
	}
}

.screen-width {
	position: relative;
	left: calc(50% - 50vw);
	width: 100vw;
}

/* Hiding and Showing ------------------------ */
.js .show-js {
	display: block !important;
}

.js .hide-js {
	display: none !important;
}

.no-js .show-no-js {
	display: block !important;
}

.no-js .hide-no-js {
	display: none !important;
}


/* Buttons ------------------------------------ */
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 2rem;
	border: 1px solid #004097;
	padding: 15px 9%;
	color: #004097;
}
.button span {
	font-family: "Roboto";
	font-style: normal;
	font-weight: bold;
	font-size: 18px;
	line-height: 27px;
}
.button.white{
	color: #FFFFFF;
	border-color: #FFFFFF;
}
.button.white:hover {
	color: #004097;
	border-color: #004097;
}
.button.hover-fill-blue:hover {
	color: #fff;
	background-color: #004097;
	border-color: #fff;
}

/* Middots ------------------------------------ */
.middot > p::before {
    position: relative;
    top: -2px;
    content: "·";
    font-size: 27px;
    vertical-align: middle;
    font-family: monospace;
    margin-left: -15px;
}
.middot > p {
    margin-left: 16px;
}

/* Video ------------------------------------ */
video#hero {
    width: 100%;
	border-radius: 6rem;
}
.video{
	/*width: auto;*/
}
.video video{
	object-fit: cover;
	width: 100%;
	height: 100%;
}

/* Colors ------------------------------------ */


/* Opacity ----------------------------------- */


.opacity-0 {
	opacity: 0;
}

.opacity-25 {
	opacity: 0.25;
}

.opacity-50 {
	opacity: 0.5;
}

.opacity-75 {
	opacity: 0.75;
}

.blend-mode-exclusion {
	mix-blend-mode: exclusion;
}

.blend-mode-hue {
	mix-blend-mode: hue;
}

.blend-mode-saturation {
	mix-blend-mode: saturation;
}

.blend-mode-color {
	mix-blend-mode: color;
}

.blend-mode-luminosity {
	mix-blend-mode: luminosity;
}


/* Image Classes ----------------------------- */

.bg-image {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.bg-attachment-fixed {
	background-attachment: fixed;
}

@supports ( -webkit-overflow-scrolling: touch ) {

	.bg-attachment-fixed {
		background-attachment: scroll;
	}
}

@media ( prefers-reduced-motion: reduce ) {

	.bg-attachment-fixed {
		background-attachment: scroll;
	}
}

.wp-block-image.is-resized {
	margin-left: auto;
	margin-right: auto;
}

/* Search Form ------------------------------- */

.search-form {
	align-items: stretch;
	display: flex;
	flex-wrap: nowrap;
	margin: 0 0 -0.8rem -0.8rem;
}

.search-form .search-field,
.search-form .search-submit {
	margin: 0 0 0.8rem 0.8rem;
}

.search-form label {
	align-items: stretch;
	display: flex;
	font-size: inherit;
	margin: 0;
	width: 100%;
}

.search-form .search-field {
	width: 100%;
}

.search-form .search-submit {
	flex-shrink: 0;
}

.search-form .search-submit:focus,
.search-form .search-submit:hover {
	text-decoration: none;
}


/* Social Icons ------------------------------ */



/* -------------------------------------------------------------------------- */
/*	4.	Site Header
/* -------------------------------------------------------------------------- */
#header {
	padding: 1rem 0;
	background: rgba(245, 245, 245, 0.8);
	/*backdrop-filter: blur(24px);*/
}
#header .top-menu #menu-menu-1 .logo{
	margin-left: 0 !important;
	margin-right: 50px;
}
#header .top-menu #menu-menu-1 li a{
	font-size: 16px;
	line-height: 20px;
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 700;
}
#header .top-menu #menu-menu-1 li#menu-item-563{
	border: 12px solid #364B99;
	border-radius: 75px;
	width: 150px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* -------------------------------------------------------------------------- */
/*	5. Home Page
/* -------------------------------------------------------------------------- */
#home section.s1{
	padding-top: 113px;
	padding-bottom: 125px;
	position: relative;
}
#home section.s1 .banner-title{
	font-size: 90px;
	line-height: 75px;
	position: relative;
	z-index: 2;
}
/*
#home section.s1 .banner-title::after{
	content: " ";
	background-image: url(../images/title-line.svg);
}
*/

#home section.s1 .banner-text {
    margin-top: 58px;
    letter-spacing: 0;
	margin-bottom: 0;
}
@media (min-width: 970px) and (max-width: 1200px){
#home section.s1 .banner-text {
    margin-top: 58px;
    letter-spacing: 0;
	margin-bottom: 0;
    width: 65%;
}
}
#home section.s1 .banner-buttons{
	display: flex;
	margin-top: 92px;
	margin-bottom: 100px;
}
#home section.s1 .banner-buttons .btn {
    width: 367px;
    position: relative;
    height: 78px;
    border: 12px solid;
    border-radius: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 0;
    padding: 10px;
    background-color: #fff;
}
#home section.s1 .banner-buttons .btn.btn-one {
    border-color: #E53323;
    color: #C63C1A;
    position: relative;
    z-index: 3;
    width: 260px !important;
}
#home section.s1 .banner-buttons .btn.btn-two {
    border-color: #B1BFC5;
    color: #364B99;
    margin-left: -32%;
    position: relative;
    z-index: -1;
    width: 367px;
    justify-content: center;
    padding-right: 0;
}
#home section.s1 .banner-buttons .btn.btn-three {
    border-color: #D9D9D9;
    color: #364B99;
    margin-left: -65%;
    justify-content: center;
    padding-right: 0;
    position: relative;
    z-index: -2;
}
#home section.s1 .banner-image {
    position: absolute;
    width: 39vw;
    right: 0;
    top: 1vw;
}

#home section.s2,
#home section.s4{
	background-color: #FF7952;
	height: auto;
	width: 100%;
	position: relative;
	margin-bottom: 200px;
	padding-bottom: 200px;
}

#home section.s4{
	background-color: #5BB684;
}
#home section.s2 .svg-top,
#home section.s4 .svg-top
{
	position: relative;
	top: -15px;
}
#math-camp section.s1 .h{
	margin-bottom:50px;
}
#math-camp section.s2 .svg-top {
    position: relative;
    top: -63px;
}
#home section.s2 .svg-bottom, #home section.s4 .svg-bottom, #math-camp section.s2 .svg-bottom {
    position: absolute;
    bottom: -8px;
    width: 100%;
}
#home section.s2 .background-one {
    position: absolute;
    top: -86px;
    width: 25%;
    left: 0;
}
#home section.s4 .background-one {
    position: absolute;
    top: -80px;
    width: 30%;
    left: -100px;
}
#home section.s2 .background-two{
	position: absolute;
	bottom: -100px;
	width: 30%;
	right: 30px;
	z-index: 2;
}
#home section.s4 .background-two {
    position: absolute;
    bottom: -80px;
    right: -100px;
    z-index: 2;
}
#home section.s2 .title,
#home section.s4 .title{
	padding-top: 73px;
	padding-bottom: 50px;
	color: #fff;
	text-align: center;
	font-size: 64px;
	line-height: 75px;
}
#home section.s2 .outstanding-box,
#home section.s4 .outstanding-box,
#math-camp section.s3 .outstanding-box{
	border: 12px solid #fff;
	border-radius: 15px;
	padding: 20px;
	height: 100%;
}
#math-camp section.s3 .outstanding-box{
	border-color: #5BB684;
}
#home section.s2 .outstanding-box img,
#math-camp section.s3 .outstanding-box img{
	padding-top: 30px;
}
#home section.s2 .outstanding-box .name,
#home section.s4 .outstanding-box .name,
#math-camp section.s3 .outstanding-box .name{
	font-size: 13px;
	color: #fff;
	padding-top: 20px;
	padding-bottom: 20px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7); /* Hafif gölge ekleyerek okunabilirliği artırın */

}
#math-camp section.s3 .outstanding-box .name{
	color: #5BB684;
}
#home section.s2 .outstanding-box .text,
#home section.s4 .outstanding-box .text,
#math-camp section.s3 .outstanding-box .text{
	font-size: 13px;
}
#home section.s2 .outstanding-group,
#home section.s4 .outstanding-group,
#math-camp section.s3 .outstanding-group{
	height: calc(50% - 10px);
}
#home section.s2 .outstanding-group .outstanding-box,
#home section.s4 .outstanding-group .outstanding-box,
#math-camp section.s3 .outstanding-group .outstanding-box{
	display: flex;
	margin-bottom: 20px;
}
#home section.s2 .outstanding-group .outstanding-box .outsanding-img,
#home section.s4 .outstanding-group .outstanding-box .outsanding-img,
#math-camp section.s3 .outstanding-group .outstanding-box .outsanding-img{
	flex: auto;
	width: 30%;
	
}
#home section.s2 .outstanding-group .outstanding-box .outsanding-img img,
#home section.s4 .outstanding-group .outstanding-box .outsanding-img img,
#math-camp section.s3 .outstanding-group .outstanding-box .outsanding-img img{
	width: 100%;
	height: 100%;
	padding-right: 20px;
	object-fit: contain;
	padding-top: 0;
}
#home section.s2 .outstanding-group .outstanding-box .outsanding-description,
#home section.s4 .outstanding-group .outstanding-box .outsanding-description,
#math-camp section.s3 .outstanding-group .outstanding-box .outsanding-description{
	flex: auto;
	width: 70%;
}

#home section.s3{
	padding-top: 100px;
	padding-bottom: 230px;
}
#home section.s3 .title{
	font-size: 64px;
	line-height: 58px;
	letter-spacing: -6px;
}
#home section.s3 .text{
	font-size: 18px;
	line-height: 28px;
	font-weight: 400;
	margin-top: 30px;
}
#home section.s3 .img{
	width: 100%;
	border-radius: 33px;
}
/* Comment Row*/
.comment{
	padding-top: 200px;
}
.swiper{
	overflow: inherit;
}
.swiper-comment-box{
	display: flex;
	flex-wrap: wrap;
}
.swiper-comment-box .user-description{
	flex: auto;
	width: 30%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.swiper-comment-box .user-comment {
    flex: auto;
    width: 60%;
}
.swiper-comment-box .user-description img {
    padding-bottom: 20px;
    aspect-ratio: 1/1;
    object-fit: contain;
}
.swiper-comment-box .user-description .user-name{
	font-size: 14px;
	line-height: 21px;
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 700;
	width:100%;
	display:flex;
	justify-content:center;
}

.swiper-comment-box .user-description .user-type{
	font-size: 14px;
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 400;
}
.swiper-comment-box .user-comment .comment-text {
    font-size: 16px;
    font-family: 'PT Serif', serif;
    font-style: italic;
    border: 10px solid #F8B133;
    border-radius: 15px;
    padding: 15px;
	position: relative;
}
.swiper-comment-box .user-comment .comment-text:after {
    content: '';
    position: absolute;
    left: -26px;
    top: 38px;
    border-style: solid;
    border-width: 0 20px 20px 20px;
    border-color: transparent transparent #fff transparent;
    transform: rotate(45deg);
}
  
.swiper-comment-box .user-comment .comment-text:before {
    content: '';
    position: absolute;
    left: -54px;
    top: 25px;
    border-style: solid;
    border-width: 0 40px 40px 40px;
    border-color: transparent transparent #F8B133 transparent;
    transform: rotate(45deg);
}

/*
.swiper-comment-box .user-comment .comment-text:after {
    content: '';
    position: absolute;
    left: -33px;
    top: 20%;
    width: 0;
    height: 0;
    border: 44px solid transparent;
    border-right-color: #F8B133;
    border-left: 0;
    border-top: 0;
    margin-top: -10px;
    margin-left: -20px;
}

/* Comment Row */
#home section.s5{
	padding-bottom: 100px;
}
#home section.s5 .title{
	font-size: 64px;
	line-height: 57px;
	color: #364B99;
	font-weight: 500;
	font-family: 'Space Grotesk', sans-serif;
	margin-bottom: 100px;
}
#home section.s5 .swiper-slide img {
    width: 100%;
    height: auto;
    border: 9px solid #EC6633;
    border-radius: 12px;
    background-color: #EC6633;
} 
#teachers section.s1{
	padding-top: 50px;
	padding-bottom: 50px;
}
#teachers section.s1 .banner-description{
	align-items: flex-end;
}
#teachers section.s1 .title{
	font-size: 114px;
	line-height: 95px;
	color: #364B99;
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 500;
	position: relative;
	z-index: 2;
}
#teachers section.s1 .text{
	font-size: 18px;
	line-height: 28px;
	font-family: 'Space Grotesk', sans-serif;
	display: flex;
	justify-content: flex-end;
}
#teachers section.s1 .tutors-row{
	padding-top: 50px;
}
#teachers section.s1 .tutors-row .tutors-box{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	border: 10px solid #FF7952;
	border-radius: 15px;
	padding: 10px;
	margin-bottom: 20px;
}
#teachers section.s1 .tutors-row .tutors-box .tutors-box-img{
	flex: 0 30%;
}
#teachers section.s1 .tutors-row .tutors-box .tutors-box-img img{
	border-radius: 100%;
}
#teachers section.s1 .tutors-row .tutors-box .tutors-box-description{
	flex: 0 70%;
}
#teachers section.s1 .tutors-row .tutors-box .tutors-box-description .name{
	color: #FF7952;
	font-size: 16px;
	line-height: 21px;
	font-weight: 700;
	font-family: 'Space Grotesk', sans-serif;
	padding-bottom: 20px;
}
#teachers section.s1 .tutors-row .tutors-box .tutors-box-description .text{
	font-size: 12px;
	line-height: 16px;
	font-weight: 400;
	font-family: 'Space Grotesk', sans-serif;
}	
#teachers section.s1 .tutors-row .vertical{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

#teachers section.s1 .tutors-row .vertical .tutors-box{
	flex: 0 48%;
	display: block;
	height: 100%;
	height: 575px;
}
#teachers section.s1 .tutors-row .vertical .tutors-box:nth-child(1){
	margin-right: 4%;
}
#teachers section.s1 .tutors-row .vertical .tutors-box .tutors-box-img{
	flex: 0 100%;
	padding-bottom: 20px;
}
#teachers section.s1 .tutors-row .vertical .tutors-box .tutors-box-description{
	flex: 0 100%;
}
#teachers section.s1 .tutors-row .horizontal .tutors-box{
	height: 279px;
}
#teachers section.s1 .comment .comment-title{
	font-size: 64px;
	line-height: 57px;
	color: #364B99;
	font-family: 'Space Grotesk', sans-serif;
	padding-bottom: 50px;
}
#catalog section.s1{
	padding-top: 50px;
	padding-bottom: 50px;
}
#catalog section.s1 .catalog-title,
#catalog section.s1 h2 {
	font-size: 120px;
	line-height: 111px;
	color: #364B99;
	font-weight: 500;
	font-family: 'Space Grotesk', sans-serif;
	position: relative;
	z-index: 2;
}
#catalog section.s1 .h{
	margin-bottom: 100px;
}

#catalog section.s1 .sidebar ul{
	padding-left: 0;
	margin-left: 0;
}
#catalog section.s1 .sidebar ul li{
	list-style-type: none;
	margin-bottom: 86px;
	margin-left: 0;
}
#catalog section.s1 .sidebar ul li a{
	font-size: 36px;
	line-height: 32px;
	color: #364B99;
	font-weight: 500;
	font-family: 'Space Grotesk', sans-serif;
}
#catalog section.s1 .courses{
	display: flex;
	flex-wrap: wrap;
	border: 11px solid #FF7952;
	border-radius: 15px;
	padding: 42px;
}
#catalog section.s1 .courses .about{
	flex: 0 40%;
	background-color: #FF7952;
	border-radius: 15px;
	padding: 33px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

#catalog section.s1 .courses .about img{
	border-radius: 100%;
	margin-bottom: 20px;
	width: 150px;
	height: 150px;
	object-fit: cover;
}
#catalog section.s1 .courses .about .user-name{
	font-size: 24px;
	font-weight: 700;
	font-family: 'Space Grotesk', sans-serif;
	padding-bottom: 20px;
	color: #fff;
}
#catalog section.s1 .sidebar .user-name{
	position: relative;
}
#catalog section.s1 .sidebar .user-name::after {
    content: "";
    background-image: url(../images/menu-line.svg);
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 20px;
    background-position: top;
    left: 0;
    /* top: 3%; */
    margin-top: 13%;
}
#catalog section.s1 .sidebar .user-name.active-link::after {
    content: "";
    background-image: url(../images/menu-line-two.svg);
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    width: 110%;
    height: 20px;
    background-position: top;
    left: 1%;
    /* top: 3%; */
    margin-top: 13%;
}
#catalog section.s1 .courses .about .user-text{
	font-size: 14px;
	font-weight: 400;
	font-family: 'Space Grotesk', sans-serif;
	color: #fff;
}
#catalog section.s1 .courses .courses-text{
	flex: 0 60%;
	padding-left: 100px;
	color: #000;
	font-family: 'Space Grotesk', sans-serif;
	font-size: 14px;
	line-height: 18px;
	font-weight: 500;
}
#catalog section.s1 .courses .courses-text .catalog-title,
#catalog section.s1 .courses .courses-text h2 {
	font-size: 18px;
	line-height: 23px;
	font-weight: 700;
	margin-bottom: 0;
}
#catalog section.s1 .courses .courses-text .title,
#catalog section.s1 .courses .courses-text h3 {
	color: #000;
	font-family: 'Space Grotesk', sans-serif;
	font-size: 18px;
	line-height: 23px;
	font-weight: 700;
	margin-bottom: 10px;
	margin-top: 20px;
}
#catalog section.s1 .courses .courses-text .text,
#catalog section.s1 .courses .courses-text p {
	color: #000;
	font-family: 'Space Grotesk', sans-serif;
	font-size: 14px;
	line-height: 18px;
	font-weight: 500;
}
#catalog section.s1 .courses .courses-description{
	flex: 0 100%;
}
#catalog section.s1 .courses .courses-description .courses-description-box-title{
	font-size: 24px;
	color: #364B99;
	font-weight: 700;
	line-height: 31px;
	font-family: 'Space Grotesk', sans-serif;
	padding-bottom: 30px;
}
#catalog section.s1 .courses .courses-description .accordion-item{
	margin-bottom: 15px;
	border: 12px solid #B1BFC5;
	border-radius: 75px;
}
.radius{
	border-radius: 41px !important;
}
#catalog section.s1 .courses .courses-description .accordion-button{
	background-color: #fff;
	border: none;
	border-radius: 75px;
}
#catalog section.s1 .courses .courses-description .accordion-button:focus {
    box-shadow: none !important;
}
#catalog section.s1 .courses .courses-description .accordion-button .text{
	font-size: 18px;
	line-height: 22px;
	color: #364B99;
	font-weight: 700;
	font-family: 'Space Grotesk', sans-serif;
}
/*
#catalog section.s1 .courses .courses-description .accordion-button.collapsed::after {
    width: 7rem;
    margin-left: auto;
    content: "Show More +" !important;
	background-image: none;
	transform: rotate(0deg);
	font-family: 'Space Grotesk', sans-serif;
	color: #364B99;
	transition: transform .2s ease-in-out;
}
*/
#catalog section.s1 .courses .courses-description .accordion-des {
	display: flex;
	flex-wrap: wrap;
	padding-top: 20px;
	padding-bottom: 20px;
	border-bottom: 1px dashed #000;
}
#catalog section.s1 .courses .courses-description .accordion-des * {
    overflow-wrap: break-word;
}
#catalog section.s1 .courses .courses-description .accordion-des:last-child {
	border-bottom: none;
	
}
#catalog section.s1 .courses .courses-description .accordion-des .title{
	flex: auto;
	width: 20%;
	font-weight: 700;
	font-size: 18px;
	line-height: 23px;
	padding-right: 1.5rem;
}
#catalog section.s1 .courses .courses-description .accordion-des .text{
	flex: auto;
	width: 80%;
	font-size: 14px;
	line-height: 18px;
}
#catalog section.s1 .courses .courses-description .accordion-des .text > ul{
	margin-left: 0;
    padding-left: 0;
}
/*
.accordion-button::after {
    background-image: none;
	content: "Show Less - " !important;
    transform: rotate(0deg);
	width: 7rem;
    margin-left: auto;
	color: #364B99;
	font-family: 'Space Grotesk', sans-serif;
}
*/
.accordion-body .text{
	font-size: 14px;
	line-height: 18px;
	font-family: 'Space Grotesk', sans-serif;
}
#catalog section.s1 .courses .courses-description .accordion-button:focus{
	border-color: transparent;

}
.accordion-item [aria-expanded=true] {
	border-radius: 0;
	border: none;
}
#math-camp .table-title {
    font-size: 64px;
    line-height: 75px;
    font-weight: 700;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    margin: 2rem 0;
}

@media (max-width:1400px) {
	.responsive-table {
		overflow-x: scroll;
	}
	.responsive-table table {
		min-width: 380px;
	}
}
#math-camp table {
    width: 100%;
    font-family: 'Space Grotesk', sans-serif;
	overflow-x: scroll;
	margin-bottom: 3rem;
}
#math-camp table thead {
    color: #fff;
    font-size: 36px;
    line-height: 42px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    border-bottom: 1px #fff solid;
}
#math-camp table thead th {
    padding: 0 1rem 1rem 0;
}
#math-camp table tbody tr {
	border-bottom: 1px #fff solid;
}
#math-camp table tbody tr:last-child {
	border: none;
}
#math-camp table tbody tr td {
	font-size: 16px;
	line-height: 20px;
	font-weight: 400;
	font-family: 'Space Grotesk', sans-serif;
	padding: 1rem 1rem 1rem 0;
}


#math-camp section.s1{
	padding-top: 63px;
	padding-bottom: 63px;
}
#math-camp section.s1 .banner-title{
	font-size: 111px;
	line-height: 100px;
	color: #364B99;
	font-weight: 500;
	font-family: 'Space Grotesk', sans-serif;
	padding-bottom: 40px;
	position: relative;
	z-index: 2;
}
/*
#math-camp section.s1 .banner-title::after{
	content: " ";
	background-image: url(../images/title-line.svg);
	position: absolute;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: contain;
	left: 0;
}
*/
#math-camp section.s1 .camp-calendar{
	display: flex;
	flex-wrap: wrap;
}
#math-camp section.s1 .camp-calendar .camp-calendar-box {
    flex: 0 46%;
    margin-bottom: 15px;
    margin-right: 30px;
}
#math-camp section.s1 .camp-calendar .camp-calendar-box .title{
	font-weight: 700;
	font-size: 18px;
	line-height: 28px;
	color: #364B99;
	font-family: 'Space Grotesk', sans-serif;
}
#math-camp section.s1 .camp-calendar .camp-calendar-box .text{
	color: #000;
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 28px;
}
#math-camp section.s1 .banner-btn .btn-apply{
	width: 260px;
	height: 55px;
	border: 12px solid #E53323;
	border-radius: 26px;
	padding: 10px;
	margin-top: 50px;
	color: #E53323;
	display: flex;
	align-items: center;
	justify-content: center;
}
#math-camp section.s1 .banner-img{
	position: absolute;
	width: 40%;
    margin-top: 70px;
	right: 0;
}
#math-camp section.s2{
	background-color: #FC7750;
	padding-top: 50px;
	padding-bottom: 50px;
	position: relative;
}
#math-camp section.s2 .background-one {
    position: absolute;
    top: -208px;
    right: 25%;
    transform: rotate(-4deg);
    width: 30%;
}
#math-camp section.s2 .background-two{
	position: absolute;
    bottom: -171px;
    right: 50px;
    width: 40%;
    z-index: 2;
}
#math-camp section.s2 .outsanding-description{
	margin-bottom: 20px;
}
#math-camp section.s2 .outsanding-description .title{
	font-size: 36px;
	color: #fff;
	line-height: 42px;
	font-family: 'Space Grotesk', sans-serif;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
	padding-bottom: 10px;
}
#math-camp section.s2 .outsanding-description .text{
	font-size: 16px;
	line-height: 20px;
	font-weight: 400;
	font-family: 'Space Grotesk', sans-serif;
}
#math-camp section.s2 .outsanding-teachers{
	display: flex;
	flex-wrap: wrap;
	border: 11px solid #fff;
	margin-bottom: 20px;
	border-radius: 15px;
	align-items: center;
	padding: 10px;
}
#math-camp section.s2 .outsanding-teachers .outsanding-teachers-img {
    flex: 0 30%;
    padding-right: 15px;
}
#math-camp section.s2 .outsanding-teachers .outsanding-teachers-info{
	flex: 0 70%;
}
#math-camp section.s2 .outsanding-teachers .outsanding-teachers-info .name{
	font-family: 'Space Grotesk', sans-serif;
	color: #fff;
	font-size: 17px;
	line-height: 21px;
	font-weight: 700;
	padding-bottom: 15px;
}
#math-camp section.s2 .outsanding-teachers .outsanding-teachers-info .text{
	font-size: 13px;
	line-height: 18px;
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 400;
}
#math-camp section.s3{
	padding-top: 100px;
	padding-bottom: 100px;
}
#math-camp section.s3 .title{
	font-size: 64px;
	line-height: 75px;
	font-weight: 500;
	font-family: 'Space Grotesk', sans-serif;
	color: #5BB684;
	margin-bottom: 50px;
}
#math-camp section.s4{
	background-color: #5BB684;
	padding-top: 100px;
	padding-bottom: 100px;
	height: auto;
	position: relative;
}
#math-camp section.s4 .svg-top {
    position: absolute;
    top: -20px;
}
#math-camp section.s4 .svg-bottom {
    position: absolute;
    bottom: -20px;
}
#math-camp section.s4 .banner-title{
	font-size: 64px;
	line-height: 75px;
	font-weight: 700;
	color: #fff;
	font-family: 'Space Grotesk', sans-serif;
}
#math-camp section.s4 .activited-title-box{
	display: flex;
	flex-wrap: wrap;
	padding-top: 50px;
	border-bottom: 1px solid #fff;
	padding-bottom: 10px;
}
#math-camp section.s4 .activited-title-box .activited-title{
	flex: 0 33%;
}
#math-camp section.s4 .activited-title-box .activited-title .title{
	color: #fff;
	font-size: 36px;
	line-height: 42px;
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 500;
}
#math-camp section.s4 .activited-description {
    display: flex;
    flex-wrap: wrap;
    padding-top: 15px;
    padding-bottom: 15px;
}
.table>:not(:first-child){
	border-color: #fff;
    border-width: 1px !important;
}
#math-camp section.s4 .activited-description .description-title{
	flex: 0 33%;
}
#math-camp section.s4 .activited-description .description-title .title{
	font-size: 16px;
	line-height: 20px;
	font-weight: 400;
	font-family: 'Space Grotesk', sans-serif;
}
#math-camp section.s4 .s4-background {
    position: absolute;
    right: 0;
    z-index: 2;
    bottom: -81px;
    transform: rotate(180deg);
}
#math-camp section.s4 .s4-background img{
	width: 70%;
}
#math-camp section.s5{
	padding-top: 100px;
	padding-bottom: 1px;
}
#math-camp section.s5 .title{
	font-size: 64px;
	line-height: 57px;
	color: #364B99;
	font-weight: 500;
	font-family: 'Space Grotesk', sans-serif;
	margin-bottom: 72px;
}
#math-camp section.s5 .text{
	font-size: 18px;
	line-height: 28px;
	font-weight: 400;
	font-family: 'Space Grotesk', sans-serif;
	margin-bottom: 100px;
}
#math-camp section.s5 .button{
	width: 260px;
	height: 55px;
	border: 12px solid #E53323;
	color: #E53323;
	border-radius: 26px;
	padding: 15px;
	font-size: 18px;
	line-height: 22px;
	font-weight: 700;
	font-family: 'Space Grotesk', sans-serif;
}
#math-competition section.s1,
#online-tutoring section.s1,
#cybermath-books section.s1,
#why section.s1,
#application section.s1{
	padding-top: 100px;
	padding-bottom: 100px;
}
#math-competition section.s1 .title, #cybermath-books section.s1 .title, #why section.s1 .title{
    color: #364B99;
    font-size: 140px;
    line-height: 111px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    position: relative;
    z-index: 2;
}
#application section.s1 .title {
    font-size: 109px;
    line-height: 82px;
    position: relative;
    z-index: 2;
}

#online-tutoring section.s1 .title{
	font-size: 114px;
	line-height: 100px;
	color: #364B99;
	font-weight: 500;
	position: relative;
	z-index: 2;
}

#math-competition section.s1 .text,
#online-tutoring section.s1 .text,
#cybermath-books section.s1 .text,
#why section.s1 .text,
#application section.s1 .text{
	font-size: 18px;
	line-height: 28px;
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 400;
}
#math-competition section.s1 .row,
#online-tutoring section.s1 .banner-row,
#cybermath-books section.s1 .banner-row,
#why section.s1 .banner-row,
#application section.s1 .banner-row{
	align-items: flex-end;
}
#math-competition section.s1 .math-tournamet{
	display: flex;
	flex-wrap: wrap;
	margin-top: 50px;
	border: 11px solid #FF7952;
	border-radius: 14px;
	padding: 47px;

}
#math-competition section.s1 .math-tournamet .math-tournamet-img{
	flex: 0 30%;
}
#math-competition section.s1 .math-tournamet .math-tournamet-description{
	flex: 0 70%;
	padding-left: 93px;
}
#math-competition section.s1 .math-tournamet .math-tournamet-description .tournamet-title{
	color: #FF7952;
	font-size: 36px;
	line-height: 46px;
	font-weight: 700;
	font-family: 'Space Grotesk', sans-serif;
	padding-bottom: 40px;
}
#math-competition section.s1 .math-tournamet .math-tournamet-description .tournamet-text{
	font-size: 13px;
	line-height: 16px;
	font-weight: 400;
	font-family: 'Space Grotesk', sans-serif;
}
#math-competition section.s1 .solutions{
	padding-top: 153px;
}

#math-competition section.s1 .solutions .solutions-title{
	padding-bottom: 20px !important;
}

#math-competition section.s1 .solutions .solutions-text{
	font-family: 'Space Grotesk', sans-serif;
	padding-bottom:50px !important;
}
#math-competition section.s1 .solutions .solutions-title,
#math-competition section.s1 .statics .statics-title,
#math-competition section.s1 .sample .sample-title{
	font-size: 64px;
	line-height: 57px;
	font-weight: 500;
	font-family: 'Space Grotesk', sans-serif;
	padding-bottom: 50px;
	color: #364B99;
}
#math-competition section.s1 .solutions .solutions-box,
#math-competition section.s1 .statics .solutions-box,
#math-competition section.s1 .sample .solutions-box{
	border: 11px solid #5BB684;
	border-radius: 15px;
	padding: 30px;
	margin-bottom: 30px;
}
#math-competition section.s1 .statics .solutions-box{
	border-color: #FF7952;
}
#math-competition section.s1 .sample .solutions-box{
	border-color: #2C4A99;
}
#math-competition section.s1 .solutions .solutions-box .file-name,
#math-competition section.s1 .statics .solutions-box .file-name,
#math-competition section.s1 .sample .solutions-box .file-name{
	font-size: 24px;
	line-height: 31px;
	color: #000;
	margin-top: 22px;
}
#math-competition section.s1 .statics,
#math-competition section.s1 .sample{
	padding-top: 50px;
}
#math-competition section.s1 .file-size{
	padding-top: 30px;
}
#online-tutoring section.s1 .tutors-row{
	padding-top: 164px;
}
#online-tutoring section.s1 .h{
	font-size: 120px;
}
#online-tutoring section.s1 .tutors-row .tutors{
	display: flex;
	flex-wrap: wrap;
}
#online-tutoring section.s1 .tutors-row .tutors .tutors-column-1{
	flex: 0 70%;
	padding-right: 30px;
}
#online-tutoring section.s1 .tutors-row .tutors .tutors-column-2{
	flex: 0 30%;
}
#online-tutoring section.s1 .tutors-row .tutors-title{
	padding-bottom: 30px;
}
#online-tutoring section.s1 .tutors-row .tutors-box{
	display: flex;
	flex-wrap: wrap;
	border: 11px solid #5BB684;
	border-radius: 14px;
	align-items: center;
	padding: 20px;
	margin-bottom: 30px;
}
#online-tutoring section.s1 .tutors-row .tutors .tutors-column-2 .tutors-box .tutors-box-img{
	flex: 0 100%;
}
#online-tutoring section.s1 .tutors-row .tutors .tutors-column-2 .tutors-box .tutors-box-description{
	flex: 0 100%;
}
#online-tutoring section.s1 .tutors-row .tutors-box .tutors-box-img{
	flex: 0 30%;
}
#online-tutoring section.s1 .tutors-row .tutors-box .tutors-box-description{
	flex: 0 70%;
	padding-left: 15px;
}
#online-tutoring section.s1 .tutors-row .tutors-box .tutors-box-description .name{
	font-size: 22px;
	line-height: 28px;
	padding-bottom: 15px;
}
#online-tutoring section.s1 .tutors-row .tutors-box .tutors-box-description .text{
	font-size: 12px;
	line-height: 16px;
}
#online-tutoring section.s1 .tutors-row .visit-title{
	padding-bottom: 30px
}
#online-tutoring section.s2{
	padding-top: 100px;
	padding-bottom: 100px;
}
#online-tutoring section.s2 .form{
	padding-top: 100px;
}
#online-tutoring section.s2 .form .personel-info,
#application section.s1 .form .personel-info{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 34px;
	align-items: flex-end;
}
#online-tutoring section.s2 .form .personel-info .form-group,
#application section.s1 .form .personel-info .form-group{
	width: 48%;
}
#online-tutoring section.s2 .form .personel-info .form-group-first,
#application section.s1 .form .personel-info .form-group-first{
	margin-right: 20px;
}
#online-tutoring section.s2 .form .personel-info label,
#application section.s1 .form .personel-info label{
	padding-bottom: 18px;
}
#online-tutoring section.s2 .form .personel-info input,
#online-tutoring section.s2 .form .personel-info select,
#application section.s1 .form .personel-info input,
#application section.s1 .form .personel-info select{
	border-color: #364B99;
	height: 46px;
}
#application section.s1 .form .personel-info input[type="radio"]{
	width: 32px;
	height: 32px;
	flex-shrink: 0;
}
#online-tutoring section.s2 .form .personel-info input::placeholder,
#online-tutoring section.s2 .form .personel-info select,
#application section.s1 .form .personel-info input::placeholder,
#application section.s1 .form .personel-info select{
	font-size: 14px;
	line-height: 18px;
	font-weight: 400;
	font-family: 'Space Grotesk', sans-serif;
	color: #364B99;
}
#online-tutoring section.s2 .form .check-title{
	padding-bottom: 18px;
}
#online-tutoring section.s2 .form .form-check-group{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 34px;
}
#online-tutoring section.s2 .form .form-check-group .form-check{
	width: 48%;
}
#online-tutoring section.s2 .form .form-check-group .form-check input{
	width: 46px;
	height: 46px;
	border-color: #364B99;
	margin-top: 10px;
	flex-shrink: 0;
}
#online-tutoring section.s2 .form .form-check-group .form-check label{
	height: 56px;
	display: flex;
	align-items: center;
	padding-left: 15px;
}
#online-tutoring section.s2 .textarea-row{
	padding-top: 100px;
}
.textarea-row textarea{
	border-color: #364B99;
}
.textarea-row .info{
	font-size: 14px;
	line-height: 18px;
	padding-top: 39px;
}
.textarea-row .btn-submit{
	width: 205px;
	height: 46px;
	border: 6px solid #364B99;
	border-radius: 75px;
	margin-top: 100px;
}
.books-row{
	padding-top: 90px;
}
.books-row .col-lg-6{
	margin-bottom: 30px;
}
.books-box{
	display: flex;
	flex-wrap: wrap;
	border: 11px solid #FF7952;
	border-radius: 15px;
	padding: 39px;
	align-items: center;
	height: 100%;
}
.books-box .books-img{
	flex: 0 30%;
}
.books-box .books-img img{
	border-radius: 100%;
}
.books-box .books-description{
	flex: 0 70%;
	padding-left: 20px;
}
.books-box .books-description .title{
	font-size: 15px !important;
	line-height: 19px !important;
	padding-bottom: 15px;
	font-weight: 700;
	color: #FF7952;
}
.books-box .books-description .title2,
.books-box .books-description .text{
	font-size: 12px !important;
	line-height: 16px !important;
}
.books-box .books-description .btn {
    width: 291px;
    height: 46px;
    border: 6px solid #364B99;
    border-radius: 75px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}
#application section.s1 .form{
	padding-top: 100px;
}
#application section.s1 .form svg{
	padding-top: 79px;
	padding-bottom: 100px;
}
#application section.s1 .form #flexRadioDefault,
#application section.s1 .form #flexRadioDefault1,
#application section.s1 .form #flexRadioDefault3{
	width: 32px;
	height: 32px;
}
.wpcf7-list-item{
	margin-left: 0 !important;
}
.wpcf7-list-item label{
	display: flex;
	align-items: center;
}
.wpcf7-list-item label .wpcf7-list-item-label{
	padding-left: 10px;
}
.form-check{
	padding-left: 0;
}
.form-check .form-check-input {
    float: inherit;
	margin-left: 0;
	border: none;
	background-color:transparent;
}
#application .wpcf7-spinner {
	display: block;
    margin: 1rem auto;
}
#application section.s1 .form .radio-label{
	padding-bottom: 0;
	padding-top: 10px;
}
#application section.s1 .form .form-check-group{
	margin-bottom: 34px;
}
#application section.s1 .form .form-check-group .form-label{
	padding-bottom: 35px;
}
#application section.s1 .form .form-check-group input{
	width: 46px;
	height: 46px;
	margin-top: 0;
	flex-shrink: 0;
}
#application section.s1 .form .form-check-group label.form-check-label{
	display: flex;
	height: 46px;
	align-items: center;
	padding-left: 15px;
}
#application section.s1 .textarea-row label{
	padding-bottom: 18px;
}
#application section.s1 .application-check .personel-info{
	margin-bottom: 18px;
}
#application section.s1 .application-button .btn {
    width: 260px;
    height: 55px;
    border: 12px solid #E53323;
    border-radius: 26px;
    margin-top: 100px;
    color: #E53323;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
/* -------------------------------------------------------------------------- */
/*	6. Plugins
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*	7. Page Templates
/* -------------------------------------------------------------------------- */
article table  {
	border-collapse:collapse;
	border-spacing:0;
}
article table td{
	border-color:black;
	border-style:solid;
	border-width:1px;
	padding:10px 5px;
	word-break:normal;
}
article table th{
	border-color:black;
	border-style:solid;
	border-width:1px;
	font-weight:normal;
	padding:10px 5px;
	word-break:normal;
}

/* -------------------------------------------------------------------------- */
/*	7a. Template: Front Page
/* -------------------------------------------------------------------------- */



/* -------------------------------------------------------------------------- */
/*	7z. Template: Full Width
/* -------------------------------------------------------------------------- */

body.template-full-width .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide),
body.template-full-width [class*="__inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) {
	max-width: 120rem;
}

body.template-full-width .entry-content .alignleft,
body.template-full-width .entry-content .alignright {
	position: static;
}

body.template-full-width .entry-content .alignleft,
body.template-full-width [class*="wp-block"].alignwide [class*="__inner-container"] > .alignleft,
body.template-full-width [class*="wp-block"].alignwide [class*="__inner-container"] > p .alignleft,
body.template-full-width [class*="wp-block"].alignwide [class*="__inner-container"] > .wp-block-image .alignleft {

	/*rtl:ignore*/
	margin-left: 0;
	position: static;
}

body.template-full-width .entry-content > .alignleft,
body.template-full-width [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .alignleft,
body.template-full-width [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > p .alignleft,
body.template-full-width [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignleft {

	/*rtl:ignore*/
	margin-left: 2rem;
	position: static;
}

body.template-full-width .entry-content .alignright,
body.template-full-width [class*="wp-block"].alignwide [class*="__inner-container"] > .alignright,
body.template-full-width [class*="wp-block"].alignwide [class*="__inner-container"] > p .alignright,
body.template-full-width [class*="wp-block"].alignwide [class*="__inner-container"] > .wp-block-image .alignright {

	/*rtl:ignore*/
	margin-right: 0;
	position: static;
}

body.template-full-width .entry-content > .alignright,
body.template-full-width [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .alignright,
body.template-full-width [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > p .alignright,
body.template-full-width [class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignright {

	/*rtl:ignore*/
	margin-right: 2rem;
	position: static;
}

/* -------------------------------------------------------------------------- */

/*	8. Post: Archive
/* -------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */

/*	9. Post: Single
/* -------------------------------------------------------------------------- */
body.single-post .wp-block-column p {
	margin: 0 1em 1em 1em;
}
.tag-link {
	color: white;
}
.tag-link::before {
	content: '';
    background-image: url(../images/tag.svg);
    width: 1em;
    height: 1em;
    position: absolute;
    filter: invert(1);
    background-repeat: no-repeat;
    top: 0.2em;
    left: -1.5em;
}

/* POST META */
.post-meta-single-top .post-meta {
	justify-content: center;
}

.post-meta-wrapper {
	margin-top: 2rem;
	margin-right: auto;
	margin-left: auto;
	max-width: 58rem;
	width: 100%;
}

.post-meta {
	color: #6d6d6d;
	display: flex;
	flex-wrap: wrap;
	font-size: 1.5rem;
	font-weight: 500;
	list-style: none;
	margin: -1rem 0 0 -2rem;
}

.post-meta li {
	flex-shrink: 0;
	letter-spacing: -0.016875em;
	margin: 1rem 0 0 2rem;
	max-width: calc(100% - 2rem);
}

.post-meta a {
	color: inherit;
	text-decoration: none;
}

.post-meta a:focus,
.post-meta a:hover {
	text-decoration: underline;
}

.post-meta .meta-wrapper {
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
}

.post-meta .meta-icon {
	flex-shrink: 0;
	margin-right: 1rem;
}

.sticky .post-sticky {
	color: inherit;
}

.post-meta .post-author .meta-icon svg {
	width: 1.6rem;
	height: 1.8rem;
}

.post-meta .post-categories .meta-icon svg {
	width: 1.8rem;
	height: 1.7rem;
}

.post-meta .post-comment-link .meta-icon svg {
	width: 1.8rem;
	height: 1.8rem;
}

.post-meta .post-date .meta-icon svg {
	width: 1.7rem;
	height: 1.8rem;
}

.post-meta .post-edit .meta-icon svg {
	width: 1.8rem;
	height: 1.8rem;
}

.post-meta .post-sticky .meta-icon svg {
	width: 1.5rem;
	height: 1.8rem;
}

.post-meta .post-tags .meta-icon svg {
	width: 1.8rem;
	height: 1.8rem;
}

.post-meta svg * {
	fill: currentColor;
}


/* Featured Media ---------------------------- */

.featured-media {
	margin-top: 5rem;
	position: relative;
}

.singular .featured-media {
	margin-top: 0;
}

.singular .featured-media-inner {
	position: relative;
	left: calc(50% - 50vw);
	width: 100vw;
}

.singular .featured-media::before {
	background: #fff;
	content: "";
	display: block;
	position: absolute;
	bottom: 50%;
	left: 0;
	right: 0;
	top: 0;
}

.featured-media img {
	margin: 0 auto;
}

.featured-media figcaption {
	margin: 1.5rem auto 0 auto;
	text-align: center;
	width: calc(100% - 5rem);
}

.post-inner {
	padding-top: 5rem;
}

.reduced-spacing.missing-post-thumbnail .post-inner {
	padding-top: 0;
}


/* Post Footer ------------------------------- */

/* POST NAV LINKS */

.post-nav-links {
	border-radius: 0.4rem;
	display: flex;
	font-size: 0.9em;
	font-weight: 600;
	line-height: 1;
	margin: 3em auto 0 auto;
	padding: 0;
	width: calc(100% - 4rem);
	max-width: 58rem;
}

.post-nav-links > span.label {
	padding: 1em 0;
}

.post-nav-links > * {
	padding: 1em 0.75em;
}

/* POST META BOTTOM */

.post-meta-wrapper.post-meta-single-bottom {
	margin-top: 3rem;
}


/* Author Bio -------------------------------- */

.author-bio {
	margin-top: 4rem;
	margin-right: auto;
	margin-left: auto;
	max-width: 58rem;
	width: 100%;
}

.hide-avatars .author-bio {
	padding-left: 0;
}

.author-bio .author-title-wrapper {
	align-items: center;
	display: flex;
	margin: 0 0 1rem 0;
}

.author-bio .avatar {
	border-radius: 50%;
	margin-right: 1.5rem;
	height: 5rem;
	width: 5rem;
}

.hide-avatars img.avatar {
	display: none;
}

.author-bio p:last-child {
	margin-bottom: 0;
}

.author-bio .author-title {
	margin: 0;
}

.author-bio .author-link {
	display: block;
	font-size: 1.6rem;
	font-weight: 600;
	margin-top: 1em;
	text-decoration: none;
}

.author-bio .author-link:focus,
.author-bio .author-link:hover {
	text-decoration: underline;
}


/* Single Pagination ------------------------- */

.pagination-single {
	font-size: 1.8rem;
	margin-top: 5rem;
}

.pagination-single-inner {
	display: flex;
	flex-direction: column;
}

.pagination-single hr:first-child {
	margin: 0 0 2.8rem 0;
}

.pagination-single hr:last-child {
	margin: 2.8rem 0 0.8rem 0;
}

.pagination-single a {
	align-items: baseline;
	display: flex;
	font-weight: 600;
	letter-spacing: -0.0275em;
	text-decoration: none;
	flex: 1;
}

.pagination-single a + a {
	margin-top: 1rem;
}

.pagination-single a .arrow {
	margin-right: 1rem;
}

.pagination-single a:focus .title,
.pagination-single a:hover .title {
	text-decoration: underline;
}


/* -------------------------------------------------------------------------- */

/*	10. Blocks
/* -------------------------------------------------------------------------- */

/* Block: Base Margins ----------------------- */

*[class*="_inner-container"] > *:first-child {
	margin-top: 0;
}

*[class*="_inner-container"] > *:last-child {
	margin-bottom: 0;
}

.wp-block-archives:not(.alignwide):not(.alignfull),
.wp-block-categories:not(.alignwide):not(.alignfull),
.wp-block-code,
.wp-block-columns:not(.alignwide):not(.alignfull),
.wp-block-cover:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter),
.wp-block-embed:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter),
.wp-block-gallery:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter),
.wp-block-group:not(.has-background):not(.alignwide):not(.alignfull),
.wp-block-image:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter),
.wp-block-latest-comments:not(.aligncenter):not(.alignleft):not(.alignright),
.wp-block-latest-posts:not(.aligncenter):not(.alignleft):not(.alignright),
.wp-block-media-text:not(.alignwide):not(.alignfull),
.wp-block-preformatted,
.wp-block-pullquote:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright),
.wp-block-quote,
.wp-block-quote.is-large,
.wp-block-quote.is-style-large,
.wp-block-verse,
.wp-block-video:not(.alignwide):not(.alignfull) {
	margin-bottom: 3rem;
	margin-top: 3rem;
}


/* Block: Shared Nesting Alignment Resets ---- */

[class*="__inner-container"] .wp-block-group:not(.alignfull):not(.alignwide):not(.alignleft):not(.alignright),
[class*="__inner-container"] .wp-block-cover:not(.alignfull):not(.alignwide):not(.alignleft):not(.alignright) {
	margin-left: auto;
	margin-right: auto;
	max-width: 58rem;
}


/* Block: Shared Widget Styles --------------- */

.wp-block-archives,
.wp-block-categories,
.wp-block-latest-posts,
.wp-block-latest-comments {
	list-style: none;
	margin-left: 0;
}

.wp-block-archives ul,
.wp-block-categories ul,
.wp-block-latest-posts ul,
.wp-block-latest-comments ul {
	list-style: none;
}

.entry-content .wp-block-archives > li,
.entry-content .wp-block-categories > li,
.entry-content .wp-block-latest-posts > li,
.entry-content .wp-block-latest-comment > li {
	margin-left: 0;
}

.entry-content .wp-block-archives > li:last-child,
.entry-content .wp-block-categories > li:last-child,
.entry-content .wp-block-latest-posts > li:last-child,
.entry-content .wp-block-latest-comment > li:last-child {
	margin-bottom: 0;
}

.entry-content .wp-block-archives *,
.entry-content .wp-block-categories *,
.entry-content .wp-block-latest-posts *,
.entry-content .wp-block-latest-comments * {
	font-family: inherit;
}

.entry-content .wp-block-archives li,
.entry-content .wp-block-categories li,
.entry-content .wp-block-latest-posts li {
	color: #6d6d6d;
}

.wp-block-archives a,
.wp-block-categories a,
.wp-block-latest-posts a,
.wp-block-latest-comments a {
	font-weight: 700;
	text-decoration: none;
}

.wp-block-archives a:hover,
.wp-block-categories a:hover,
.wp-block-latest-posts a:hover,
.wp-block-latest-comments a:hover,
.wp-block-archives a:focus,
.wp-block-categories a:focus,
.wp-block-latest-posts a:focus,
.wp-block-latest-comments a:focus {
	text-decoration: underline;
}

.wp-block-latest-posts a,
.wp-block-latest-comments__comment-meta {
	font-weight: 700;
	letter-spacing: -0.025em;
	line-height: 1.25;
}

.wp-block-latest-comments__comment-date,
.wp-block-latest-posts__post-date {
	color: #6d6d6d;
	font-size: 0.7em;
	font-weight: 600;
	letter-spacing: normal;
	margin-top: 0.15em;
}


/* Block: Shared Media Styles ---------------- */

.wp-block-embed figcaption,
.wp-block-image figcaption {
	color: #6d6d6d;
	font-size: 1.4rem;
	margin-bottom: 0;
	margin-top: 1.5rem;
}

/* Block: Audio ------------------------------ */

.wp-block-audio audio {
	width: 100%;
}

/* Block: Button ----------------------------- */

.wp-block-button {
	margin: 3rem 0;
}

.wp-block-button.is-style-outline {
	color: #cd2653;
}

.is-style-outline .wp-block-button__link:not(.has-text-color) {
	color: inherit;
}

.is-style-outline .wp-block-button__link {
	padding: calc(1.1em - 0.2rem) calc(1.44em - 0.2rem);
}

/* Block: Columns ---------------------------- */

.wp-block-columns.alignfull,
.alignfull:not(.has-background) .wp-block-columns {
	padding-left: 2rem;
	padding-right: 2rem;
}

.wp-block-column {
	margin-bottom: 1em;
}

.wp-block-column > *:first-child {
	margin-top: 0;
}

.wp-block-column > *:last-child {
	margin-bottom: 0;
}

/* Block: Cover ------------------------------ */

.wp-block-cover-image .wp-block-cover__inner-container,
.wp-block-cover .wp-block-cover__inner-container {
	width: calc(100% - 4rem);
	padding: 2rem 0;
}

.wp-block-cover-image .wp-block-cover-image-text,
.wp-block-cover-image .wp-block-cover-text,
.wp-block-cover-image h2,
.wp-block-cover .wp-block-cover-image-text,
.wp-block-cover .wp-block-cover-text,
.wp-block-cover h2 {
	max-width: 100%;
	padding: 0;
}

.wp-block-cover-image h2,
.wp-block-cover h2 {
	font-size: 3.2rem;
}

/* Block: Embed ------------------------------ */

/* Block: File ------------------------------- */

.wp-block-file {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.wp-block-file a:not(.wp-block-file__button) {
	font-weight: 700;
	text-decoration: none;
}

.wp-block-file a:not(.wp-block-file__button):not(:last-child) {
	margin-right: 1rem;
}

.wp-block-file a:not(.wp-block-file__button):focus,
.wp-block-file a:not(.wp-block-file__button):hover {
	text-decoration: underline;
}

.wp-block-file .wp-block-file__button {
	font-size: 1.5rem;
	padding: 1em 1.25em;
}

.wp-block-file a.wp-block-file__button:visited {
	opacity: 1;
}

.wp-block-file a.wp-block-file__button:active,
.wp-block-file a.wp-block-file__button:focus,
.wp-block-file a.wp-block-file__button:hover {
	opacity: 1;
	text-decoration: underline;
}


/* Block: Gallery ---------------------------- */

.wp-block-gallery ul {
	list-style: none;
	margin: 0 0 -1.6rem 0;
}

figure.wp-block-gallery.alignnone,
figure.wp-block-gallery.aligncenter {
	margin-bottom: 3rem;
	margin-top: 3rem;
}

figure.wp-block-gallery.alignleft {
	margin: 0.3rem 2rem 2rem 0;
}

figure.wp-block-gallery.alignright {
	margin: 0.3rem 0 2rem 2rem;
}

figure.wp-block-gallery.alignwide {
	margin-bottom: 4rem;
	margin-top: 4rem;
}

figure.wp-block-gallery.alignfull {
	margin-bottom: 5rem;
	margin-top: 5rem;
}

/* Block: Group ------------------------------ */

.wp-block-group.has-background {
	padding: 2rem;
	margin-bottom: 0;
	margin-top: 0;
}

.wp-block-group__inner-container {
	margin: 0 auto;
}

.wp-block-group__inner-container,
.entry-content .wp-block-group p {
	max-width: 100%;
}

.alignfull:not(.has-background) > .wp-block-group__inner-container > p:not(.has-background-color) {
	padding-left: 2rem;
	padding-right: 2rem;
}

/* Block: Image ------------------------------ */

/* Block: Media And Text --------------------- */

.wp-block-media-text .wp-block-media-text__content {
	padding: 3rem 2rem;
}

.wp-block-media-text .wp-block-media-text__content p {
	max-width: none;
}

.wp-block-media-text__content > *:first-child {
	margin-top: 0;
}

.wp-block-media-text__content > *:last-child {
	margin-bottom: 0;
}

/* Block: Pullquote -------------------------- */

/* STYLE: DEFAULT */

.wp-block-pullquote {
	padding: 0;
	position: relative;
}

.wp-block-pullquote.alignleft,
.wp-block-pullquote.alignright {
	max-width: calc(100% - 4rem);
}

.wp-block-pullquote::before {
	background: #fff;
	border-radius: 50%;
	color: #cd2653;
	content: "”";
	display: block;
	font-size: 6.2rem;
	font-weight: 500;
	line-height: 1.2;
	margin: 0 auto 1.5rem auto;
	text-align: center;
	height: 4.4rem;
	width: 4.4rem;
}

.reduced-spacing .wp-block-pullquote::before {
	border: 0.1rem solid currentColor;
	font-size: 5.9rem;
}

.wp-block-pullquote blockquote {
	border: none;
	margin: 0;
	padding: 0;
}

.wp-block-pullquote blockquote p {
	font-family: inherit;
	font-size: 2.8rem;
	font-weight: 700;
	line-height: 1.178571429;
	letter-spacing: -0.041785714em;
	max-width: 100%;
}

.wp-block-pullquote p:last-of-type {
	margin-bottom: 0;
}

.wp-block-pullquote cite {
	color: #6d6d6d;
	font-size: 1.6rem;
	font-weight: 500;
	margin-top: 1.2rem;
}

.wp-block-pullquote.alignleft p,
.wp-block-pullquote.alignright p {
	font-size: 2.8rem;
}

.wp-block-pullquote.alignleft {
	text-align: left;
}

.wp-block-pullquote.alignright {
	text-align: right;
}

.wp-block-pullquote.alignleft::before {
	margin-left: 0;
}

.wp-block-pullquote.alignright::before {
	margin-right: 0;
}

/* STYLE: SOLID BACKGROUND COLOR */

.wp-block-pullquote.is-style-solid-color {
	padding: 3rem 2rem;
}

.wp-block-pullquote.is-style-solid-color::before {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
}

.wp-block-pullquote.is-style-solid-color.alignleft::before,
.wp-block-pullquote.is-style-solid-color.alignright::before {
	transform: translateY(-50%);
}

.wp-block-pullquote.is-style-solid-color.alignleft::before {
	left: 2rem;
}

.wp-block-pullquote.is-style-solid-color.alignright::before {
	left: auto;
	right: 2rem;
}

.wp-block-pullquote.is-style-solid-color blockquote {
	max-width: 100%;
	text-align: inherit;
}

.wp-block-pullquote.is-style-solid-color cite {
	color: inherit;
}

/* Block: Separator  ------------------------- */

hr.wp-block-separator {
	margin: 3rem 0;
}

/* STYLE: WIDE */

.wp-block-separator.is-style-wide {
	max-width: calc(100vw - 4rem);
	position: relative;
	width: 100%;
}

/* STYLE: DOTS */

.wp-block-separator.is-style-dots::before {
	background: none;
	color: inherit;
	font-size: 3.2rem;
	font-weight: 700;
	height: auto;
	letter-spacing: 1em;
	padding-left: 1em;
	position: static;
	transform: none;
	width: auto;
}

.wp-block-separator.is-style-dots::after {
	content: none;
}


/* Block: Search ----------------------------- */

.wp-block-search .wp-block-search__input {
	width: auto;
}

/* Block: Table ------------------------------ */

.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
	background: #dcd7ca;
}

figure.wp-block-table.is-style-stripes {
	border-bottom: none;
}

.wp-block-table.is-style-stripes table {
	border-collapse: inherit;
}

/* Block: Quote ------------------------------ */

.wp-block-quote p,
.wp-block-quote cite {
	text-align: inherit;
}

.wp-block-quote[style="text-align:center"] {
	border-width: 0;
	padding: 0;
}

.wp-block-quote[style="text-align:right"] {

	/*rtl:begin:ignore*/
	border-width: 0 0.2rem 0 0;
	padding: 0 2rem 0 0;

	/*rtl:end:ignore*/
}

/* STYLE: LARGE */

.wp-block-quote.is-large,
.wp-block-quote.is-style-large {
	border: none;
	padding: 0;
	margin-left: auto;
	margin-right: auto;
}

.wp-block-quote.is-large p,
.wp-block-quote.is-style-large p {
	font-family: inherit;
	font-size: 2.4rem;
	font-style: normal;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.285;
}

.wp-block-quote.is-large cite,
.wp-block-quote.is-large footer,
.wp-block-quote.is-style-large cite,
.wp-block-quote.is-style-large footer {
	font-size: 1.6rem;
	text-align: inherit;
}

/* Block: Widget Latest Comments ------------- */

.entry-content .wp-block-latest-comments li {
	margin: 2rem 0;
}

.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt,
.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta {
	margin-left: 5.5rem;
}

.entry-content .wp-block-latest-comments a {
	text-decoration: none;
}

.entry-content .wp-block-latest-comments a:hover,
.entry-content .wp-block-latest-comments a:focus {
	text-decoration: underline;
}

.wp-block-latest-comments__comment {
	font-size: inherit;
}

.wp-block-latest-comments__comment-date {
	margin-top: 0.4em;
}

.wp-block-latest-comments__comment-excerpt p {
	font-size: 0.7em;
	margin: 0.9rem 0 2rem 0;
}

/* Block: Widget Latest Posts ---------------- */

.wp-block-latest-posts.is-grid li {
	border-top: 0.2rem solid #dcd7ca;
	margin-top: 2rem;
	padding-top: 1rem;
}

.wp-block-latest-posts.has-dates {
	list-style: none;
}

.wp-block-latest-posts.has-dates:not(.is-grid) li {
	margin-top: 1.5rem;
}

.wp-block-latest-posts.has-dates:not(.is-grid) li:first-child {
	margin-top: 0;
}

/* Block: Post Template ---------------- */

.wp-block-post-template,
.wp-block-post-template > li {
	margin-left: 0;
	margin-right: 0;
}


/* -------------------------------------------------------------------------- */

/*	11. Entry Content
/* -------------------------------------------------------------------------- */


/* Alignment Classes ------------------------- */

img.alignright {float:right; margin:0 0 1em 1em}
img.alignleft {float:left; margin:0 1em 1em 0}
img.aligncenter {display: block; margin-left: auto; margin-right: auto}
a img.alignright {float:right; margin:0 0 1em 1em}
a img.alignleft {float:left; margin:0 1em 1em 0}
a img.aligncenter {display: block; margin-left: auto; margin-right: auto}

.entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) {
	max-width: 58rem;
	width: calc(100% - 4rem);
}

[class*="__inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) {
	max-width: 58rem;
	width: 100%;
}

.alignnone,
.aligncenter,
.alignleft,
.alignright,
.alignwide {
	margin-top: 4rem;
	margin-right: auto;
	margin-bottom: 4rem;
	margin-left: auto;
}

[class*="__inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright) {
	margin-left: auto;
	margin-right: auto;
}

/* Full */

.alignfull {
	margin-top: 5rem;
	margin-right: auto;
	margin-bottom: 5rem;
	margin-left: auto;
	max-width: 100vw;
	position: relative;
	width: 100%;
}

[class*="__inner-container"] > .alignfull {
	max-width: 100%;
}

/* Wide */

.alignwide {
	max-width: 120rem;
	position: relative;
	width: calc(100% - 4rem);
}

[class*="__inner-container"] > .alignwide {
	width: 100%;
}

/* Center */

.aligncenter,
.aligncenter img {
	margin-left: auto;
	margin-right: auto;
}

/* Left and right */

.alignleft,
.alignright {
	max-width: 50%;
}

.alignleft {

	/*rtl:ignore*/
	float: left;
	margin: 0.3rem 2rem 2rem 2rem;
}

.alignright {

	/*rtl:ignore*/
	float: right;
	margin: 0.3rem 2rem 2rem 2rem;
}

[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .alignleft,
[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > p .alignleft,
[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignleft {

	/*rtl:ignore*/
	margin-left: 2rem;
}

[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .alignright,
[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > p .alignright,
[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignright {

	/*rtl:ignore*/
	margin-right: 2rem;
}

/* Entry Media ------------------------------- */

.alignfull > figcaption,
.alignfull > .wp-caption-text {
	margin-left: auto;
	margin-right: auto;
	max-width: 58rem;
	width: calc(100% - 4rem);
}


/* -------------------------------------------------------------------------- */

/*	12. Comments
/* -------------------------------------------------------------------------- */


/* Comment Headers ----------------------------- */

.comments-wrapper {
	margin-top: 5rem;
}

.comment-reply-title {
	margin: 0 0 4rem 0;
	text-align: center;
}


/* Comment Item ----------------------------- */

/* COMMENT HEADER */

.comments .comment,
.comments .pingback,
.comments .trackback,
.comments .review {
	padding-top: 3.5rem;
}

div.comment:first-of-type {
	margin-top: 3.5rem;
	padding-top: 0;
}

.comments .comments-header + div {
	margin-top: 0;
	padding-top: 0;
}

.comment-body {
	position: relative;
}

.comment .comment {
	padding-left: 5%;
}

.comment-meta {
	line-height: 1.1;
	margin-bottom: 1.5rem;
	min-height: 5rem;
	padding-left: 5rem;
	position: relative;
}

.hide-avatars .comment-meta {
	min-height: 0;
	padding-left: 0;
}

.comment-meta a {
	color: inherit;
}

.comment-author {
	font-size: 1.8rem;
	font-weight: 700;
	letter-spacing: -0.027777778em;
}

.comment-author a {
	text-decoration: underline;
}

.comment-author a:hover,
.comment-author a:focus {
	text-decoration: none;
}

.comment-meta .avatar {
	height: 4rem;
	position: absolute;
	left: 0;
	top: 0;
	width: 4rem;
}

.comment-author .url {
	text-decoration: underline;
}

.comment-metadata {
	color: #6d6d6d;
	font-size: 1.4rem;
	font-weight: 500;
	margin-top: 0.6rem;
}

.comment-metadata a {
	text-decoration: none;
}

.comment-metadata a:focus,
.comment-metadata a:hover {
	text-decoration: underline;
}


/* COMMENT CONTENT */

.comment-content.entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) {
	width: 100%;
}

.comment-content.entry-content .alignleft {

	/*rtl:ignore*/
	margin-left: 0;
}

.comment-content.entry-content .alignright {

	/*rtl:ignore*/
	margin-right: 0;
}

/* COMMENT FOOTER */

.comment-footer-meta {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	font-size: 1.2rem;
	font-weight: 600;
	justify-content: flex-start;
	letter-spacing: 0.030833333em;
	line-height: 1;
	margin: 1.5rem 0 -1rem -1.5rem;
	text-transform: uppercase;
}

.comment-footer-meta > * {
	margin: 0 0 1rem 1.5rem;
}

.comment-reply-link {
	background-color: #cd2653;
	color: #fff;
	display: block;
	padding: 0.7rem;
}

.bypostauthor .comment-footer-meta .by-post-author {
	display: block;
}

.comment-footer-meta a {
	text-decoration: none;
}

.comment-footer-meta a:focus,
.comment-footer-meta a:hover {
	text-decoration: underline;
}


/* Pingbacks & Trackbacks ------------------------- */

.pingback .comment-meta,
.trackback .comment-meta {
	padding-left: 0;
}


/* Comments Pagination ---------------------------- */

.comments-pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 6rem;
	text-align: center;
}

.comments-pagination.only-next {
	justify-content: flex-end;
}

.comments-pagination .page-numbers {
	display: none;
	text-decoration: none;
}

.comments-pagination .page-numbers:focus,
.comments-pagination .page-numbers:hover {
	text-decoration: underline;
}

.comments-pagination .prev,
.comments-pagination .next {
	display: block;
}

.comments-pagination .prev {
	left: 0;
}

.comments-pagination .next {
	right: 0;
	text-align: right;
}


/* Comment Respond ---------------------------- */

.comment-respond::after {
	clear: both;
	content: "";
	display: block;
}

.comment-respond .comment-notes,
.comment-respond .logged-in-as {
	color: #6d6d6d;
	font-size: 1.6rem;
	line-height: 1.4;
	margin: -3rem 0 4rem 0;
	text-align: center;
}

.comment-respond .comment-notes a,
.comment-respond .logged-in-as a {
	color: inherit;
	text-decoration: none;
}

.comment-respond .comment-notes a:focus,
.comment-respond .comment-notes a:hover,
.comment-respond .logged-in-as a:focus,
.comment-respond .logged-in-as a:hover {
	text-decoration: underline;
}

.comment-respond p {
	line-height: 1.1;
	margin-bottom: 2rem;
	margin-left: auto;
	margin-right: auto;
}

.comment-respond p:not(.comment-notes) {
	max-width: 58rem;
}

.comment-form-cookies-consent {
	align-items: baseline;
	display: flex;
}

.comment-respond > p:last-of-type {
	margin-bottom: 0;
}

.comment-respond label {
	display: block;
}

.comment-respond input[type="checkbox"] + label {
	font-size: 1.5rem;
	line-height: 1.25;
}

.comment-respond input[type="text"],
.comment-respond input[type="email"],
.comment-respond textarea {
	margin-bottom: 0;
}

.comment-respond textarea {
	height: 15rem;
}

.comment-respond #submit {
	display: block;
}

.comment-respond .comments-closed {
	text-align: center;
}


/* Reply Respond ---------------------------- */

.comments .comment-respond {
	padding: 3rem 0 0;
}

.comments .comment-respond .comment-reply-title,
.comments .comment-respond .comment-notes,
.comments .comment-respond .logged-in-as {
	text-align: left;
}

.comment-reply-title small {
	display: block;
	font-size: 1.6rem;
	font-weight: 600;
	letter-spacing: -0.0277em;
	margin: 0.5rem 0 0 0;
	white-space: nowrap;
}

.comment-reply-title small a {
	text-decoration: none;
}

.comment-reply-title small a:focus,
.comment-reply-title small a:hover {
	text-decoration: underline;
}


/* -------------------------------------------------------------------------- */

/*	13. Site Pagination
/* -------------------------------------------------------------------------- */


.pagination .nav-links {
	align-items: baseline;
	display: flex;
	flex-wrap: wrap;
	font-size: 1.8rem;
	font-weight: 600;
	margin: -1.5rem 0 0 -2.5rem;
	width: calc(100% + 2.5rem);
}

.pagination-separator {
	margin: 5rem 0;
}

.nav-links > * {
	margin: 1.5rem 0 0 2.5rem;
}

.nav-links .placeholder {
	display: none;
	visibility: hidden;
}

.pagination a {
	text-decoration: none;
}

.pagination a:focus,
.pagination a:hover {
	text-decoration: underline;
}

.pagination .dots {
	transform: translateY(-0.3em);
	color: #6d6d6d;
}

.nav-short {
	display: none;
}

/* -------------------------------------------------------------------------- */

/*	14. Error 404
/* -------------------------------------------------------------------------- */


.page-404 main {
	padding-top: 4rem;
}

.page-404 .search-form {
	justify-content: center;
	margin-top: 3rem;
}


/* -------------------------------------------------------------------------- */

/*	15.	Widgets
/* -------------------------------------------------------------------------- */


/* Widget Base ------------------------------- */

.widget {
	margin-top: 3rem;
}

.widget:first-child {
	margin-top: 0;
}

.widget-content > div > *:first-child {
	margin-top: 0;
}

.widget-content > div > *:last-child {
	margin-bottom: 0;
}

.widget .widget-title {
	margin: 0 0 2rem;
}

.widget li {
	margin: 2rem 0 0 0;
}

.widget li:first-child,
.widget li > ul,
.widget li > ol {
	margin-top: 0;
}

.widget table,
.widget table * {
	border-color: #dedfdf;
}

.widget table caption {
	background-color: #dedfdf;
}

.widget .post-date,
.widget .rss-date {
	color: #6d6d6d;
	display: block;
	font-size: 0.85em;
	font-weight: 500;
	margin-top: 0.2rem;
}

.widget select {
	max-width: 100%;
}

/* Font Families ----------------------------- */
.widget_text p,
.widget_text ol,
.widget_text ul,
.widget_text dl,
.widget_text dt,
.widget-content .rssSummary {
	font-family: NonBreakingSpaceOverride, Garamond, "Times New Roman", serif;
	letter-spacing: normal;
}

.widget-content cite,
.widget-content figcaption,
.widget-content .wp-caption-text {
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
}

@supports ( font-variation-settings: normal ) {

	.widget-content cite,
	.widget-content figcaption,
	.widget-content .wp-caption-text {
		font-family: "Inter var", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
	}
}

/* Base List Widget -------------------------- */

.widget_archive ul,
.widget_categories ul,
.widget_pages ul,
.widget_meta ul,
.widget_nav_menu ul,
.widget_recent_comments ul,
.widget_recent_entries ul,
.widget_rss ul {
	list-style: none;
	margin: 0;
}

.widget_archive li,
.widget_categories li,
.widget_pages li,
.widget_meta li,
.widget_nav_menu li {
	color: #6d6d6d;
	margin: 0.3rem 0;
}

.widget_archive li li,
.widget_categories li li,
.widget_pages li li,
.widget_meta li li,
.widget_nav_menu li li {
	margin-left: 2rem;
}

.widget_archive a,
.widget_categories a,
.widget_pages a,
.widget_meta a,
.widget_nav_menu a {
	text-decoration: none;
}

.widget_archive a:focus,
.widget_archive a:hover,
.widget_categories a:focus,
.widget_categories a:hover,
.widget_pages a:focus,
.widget_pages a:hover,
.widget_meta a:focus,
.widget_meta a:hover,
.widget_nav_menu a:focus,
.widget_nav_menu a:hover {
	text-decoration: underline;
}

/* Widget: Calendar -------------------------- */

.calendar_wrap {
	font-size: 2.4rem;
}

.calendar_wrap th,
.calendar_wrap td,
.wp-calendar-nav span {
	display: table-cell;
	font-size: 1em;
	font-weight: 500;
	line-height: 1;
	padding: 2.5% 2.5% 1.75% 2.5%;
	text-align: center;
}

.wp-calendar-table {
	margin-bottom: 0;
}

.wp-calendar-nav {
	display: table;
	width: 100%;
	font-size: 1.8rem;
}

.calendar_wrap tfoot td {
	border-bottom: none;
}

.calendar_wrap tfoot a,
.calendar_wrap .wp-calendar-nav a {
	text-decoration: none;
}

.calendar_wrap tfoot #prev,
.calendar_wrap .wp-calendar-nav-prev {
	text-align: left;
}

.calendar_wrap tfoot #next,
.calendar_wrap .wp-calendar-nav-next {
	text-align: right;
}

/* Widget: Image ----------------------------- */

/* Widget: Gallery --------------------------- */

.widget_media_gallery .gallery {
	margin: 0 -0.4em -0.8em -0.4em;
	width: calc(100% + 0.8em);
}

.widget_media_gallery .gallery-item {
	margin: 0 0 0.8em 0;
	padding: 0 0.4em;
}

/* Widget: Nav Menu -------------------------- */

.widget_nav_menu .widget-content > div > ul {
	margin-left: 0;
}

/* Widget: Recent Comments ------------------- */

.widget_recent_comments li {
	font-weight: 700;
}

.widget_recent_comments a {
	text-decoration: none;
}

.widget_recent_comments a:focus,
.widget_recent_comments a:hover {
	text-decoration: underline;
}

/* Widget: Recent Entries -------------------- */

.widget_recent_entries a {
	font-weight: 700;
	text-decoration: none;
}

.widget_recent_entries a:focus,
.widget_recent_entries a:hover {
	text-decoration: underline;
}

/* Widget: RSS ------------------------------- */

.widget_rss .widget-title a.rsswidget:first-of-type {
	display: none;
}

.widget_rss .rsswidget {
	font-weight: 700;
}

.widget_rss a {
	text-decoration: none;
}

.widget_rss a:focus,
.widget_rss a:hover {
	text-decoration: underline;
}

.widget_rss .rssSummary {
	margin-top: 0.5rem;
}

.widget_rss cite::before {
	content: "— ";
}

/* Widget: Search ---------------------------- */

.widget_search .search-field {
	border-color: #dedfdf;
}

/* Widget: Tag Cloud ------------------------- */

.widget_tag_cloud a {
	font-weight: 700;
	margin-right: 0.5rem;
	text-decoration: none;
	white-space: nowrap;
}

.widget_tag_cloud a:focus,
.widget_tag_cloud a:hover {
	text-decoration: underline;
}

/* Widget: Text ------------------------------ */


/* -------------------------------------------------------------------------- */

/*	16. Site Footer
/* -------------------------------------------------------------------------- */

footer#footer {
    background-color: #364B99;
    width: 100%;
    padding-top: 100px;
    position: relative;
    margin-top: 200px;
    padding-bottom: 100px;
}
footer#footer .svg-top{
	position: absolute;
	top: -2%;
}
footer#footer .footer-img{
	position: relative;
	margin-top: -60%;
}
footer#footer .contact-title{
	color: #fff;
	padding-bottom: 45px;
}
footer#footer .contact-form{
	display: flex;
}
footer#footer .contact-form input {
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 5px;
    width: 95%;
    height: 46px;
	margin-right: 0;
    color: #fff;
}
footer#footer .contact-form input::placeholder{
	font-family: 'Space Grotesk', sans-serif;
	font-size: 14px;
	color: #fff;
	line-height: 18px;
	font-weight: 400;
}
footer#footer .contact-form .contact-btn {
    width: 205px;
    height: 46px;
    border: 6px solid #fff;
    border-radius: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    font-size: 15px;
}
footer#footer .contact-form .contact-btn a{
	color: #fff;
	font-family: 'Space Grotesk', sans-serif;
}
footer#footer .contact-form .wpcf7-spinner {
	display: none;
}
footer#footer .footer-text{
	color: #fff;
	padding-top: 16px;
}
footer#footer .bottom-row{
	padding-top: 100px;
}
footer#footer .bottom-row .contact-inf{
	color: #fff;
	margin-bottom: 15px;
}
footer#footer .bottom-row .contact-inf a{
	color: #F8B133;
}
footer#footer .bottom-row .contact-inf .footer-logo{
	padding-top: 15px;
}
/* -------------------------------------------------------------------------- */

/*	17. Media Queries
/* -------------------------------------------------------------------------- */

@media ( max-width: 479px ) {

	/* Blocks -------------------------------- */

	.wp-block-pullquote.alignleft,
	.wp-block-pullquote.alignright {
		float: none;
	}

	/* Entry Content ------------------------- */

	/* LISTS */

	ul,
	ol {
		margin: 0 0 3rem 2rem;
	}

	li {
		margin: 0.5rem 0 0 1rem;
	}

	/* Post Footer --------------------------- */

	/* POST NAV LINKS */

	.post-nav-links {
		margin: 3em 0 0 0;
	}
}

@media ( min-width: 480px ) {

	/* Blocks -------------------------------- */

	/* BLOCK: BASE ALIGNMENT WIDTH */

	.wp-block-pullquote.alignleft,
	.wp-block-pullquote.alignright,
	.wp-block-cover-image.alignleft,
	.wp-block-cover-image.alignright,
	.wp-block-cover.alignleft,
	.wp-block-cover.alignright,
	.wp-block-embed.alignleft,
	.wp-block-embed.alignright,
	.wp-block-gallery.alignleft,
	.wp-block-gallery.alignright {
		max-width: 26rem;
	}

	/* BLOCK: TABLE WIDTH */
	.wp-block-table.alignleft,
	.wp-block-table.alignright {
		max-width: 100%;
	}

	/* Entry Content ------------------------- */

	/* ALIGNMENT CLASSES */

	.alignleft,
	.alignright {
		max-width: 26rem;
	}

	/* Post Footer --------------------------- */

	/* POST NAV LINKS */

	.post-nav-links {
		margin: 3em 0 0 0;
	}
}

@media ( max-width: 599px ) {

	/* Blocks -------------------------------- */

	/* BLOCK: COLUMNS */

	/* While columns are stacked */
	.wp-block-column:last-child {
		margin-bottom: 0;
	}

	.wp-block-columns + .wp-block-columns {
		margin-top: 0.2rem;
	}

	.wp-block-columns.alignwide + .wp-block-columns.alignwide {
		margin-top: -0.8rem;
	}

	.wp-block-columns.alignfull + .wp-block-columns.alignfull {
		margin-top: -1.8rem;
	}

}

@media ( min-width: 600px ) {

	/* Blocks -------------------------------- */

	/* BLOCK: COLUMNS */

	.wp-block-columns.alignwide + .wp-block-columns.alignwide,
	.wp-block-columns.alignfull + .wp-block-columns.alignfull {
		margin-top: -4rem;
	}

}

@media ( min-width: 660px ) {

	/* Blocks -------------------------------- */

	/* BLOCK: GALLERY */

	figure.wp-block-gallery.alignleft {

		/*rtl:ignore*/
		margin-left: calc(( 100vw - 58rem - 8rem ) / -2);
	}

	figure.wp-block-gallery.alignright {

		/*rtl:ignore*/
		margin-right: calc(( 100vw - 58rem - 8rem ) / -2);
	}

	/* Entry Content ------------------------- */

	/* ALIGNMENT CLASSES */

	.entry-content > .alignleft {

		/*rtl:ignore*/
		margin-left: 4rem;
	}

	.entry-content > p .alignleft,
	.entry-content > .wp-block-image .alignleft {

		/*rtl:ignore*/
		margin-left: calc(( 100vw - 58rem - 8rem ) / -2);
	}

	[class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > .alignleft,
	[class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > p .alignleft,
	[class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > .wp-block-image .alignleft {

		/*rtl:ignore*/
		margin-left: 0;
	}

	.entry-content > .alignright {

		/*rtl:ignore*/
		margin-right: 4rem;
	}

	.entry-content > p .alignright,
	.entry-content > .wp-block-image .alignright {

		/*rtl:ignore*/
		margin-right: calc(( 100vw - 58rem - 8rem ) / -2);
	}

	[class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > .alignright,
	[class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > p .alignright,
	[class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > .wp-block-image .alignright {

		/*rtl:ignore*/
		margin-right: 0;
	}

}

@media ( min-width: 700px ) {

	/* VANILLA GALLERIES */

	.gallery-columns-2 .gallery-item {
		max-width: 50%;
	}

	.gallery-columns-3 .gallery-item {
		max-width: 33.33%;
	}

	.gallery-columns-4 .gallery-item {
		max-width: 25%;
	}

	.gallery-columns-5 .gallery-item {
		max-width: 20%;
	}

	.gallery-columns-6 .gallery-item {
		max-width: 16.66%;
	}

	.gallery-columns-7 .gallery-item {
		max-width: 14.28%;
	}

	.gallery-columns-8 .gallery-item {
		max-width: 12.5%;
	}

	.gallery-columns-9 .gallery-item {
		max-width: 11.11%;
	}

	/* MEDIA */

	figcaption,
	.wp-caption-text {
		margin-top: 1.8rem;
	}

	/* Blocks -------------------------------- */

	/* BLOCK: SHARED MEDIA STYLES */

	.wp-block-embed figcaption,
	.wp-block-image figcaption {
		font-size: 1.6rem;
	}

	/* BLOCK: BASE MARGINS */

	.wp-block-archives:not(.alignwide):not(.alignfull),
	.wp-block-categories:not(.alignwide):not(.alignfull),
	.wp-block-code,
	.wp-block-columns:not(.alignwide):not(.alignfull),
	.wp-block-cover:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter),
	.wp-block-embed:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter),
	.wp-block-gallery:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter),
	.wp-block-group:not(.has-background):not(.alignwide):not(.alignfull),
	.wp-block-image:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter),
	.wp-block-latest-comments:not(.aligncenter):not(.alignleft):not(.alignright),
	.wp-block-latest-posts:not(.aligncenter):not(.alignleft):not(.alignright),
	.wp-block-media-text:not(.alignwide):not(.alignfull),
	.wp-block-preformatted,
	.wp-block-pullquote:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright),
	.wp-block-quote,
	.wp-block-quote.is-large,
	.wp-block-quote.is-style-large,
	.wp-block-verse,
	.wp-block-video:not(.alignwide):not(.alignfull) {
		margin-bottom: 4rem;
		margin-top: 4rem;
	}

	/* BLOCK: COLUMNS */

	.wp-block-columns.alignwide + .wp-block-columns.alignwide,
	.wp-block-columns.alignfull + .wp-block-columns.alignfull {
		margin-top: -6rem;
	}

	.entry-content .wp-block-columns h1,
	.entry-content .wp-block-columns h2,
	.entry-content .wp-block-columns h3,
	.entry-content .wp-block-columns h4,
	.entry-content .wp-block-columns h5,
	.entry-content .wp-block-columns h6 {
		margin: 3.5rem 0 2rem;
	}

	/* BLOCK: COVER */

	.wp-block-cover-image .wp-block-cover__inner-container,
	.wp-block-cover .wp-block-cover__inner-container {
		width: calc(100% - 8rem);
	}

	.wp-block-cover-image h2,
	.wp-block-cover h2 {
		font-size: 4.8rem;
	}

	/* BLOCK: GALLERY */

	figure.wp-block-gallery.alignnone,
	figure.wp-block-gallery.aligncenter {
		margin-bottom: 4rem;
		margin-top: 4rem;
	}

	figure.wp-block-gallery.alignwide,
	figure.wp-block-gallery.alignfull {
		margin-bottom: 6rem;
		margin-top: 6rem;
	}

	/* BLOCK: GROUP */

	.wp-block-group.has-background {
		padding: 4rem;
		margin-top: 0;
		margin-bottom: 0;
	}

	.alignfull:not(.has-background) > .wp-block-group__inner-container > p:not(.has-background-color) {
		padding-left: 0;
		padding-right: 0;
	}

	/* BLOCK: MEDIA AND TEXT */

	.wp-block-media-text .wp-block-media-text__content {
		padding: 4rem;
	}

	/* BLOCK: PULLQUOTE */

	.wp-block-pullquote blockquote p {
		font-size: 3.2rem;
	}

	.wp-block-pullquote cite {
		margin-top: 2rem;
	}

	.wp-block-pullquote.alignfull:not(.is-style-solid-color) {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.wp-block-pullquote.alignwide::before,
	.wp-block-pullquote.alignfull::before {
		font-size: 11.272727272rem;
		height: 8rem;
		margin-bottom: 2rem;
		width: 8rem;
	}

	.wp-block-pullquote.alignwide blockquote p,
	.wp-block-pullquote.alignfull blockquote p {
		font-size: 4.8rem;
		line-height: 1.203125;
	}

	.wp-block-pullquote.alignleft p,
	.wp-block-pullquote.alignright p,
	.wp-block-pullquote.alignleft.is-style-solid-color blockquote p,
	.wp-block-pullquote.alignright.is-style-solid-color blockquote p {
		font-size: 3.2rem;
		line-height: 1.1875;
	}

	.wp-block-pullquote.is-style-solid-color.alignwide,
	.wp-block-pullquote.is-style-solid-color.alignfull {
		padding: 6rem 4rem 4rem;
	}

	.wp-block-pullquote.alignleft.is-style-solid-color blockquote p,
	.wp-block-pullquote.alignright.is-style-solid-color blockquote p {
		font-size: 2.6rem;
	}

	/* BLOCK: QUOTE */

	.wp-block-quote.is-large p,
	.wp-block-quote.is-style-large p {
		font-size: 2.8rem;
	}

	/* BLOCK: SEPARATOR */

	hr.wp-block-separator {
		margin: 6rem auto;
	}

	.wp-block-separator.is-style-wide {
		max-width: calc(100vw - 8rem);
	}

	/* Entry Content ------------------------- */

	.entry-content {
		font-size: 2.1rem;
	}

	.entry-content p,
	.entry-content li {
		line-height: 1.476;
	}

	.entry-content h1,
	.entry-content h2,
	.entry-content h3 {
		margin: 6rem auto 3rem;
	}

	.entry-content h4,
	.entry-content h5,
	.entry-content h6 {
		margin: 4.5rem auto 2.5rem;
	}

	.alignnone,
	.aligncenter {
		margin-bottom: 4rem;
		margin-top: 4rem;
	}

	.alignleft {

		/*rtl:ignore*/
		margin: 0.3rem 2rem 2rem 0;
	}

	.alignright {

		/*rtl:ignore*/
		margin: 0.3rem 0 2rem 2rem;
	}

	.entry-content > .alignwide:not(.wp-block-group.has-background),
	.entry-content > .alignfull:not(.wp-block-group.has-background) {
		margin-bottom: 6rem;
		margin-top: 6rem;
	}

	.entry-content > .alignwide {
		max-width: calc(100vw - 8rem);
		width: calc(100vw - 8rem);
	}

	[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .alignleft,
	[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > p .alignleft,
	[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignleft {

		/*rtl:ignore*/
		margin-left: 4rem;
	}

	[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .alignright,
	[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > p .alignright,
	[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignright {

		/*rtl:ignore*/
		margin-right: 4rem;
	}

	.entry-content > .alignwide:first-child,
	.entry-content > .alignfull:first-child {
		margin-bottom: 8rem;
	}

	/* ENTRY MEDIA */

	.alignfull > figcaption,
	.alignfull > .wp-caption-text {
		width: calc(100% - 8rem);
	}

	/* Comments ------------------------------ */

	.comments-wrapper {
		margin-top: 8rem;
	}

	.comment-reply-title {
		margin-bottom: 4.6rem;
	}

	.comment-respond p.comment-notes,
	.comment-respond p.logged-in-as {
		font-size: 1.8rem;
		letter-spacing: -0.025em;
		margin: -2.5rem 0 4.4rem 0;
	}

	.comments .comment,
	.comments .pingback,
	.comments .trackback,
	.comments .review {
		padding-top: 5rem;
	}

	div.comment:first-of-type {
		margin-top: 5rem;
	}

	.comment-meta {
		margin-bottom: 2rem;
		min-height: 6rem;
		padding: 0.3rem 0 0 7.5rem;
	}

	.comment-meta .avatar {
		display: block;
		height: 6rem;
		position: absolute;
		left: 0;
		top: 0;
		width: 6rem;
	}

	.comment-author {
		font-size: 2.4rem;
	}

	.comment-metadata {
		font-size: 1.6rem;
		margin-top: 0.8rem;
	}

	.comment-footer-meta {
		margin-top: 2.5rem;
	}

	.comments-pagination {
		margin-top: 8rem;
	}

	/* PINGBACKS & TRACKBACKS */

	.pingback .comment-body {
		padding: 0;
	}

	/* COMMENT RESPOND */

	.comment-respond p {
		margin-bottom: 2.5rem;
	}

	.comment-form p.logged-in-as {
		margin: -2.5rem 0 4.4rem 0;
	}

	.comment-respond .comment-form-author,
	.comment-respond .comment-form-email {
		float: left;
		width: calc(50% - 1rem);
	}

	.comment-respond .comment-form-email {
		margin-left: 2rem;
	}

	.comments .comment-respond {
		padding: 5rem 0 0;
	}

	.comment-reply-title small {
		display: inline;
		margin: 0 0 0 0.5rem;
	}
}
@media (min-width: 782px) {

	/* Blocks -------------------------------- */

	/* BLOCK: COLUMNS */

	.wp-block-column {
		margin-bottom: 3.2rem;
	}

	.wp-block-columns.alignwide + .wp-block-columns.alignwide,
	.wp-block-columns.alignfull + .wp-block-columns.alignfull {
		margin-top: -2.8rem;
	}
}

@media ( min-width: 1000px ) {
	/* Document Setup ------------------------ */

	/* Helper Classes ------------------------ */

	/* Site Header --------------------------- */

	/* Entry Content ------------------------- */

	/* ALIGNMENT CLASSES */

	.entry-content > .alignleft,
	.entry-content > p .alignleft,
	.entry-content > .wp-block-image .alignleft {
		position: absolute;

		/*rtl:ignore*/
		right: calc((100vw - 58rem) / 2 + 58rem + 2rem);
		max-width: calc((100% - 58rem) / 2 - 6rem);
	}

	[class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > .alignleft,
	[class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > p .alignleft,
	[class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > .wp-block-image .alignleft {
		position: relative;

		/*rtl:ignore*/
		right: inherit;
		max-width: inherit;
	}

	[class*="wp-block"].alignwide [class*="__inner-container"] > .alignleft,
	[class*="wp-block"].alignwide [class*="__inner-container"] > p .alignleft,
	[class*="wp-block"].alignwide [class*="__inner-container"] > .wp-block-image .alignleft,
	[class*="wp-block"].alignfull [class*="__inner-container"] > .alignleft,
	[class*="wp-block"].alignfull [class*="__inner-container"] > p .alignleft,
	[class*="wp-block"].alignfull [class*="__inner-container"] > .wp-block-image .alignleft {
		position: absolute;

		/*rtl:ignore*/
		right: calc((100% - 58rem) / 2 + 58rem + 4rem);
		max-width: calc((100% - 58rem) / 2 - 4rem);
	}

	[class*="wp-block"].alignwide.has-background [class*="__inner-container"] > .alignleft,
	[class*="wp-block"].alignwide.has-background [class*="__inner-container"] > p .alignleft,
	[class*="wp-block"].alignwide.has-background [class*="__inner-container"] > .wp-block-image .alignleft {

		/*rtl:ignore*/
		right: calc((100% - 58rem) / 2 + 58rem);
	}

	[class*="wp-block"].alignfull [class*="__inner-container"] > .alignleft,
	[class*="wp-block"].alignfull [class*="__inner-container"] > p .alignleft,
	[class*="wp-block"].alignfull [class*="__inner-container"] > .wp-block-image .alignleft {

		/*rtl:ignore*/
		margin-left: 4rem;
	}

	.entry-content > .alignright,
	.entry-content > p .alignright,
	.entry-content > .wp-block-image .alignright,
	[class*="__inner-container"] > .alignright {
		position: absolute;

		/*rtl:ignore*/
		left: calc((100vw - 58rem) / 2 + 58rem + 2rem);
		max-width: calc((100% - 58rem) / 2 - 6rem);
	}

	[class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > .alignright,
	[class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > p .alignright,
	[class*="wp-block"]:not(.alignwide):not(.alignfull) [class*="__inner-container"] > .wp-block-image .alignright {
		position: relative;

		/*rtl:ignore*/
		left: inherit;
		max-width: inherit;
	}

	[class*="wp-block"].alignwide [class*="__inner-container"] > .alignright,
	[class*="wp-block"].alignwide [class*="__inner-container"] > p .alignright,
	[class*="wp-block"].alignwide [class*="__inner-container"] > .wp-block-image .alignright,
	[class*="wp-block"].alignfull [class*="__inner-container"] > .alignright,
	[class*="wp-block"].alignfull [class*="__inner-container"] > p .alignright,
	[class*="wp-block"].alignfull [class*="__inner-container"] > .wp-block-image .alignright {
		position: absolute;

		/*rtl:ignore*/
		left: calc((100% - 58rem) / 2 + 58rem + 4rem);
		max-width: calc((100% - 58rem) / 2 - 4rem);
	}

	[class*="wp-block"].alignwide.has-background [class*="__inner-container"] > .alignright,
	[class*="wp-block"].alignwide.has-background [class*="__inner-container"] > p .alignright,
	[class*="wp-block"].alignwide.has-background [class*="__inner-container"] > .wp-block-image .alignright {

		/*rtl:ignore*/
		left: calc((100% - 58rem) / 2 + 58rem + 4rem);
	}

	[class*="wp-block"].alignfull [class*="__inner-container"] > .alignright,
	[class*="wp-block"].alignfull [class*="__inner-container"] > p .alignright,
	[class*="wp-block"].alignfull [class*="__inner-container"] > .wp-block-image .alignright {

		/*rtl:ignore*/
		margin-right: 4rem;
	}

	.entry-content > .alignwide:not(.wp-block-group.has-background),
	.entry-content > .alignfull:not(.wp-block-group.has-background) {
		margin-bottom: 8rem;
		margin-top: 8rem;
	}

	/* ENTRY MEDIA */

	.alignfull > figcaption,
	.alignfull > .wp-caption-text {
		width: calc(100% - 10rem);
	}

	/* Comments ------------------------------ */

	.comment-meta {
		padding-left: 0;
	}

	.comment-meta .avatar {
		left: -8rem;
	}

	/* Site Pagination ----------------------- */

	.pagination .nav-links {
		justify-content: space-between;
		margin: 0;
		width: 100%;
	}

	.nav-links > * {
		margin: 0 2rem;
	}

	.pagination .next,
	.pagination .prev {
		display: block;
	}

	.pagination .prev {
		margin: 0 auto 0 0;
	}

	.pagination .next {
		text-align: right;
		margin: 0 0 0 auto;
	}

	/* Site Footer --------------------------- */

}

@media ( min-width: 1330px ) {


	/* Entry Content ------------------------- */

	/* ALIGNMENT CLASSES */
	.alignleft,
	.alignright,
	.entry-content > .alignleft,
	.entry-content > p .alignleft,
	.entry-content > .wp-block-image .alignleft,
	.entry-content > .alignright,
	.entry-content > p .alignright,
	.entry-content > .wp-block-image .alignright,
	[class*="wp-block"].alignwide:not(.has-background) [class*="__inner-container"] > .alignleft,
	[class*="wp-block"].alignwide:not(.has-background) [class*="__inner-container"] > p .alignleft,
	[class*="wp-block"].alignwide:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignleft,
	[class*="wp-block"].alignfull [class*="__inner-container"] > .alignleft,
	[class*="wp-block"].alignfull [class*="__inner-container"] > p .alignleft,
	[class*="wp-block"].alignfull [class*="__inner-container"] > .wp-block-image .alignleft,
	[class*="wp-block"].alignwide:not(.has-background) [class*="__inner-container"] > .alignright,
	[class*="wp-block"].alignwide:not(.has-background) [class*="__inner-container"] > p .alignright,
	[class*="wp-block"].alignwide:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignright,
	[class*="wp-block"].alignfull [class*="__inner-container"] > .alignright,
	[class*="wp-block"].alignfull [class*="__inner-container"] > p .alignright,
	[class*="wp-block"].alignfull [class*="__inner-container"] > .wp-block-image .alignright {
		max-width: 29rem;
	}

	/* Blocks -------------------------------- */

	/* BLOCK: PULLQUOTE */
	.wp-block-pullquote.is-style-solid-color.alignleft::before,
	.wp-block-pullquote.is-style-solid-color.alignright::before {
		top: 0;
	}
}

/*
Bootstrap breakpoints
*/

/* Exxxtra large devices (1600) */
@media (max-width: 1600px) { 

	
}

/* Exxtra large devices (widescreen) */
@media (max-width: 1400px) { 

}

/* Extra large devices (large desktops) */
@media (min-width: 1300px) and (max-width:1400px){ 
	#home section.s1 .banner-image {
		top: 5vw;
	}
}
@media (min-width: 1200px) and (max-width:1300px){ 
	#home section.s1 .banner-image {
		top: 251px;
	}
}
@media (min-width: 990px) and (max-width:1200px){
	#home section.s2 .outstanding-group .outstanding-box .outsanding-img, #home section.s4 .outstanding-group .outstanding-box .outsanding-img, #math-camp section.s3 .outstanding-group .outstanding-box .outsanding-img {
		flex: auto;
		width: 45%;
	}
}
@media (max-width: 992px){
	#teachers section.s1 .text {
		justify-content: flex-start;
	}
	#catalog section.s1 .sidebar .user-name::after {
		content: "";
		background-image: url(../images/menu-line.svg);
		position: absolute;
		background-repeat: no-repeat;
		background-size: contain;
		width: 100%;
		height: 20px;
		background-position: inherit;
		left: 0;
		/* top: 3%; */
		margin-top: 5%;
	}
	#catalog section.s1 .sidebar .user-name::after {
		display: none;
	}
	#catalog .user-menu-two.active-link {
		color: #f8b133;
	}
}
@media (min-width: 1200px) and (max-width:1400px){
	.hamburger{
		/*display: none;*/
	}
	#menu-menu-1{
		flex-direction: row !important;
		align-items: center !important;
	}
	#menu-menu-1 .logo{
		margin-right: 10px !important;
	}
	#math-camp section.s3 .outstanding-group .outstanding-box .outsanding-img{
		width: 40%;
	}
} 
/* Large devices (desktops) */
@media (max-width: 1400px) {
	.mobile-menu {
		height: 100vh;
		z-index: 999;
		top: 0;
		left: 0;
		overflow-y: hidden;
		background-color: rgb(245 245 245) !important;
		transition: 0.3s;
	}
	.mobile-menu svg.icon {
		position: relative;
		margin-top: -55%;
		width: 30%;
		float: right;
		right: -15%;
	}
	.mobile-menu ul{

		padding: 80px 30px;
	}
	.mobile-menu li {
		border-bottom: 2px solid #364b9930;
		width: 100%;
		padding-bottom: 10px;
		padding-top: 10px;
		line-height: 51px;
		font-size: 30px;
	}
	.closebtn {
		display: flex;
		float: right;
		padding-top: 50px;
		padding-right: 30px;
		font-size: 17px;
		font-weight: 700;
	}
	.closebtn svg{
		margin-left: 10px;
		width:  30px;
	} 
	.closebtn svg path{
		stroke: #364B99;
		stroke-width: 3;
	}
	.hamburger {
		position: relative !important;
		right: 0;
		background-color: transparent;
		border: none;
		border-radius: 0;
	}
	#menu-menu-1 .menu-item{
		display: none !important;
	}
	#header{
	/*	display: flex; */
		align-items: center;
		flex-wrap: wrap;
	}
	#header nav{
		display: flex;
	}
}
@media (max-width: 800px){
	#home section.s1 .banner-buttons .btn.btn-one {
		width: 200px !important;
	}
	#home section.s1 .banner-buttons .btn.btn-two {
		margin-left: -24%;
		width: 220px;
	}
	#home section.s1 .banner-buttons .btn.btn-three {
		width: 220px !important;
		margin-left: -57%;
	}
}
@media (max-width: 515px){
	#home section.s1 .banner-buttons .btn.btn-one {
		width: 180px !important;
	}
	#home section.s1 .banner-buttons .btn.btn-two {
		margin-left: -30%;
		width: 200px;
	}
	#home section.s1 .banner-buttons .btn.btn-three {
		width: 200px !important;
		margin-left: -63%;
	}
}
/* Medium devices (tablets) */
@media (max-width: 768px) {
	footer#footer .contact-form .contact-btn {
    width: 230px;
}
	.button.mobile-w-100 {
		display: block;
		width: 100%;
		padding: 10px 0 !important;
	}
	
}
@media (max-width: 428px){
	#home section.s1 .banner-buttons .btn.btn-one {
    width: 170px !important;
}
	#home section.s1 .banner-buttons .btn.btn-two {
    margin-left: -33%;
    width: 180px;
}
	#home section.s1 .banner-buttons .btn.btn-three {
    width: 180px !important;
    margin-left: -70%;
}
	#catalog section.s1 .sidebar .user-name::after {
    width: 60% !important;
    margin-top: 10% !important;
}
	.textarea-row .info {
		padding-top:0;
    padding-bottom: 40px;
}
	#application section.s1 .form {
    padding-top: 0;
}
	#application .form .col-12,
	#application .form .col-md-12{
		padding-left:0;
		padding-right:0;
	}
}
/* Small devices (landscape phones) */
@media (max-width: 767px) {
	#home section.s1 {
		padding-top: 3rem;
	}
	#home section.s1 .banner-title {
		font-size: 55px;
		line-height: 48px;
	}
	#home section.s1 .banner-buttons {
		margin-top: 60px;
		margin-bottom: 60px;
	}
	#home section.s1 .banner-image {
		position: relative;
		width: 100%;
		margin: 4rem 0;
	}
	#home section.s2 .svg-top, #home section.s4 .svg-top {
		position: relative;
		top: -4px;
	}
	#home section.s2 .background-one {
		top: -71px;
		width: 40%;
	}
	#home section.s2 img,
	#home section.s4 img{
		width: 100%;
	}
	
	.col-lg-2 .outstanding-box{
		display: flex;
	}
	.col-lg-2 .outstanding-box .outsanding-img{
		flex: 0 30%;
	}
	.col-lg-2 .outstanding-box .outsanding-img img{
		padding-right: 20px;
	}
	.col-lg-2 .outstanding-box .outsanding-description{
		flex: 0 70%;
	}
	#home section.s2 .col-lg-2,
	#home section.s2 .col-lg-4,
	#home section.s4 .col-lg-2,
	#home section.s4 .col-lg-4,
	#math-camp section.s3 .col-lg-2,
	#math-camp section.s3 .col-lg-4{
		margin-bottom: 15px;
	}
	#home section.s2 .svg-bottom, #home section.s4 .svg-bottom, #math-camp section.s2 .svg-bottom {
		bottom: -4px;
	}
	#home section.s3 {
		padding-top: 0;
	}
	#home section.s3 .img {
		margin-top: 20px;
	}
	.comment {
		padding-top: 100px;
	}
	.swiper-comment-box .user-description .user-type {
		text-align: center;
	}
	#home section.s4 .background-two {
		right: 0px;
		width: 70%;
		bottom: -50px;
	}
	#teachers section.s1 .title {
		font-size: 58px;
		line-height: 51px;
	}
	#teachers section.s1 .tutors-row .vertical {
		display: block;
	}
	#teachers section.s1 .tutors-row .vertical .tutors-box:nth-child(1) {
		margin-right: 0;
	}
	#teachers section.s1 .tutors-box{
		display: block !important;
		height: auto !important;
	}
	#teachers section.s1 .tutors-row .vertical {
		margin-bottom: 0px;
	}
	#teachers section.s1 .tutors-row .horizontal .tutors-box .tutors-box-img {
		padding-bottom: 20px;
	}
	#catalog section.s1 .courses .courses-description .accordion-des .title{
		flex: auto;
		width: 100%;
	}
	#catalog section.s1 .courses .courses-description .accordion-des .text{
		flex: auto;
		width: 100%;
	}
	#catalog section.s1 .catalog-title,
	#catalog section.s1 h2 {
		font-size: 55px;
		line-height: 37px;
	}
	#catalog section.s1 .sidebar ul li {
		margin-bottom: 50px;
	}
	#catalog section.s1 .courses{
		padding: 20px;
	}
	#catalog section.s1 .courses .about {
		flex: 0 100%;
	}
	#catalog section.s1 .courses .courses-text {
		flex: 0 100%;
		padding-left: 0px;
		margin-top: 30px;
	}
	#math-camp section.s1 .banner-title {
		font-size: 58px;
		line-height: 52px;
	}
	#math-camp section.s1 .camp-calendar {
		margin-top: 30px;
	}
	#math-camp section.s1 .banner-img {
		position: relative;
		width: 100%;
		right: auto;
		margin-top: 30px;
	}
	#math-camp section.s2 .svg-top {
		top: -58px;
	}
	#math-camp section.s2 .background-one {
		top: -78px;
		right: 10%;
		width: 43%;
	}
	#math-camp section.s2 .background-two {
		bottom: -60px;
		right: 30px;
		width: 50%;
	}
	#math-camp section.s4 .svg-top {
		top: -9px;
	}
	#math-camp section.s4 .activited-title-box .activited-title .title {
		font-size: 28px;
		line-height: 35px;
	}
	#math-camp section.s4 .s4-background {
		bottom: -60px;
		width: 70%;
	}
	#math-camp section.s4 .svg-bottom {
		bottom: -9px;
	}
	#math-camp section.s5 img{
		margin-top: 30px;
	}
	#math-competition section.s1 .title, #cybermath-books section.s1 .title, #why section.s1 .title {
		font-size: 88px;
		line-height: 81px;
	}
	#math-competition section.s1 .math-tournamet {
		padding: 30px;
	}
	#math-competition section.s1 .math-tournamet .math-tournamet-img {
		flex: 0 100%;
		margin-bottom: 20px;
	}
	#math-competition section.s1 .math-tournamet .math-tournamet-description {
		flex: 0 100%;
		padding-left: 0px;
	}
	#online-tutoring section.s1 .title {
		font-size: 47px;
		line-height: 39px;
	}
	#online-tutoring section.s1 .tutors-row {
		padding-top: 100px;
	}
	#online-tutoring section.s1 .tutors-row .tutors {
		display: block;
	}
	#online-tutoring section.s1 .tutors-row .tutors .tutors-column-1 {
		flex: 0 100%;
		padding-right: 0px;
	}
	#online-tutoring section.s1 .tutors-row .tutors .tutors-column-2 .tutors-box{
		display: flex;
	}
	#online-tutoring section.s1 .tutors-row .tutors .tutors-column-2 .tutors-box .tutors-box-img{
		flex: 0 30%;
	}
	#online-tutoring section.s1 .tutors-row .tutors .tutors-column-2 .tutors-box .tutors-box-description{
		flex: 0 70%;
	}
	#online-tutoring section.s2 .form .personel-info, #application section.s1 .form .personel-info {
		display: block;
	}
	#online-tutoring section.s2 .form .personel-info .form-group-first, #application section.s1 .form .personel-info .form-group-first {
		margin-bottom: 20px;
	}
	#online-tutoring section.s2 .form .personel-info .form-group, #application section.s1 .form .personel-info .form-group {
		width: 100%;
	}
	.books-box .books-img {
		flex: 0 100%;
		display: flex;
		justify-content: center;
		margin-bottom: 30px;
	}
	.books-box .books-description {
		flex: 0 100%;
		padding-left: 0px;
	}
	#application section.s1 .title {
		font-size: 67px;
		line-height: 62px;
	}
	#application section.s1 .form #flexRadioDefault1 {
		width: 28px;
		height: 28px;
	}
	#application section.s1 .form .radio-label {
		padding-left: 9px;
		font-size: 13px;
	}
	footer#footer .svg-top {
		top: 0%;
	}
}
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1525px;
}

@media (min-width: 768px) and (max-width: 970px){

	#home section.s1 {
		padding-bottom: 30px;
	}
	#home section.s1 .banner-title {
		font-size: 48px;
		line-height: 48px;
	}
	#home section.s1 .banner-img-column{
		display: flex;
		justify-content: center;
	}
	#home section.s1 .banner-image {
		position: relative;
		width: 50%;
	}
	#home section.s2 .outstanding-group .outstanding-box .outsanding-img{
		width: 40%;
	}
	#math-camp section.s3 .outstanding-group .outstanding-box .outsanding-img{
		width: 35%;
	}
	#home section.s2 .svg-top, #home section.s4 .svg-top {
		position: relative;
		top: -8px;
	}
	#home section.s2 .col-12{
		margin-bottom: 20px;
	}
	#home section.s2 .svg-bottom, #home section.s4 .svg-bottom, #math-camp section.s2 .svg-bottom {
		position: absolute;
		bottom: -8px;
		width: 100%;
	}
	#home section.s3 {
		padding-top: 0;
	}
	.swiper {
		overflow: hidden;
	}
	#home section.s3 .img {
		margin-top: 20px;
	}
	#home section.s4 .col-12{
		margin-bottom: 20px;
	}
	#home section.s4 .background-two {
		bottom: -102px;
		right: 0;
		width: 40%;
	}
	#teachers section.s1 .title {
		font-size: 65px;
		line-height: 50px;
	}
	#catalog section.s1 .catalog-title,
	#catalog section.s1 h2 {
		font-size: 98px;
		line-height: 84px;
	}
	#catalog section.s1 .courses .about {
		flex: 0 100%;
	}
	#catalog section.s1 .courses .courses-text {
		flex: 0 100%;
		padding-left: 0;
		margin-top: 20px;
	}
	#math-camp section.s1 .banner-title {
		font-size: 69px;
		line-height: 60px;
	}
	#math-camp section.s1 .banner-img {
		right: 0;
	}
	#math-camp section.s1 .camp-calendar{
		margin-top: 20px;
	}
	#math-camp section.s2 .svg-top {
		position: relative;
		top: -60px;
	}
	#math-camp section.s2 .background-two {
		bottom: -85px;
	}
	#math-camp section.s3 .col-12{
		margin-bottom: 20px;
	}
	#math-camp section.s4 .svg-top {
		position: absolute;
		top: -13px;
	}
	#math-camp section.s4 .svg-bottom {
		position: absolute;
		bottom: -13px;
	}
	#math-camp section.s5 img{
		margin-top: 30px;
		width: 100%;
	}
	#math-competition section.s1 .title, #cybermath-books section.s1 .title, #why section.s1 .title {
		font-size: 82px;
		line-height: 67px;
	}
	#online-tutoring section.s1 .title {
		font-size: 84px;
		line-height: 72px;
		margin-bottom: 30px;
	}
	#online-tutoring section.s1 .tutors-row .tutors .tutors-column-1 {
		flex: 0 100%;
		padding-right: 0;
	}
	#online-tutoring section.s1 .tutors-row .tutors .tutors-column-2 {
		flex: 0 100%;
	}
	#online-tutoring section.s1 .tutors-row .tutors .tutors-column-2 .tutors-box .tutors-box-img {
		flex: 0 30%;
	}
	#online-tutoring section.s1 .tutors-row .tutors .tutors-column-2 .tutors-box .tutors-box-description {
		flex: 0 70%;
	}
	#online-tutoring section.s2 .form .personel-info .form-group, #application section.s1 .form .personel-info .form-group {
		width: 100%;
		margin-top: 10px;
	}
	#online-tutoring section.s2 .form .personel-info .form-group-first, #application section.s1 .form .personel-info .form-group-first {
		margin-right: 0;
		margin-bottom: 10px;
	}
	#online-tutoring section.s2 .form .form-check-group .form-check label {
		padding-left: 10px;
	}
	.books-box{
		display: block;
	}
	.books-box .books-img {
		flex: 0 100%;
	}
	.books-box .books-description {
		flex: 0 100%;
		padding-left: 0;
		margin-top: 20px;
	}
	.books-box .books-description .btn {
		width: 100%;
	}
	#application section.s1 .title {
    font-size: 70px;
    line-height: 55px;
	}
	.personel-info-two .form-group{
		display: flex;
		align-items: center;
	}
	.personel-info-two .form-check-input{
		flex: 0 9%;
		margin-top: 0
	}
	.personel-info-two .form-check-label{
		flex: 0 90%;
	}
	footer#footer .svg-top {
		position: absolute;
		top: -1%;
	}
	footer#footer .bottom-row {
		padding-top: 50px;
	}
	footer#footer .bottom-row .col-12{
		margin-bottom: 30px;
	}
}
@media (min-width: 970px) and (max-width: 990px){
	footer#footer .footer-img {
		position: relative;
		margin-top: -33%;
	}
}
@media (min-width: 970px) and (max-width: 1300px){
	#home section.s1 .banner-title {
		font-size: 63px;
		line-height: 57px;
	}
	#home section.s1 .banner-image {
		bottom: 35%;
		top: 251px;
	}
	#home section.s2 .svg-top, #home section.s4 .svg-top {
		position: relative;
		top: -5px;
	}
	#teachers section.s1 .title {
		font-size: 82px;
		line-height: 70px;
	}
	#math-camp section.s2 .background-two {
    bottom: -100px;
	}
	#online-tutoring section.s1 .tutors-row .tutors .tutors-column-1 {
		flex: 0 100%;
		padding-right: 0;
	}
	#online-tutoring section.s1 .tutors-row .tutors .tutors-column-2 {
		flex: 0 100%;
	}
	#online-tutoring section.s1 .tutors-row .tutors .tutors-column-2 .tutors-box .tutors-box-img {
		flex: 0 30%;
	}
	#online-tutoring section.s1 .tutors-row .tutors .tutors-column-2 .tutors-box .tutors-box-description {
		flex: 0 70%;
	}
	#online-tutoring section.s2 .form .personel-info .form-group, #application section.s1 .form .personel-info .form-group {
		width: 100%;
	}
	#online-tutoring section.s2 .form .personel-info .form-group-first, #application section.s1 .form .personel-info .form-group-first {
		margin-right: 0;
		margin-bottom: 20px;
	}
	#online-tutoring section.s2 .form .personel-info .form-group-first, #application section.s1 .form .personel-info .form-group-first {
		margin-right: 0;
		margin-bottom: 10px;
	}
	#online-tutoring section.s2 .form .personel-info .form-group, #application section.s1 .form .personel-info .form-group {
		width: 100%;
		margin-top: 10px;
	}
	.books-box .books-img {
		flex: 0 100%;
	}
	.books-box .books-description {
		flex: 0 100%;
		padding-left: 0;
		margin-top: 20px;
	}
}
@media (min-width: 540px) and (max-width: 768px){
	#home section.s1 .banner-title {
		font-size: 68px;
		line-height: 59px;
	}
	#teachers section.s1 .title {
		font-size: 75px;
		line-height: 74px;
	}
	#teachers section.s1 .text {
		justify-content: flex-start;
	}
	#catalog section.s1 .catalog-title,
	#catalog section.s1 h2 {
		font-size: 60px;
		line-height: 67px;
	}
}
@media (min-width: 850px) and (max-width: 1199px){
	
}

@media (min-width: 1300px) and (max-width: 1335px){
	#home section.s1 .banner-title {
		font-size: 86px;
	}
	#teachers section.s1 .title {
		font-size: 103px;
		line-height: 80px;
	}
}

/* XS */
@media (max-width: 767px) {
	footer#footer .footer-img {
		margin-top: -39%;
		width: 50%;
	}
	#catalog section.s1 .sidebar .user-name.active-link::after {
		content: "";
		background-image: url(../images/menu-line-two.svg);
		position: absolute;
		background-repeat: no-repeat;
		background-size: contain;
		width: 50%;
		height: 20px;
		background-position: top;
		left: 2%;
		/* top: 3%; */
		margin-top: 5%;
	}
	#catalog section.s1 .sidebar .user-name::after {
		content: "";
		background-image: url(../images/menu-line.svg);
		position: absolute;
		background-repeat: no-repeat;
		background-size: contain;
		width: 40%;
		height: 20px;
		background-position: top;
		left: 1%;
		/* top: 3%; */
		margin-top: 5%;
	}
	#math-camp section.s3 img{
		width: 100%;
	}
}

/* SM */
@media (min-width: 768px) and (max-width: 970px) {

	#math-competition section.s1 .title, #cybermath-books section.s1 .title, #why section.s1 .title {
		font-size: 95px;
		line-height: 90px;
	}
	#catalog section.s1 .sidebar .user-name.active-link::after {
		margin-top: 4%;
	}
	#catalog section.s1 .sidebar ul li a {
		font-size: 25px;
	}
	footer#footer .footer-img {
		position: relative;
		margin-top: -37%;
		width: 40%;
	}
}
@media (min-width: 820px) and (max-width: 990px){
	#online-tutoring section.s1 .title {
		line-height: 90px !important;
	}
}

/* MD */
@media (min-width: 970px) and (max-width: 1170px) {
	#application section.s1 .title {
		font-size: 88px;
		line-height: 69px;
	}
	#math-competition section.s1 .title, #cybermath-books section.s1 .title, #why section.s1 .title {
		font-size: 109px;
		line-height: 86px;
	}

	#online-tutoring section.s1 .title {
		font-size: 82px;
		line-height: 85px;
	}
}
@media (min-width: 1171px) and (max-width: 1335px){
	#online-tutoring section.s1 .title {
		font-size: 89px;
		line-height: 84px;
	}
}

/* LG */
@media (min-width: 1171px) {

}
.radio-info .wpcf7-radio {
	display: flex;
}
.radio-info .wpcf7-list-item {
	display: flex;
	align-items: center;
	margin-right: 50px;
}
.radio-info .wpcf7-list-item-label{
	padding-right: 10px;
}
.radio-info{
	display: block !important;
}
.radio-info .form-group{
	width: 100% !important;
}

.h {
	font-family: 'Space Grotesk';
	font-weight: 500;
	font-size: 66px;
	line-height: 68px;
	letter-spacing: -0.07em;
	color: #364B99;
}
.h span {
	position: relative;
	white-space: nowrap;
}
.h span svg {
	position: absolute;
	left: 1%;
	bottom: 10%;
	z-index: -1;
}
@media only screen and (max-width:1500px) {
	.h {
		font-size: 58px;
		line-height: 61px;
	}
	.h svg {
		height: 12px;
	}
	#online-tutoring section.s1 .h{
		font-size: 90px;
	}
	#math-competition section.s1 .row, #online-tutoring section.s1 .banner-row, #cybermath-books section.s1 .banner-row, #why section.s1 .banner-row, #application section.s1 .banner-row {
		align-items: flex-start;
	}
}
@media only screen and (max-width:1300px) {
	.h {
		font-size: 57px;
		line-height: 59px;
	}
	.h svg {
		height: 12px;
	}
	#online-tutoring section.s1 .h{
		font-size: 90px;
	}
	#math-competition section.s1 .row, #online-tutoring section.s1 .banner-row, #cybermath-books section.s1 .banner-row, #why section.s1 .banner-row, #application section.s1 .banner-row {
		align-items: flex-start;
	}
}
@media only screen and (max-width:1200px) {
	.h {
		font-size: 49px;
		line-height: 54px;
	}
	.h svg {
		height: 12px;
	}
	#online-tutoring section.s1 .h{
		font-size: 90px;
	}
	#math-competition section.s1 .row, #online-tutoring section.s1 .banner-row, #cybermath-books section.s1 .banner-row, #why section.s1 .banner-row, #application section.s1 .banner-row {
		align-items: flex-start;
	}
}
@media only screen and (max-width:768px) {
	html{
		overflow-x: hidden;
	}
	.h {
		font-size: 46px;
		line-height: 55px;
	}
	.h svg {
		height: 10px;
	}
}
@media only screen and (max-width:576px) {
	.h {
		font-size: 30px !important;
		line-height: 45px !important;
		margin-bottom: 30px;
	}
	.h svg {
		height: 8px;
	}
	.mobile-menu li {
		font-size: 1.5rem;
	}
	#home section.s1 .banner-buttons .btn {
		border: 6px solid;
	}
	#home section.s1 .banner-buttons .btn {
		font-size: 16px;
	}
	#home section.s1 .banner-buttons .btn.btn-one {
		width: 125px !important;
	}
	#home section.s1 .banner-buttons .btn.btn-two {
		width: 155px;
		padding-left: 35px;
	}
	#home section.s1 .banner-buttons .btn.btn-three {
		padding-left: 55px;
	}
	#home section.s2 .title, #home section.s4 .title {
		font-size: 3.5rem;
		line-height: 3.5rem;
	}
	#home section.s2, #home section.s4 {
		margin-bottom: 4rem;
		padding-bottom: 4rem;
	}
	#home section.s2 .background-two {
		display: none;
	}
	.swiper-comment-box .user-description img {
		width: 80px;
	}
	.swiper-comment-box .user-description {
		align-items: flex-start;
		align-content: flex-start;
	}

	#math-camp section.s3 .title,
	#math-camp section.s4 .banner-title,
	#math-camp section.s5 .title {
		font-size: 3rem;
		line-height: 4rem;
	}
	#math-camp section.s5 button.buton.btn {
		width: 100%;
	}
	#math-camp section.s4 .activited-title-box .activited-title .title {
		font-size: 1.2rem;
	}
	#math-camp section.s4 .activited-description .description-title .title {
		font-size: 1rem;
	}
	.books-box .books-description .btn {
		width: 100%;
		font-size: 1.2rem;
	}
	#why section.s1 .comment-title {
		font-size: 3rem;
		line-height: 4rem;
	}
	#application section.s1 .application-button .btn {
		width: 100%;
	}

}
@media only screen and (max-width: 480px) {
    .h {
        font-size: 30px !important;
        line-height: 45px !important;
        margin-bottom: 30px;
        
        /* Metin kaydırma özellikleri */
        overflow-wrap: break-word !important;
        word-wrap: break-word !important;
        word-break: break-word !important;
        
        /* Ek güvenlik */
        hyphens: auto !important; /* Tire ile bölme (dil desteği varsa) */
        -webkit-hyphens: auto !important;
        -ms-hyphens: auto !important;
        
        /* Minimum genişlik kontrolü */
        min-width: 0 !important; /* Flex container'lar için önemli */
        max-width: 100% !important;
    }
}
.radio-info .wpcf7-list-item.first,
.wpcf7-list-item.first{
	display:none;
}
.wpcf7-list-item.first.last{
	display:block;
}
.wpcf7-list-item {
    width: 100%;
}
.accordion-button[aria-expanded=true]::after{
	background-image: none !important;
    transform: rotate(0deg) !important;
	content:"Show Less -";
	width:auto;
	color: #364B99 !important;
	font-family: 'Space Grotesk', sans-serif;
	font-weight:700;

}
.accordion-button[aria-expanded=false]::after{
	   background-image: none !important;
    transform: rotate(0deg) !important;
	content:"Show More +";
	width:auto;
	color: #364B99 !important;
	font-family: 'Space Grotesk', sans-serif;
	font-weight:700;
}
.accordion-button::after {
    position: absolute;
    top: -27px;
    right: 1rem;
}
@media (max-width:968px) {
	.accordion-button::after {
		top: -15px;
	}
}
@media (max-width:576px) {
	.accordion-button::after {
		top: -8px;
	}
	#math-camp section.s1 .camp-calendar .camp-calendar-box {
		flex: 0 99%;
	}
	#math-camp table thead th {
		font-size: 1.25rem;
		line-height: 1.1;
		padding-right: 3rem;
	}
	#math-camp .table-title {
		font-size: 4rem;
		line-height: 100%;
	}
}
@media (max-width:540px) {
	.accordion-button::after {
		display: none;
	}
}
@media (max-width:375px) {
	.h {
		font-size: 2rem !important;
		line-height: 1.2 !important;
	}
	#online-tutoring section.s2 .form-title {
		font-size: 3rem;
		line-height: 1.2;
	}
}

