@charset "UTF-8";

@font-face {
    font-family: Amatic-SC;
    src: url('/public/fonts/AmaticSC-Regular.ttf') format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Amatic-SC;
    src: url('/public/fonts/AmaticSC-Bold.ttf') format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Manrope', sans-serif;
    line-height: 1;
    font-size: 14px;
    width: 100%;
    height: 100%;
}

body {
    flex-direction: column;
    overflow-x: hidden;
    background: #111;
}

h1, h2, h3, h4 {
    color: black;
    line-height: 1.1em;
}

html {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a, body, h1, h2, h3, h4, h5, p {
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
}

h1 {
    font-size: 46px;
    color: #fff;
    font-family: 'Amatic-SC', sans-serif;
    font-weight: 700;
    letter-spacing: 8px;
    margin-bottom: 30px;
    text-transform: uppercase;
}


*, :after, :before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

*:focus {
    outline: none;
}

img {
    max-width: 100%;
}

a {
    transition: color .3s;
}

figure {
    margin: 0;
    padding: 0;
}

textarea {
    font-family: 'Manrope', sans-serif;
}

*::-webkit-scrollbar {
    width: 5px;
    right: -10px;
    margin-left: -5px;
}

*::-webkit-scrollbar-track {
    background: #f1f1f1;
}

*::-webkit-scrollbar-thumb {
    background: #333;
}

*::-webkit-scrollbar-thumb:hover {
    background: #000;
}

* {
    box-sizing: border-box;
}

button {
    border: none;
}

.red {
    color: red;
}

.center {
    text-align: center !important;
}

.right {
    text-align: right !important;
}

.block {
    display: block;
}

svg {
    max-width: 100%;
    max-height: 100%;
}

.color-white {
    color: white;
}

.container {
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
    max-width: 100%;
}

.container-fluid {
    padding-left: 20px;
    padding-right: 20px;
}

ul, li {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

a, a:hover, a:active {
    color: inherit;
    text-decoration: none;
}

.hidden {
    display: none !important;
}

button, button:active, button:focus {
    border: none;
    outline: none;
}


/* FLEX */

/* flexbox libruary */

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.flex-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.flex-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.flex-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

.justify-content-start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.justify-content-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.justify-content-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.justify-content-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.justify-content-around {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.align-items-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.align-items-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.align-items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.align-items-baseline {
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}

.align-items-stretch {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.align-self-start {
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.align-self-end {
    -ms-flex-item-align: end;
    align-self: flex-end;
}

.align-self-center {
    -ms-flex-item-align: center;
    align-self: center;
}

.align-self-baseline {
    -ms-flex-item-align: baseline;
    align-self: baseline;
}

.align-self-stretch {
    -ms-flex-item-align: stretch;
    align-self: stretch;
}

.flex-nowrap {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.flex-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
}

.order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

.order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}

.order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
}

.align-content-start {
    -ms-flex-line-pack: start;
    align-content: flex-start;
}

.align-content-end {
    -ms-flex-line-pack: end;
    align-content: flex-end;
}

.align-content-center {
    -ms-flex-line-pack: center;
    align-content: center;
}

.align-content-between {
    -ms-flex-line-pack: justify;
    align-content: space-between;
}

.align-content-around {
    -ms-flex-line-pack: distribute;
    align-content: space-around;
}

.align-content-stretch {
    -ms-flex-line-pack: stretch;
    align-content: stretch;
}

#background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    z-index: 1;
}

#background img {
    position: relative;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
    z-index: 3;
    transition: transform 5s;
    object-fit: cover;
}

#header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
    padding: 20px 0;
}

#header .inner {
    display: flex;
    align-items: center;
}

#header .header__logo {
    position: relative;
    z-index: 2;
    margin: auto;
}

#header .header__logo a {
    display: block;
}

#header .header__logo svg {
    height: 25px;
    fill: #fff;
    transition: fill .3s;
}

#header .header__logo:hover svg {
    fill: red;
}

#header .header__menu {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1;
    display: none;
}

#header .header__menu ul {
    display: flex;
    justify-content: center;
    gap: 40px;
}

#header .header__menu ul li {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

#header .header__menu ul li a {
    padding-left: 10px;
    padding-right: 10px;
    color: #fff;
    text-transform: uppercase;
    line-height: 40px;
    font-size: 24px;
    letter-spacing: 5px;
    font-family: 'Amatic-SC', sans-serif;
    font-weight: 700;
    position: relative;
}

#header .header__menu ul li a:before {
    content: '';
    display: block;
    height: 10px;
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    width: 0;
    z-index: -1;
    background: red;
    transition: width .5s;
    transform: translateX(0);
}

#header .header__menu ul li a:hover:before, #header .header__menu ul li a:focus:before, #header .header__menu ul li a.active:before {
    width: 100%;
}

@keyframes menu-before {
    0% {
        width: 0;
        transform: translateX(0);
    }
    50% {
        width: 100%;
        transform: translateX(0);
    }
    100% {
        width: 100%;
        transform: translateX(100%);
    }
}

#header .header__burger {
    position: absolute;
    width: 25px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

#header .header__burger span {
    position: relative;
    height: 3px;
    border-radius: 1.5px;
    background: #fff;
    transition: transform .3s;
}

#header .header__burger span:first-child, #header .header__burger span:last-child {
    width: 100%;
}

#header .header__burger span:nth-child(2) {
    width: 70%;
}

#header .header__burger.active span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 4px;
}

#header .header__burger.active span:nth-child(2) {
    display: none;
}

#header .header__burger.active span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    bottom: 4px;
}


#footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 98;
    padding: 30px 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
}

#footer .inner {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.social ul {
    display: flex;
    gap: 15px;
}

.social ul li a {
    display: block;
}

.social svg {
    fill: #fff;
    width: 24px;
    height: 24px;
    transition: fill .3s;
}

.social a:hover svg {
    fill: red;
}

#footer .footer__copyrite {
    color: #808080;
}

#social {
    display: none;
    position: fixed;
    right: 10px;
    top: 0;
    bottom: 0;
    z-index: 4;
}

#social ul {
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.header__menu li, .header__burger, .header__logo, #social, .footer__social, .footer__copyrite {
    opacity: 0;
    transition: transform 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955), opacity 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transform: scale(.1);
}

.header__burger {
    transition-delay: 0s;
}

.header__logo {
    transition: transform 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955), opacity 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955), fill .3s;
    transition-delay: 0s;
}

.header__menu li:nth-child(1) {
    transition-delay: .2s;
}

.header__menu li:nth-child(2) {
    transition-delay: .4s;
}

.header__menu li:nth-child(3) {
    transition-delay: .6s;
}

.header__menu li:nth-child(4) {
    transition-delay: .8s;
}

.header__menu li:nth-child(5) {
    transition-delay: 1s;
}
.header__menu li:nth-child(6) {
    transition-delay: 1.2s;
}

.footer__social {
    transition-delay: .2s;
}

.footer__copyrite {
    transition-delay: .4s;
}

#social {
    transition-delay: .6s;
}

.animation .header__burger, .animation .header__logo, .animation .header__menu li, .animation #social, .animation .footer__social, .animation .footer__copyrite {
    opacity: 1;
    transform: none;
}

.home__page-background {
    background: #640100;
    background-image: radial-gradient(circle, #640100 0%, #640100 70%, #2b0100 100%);
}

.animation .home__page-background img{
    transform: scale(0.9);
}

.home__page-content .container {
    position: absolute;
    bottom: 90px;
}

.home__page-content h2 {
    color: #fff;
    margin-top: 15px;
    font-weight: 100;
    font-size: 20px;
}

#content {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 90px 0;
    opacity: 0;
    transition: transform .5s cubic-bezier(0.455, 0.03, 0.515, 0.955), opacity .5s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transform: translateY(300px);
    z-index: 2;
    overflow-y: auto;
}

#content .container {
    max-width: 1400px;
}

#content {
    transition-delay: .2s;
}

.animation #content {
    opacity: 1;
    transform: translateY(0);
}


.music__page_content h2 {
    color: #fff;
    margin-bottom: 20px;
    font-family: 'Amatic-SC', sans-serif;
    font-weight: 700;
    letter-spacing: 5px;
    font-size: 30px;
}

.listen__platforms_lists {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 50px;
}

.listen__platforms_item {
    width: calc(50% - 10px);
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 15px;
}

.listen__platforms_item-title {
    color: #fff;
    text-align: right;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: normal;
}

.listen__platforms_item-logo {

}

.listen__song {
    margin-bottom: 30px;
}


#mobile-menu {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    z-index: 99;
    -webkit-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
    -webkit-transition: transform .3s, opacity .3s;
    transition: transform .3s, opacity .3s;
}

#mobile-menu.active {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.mobile-menu__body {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
    width: 100%;
    background: #000;
}

.mobile-menu__body-inner {
    position: absolute;
    top: 90px;
    right: 20px;
    left: 25px;
    bottom: 20px;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

.mobile-menu__menu {
    margin-bottom: 40px;
}

.mobile-menu__listen, .mobile-menu__social {
    margin-bottom: 20px;
}
.mobile-menu__listen{
    margin-top: auto;
}
.mobile-menu__social svg, .mobile-menu__listen svg {
    fill: #747474;
    height: 30px;
    width: 30px;
}

.mobile-menu__social ul, .mobile-menu__listen ul {
    justify-content: center;
}
#mobile-menu .mobile-menu__menu ul{
    display: flex;
    flex-direction: column;
    align-items: center;
}
#mobile-menu .mobile-menu__menu ul > li > a {
    display: inline-block;
    text-transform: uppercase;
    line-height: 60px;
    font-size: 30px;
    letter-spacing: 8px;
    font-family: 'Amatic-SC', sans-serif;
    font-weight: 700;
    color: #ccc;
    transition: color .2s;
    text-align: center;
    position: relative;
    z-index: 1;
    padding-left: 15px;
    padding-right: 15px;
}

#mobile-menu .mobile-menu__menu ul > li >a:before {
    content: '';
    display: block;
    height: 10px;
    width: 100%;
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    z-index: -1;
    background: red;
    transition: opacity .5s;
    opacity: 0;
}

#mobile-menu .mobile-menu__menu ul > li:hover a:before, #mobile-menu .mobile-menu__menu ul > li a.active:before {
    opacity: 1;
}

.mobile-menu__body .mobile-menu__menu ul > li {
    transition: all .2s ease-in-out;
    transform: translateX(-100vw);
    opacity: 0;
}

.mobile-menu__social, .mobile-menu__listen{
    transition: all .2s ease-in-out;
    transform: translateY(100vw);
    opacity: 0;
}

.mobile-menu__body.active .mobile-menu__menu ul > li, .mobile-menu__body.active .mobile-menu__social, .mobile-menu__body.active .mobile-menu__listen {
    transform: none;
    opacity: 1;
}

.mobile-menu__body.active .mobile-menu__menu ul > li:nth-child(1) {
    transition-delay: .2s;
}

.mobile-menu__body.active .mobile-menu__menu ul > li:nth-child(2) {
    transition-delay: .35s;
}

.mobile-menu__body.active .mobile-menu__menu ul > li:nth-child(3) {
    transition-delay: .5s;
}

.mobile-menu__body.active .mobile-menu__menu ul > li:nth-child(4) {
    transition-delay: .65s;
}

.mobile-menu__body.active .mobile-menu__menu ul > li:nth-child(5) {
    transition-delay: .8s;
}
.mobile-menu__body.active .mobile-menu__menu ul > li:nth-child(6) {
    transition-delay: .95s;
}

.mobile-menu__body.active .mobile-menu__listen {
    transition-delay: 1.1s;
}

.mobile-menu__body.active .mobile-menu__social {
    transition-delay: 1.25s;
}

.mobile-menu__body.closed .mobile-menu__menu ul > li:nth-child(1) {
    transition-delay: 1s;
}

.mobile-menu__body.closed .mobile-menu__menu ul > li:nth-child(2) {
    transition-delay: .85s;
}

.mobile-menu__body.closed .mobile-menu__menu ul > li:nth-child(3) {
    transition-delay: .7s;
}

.mobile-menu__body.closed .mobile-menu__menu ul > li:nth-child(4) {
    transition-delay: .55s;
}

.mobile-menu__body.closed .mobile-menu__menu ul > li:nth-child(5) {
    transition-delay: .4s;
}
.mobile-menu__body.closed .mobile-menu__listen {
    transition-delay: .25s;
}
.mobile-menu__body.closed .mobile-menu__social {
    transition-delay: .1s;
}



.mobile-menu__social-title{
    text-transform: uppercase;
    font-size: 12px;
    color: #747474;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 500;
}

.contact__page-content h2{
    font-family: 'Amatic-SC', sans-serif;
    display: block;
    margin-bottom: 30px;
    letter-spacing: 5px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    font-size: 28px;
}

.contact_item-title{
    font-family: 'Amatic-SC', sans-serif;
    display: block;
    margin-bottom: 20px;
    letter-spacing: 8px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    font-size: 20px;
}
.contact_item{
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact_item a {
    margin-bottom: 20px;
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: .2rem;
    position: relative;
}
.contact_item > a:hover{
    color: red;
}
.contact__page-background {
    background: #640100;
    background-image: radial-gradient(circle, #640100 0%, #640100 50%, #2b0100 100%);
}

.contact__page-background img{
    height: 100%;
    filter: drop-shadow(0 0 10px #fff);
    opacity: 1;
    transition: opacity .5s !important;
    margin-left: 0 !important;
    transform: rotateY(180deg);
}
.animation .contact__page-background img{
    opacity: 0.5;
}

#content.watch__page-content .container{
    max-width: 100%;
}
#watch__videos, #watch__live{
    display: flex;
    flex-wrap: wrap;
    gap: 70px;
    margin-bottom: 50px;
}

.watch__video{
    position: relative;
    width: 100%;
    display: block;
    cursor: pointer;
    transition: transform .5s cubic-bezier(0.455, 0.03, 0.515, 0.955), opacity .5s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transform: translateY(300px);
}
.animation .watch__video{
    transform: translateY(0);
}
.watch__video-inner{
    width: 100%;
    padding-top: 56%;
    transition: transform .5s;
}
.watch__video:hover .watch__video-inner{
    transform: scale(1.1);
}
.watch__video-play svg{
    width: 100px;
    height: 100px;
    fill: #fff;
    margin: auto;
    transition: transform .5s, fill .5s;
}
.watch__video:hover svg{
    fill: red;
    transform: scale(1.1);
}
.watch__video-poster{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.watch__video img{
    position: relative;
    z-index: 1;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.watch__video-play{
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background: #00000052;
    background: linear-gradient(to top, #000000d4 0%, #00000052 20%, #00000052 100%);
}


.watch__video-title{
    position: absolute;
    bottom: -13px;
    left: 15px;
    z-index: 3;
    color: #fff;
    font-weight: 700;
    font-size: 26px;
    letter-spacing: 5px;
    font-family: 'Amatic-SC', sans-serif;
    transition: color .5s, transform .5s;
}

.watch__video:hover .watch__video-title{
    transform: translateY(-25px);
    color: red;
}

.watch__video-link{
    width: 100%;
}

#content.news__page-content .container {
    max-width: 100%;
}

#news__articles, #news__articles-articles {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}

.news__article{
    position: relative;
    width: 100%;
    display: block;
    cursor: pointer;
    transition: transform .5s cubic-bezier(0.455, 0.03, 0.515, 0.955), opacity .5s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transform: translateY(300px);
}
.animation .news__article{
    transform: translateY(0);
}
.news__article-inner{
    width: 100%;
    padding-top: 80%;
    transition: transform .5s;
}
.news__article:hover .news__article-inner{
    transform: scale(1.1);
}

.news__article:not(.news__video) .news__article-inner:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background: #00000052;
    transition: background-color .5s;
}
.news__article:not(.news__video):hover .news__article-inner:before{
    background: rgba(0, 0, 0, 0.63);
}

.news__article:not(.news__video) .news__article-inner:after{
    content: 'Read more';
    position: absolute;
    top: 0;
    z-index: 3;
    opacity: 0;
    width: 120px;
    height: 40px;
    margin: auto;
    background: red;
    color: #fff;
    left: 0;
    right: 0;
    bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: opacity .5s;
    font-weight: 500;
}

.news__article:not(.news__video):hover .news__article-inner:after{
    opacity: 1;
}


.news__article-play svg{
    width: 100px;
    height: 100px;
    fill: #fff;
    margin: auto;
    transition: transform .5s, fill .5s;
}
.news__article:hover svg{
    fill: red;
    transform: scale(1.1);
}
.news__article-poster{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.news__article img{
    position: relative;
    z-index: 1;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.news__article-play{
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background: #00000052;
}


.news__article-title{
    position: absolute;
    z-index: 3;
    color: #fff;
    font-size: 18px;
    transition: color .5s, transform .5s;
    background: linear-gradient(to top, #000 0%, transparent 100%);
    min-height: 100px;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: end;
    padding: 20px;
    line-height: 1.3;
}

.news__article:hover .news__article-title{
    color: red;
}

.news__page-content h2 {
    color: #fff;
    margin-bottom: 20px;
    font-family: 'Amatic-SC', sans-serif;
    font-weight: 700;
    letter-spacing: 5px;
    font-size: 38px;
}

.about__page-content{
    color: #fff;
}

.about__page-content p{
    color: #ffffff;
    line-height: 2;
    font-size: 16px;
    margin-bottom: 20px;
}

.about__page-content h2{
    color: #ffffff;
    margin-bottom: 50px;
    margin-top: 50px;
    letter-spacing: 5px;
    font-size: 38px;
    font-family: 'Amatic-SC', sans-serif;
    font-weight: 700;

}