
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Benzin';
    src: url('../fonts/Benzin-ExtraBold.eot');
    src: url('../fonts/Benzin-ExtraBold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Benzin-ExtraBold.woff2') format('woff2'),
    url('../fonts/Benzin-ExtraBold.woff') format('woff'),
    url('../fonts/Benzin-ExtraBold.ttf') format('truetype'),
    url('../fonts/Benzin-ExtraBold.svg#Benzin-ExtraBold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Benzin';
    src: url('../fonts/Benzin-Medium.eot');
    src: url('../fonts/Benzin-Medium.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Benzin-Medium.woff2') format('woff2'),
    url('../fonts/Benzin-Medium.woff') format('woff'),
    url('../fonts/Benzin-Medium.ttf') format('truetype'),
    url('../fonts/Benzin-Medium.svg#Benzin-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Century Gothic';
    src: url('../fonts/CenturyGothic-Bold.eot');
    src: url('../fonts/CenturyGothic-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/CenturyGothic-Bold.woff2') format('woff2'),
    url('../fonts/CenturyGothic-Bold.woff') format('woff'),
    url('../fonts/CenturyGothic-Bold.ttf') format('truetype'),
    url('../fonts/CenturyGothic-Bold.svg#CenturyGothic-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Century Gothic';
    src: url('../fonts/CenturyGothic-BoldItalic.eot');
    src: url('../fonts/CenturyGothic-BoldItalic.eot?#iefix') format('embedded-opentype'),
    url('../fonts/CenturyGothic-BoldItalic.woff2') format('woff2'),
    url('../fonts/CenturyGothic-BoldItalic.woff') format('woff'),
    url('../fonts/CenturyGothic-BoldItalic.ttf') format('truetype'),
    url('../fonts/CenturyGothic-BoldItalic.svg#CenturyGothic-BoldItalic') format('svg');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}


:focus, button, button:focus, input, input:focus {
    outline: 0;
}

:after, :before {
    box-sizing: border-box;
}

a {
    color: var(--green-color);
    text-decoration: none;
    background-color: transparent;
}

a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.list--unstyled {
    list-style: none;
    padding: 0;
    margin: 0;
}

.justify-content-start {
    justify-content: flex-start;
}

.justify-content-end {
    justify-content: flex-end;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-around {
    justify-content: space-around;
}

.align-items-start {
    align-items: flex-start;
}

.align-items-end {
    align-items: flex-end;
}

.align-items-center {
    align-items: center;
}

.align-items-baseline {
    align-items: baseline;
}

.align-items-stretch {
    align-items: stretch;
}

.align-content-start {
    align-content: flex-start;
}

.align-content-end {
    align-content: flex-end;
}

.align-content-center {
    align-content: center;
}

.align-content-between {
    align-content: space-between;
}

.align-content-around {
    align-content: space-around;
}

.align-content-stretch {
    align-content: stretch;
}

.align-self-auto {
    align-self: auto;
}

.align-self-start {
    align-self: flex-start;
}

.align-self-end {
    align-self: flex-end;
}

.align-self-center {
    align-self: center;
}

.align-self-baseline {
    align-self: baseline;
}

.align-self-stretch {
    align-self: stretch;
}

.fixed {
    position: fixed;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.sticky {
    position: sticky;
}

.w-100p {
    width: 100%;
}

.h-100p {
    height: 100%;
}

.d-flex {
    display: flex;
}

.d-none {
    display: none;
}

.d-block {
    display: block;
}

.d-grid {
    display: grid;
}

.flex-column {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.center {
    margin: 0 auto;
    text-align: center;
}

.d-flex-normal {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

:root {
    --dark-color: #161616;
    --white-color: #F0F0F0;
    --pink-color: #E2007A;
    --grey-color: #DCDCDC;
    --purple-color: #3D0E7B;
}

.container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}

.wrap {
    overflow-x: hidden;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6, .title, .font {
    font-weight: bold;
    line-height: 135%;
    font-family: 'Century Gothic', "Arial Black", sans-serif;

}

h1, .h1, .top-title {
    font-size: 210px;
}

h2, .h2 {
    font-size: 150px;
}

h3, .h3 {
    font-size: 62px;
}

h4, .h4 {
    font-size: 48px;
}

h5, .h5 {
    font-size: 36px;
}

h6, .h6 {
    font-size: 27px;
}


body {
    overflow-x: hidden;
    color: var(--white-color);
    font-size: 22px;
    line-height: 120%;
    font-weight: 500;
    position: relative;
    min-height: 100vh;
    background: var(--dark-color);
    font-family: 'Benzin', Arial, sans-serif;
}

.header {
    padding: 35px 0;
}

.is--inner .header {
    position: relative;
}

.is--inner:after {
    content: "";
    position: absolute;
    background: url("../images/blink-inner2.png") no-repeat;
    width: 753px;
    height: 767px;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: -1;
}

.is--inner .header:before {
    content: "";
    position: absolute;
    background: url("../images/blink-inner.png") no-repeat;
    width: 791px;
    height: 662px;
    left: -350px;
    top: 0;
    z-index: -1;
}

.header-text {
    font-size: 24px;
    margin: 0 71px;
    text-transform: uppercase;
    flex-shrink: 0;
}

.text-grad {
    background: linear-gradient(30deg, #3D0E7B 7.85%, #E2007A 85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #E2007A;
}

.fotos-item {
    width: calc(25% - 40px);
    height: 280px;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 20px 20px;
}

.fotos-item:hover img {
    transform: scale(1.2);
}

.fotos-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.2s linear;
}

.fotos-item {
    display: block;
}

.fotos-item:hover img {
    filter: blur(2px);
}

.fotos-item img {
    border-radius: 8px;
    overflow: hidden;
    display: block;
}

.fotos-text {
    font-size: 16px;
    top: 20px;
    bottom: 40px;
    left: 20px;
    text-transform: uppercase;
    align-items: flex-start;
}

.fotos-text i {
    font-style: normal;
    background: var(--purple-color);
    padding: 0 5px;
    display: table;
}

.fotos-text strong {
    font-weight: 500;
    margin-top: auto;
}

.fotos-text strong i {
    font-style: normal;
    background: var(--pink-color);
    padding: 0 5px;
}

.fotos-left {
    width: 75%;
}

.fotos-left a {
    margin: 0 5px;
}

.fotos-right {
    width: 25%;
}

.photoreport-photo {
    max-width: calc(33.3% - 4px);
    margin: 2px;
}

.photoreport-photo.is--big {

}

.photoreport-photo img {
    display: block;
    max-height: 100%;
}

.header-text span {
    display: block;
}

.header-cursive {
    font-size: 15px;
    line-height: 135%;
    max-width: 530px;
    font-style: italic;
}

.footer {
    margin-top: 135px;
    padding: 40px 0;
}

.footer-hash {
    max-width: 250px;
    font-size: 18px;
    line-height: 125%;
    font-weight: 300;
    margin: 0 50px;
}

.footer-hash b {
    font-size: 18px;
}

.footer-hash span {
    color: var(--white-color);
    margin-top: 5px;
    display: block;
    font-weight: bold;
    line-height: normal;
}

.footer-hash span {
    font-size: 40px;
}

.footer-left p {
    flex-shrink: 0;
    margin-top: auto;
}

.footer-left p > a {
    margin-right: 20px;
}

.footer-left p > a, .footer-left p > span {
    color: var(--white-color);
    opacity: 0.4;
    font-size: 16px;
}

.footer-left p > a:hover {
    opacity: 0.8;
}

.footer-right {
    flex-grow: 1;
}

.social a:not(:last-child) {
    margin-right: 10px;
}

.social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: rgba(228, 229, 224, 0.15);
    border: 1px solid rgba(228, 229, 224, 0.25);
    border-radius: 15px;
}

.footer-links a {
    color: var(--white-color);
    text-transform: lowercase;
}

.footer-links a:not(:last-child) {
    margin-right: 20px;
}

.footer-contact {
    margin-bottom: 30px;
}

.footer-contact__item {
    font-size: 20px;
}

.footer-contact__item:first-of-type {
    margin-right: 45px;
}

.footer-contact__item i {
    margin-right: 15px;
    width: 87px;
    height: 87px;
}

.footer-contact__item i img {
    border-radius: 100%;
    overflow: hidden;
}

.footer-contact__item a {
    color: var(--white-color);
    font-size: 18px;
}

.footer-links {
    margin-left: 10px;
}

.footer-contact__item b {
    font-size: 16px;
    font-weight: 500;
    display: block;
    margin-bottom: 9px;
    color: var(--white-color);
}

.footer-contact__item a:hover,
.footer-links a:hover {
    opacity: 0.4;
}

.is--inner .header-text {
    margin: 0;
    text-align: right;
}

.header-name span {
    font-size: 20px;
}

.header-name p {
    font-size: 40px;
    text-transform: uppercase;
    line-height: 100%;
    margin-top: 25px;
}

.is--inner .logo img {
    width: 224px;
}

.is--inner .header-text {
    font-size: 35px;
    line-height: 100%;
}

@media screen and (max-width: 1600px) {
    body {
        font-size: 20px;
    }

    .container {
        max-width: 1150px;
    }

    h3, .h3 {
        font-size: 50px;
    }

    .fotos-right img {
        max-height: 504px;
    }

    .footer-hash span {
        font-size: 32px;
    }

    .footer-contact__item i {
        width: 70px;
        height: 70px;
    }

    .footer-contact__item b {
        font-size: 14px;
    }

    .is--inner .header-text {
        font-size: 28px;
    }

    .is--inner .logo img {
        width: 180px;
    }

    .header-name span {
        font-size: 16px;
    }

    .header-name p {
        font-size: 32px;
    }
}


@media screen and (max-width: 1279px) {
    body {
        font-size: 18px;
    }

    .container {
        max-width: 980px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .header .logo {
        flex-shrink: 0;
    }

    .header-text {
        font-size: 20px;
    }

    .header-cursive {
        max-width: 420px;
        font-size: 13px;
    }

    .fotos-right img {
        max-height: 394px;
    }

    .fotos-text {
        font-size: 12px;
        left: 10px;
        top: 10px;
        bottom: 10px;
    }

    .footer {
        margin-top: 100px;
    }

    .footer .container {
        flex-wrap: wrap;
    }

    .footer-hash {
        order: 1;
        width: 100%;
        max-width: unset;
        margin: 0 0 50px;
        display: flex;
        align-items: center;
    }

    .footer-hash span {
        flex-shrink: 0;
        margin-bottom: unset;
        margin-right: 20px;
    }

    .footer-hash b {
        max-width: 530px;
    }

    .footer-left {
        order: 2;
        margin-right: 40px;
    }

    .footer-right {
        order: 3;
        margin-left: auto;
    }
    .fotos-item{
        margin: 0 15px 15px;
        width: calc(33.3% - 30px);
    }
}


@media screen and (max-width: 991px) {
    .container {
        padding: 0 15px;
    }

    .header {
        flex-wrap: wrap;
    }

    .header-cursive {
        width: 100%;
        margin-top: 20px;
        max-width: 800px;
    }

    .fotos {
        flex-wrap: wrap;
    }

    .fotos-left {
        width: 100%;
        order: 1;
    }

    .fotos-right {
        order: 3;
        width: unset;
    }

    .fotos-bottom {
        order: 2;
    }

    .footer-contact,
    .footer-right {
        width: 100%;
    }

    .footer-contact {
        margin: 40px 0;
    }

    .footer .container {
        position: relative;
        padding-bottom: 40px;
    }

    .footer-left p {
        position: absolute;
        bottom: 0;
        left: 15px;
        right: 15px;
        justify-content: space-between;
    }

    .header-name p {
        font-size: 20px;
    }

    .is--inner .header-text {
        font-size: 22px;
    }

    .is--inner .logo img {
        width: 130px;
    }

    .header-name span {
        font-size: 14px;
    }
}

@media screen and (max-width: 767px) {
    .fotos-item {
        width: calc(50% - 40px);
        height: 200px;
    }

    .footer-hash span {
        font-size: 100px;
    }

    .fotos-text {
        font-size: 12px;
        top: 10px;
        left: 10px;
        bottom: 10px;
        line-height: 100%;
    }

    .header-name p {
        font-size: 14px;
        margin-top: 5px;
    }

    .is--inner .header-text {
        font-size: 16px;
    }

    .is--inner .logo img {
        width: 80px;
    }

    .header-name span {
        font-size: 10px;
    }
}


@media screen and (max-width: 640px) {

    .footer .social {
        margin-bottom: 20px;
    }

    .footer-hash {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-contact__item:first-of-type {
        margin-right: unset;
        margin-bottom: 45px;
    }

    .header-text {
        font-size: 16px;
        margin: 0 20px;
    }
}

@media screen and (max-width: 500px) {
    .header .logo {
        width: 80px;
    }

    .header-text {
        font-size: 14px;
        line-height: 100%;
    }

    .fotos-left .d-flex {
        flex-wrap: wrap;
    }

    .fotos-item {
        width: 100%;
    }

    .fotos-bottom {
        flex-wrap: wrap;
    }

    .fotos-bottom .fotos-item:first-of-type {
        width: calc(65% - 10px);
    }

    .fotos-bottom .fotos-item:nth-child(2) {
        width: calc(39% - 10px);
    }

    .fotos-half .fotos-item:not(:last-child) {
        width: calc(50% - 10px);
    }

    .is--inner .header-text {
        text-align: center;
        width: 100%;
        max-width: 260px;
        margin: 15px auto 0;
    }

    .header-text span {
        display: unset;
    }
}

@media screen and (max-width: 390px) {
    .footer-links {
        width: 100%;
        justify-content: space-between;
    }

    .footer-links a:not(:last-child) {
        margin-right: 5px;
    }

    .header {
        padding: 20px 0;
    }
}