*, :after, :before {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    outline: 0;
    margin: 0;
    padding: 0;
}

iframe {
    max-width: 100% !important;
    margin: 15px;
    margin-left: 0;
}

li > ul > li > a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    padding: 10px 0;
}

li > ul > li:hover {
	cursor: pointer;
}

li > ul > li:hover > a {
    color: #e6c12f;
}

body {
	font-family: "Inter", serif;
	font-optical-sizing: auto;
	font-style: normal;
	scroll-behavior: smooth;
}

body > header.pending::before {
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: #d6c54b;
    content: "";
	-webkit-animation: loader 1s infinite;
	        animation: loader 1s infinite;
}
body > header {
    top: 0;
    width: 100%;
    position: fixed;
    /* transition: background 2s ease; */
    /* will-change: auto; */
    z-index: 1;
}

body > header.scroll {
	background: rgb(10 11 16);
}

body > header nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 80px;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

body > header nav > ul {
    width: 100%;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 20px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    max-height: 100px;
}

body > header nav > ul ul {
    visibility: hidden;
    top: 100px;
    opacity: 0;
    position: fixed;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-transform: rotateX(90deg);
            transform: rotateX(90deg);
    z-index: 1;
    max-width: 100%;
    list-style: none;
}

body > header nav > ul ul::before {
    position: absolute;
    left: 9px;
    top: -19px;
    content: " ";
    border: 9px solid transparent;
    border-bottom: 10px solid #0a0b10;
}

body > header nav > ul ul::after {
    position: absolute;
    left: 0;
    width: 100%;
    top: -12px;
    content: " ";
    height: 12px;
}

body > header.scroll nav > ul ul::after {
    top: -38px;
    height: 38px;
}

body > header nav > ul ul li {
    background: rgb(10 11 16);
    padding: 10px;
}

body > header nav > ul ul li::before {
    display: inline-block;
    font-size: 24px;
    line-height: 0px;
    content: "\21B5";
    -webkit-transform: scaleX(-1);
        -ms-transform: scaleX(-1);
            transform: scaleX(-1);
    margin-right: 5px;
    vertical-align: middle;
    color: #fff;
}

body > header.scroll nav > ul ul {
    top: 91px;
}

body > header.scroll nav > ul {
    margin-top: 0px;
}

body > header nav > ul > li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 50px;
}

body > header nav > ul li:hover ul {
    visibility: visible;
    opacity: 1;
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
}

body > header.scroll nav > ul > li {
    margin-top: 0px;
}

body > header nav > ul > li:hover > a,
body > header nav > ul > li > a.active {
	color: #f2c039;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	will-change: color;
}

body > header nav > ul > li > a.active {
/* 	pointer-events: none; */
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}

body > header nav > ul > li a::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 2px;
	-webkit-transition: width .3s, background .3s;
	-o-transition: width .3s, background .3s;
	transition: width .3s, background .3s;
	background: #fff;
}

body > header nav > ul > li:hover > a::after,
body > header nav > ul > li > a.active::after {
    width: 100%;
	background: #f2c039;
}

body > header nav > ul > li > a {
    position: relative;
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 18px;
}

@-webkit-keyframes loader {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@keyframes loader {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

.logo-wrap {}

.logo {
    width: 100%;
    max-width: 150px;
}

body > header.scroll .logo-wrap {
    width: 70px;
    margin-top: -6px;
}

img {
	max-width: 100% !important;
	border-color: transparent;
}

.container {
    max-width: 1160px;
    padding-right: 40px;
    padding-left: 40px;
    margin: auto;
}

.section {
	background: url(../img/paper.webp);
	background-size: 100% 100%;
	padding: 70px 0;
}

.section h1 {
    color: #e6c12f;
    font-size: 60px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    padding-bottom: 50px;
}

.section h2 {
	text-align: center;
	font-size: 40px;
	font-weight: 500;
	color: #38393f;
}

.section h3 {
	text-align: center;
	font-size: 30px;
	font-weight: 500;
	color: #38393f;
}

main > .section:nth-of-type(1) {
	margin-top: -5px;
}

.poster {
	display: block;
	aspect-ratio: 1920/986;
	width: 100%;
	height: auto;
	background: #0a0b10;
	/* max-height: 100vh; */
}

.poster-wrap {
    position: relative;
    min-height: 200px;
}
.poster-wrap > div {
    position: absolute;
    left: 0;
    right: 0;
    top: 37%;
    text-align: center;
    overflow: hidden;
}

.poster-wrap > div > h1 {
    display: inline-block;
    font-size: 50px;
    font-weight: 900;
    color: #fff;
    background: rgb(0 0 0 / 70%);
    padding: 15px 40px;
    word-break: break-word;
}

.courses {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 120px;
    margin-top: 65px;
}
.course {
    position: relative;
    -ms-flex-preferred-size: 44%;
    flex-basis: 44%;
    box-shadow: 1px 1px 5px rgb(215 215 215);
    transition: box-shadow .3s;
    will-change: box-shadow;
    cursor: pointer;
}

.course:hover {
	box-shadow: 1px 1px 35px rgb(187 187 187);}

.course > div:last-child {
	padding: 0px 15px 20px 15px;
	background: #f9f9f9;
}

.course p:nth-child(1) {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    padding: 15px 0;
    min-height: 138px;
    color: #3d3d3d;
}

.course p:nth-child(2), .course p:nth-child(3) {
    text-align: left;
    font-size: 25px;
    font-weight: 600;
    color: #000000a6;
}

.course img {
	aspect-ratio: 480 / 269;
	width: 100%;
	height: auto;
	background: rgb(222 222 222);
}

.btn {
    display: block;
    text-decoration: none;
    color: #b3b3b3;
    font-size: 30px;
    font-weight: 600;
    margin-top: 25px;
    background: #2f2f2f;
    padding: 15px;
    -webkit-box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.25);
    box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.25);
    text-align: center;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
	border: 0;

}

.btn:hover {
    color: #2f2f2f;
    background: #b3b3b3;
}

.btn-next::after {
	display: inline-block;
	margin-left: 5px;
	content: "\2192";
	width: 0px;
	opacity: 0;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}
.btn-next:hover::after {
	width: 30px;
	opacity: 1;
}

.btn-y {
    background: #e6c12f;
    color: #494949;
}

.btn-y:hover {
    color: #e6c12f;
    background: #3D3737;
}

.course > div:first-child {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.course > div:first-child h3 {
    position: absolute;
    color: #fff;
    background: rgb(0 0 0 / 67%);
    text-align: center;
    margin-top: 15px;
    padding: 5px 15px;
}

.section .container > a {
	max-width: 400px;
	margin: auto;
	margin-top: 70px;
}

@-webkit-keyframes shake {
    90% {
        transform: rotateZ(0);
        -ms-transform: rotateZ(0);
        -webkit-transform: rotateZ(0)
    }

    91% {
        transform: rotateZ(-30deg);
        -ms-transform: rotateZ(-30deg);
        -webkit-transform: rotateZ(-30deg)
    }

    92% {
        transform: rotateZ(15deg);
        -ms-transform: rotateZ(15deg);
        -webkit-transform: rotateZ(15deg)
    }

    93% {
        transform: rotateZ(-10deg);
        -ms-transform: rotateZ(-10deg);
        -webkit-transform: rotateZ(-10deg)
    }

    94% {
        transform: rotateZ(7.5deg);
        -ms-transform: rotateZ(7.5deg);
        -webkit-transform: rotateZ(7.5deg)
    }

    95% {
        transform: rotateZ(-6deg);
        -ms-transform: rotateZ(-6deg);
        -webkit-transform: rotateZ(-6deg)
    }

    96% {
        transform: rotateZ(5deg);
        -ms-transform: rotateZ(5deg);
        -webkit-transform: rotateZ(5deg)
    }

    97% {
        transform: rotateZ(-4.28571deg);
        -ms-transform: rotateZ(-4.28571deg);
        -webkit-transform: rotateZ(-4.28571deg)
    }

    98% {
        transform: rotateZ(3.75deg);
        -ms-transform: rotateZ(3.75deg);
        -webkit-transform: rotateZ(3.75deg)
    }

    99% {
        transform: rotateZ(-3.33333deg);
        -ms-transform: rotateZ(-3.33333deg);
        -webkit-transform: rotateZ(-3.33333deg)
    }

    100% {
        transform: rotateZ(0);
        -ms-transform: rotateZ(0);
        -webkit-transform: rotateZ(0)
    }
}

@keyframes shake {
    90% {
        transform: rotateZ(0);
        -ms-transform: rotateZ(0);
        -webkit-transform: rotateZ(0)
    }

    91% {
        transform: rotateZ(-30deg);
        -ms-transform: rotateZ(-30deg);
        -webkit-transform: rotateZ(-30deg)
    }

    92% {
        transform: rotateZ(15deg);
        -ms-transform: rotateZ(15deg);
        -webkit-transform: rotateZ(15deg)
    }

    93% {
        transform: rotateZ(-10deg);
        -ms-transform: rotateZ(-10deg);
        -webkit-transform: rotateZ(-10deg)
    }

    94% {
        transform: rotateZ(7.5deg);
        -ms-transform: rotateZ(7.5deg);
        -webkit-transform: rotateZ(7.5deg)
    }

    95% {
        transform: rotateZ(-6deg);
        -ms-transform: rotateZ(-6deg);
        -webkit-transform: rotateZ(-6deg)
    }

    96% {
        transform: rotateZ(5deg);
        -ms-transform: rotateZ(5deg);
        -webkit-transform: rotateZ(5deg)
    }

    97% {
        transform: rotateZ(-4.28571deg);
        -ms-transform: rotateZ(-4.28571deg);
        -webkit-transform: rotateZ(-4.28571deg)
    }

    98% {
        transform: rotateZ(3.75deg);
        -ms-transform: rotateZ(3.75deg);
        -webkit-transform: rotateZ(3.75deg)
    }

    99% {
        transform: rotateZ(-3.33333deg);
        -ms-transform: rotateZ(-3.33333deg);
        -webkit-transform: rotateZ(-3.33333deg)
    }

    100% {
        transform: rotateZ(0);
        -ms-transform: rotateZ(0);
        -webkit-transform: rotateZ(0)
    }
}

.call-btn {
    position: fixed;
    right: 150px;
    bottom: 17px;
    width: 80px;
    -webkit-animation: 5s ease 0s normal none 0 running shake;
    animation: 5s ease 0s normal none 0 running shake;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    display: none;
}

.section-content > img {
	max-width: 540px;
	margin-bottom: 10px;
}

.section-content > .img-left {
	margin-right: 20px;
	margin-bottom: 10px;
}
.section-content > .img-right {
	margin-left: 20px;
}

.section-content {
	margin-top: 50px;
	overflow: hidden;
}

.section-content > div {
	font-weight: 500;
	font-size: 25px;
	color: #3d3d3d;
}

.section-content > span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: right;
        -ms-flex-pack: right;
            justify-content: right;
}
.section-content > span.content-left {
	-webkit-box-pack: left;
	    -ms-flex-pack: left;
	        justify-content: left;
}

.section-content > span > a {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    max-width: 450px;
}

.section form {
    display: block;
    background: #e6c12f;
    -webkit-box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.25);
            box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.25);
    padding: 15px 25px;
    margin-bottom: 50px;
}
.section form > p {
    font-size: 30px;
    font-weight: 500;
    margin: 25px;
    text-align: center;
}
.section form > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px 30px;
}
.section form > div > div:first-child {
	margin-right: 40px;
}
.section form > div > div {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
}
.section form input {
    display: block;
    width: 100%;
    background: #f7f3db;
    border: 0;
    margin-bottom: 25px;
    padding: 20px;
}
.section form button {
    display: block;
    background: #2f2f2f;
    width: 100%;
    margin-bottom: 25px;
    color: #fff;
    font-size: 30px;
    height: 55px;
    font-weight: 500;
    border: 0;
    cursor: pointer;
    border: 2px solid transparent;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.section form button:hover {
    background: #f7f3dd;
    border: 2px solid #2f2f2f;
    color: #2f2f2f;
}

.address-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 50px;
    margin-bottom: 50px;
}

.address-wrap > div {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}

.address-wrap > div:first-child {
    padding: 35px;
    background: #2f2f2f;
    color: #fff;
    font-size: 25px;
    text-align: center;
    line-height: 40px;
}

.address-wrap > div:first-child a {
    color: #fff;
}

.social-icons {
    margin-top: 15px;
}
.social-icons > a {
    display: inline-block;
    margin: 5px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
}

.social-icons > a:hover {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
}

.page-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-bottom: 50px;
}
.page-header > h2 {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    text-align: left;
}
.page-header > a {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	margin-top: -10px;
	max-width: 500px;
}
.page-content {
    font-weight: 500;
    font-size: 25px;
    color: #3d3d3d;
}

.course-photos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 15px;
}
.course-photos > img {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    width: 100%;
    max-width: 350px;
}

.course-view-wrap {
    top: 20% !important;
}

.course-view {
	text-align: left;
}

.course-view > h1 {
    display: inline-block;
    color: #fff;
    font-size: 40px;
    padding: 10px 15px;
    margin-bottom: 10px;
    background: rgb(0 0 0 / 70%);
}
.course-view > p {
    color: #fff;
    font-size: 30px;
    line-height: 40px;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
}
.course-view > a {
    max-width: 370px;
}

.modal-box-wrap {
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgb(0 0 0 / 89%);
    visibility: hidden;
    opacity: 0;
    overflow: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.modal-box-wrap.show {
	visibility: visible;
	opacity: 1;
	z-index: 1;
}
.modal-box {
    position: fixed;
    width: 100%;
    max-width: 500px;
    background-color: #fff;
    opacity: 0;
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
    -webkit-transition: opacity .3s, -webkit-transform .3s;
    transition: opacity .3s, -webkit-transform .3s;
    -o-transition: opacity .3s, transform .3s;
    transition: opacity .3s, transform .3s;
    transition: opacity .3s, transform .3s, -webkit-transform .3s;
    will-change: transform, opacity;
}

.modal-box-wrap.show .modal-box {
    opacity: 1;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
}
.modal-box > header {
	position: relative;
	background: #fff;
	color: #2f2f2f;
	border-bottom: 1px solid #ededed;
	padding: 20px;
	text-align: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.modal-box.modal-info-success > header {
    padding-top: 33px;
    background: #1d9352;
    text-transform: uppercase;
}
.modal-box > header > h4 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 12px;
}
.modal-box > header > p {
    font-size: 16px;
}

.box-close {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 35px;
    line-height: 16px;
    padding: 15px;
    cursor: pointer;
}
.modal-box > form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #fbfbfb;
    padding: 30px;
    padding-bottom: 35px;
}
.modal-box > form > input {
    padding: 15px;
    border: 0;
    background: #F8F5DB;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 500;
    background: #fff;
    border: 1px solid #ededed;
}
.modal-box > form > button {
    font-size: 20px;
    font-weight: 500;
    margin-top: 0;
}

.dark-section {
	background: rgb(10 11 16);
	color: #fff;
}

.dark-section .page-header > h2 {
    color: #fff;
}

.dark-section .page-content {
    color: #fff;
}

.dark-section .section-content > div {
    color: #fff;
}

.about-page {
	padding-top: 190px;
}

.about-page .img-left,
.service-page .img-left{
	max-width: 400px;
	margin-right: 33px;
	margin-bottom: 10px;
}

.items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 100px;
    margin-bottom: 110px;
}
.items > * {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 25px;
    text-decoration: none;
    color: #fff;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: #2a2a2d;
}
.items > * > img {
    width: 400px;
}

.items > *:nth-child(even) > img {
	-webkit-box-ordinal-group: 2;
	    -ms-flex-order: 1;
	        order: 1;
}

.items > * > div {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	font-size: 30px;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding-right: 25px;
}

.items > * > div > b {
	margin-bottom: 15px;
	font-size: 30px;
}
.items > * > div > span {
	font-size: 12px;
	text-align: right;
	margin-bottom: 15px;
	text-transform: uppercase;
}

.items > *:nth-child(even) > div > span {
	text-align: left;
}

.items > * > div > p {
	font-size: 20px;
}

.items > *:nth-child(even) > div {
	text-align: right;
	padding-right: 0px;
	padding-left: 25px;
}

.items-page {
	padding-top: 270px;
}

.service-page {
    padding-top: 200px;
}
.service-page h1,
.blog-page h1 {
    font-size: 35px !important;
    color: #fff;
    padding: 20px 15px;
}

.service-page .btn {
    margin: 0 !important;
    margin-top: 60px !important;
}

.service-page .section-content {
    max-width: 100% !important;
}

.posters-page {
	padding-top: 200px;
}

.posters-page h1 {
    color: #fff;
    text-align: left;
    font-size: 40px;
    padding-bottom: 15px;
}

.posters-page .btn {
    margin: 0 !important;
    margin-top: 60px !important;
}

.posters-page .section-content {
    max-width: 100%;
}

.posters {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 100px;
}
.posters > a {
	-webkit-box-flex: calc(33.33% - 40px);
	    -ms-flex: calc(33.33% - 40px);
	        flex: calc(33.33% - 40px);
	text-decoration: none;
}
.posters > a > img {
	width: 100%;
    max-width: 320px;
}
.posters > a > span {
    font-size: 25px;
    font-weight: 600;
    display: block;
    text-align: center;
    background: #e6c12e;
    color: #494949;
    padding: 15px;
    margin-top: 5px;
}

.posters > a > h3 {
	color: #fff;
}

.posters > a > span::after {
	display: inline-block;
	margin-left: 5px;
	content: "\2192";
	width: 0px;
	opacity: 0;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}

.posters > a:hover > span::after {
	width: 30px;
	opacity: 1;
}

.theater-page,
.about-page {
	padding-top: 200px;
}

.theater-page .page-content {
    text-align: left;
    margin-bottom: 60px;
}

.theater-page h1,
.about-page h1 {
	font-size: 40px;
	font-weight: 500;
	color: #fff;
	padding-bottom: 20px;
}

.theater-page h4 {
    display: inline-block;
    padding: 10px 20px;
    background: #000;
    margin-bottom: 60px;
    font-size: 28px;
}

.image-collage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px;
}
.image-collage > a {
    height: 265px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
}

.image-collage img {
  max-height: 100%;
  min-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}

.lang {
    display: block;
    width: 200px;
    margin: auto;
    text-align: center;
    color: #fff;
    margin-bottom: 15px;
}
.lang > a {
    text-decoration: none;
}

.lang > a,
.lang > b {
    color: #fff;
    text-transform: uppercase;
}

.lang > a:hover {
	text-decoration: underline;
}

.lang > a:hover,
.lang > b {
    color: #e6c12f;
}

#image-box-wrap {
    position: fixed;
    width: 100%;
    top: 0px;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgb(0 0 0 / 82%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    user-select: none;
}

#image-box-wrap.loading::after {
    content: "";
    background: url(../img/loader.svg?v=2) no-repeat;
    position: absolute;
    width: 150px;
    height: 150px;
	z-index: -1;
}

#image-box-wrap > div:first-child {
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
    font-size: 30px;
    padding: 20px;
    z-index: 1;
}

#image-box-wrap > span {
    position: absolute;
    display: flex;
    height: 100%;
    align-items: center;
    cursor: pointer;
	z-index: 1;
}

#image-box-wrap > span svg {
    fill: #dfdfdf;
    width: 100px;
    padding: 20px;
}

#image-box-wrap > span:hover svg {
    fill: #fff;
}

#image-box-wrap > span:nth-child(2) {
    left: 0;
    padding-right: 30px;
}

#image-box-wrap > div:nth-child(3) {
    position: absolute;
    right: 0;
    top: 0;
    padding: 20px;
    z-index: 2;
    cursor: pointer;
}

#image-box-wrap > div:nth-child(3):hover svg {
    fill: #fff;
}

#image-box-wrap > div:nth-child(3) svg {
    fill: #dfdfdf;
    width: 40px;
}

#image-box-wrap > span:last-child {
    right: 0;
    padding-left: 30px;
}

#image-box-wrap img {
    max-height: 90%;
    max-width: 90%;
    opacity: 0;
    transform: translate(-5%,0);
    transition: transform .3s, opacity .3s;
}

#image-box-wrap img.show {
    transform: translate(0,0);
    opacity: 1;
}

.hr-main {
	border: 1px solid #e6c12f;
	margin-top: -30px;
	margin-bottom: 20px;
}

.box-social-wrap {
    text-align: center;
    margin-top: 5px;
}
.box-social-wrap > a {
    display: block;
    text-decoration: none;
    font-size: 20px;
    color: #2f2f2f;
    margin-top: 10px;
}

.price-block {
    display: inline-block;
}
.price-block > p {
    margin-bottom: 10px;
}

.hr-main-service {
	border: 1px solid #e6c12f;
	margin-top: 10px;
	margin-bottom: 10px;
}

.call-btn2 {
    position: fixed;
    bottom: 33px;
    right: 15px;
    display: flex;
    align-items: center;
    font-size: 17px;
    font-weight: bold;
    background: #e6c12e;
    padding: 8px 12px;
    text-decoration: none;
    color: #494949;
    width: 139px;
    border-radius: 28px;
    text-align: center;
	user-select: none;
}

.call-btn2 > img {
    -webkit-animation: 5s ease 0s normal none 0 running shake;
    animation: 5s ease 0s normal none 0 running shake;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
.call-btn2 > span {
    margin-left: -10px;
}

.bread-crumbs {
	margin-top: -60px;
	margin-bottom: 60px;
	font-weight: bold;
	text-transform: lowercase;
	display: flex;
	flex-flow: wrap;
	max-width: 100%;
}
.bread-crumbs > a {
	font-weight: bold;
	color: #575757;
	text-decoration: none;
	transition: color .1s;
}
.bread-crumbs > a:hover {
	color: #e6c12f;
}
.bread-crumbs > span {
	color: #575757;
	user-select: none;
}
.bread-crumbs > *::first-letter {
	text-transform: uppercase;
}
.bread-crumbs > a::after {
    padding-left: 3px;
    padding-right: 3px;
    content: ">";
    color: #575757;
}

.dark-section .bread-crumbs > a:not(:hover),
.dark-section .bread-crumbs > span,
.dark-section .bread-crumbs > a::after {
	color: #fff !important;
}

.dark-section .bread-crumbs {
	max-width: 450px;
}

.content {}
.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
	text-align: left;
}
.dark-section .content h1,
.dark-section .content h2,
.dark-section .content h3,
.dark-section .content h4,
.dark-section .content h5,
.dark-section .content h6 {
	color: #e6c12f;
}
section:not(.dark-section) .content h1,
section:not(.dark-section) .content h2,
section:not(.dark-section) .content h3,
section:not(.dark-section) .content h4,
section:not(.dark-section) .content h5,
section:not(.dark-section) .content h6 {
	font-weight: 600;
}
.content ul,
.content ol {
    outline: revert;
    margin: revert;
    padding: revert;
    list-style-type: revert;
}

.dark-section .content {
	font-weight: 300;
}

.modal-info-soon {
	max-width: 400px;
}

.modal-info-soon header h4 {
	font-size: 20px;
	margin-bottom: 10px;
	margin-top: 10px;
}

.modal-info-soon header {
	border-bottom: 0;
}

.modal-info-soon > div {
	padding: 0px 40px 40px 40px;
}

.modal-info-soon > div > p {
	border-top: 2px solid #e6c12f;
	padding: 40px 0px;
	text-align: center;
	font-size: 20px;
}

h1.course-h1-2 {
    font-size: 40px;
    font-weight: bold;
    text-align: left;
    color: #38393f;
    padding-bottom: 0px;
}

img[align="left"] {
	border-left: 0;
}

img[align="right"] {
	border-right: 0;
}

footer {
	background: #0a0b10;
	padding: 25px;
	padding-bottom: 100px;
}

footer > p {
    text-align: center;
    color: #ebebeb;
}