/* Normal (non-italic) */
@font-face {
    font-family: 'Nunito Sans';
    src: url('../fonts/Nunito_Sans/NunitoSans-VariableFont_YTLC,opsz,wdth,wght.ttf') format('truetype');
    font-weight: 200 1000;
    font-stretch: 75% 125%;
    font-style: normal;
}

/* Italic */
@font-face {
    font-family: 'Nunito Sans';
    src: url('../fonts/Nunito_Sans/NunitoSans-Italic-VariableFont_YTLC,opsz,wdth,wght.ttf') format('truetype');
    font-weight: 200 1000;
    font-stretch: 75% 125%;
    font-style: italic;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background: #000;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
}

.dn {
    display: none !important;
}

.flex {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.container {
    max-width: 1480px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.hero {
    position: relative;
    min-height: 100vh;
    margin-top: 80px;
    /*background: url('../images/ioty/bg_video_min.png') center/cover no-repeat;*/
    color: #fff;
    z-index: 1;
}

.hero__video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.hero:before {
    content: "";
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    height: 100%;
}

.nav {
    height: 80px;
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #1C1C1C;
}

.nav .container, .description {
    justify-content: space-between;
}

.logged-in .nav {
    top: 32px; /* desktop admin bar height */
}

.nav .logo img {
    height: 15px;
    width: auto;
}

.nav nav {
    margin-right: 40px;
}

.nav nav a {
    margin-left: 25px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.nav nav a:hover {
    text-decoration: underline;
}

.hero-container, .description {
    max-width: 1210px;
    width: 100%;
}

.description {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-container {
    display: flex;
    align-items: flex-start;
    padding-bottom: 95px;
    position: absolute;
    bottom: 40px;
    margin: 0 auto;
    left: 0;
    right: 0;
}

.hero-title {
    text-align: center;
    padding: 250px 0;
}

.hero-title .logo {
    width: 100%;
    max-width: 644px;
    max-height: 217px;
}

.subtitle {
    font-size: 24px;
    font-weight: 400;
    max-width: 730px;
    width: 100%;
    justify-content: left;
    margin: 0;
    padding-top: 20px;
}

.details {
    font-size: 16px;
    max-width: 580px;
    width: 100%;
}

.details > div {
    margin-right: 80px;
}

.details > div:last-child {
    margin-right: 0;
}

.details span {
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0;
}

.details img + span {
    margin-left: 15px;
}

.buttons {
    text-align: left;
    padding-top: 10px;
}

.icon {
    height: 55px;
}

.icon.map-pin {
    height: 65px;
}

.contact .elementor-widget-form .e-form__buttons .elementor-button,
.contact .elementor-button-align-stretch .elementor-button,
.btn {
    min-width: 215px;
    min-height: 45px;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0;
    border-radius: 5px;

    margin-right: 35px;
    cursor: pointer;
    transition: all 0.3s ease;

    background: #D40074;
    color: #fff;
    text-transform: uppercase;
}

.contact .elementor-widget-form .e-form__buttons .elementor-button,
.contact .elementor-button-align-stretch .elementor-button,
.btn:last-child {
    margin-right: 0;
}

.contact .elementor-widget-form .e-form__buttons .elementor-button:hover,
.contact .elementor-button-align-stretch .elementor-button:hover,
.btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 44, 143, 0.3);
}


.ioty .nav button:hover {
    text-decoration: none;
    outline: none;
}

.ioty .nav button {
    text-decoration: none;
    outline: none;
    background-color: transparent;
}

/* region Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    z-index: 1001;
}

.hamburger .hamburger__line {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.2s ease;
}

.hamburger.is-open .hamburger__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.is-open .hamburger__line:nth-child(2) {
    opacity: 0;
}

.hamburger.is-open .hamburger__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 998;
}

.nav-overlay.is-open {
    display: block;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    header.nav nav {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        width: 100%;
        background: #111111;
        border: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        z-index: 9999;
    }

    header.nav nav.is-open {
        display: flex;
    }

    header.nav nav a {
        display: block;
        width: 100%;
        padding: 18px 24px;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        font-size: 1rem;
        color: #fff;
        text-decoration: none;
        text-align: left;
        opacity: 1;
        visibility: visible;
        margin-left: 0;
    }

    header.nav nav a:hover {
        color: #D40074;
    }

    header.nav nav a:last-child {
        border-bottom: none;
    }

    .logged-in.ioty header.nav nav {
        top: 126px;
    }

    .ioty .logo {
        position: relative;
        z-index: 1001;
    }
}

/* endregion */

/**#region SECTION: About **/

.ioty-about {
    background-color: #000;
    color: #fff;
    padding: 80px 0 100px;
}

.ioty-about__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.ioty-about__header {
    margin-bottom: 107px;
}

.ioty-about__title {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 900;
    font-size: 48px;
    line-height: 100%;
    color: #fff;
    margin-bottom: 16px;
    font-style: italic;
}

.ioty-about__line {
    display: block;
    width: 678px;
    max-width: 100%;
    height: 10px;
}

.ioty-about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.ioty-about__text {
    display: flex;
    flex-direction: column;
}

.ioty-about__paragraph {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0;
    color: #fff;
    margin-bottom: 31px;
}

.ioty-about__quote {
    margin-bottom: 24px;
}

.ioty-about__quote p {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 300;
    font-style: italic;
    font-size: 36px;
    line-height: 1.6;
    letter-spacing: 0;
    color: #fff;
    background: rgba(217, 217, 217, 0.11);
    padding: 25px 40px;
    text-align: center;
}

.ioty-about__paragraph--bold {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
}

.ioty-about__video-wrapper {
    display: flex;
    flex-direction: column;
}

.ioty-about__video-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    cursor: pointer;
}

.ioty-about__video-thumb .ioty-about__video-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);*/
    background-image: url("../images/ioty/grafik 5.png");
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.ioty-about__video-thumb.is-playing .ioty-about__video-placeholder {
    opacity: 0;
    pointer-events: none;
}

.ioty-about__play-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.ioty-about__video-thumb:hover .ioty-about__play-btn {
    transform: scale(1.1);
    opacity: 0.85;
}

.ioty-about__video-thumb iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 900px) {
    .ioty-about__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ioty-about__title {
        font-size: 32px;
    }
}

@media (max-width: 600px) {
    .ioty-about {
        padding: 0;
    }

    .ioty-about__container {
        padding: 0 20px;
    }
}

/**#endregion SECTION: About **/


/**#region SECTION: Program **/

.ioty-program {
    background-color: #000;
    color: #fff;
    padding: 80px 0 100px;
}

.ioty-program__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.ioty-program__header {
    margin-bottom: 84px;
}

.ioty-program__title {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 900;
    font-size: 48px;
    line-height: 100%;
    color: #fff;
    margin-bottom: 16px;
    font-style: italic;
}

.ioty-program__line {
    display: block;
    width: 678px;
    max-width: 100%;
    height: 10px;
}

.ioty-program__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 720px;
    margin: 0 auto;
}

.ioty-program__item {
    display: flex;
    align-items: center;
    gap: 40px;
    background: #383838;
    border-radius: 5px;
    padding: 29px 35px;
}

.ioty-program__item--highlight {
    background: #4D002A;
}

.ioty-program__time {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0;
    color: #fff;
    white-space: nowrap;
    min-width: 120px;
}

.ioty-program__label {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0;
    color: #fff;
}

@media (max-width: 600px) {
    .ioty-program {
        padding: 50px 0 60px;
    }

    .ioty-program__container {
        padding: 0 20px;
    }

    .ioty-program__item {
        gap: 20px;
        padding: 18px 20px;
    }

    .ioty-program__time {
        min-width: 90px;
        font-size: 14px;
    }

    .ioty-program__label {
        font-size: 14px;
    }
}

/**#endregion SECTION: Program **/


/**#region SECTION: Speaker **/

.ioty-speaker {
    background-color: #000;
    color: #fff;
    padding: 80px 0 100px;
}

.ioty-speaker__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.ioty-speaker__header {
    margin-bottom: 103px;
}

.ioty-speaker__title {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 900;
    font-size: 48px;
    line-height: 100%;
    color: #fff;
    margin-bottom: 16px;
    font-style: italic;
}

.ioty-speaker__line {
    display: block;
    width: 678px;
    max-width: 100%;
    height: 10px;
}

.ioty-speaker__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ioty-speaker__card {
    position: relative;
    border-radius: 5px;
    padding: 24px 23px;
    background: #000;
}

.ioty-speaker__card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 5px;
    padding: 4px;
    background: linear-gradient(133.97deg, #D40074 -4.16%, #FFFFFF 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.ioty-speaker__photo {
    width: 100%;
    aspect-ratio: 3 / 3;
    background: #1a1a1a;
    overflow: hidden;
}

.ioty-speaker__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ioty-speaker__photo--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ioty-speaker__photo--placeholder svg {
    opacity: 0.2;
}

.ioty-speaker__info {
    padding: 0;
}

.ioty-speaker__name {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0;
    color: #fff;
    margin-top: 15px;
    margin-bottom: 7px;
}

.ioty-speaker__role {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
    color: #fff;
    margin-bottom: 7px;
}

@media (max-width: 900px) {
    .ioty-speaker__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .ioty-speaker {
        padding: 50px 0 60px;
    }

    .ioty-speaker__container {
        padding: 0 20px;
    }

    .ioty-speaker__title {
        font-size: 26px;
    }

    .ioty-speaker__grid {
        grid-template-columns: 1fr;
    }
}

/**#endregion SECTION: Speaker **/

/**#region SECTION: Gallery **/

.ioty-gallery {
    background-color: #000;
    color: #fff;
    padding: 80px 0 100px;
}

.ioty-gallery__container {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 40px;
}

.ioty-gallery__header {
    margin-bottom: 78px;
}

.ioty-gallery__title {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 900;
    font-size: 48px;
    line-height: 100%;
    color: #fff;
    margin-bottom: 16px;
    font-style: italic;
}

.ioty-gallery__line {
    display: block;
    width: 678px;
    max-width: 100%;
    height: 10px;
}

.ioty-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 50px;
    row-gap: 20px;
}

.ioty-gallery__item {
    overflow: hidden;
}

.ioty-gallery__item img {
    width: auto;
    max-height: 202px;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.ioty-gallery__item:hover img {
    transform: scale(1.04);
}

.ioty-gallery__item--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ioty-gallery__item--placeholder svg {
    opacity: 0.15;
    display: block;
}

.ioty-gallery__item--sm {
    height: 160px;
}

.ioty-gallery__item--md {
    height: 230px;
}

.ioty-gallery__item--lg {
    height: 300px;
}

.ioty-gallery .ee-load-status .infinite-scroll-request svg path {
    fill: white;
}

@media (max-width: 900px) {
    .ioty-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .ioty-gallery {
        padding: 50px 0 60px;
    }

    .ioty-gallery__container {
        padding: 0 20px;
    }

    .ioty-gallery__title {
        font-size: 32px;
    }

    .ioty-gallery__grid {
        grid-template-columns: 1fr;
    }
}

/**#endregion SECTION: Gallery **/

/* region Lightbox */
.lb-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 24px 64px;
    box-sizing: border-box;
}

.lb-overlay.open {
    display: flex;
}

.lb-overlay__img-wrap {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lb-overlay__img {
    max-width: 100%;
    max-height: calc(100vh - 80px);
    object-fit: contain;
    border-radius: 6px;
    display: block;
    transition: opacity 0.2s ease;
}

.lb-overlay__img.fading {
    opacity: 0;
}

.lb-overlay__btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
    z-index: 10000;
}

.lb-overlay__btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lb-overlay__btn--prev {
    left: 12px;
}

.lb-overlay__btn--next {
    right: 12px;
}

.lb-overlay__close {
    position: fixed;
    top: 12px;
    right: 16px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
    z-index: 10000;
}

.lb-overlay__close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lb-overlay__counter {
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    z-index: 10000;
}

/* endregion Lightbox */

/**#region SECTION: news **/
.ioty .elementor-widget-posts-extra .ee-post {
    border-radius: 12px;
}

.ioty .elementor-widget-wrap > .elementor-element {
    height: max-content;
}

/**#endregion SECTION: news **/


/**#region SECTION: Contact **/
.contact {
    background: #000000;
    padding: 120px 0;
}

.contact .title {
    color: #fff;
    font-weight: 700;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.contact .logo {
    width: 100%;
    max-width: 644px;
    max-height: 217px;
    margin-bottom: 80px;
}

.contact .contact-container {
    width: 100%;
    margin: 0 auto;
    gap: 80px;
    align-items: flex-start;
    justify-content: center;
}

.contact .form-partner,
.contact .form-newsletter {
    flex: 0 0 auto;
    width: 100%;
    max-width: 400px;
}

.contact .elementor-field-group {
    position: relative;
    margin-bottom: 16px !important;
}

.contact .elementor-widget-form .elementor-field-group .elementor-field,
.contact .elementor-widget-form .elementor-field-group:not(.elementor-field-type-upload):not(.elementor-field-select-wrapper) .elementor-field {
    background: transparent !important;
    border-radius: 5px;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
    padding: 18px 24px;
    width: 322px;
    position: relative;
    z-index: 1;
    box-shadow: inset 0 0 0 2px transparent;
    outline: 2px solid transparent;
    background-image: linear-gradient(#000, #000), linear-gradient(93.35deg, #D40074 0%, #FFFFFF 100%) !important;
    background-origin: border-box !important;
    background-clip: padding-box, border-box !important;
    border: 2px solid transparent !important;
}

.contact .elementor-widget-form .elementor-field-group .elementor-field::placeholder,
.contact .elementor-widget-form .elementor-field-group:not(.elementor-field-type-upload):not(.elementor-field-select-wrapper) .elementor-field::placeholder {
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-align: center;
}

.contact .elementor-widget-form .elementor-field-group .elementor-field:focus,
.contact .elementor-widget-form .elementor-field-group:not(.elementor-field-type-upload):not(.elementor-field-select-wrapper) .elementor-field:focus {
    outline: none;
}

.contact .elementor-widget-form .e-form__buttons,
.contact .elementor-button-align-stretch .e-form__buttons {
    justify-content: center;
    margin-top: 0;
}

.contact .elementor-widget-form .e-form__buttons .elementor-button,
.contact .elementor-button-align-stretch .elementor-button {
    background: #e5007d;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-family: "Nunito Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: none;
    cursor: pointer;
    width: 150px !important;
    height: 47px !important;
    flex: none !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact .elementor-widget-form .e-form__buttons .elementor-button:hover,
.contact .elementor-button-align-stretch .elementor-button:hover {
    background: #ff1a8c;
}

.contact-svg {
    margin: 0 auto;
    margin-bottom: 45px;
    width: 100%;
}

@media (max-width: 940px) {
    .contact {
        padding: 80px 0;
    }

    .contact .form-newsletter div {
        width: 100%;
    }

    .contact .form-partner div {
        width: 100%;
    }

    .contact .elementor-widget-form .e-form__buttons .elementor-button, .contact .elementor-button-align-stretch .elementor-button {
        font-size: 16px;
    }

    .contact .logo {
        margin-bottom: 50px;
    }

    .contact .contact-container {
        flex-direction: column;
        gap: 0px;
        align-items: center;
    }

    .contact .form-partner,
    .contact .form-newsletter {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact .elementor-widget-form .elementor-field-group .elementor-field,
    .contact .elementor-widget-form .elementor-field-group:not(.elementor-field-type-upload):not(.elementor-field-select-wrapper) .elementor-field {
        width: 100%;
    }
}

/**#endregion SECTION: Contact **/

@media screen and (max-width: 1440px) {
    .hero-title {
        padding: 300px 0;
    }
}

@media screen and (max-width: 1366px) {
    .hero-title {
        padding: 100px 0 120px 0;
    }
}

@media screen and (max-width: 1150px) {
    .hero-container {
        flex-direction: column;
    }

    .details {
        justify-content: left;
        margin-top: 20px;
    }
}

@media screen and (max-width: 1025px) {
   .hero {
       min-height: 700px;
       height: 700px;
   }
}

@media screen and (max-width: 782px) {
    .logged-in .nav {
        top: 46px; /* Mobile admin bar is taller */
    }
}

@media screen and (max-width: 767px) {
    .ioty .elementor-element .ee-grid__item {
        margin: 0 auto 20px;
    }

    .hero {
        min-height: 700px;
    }

    .hero-container {
        padding-bottom: 0;
        position: relative;
        bottom: 80px;
    }

    .ioty > section {
        padding: 20px 0 30px;
    }

    .ioty > section h2 {
        font-size: 32px;
    }

    .ioty-about__header,
    .ioty-program__header,
    .ioty-speaker__header,
    .ioty-gallery__header,
    .contact .title {
        margin-bottom: 26px;
        font-size: 26px;
    }
}

@media screen and (max-width: 520px) {
    .hero {
        background-position-x: -80px;
    }

    .hero-title {
        padding: 130px 0;
    }

    .hero-container {
        padding-bottom: 0;
    }

    .details > div {
        justify-content: left;
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .icon, .icon.map-pin {
        height: 45px;
    }

    .buttons {
        flex-direction: column;
    }

    .btn {
        margin: 0 auto;
        margin-bottom: 16px;
        font-size: 16px;
    }

    .btn:last-child {
        margin-right: auto;
    }
}

@media screen and (min-width: 901px) and (max-width: 1099px) {
    .ioty-about__quote p {
        font-size: 28px;
    }
}

@media screen and (max-width: 580px) {
    .ioty-about__quote p {
        font-size: 28px;
        padding: 15px 10px;
    }
}

@media screen and (max-width: 360px) {
    .ioty-about__quote p {
        font-size: 22px;
    }
}
