* {
    box-sizing: border-box;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #860a23 white;
}


body {
    margin: 0;
    
}

header {
    display: flex;
    box-shadow: 0 10px 10px #07030c;
    position: relative;
}

.textHeader {
    width: 100%;
}
.headerBanner {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #860a23;
    border-bottom: 1px solid #150825d2;
    
}
.headerBanner h2 {
    color: white;
    font-size: 15px;
    font-weight: 300;
    font-family: "Noto Sans", sans-serif;
    letter-spacing: 1.5px;padding: 2px;
}
.headerBanner h2 span {
    font-weight: 600;
}
.nav,
.navBottom {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    background: rgb(122, 57, 199);
    background: linear-gradient(95deg,
            rgba(122, 57, 199, 1) 24%,
            rgba(33, 13, 57, 1) 64%);
    border-bottom: 3px solid #150825d2;
    height: min-content;
    width: 100%;
}

.logoMenu,
.logoMenuBottom {
    margin-left: 100px;
    margin-right: 200px;
}

.logoLink,
.logoLinkBottom {
    display: block;
    width: 230px;
    padding: 20px 0 10px 0;
}

.logoLink img,
.logoLinkBottom img {
    width: 100%;
}

.logoLink:hover, .logoLinkBottom:hover {
    filter: drop-shadow(2px 2px 5px #fc2947);
}
.navMenu {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
}

.nav div a:hover,
.nav nav a:hover {
    color: #fc2947;
    transition: color 0.3s;
}

.menuLink {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-family: "HURTM";
    letter-spacing: 1.5px;
    cursor: pointer;
    margin: 0 20px;
    transform: translateY(-7px);
}

.burger {
    display: none;
    position: relative;
    z-index: 50;
    align-items: center;
    justify-content: flex-end;
    align-self: center;
    width: 50px;
    height: 28px;
    margin-right: 30px;
}

.burger span {
    height: 2px;
    width: 80%;
    height: 5px;
    transform: scale(1);
    background-color: white;
}

.burger::before,
.burger::after {
    content: "";
    position: absolute;
    height: 5px;
    width: 100%;
    background-color: #fff;
    transform: all 0.3% ease 0%;
}

.burger::before {
    top: 0;
}

.burger::after {
    bottom: 0;
}

.burger.active span {
    transform: scale(0);
}

.burger.active::before {
    top: 50%;
    transform: rotate(-45deg) translate(0, -50%);
}

.burger.active::after {
    bottom: 50%;
    transform: rotate(45deg) translate(0, 50%);
}

.open {
    display: flex !important;
}

.greetingHidden {
    display: none;
}

.greeting {
    background: rgb(66, 28, 112);
    background: linear-gradient(95deg,
            rgba(66, 28, 112, 1) 16%,
            rgba(27, 11, 47, 1) 64%);
    height: 550px;
    padding: 60px 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.greetingMainHeader, .greetingMainHeaderHidden {
    margin: 0;
    font-family: "HURTM";
    font-size: 60px;
    font-weight: bold;
    letter-spacing: 3px;
    color: #9c192c;
    text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
}

.greetingHello, .greetingHelloHidden {
    margin: 20px 0;
    font-family: "HURTM";
    font-size: 50px;
    letter-spacing: 2px;
    color: #fff;
}

.gretingSubheader, .gretingSubheaderHidden {
    margin: 0;
    color: #fff;
    font-family: "HURTM";
    font-size: 26px;
    letter-spacing: 2px;
}

.greetingDescription {
    color: white;
    font-size: 18px;
    font-family: "Noto Sans", sans-serif;
    font-weight: 200;
    letter-spacing: 1px;
    width: 80%;
}

.photoHeader {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 520px;
    float: right;
}

.photoHeader img {
    height: 100%;
}

.socialMedia button {
    color: #fff;
    background-color: #860a23;
    font-size: 15px;
    font-family: "Noto Sans", sans-serif;
    font-weight: 500;
    border: 1px solid white;
    border-radius: 7px;
    padding: 10px;
    width: 200px;
    cursor: pointer;
}

/* PORTFOLIO */

.subheader {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.subheader h2 {
    margin: 60px auto;
    font-family: "HURTM";
    font-size: 60px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #210d39;
}
.subheader h3 {
    color: #210d39;
    font-size: 18px;
    font-family: "Noto Sans", sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 0 30px 30px 30px;
    filter: drop-shadow(1px 1px 2px #860a23);
    text-align: center;
}

.portfolioContainer {
    min-width: 0;
    max-width: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    position: relative;
}

.portfilioItem {
    height: 550px;
    padding: 50px 30px;
    margin: 20px;
    text-align: center;
    background-color: #eeeeee;
    border-radius: 15px;
    box-shadow: -1px -1px 6px #8b8692, 5px 5px 10px #8b8692;
}

.portfolioItemInner {
    height: 90%;
}

.portfilioItem img {
    width: 100%;
}

.portfolioItemText {
    font-size: 15px;
    font-family: "Noto Sans", sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
    margin: 30px;
    color: #210d39;
}

.portfilioItem a {
    color: #9c192c;
    font-size: 13px;
    font-family: "Noto Sans", sans-serif;
    font-weight: 500;
    padding: 10px;
    margin: 0;
    text-decoration: none;
    border: 1px solid #9c192c;
    border-radius: 7px;
}

.portfilioItem a:hover {
    color: white;
    background-color: #9c192c;
}

.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -66px;
    border: none;
    background-color: rgba(230, 25, 25, 0);
    cursor: pointer;
}

.slick-next {
    right: -66px;
    left: auto;
}

.slick-prev img,
.slick-next img {
    width: 60px;
}

.slick-dots {
    max-width: fit-content;
    padding: 10px;
    list-style-type: none;
    margin: 10px auto;
}

.slick-dots li {
    margin: 10px;
    display: inline-block;
}

.slick-dots li button {
    display: block;
    width: 15px;
    height: 15px;
    padding: 0;
    border: 2px solid #210d39;
    border-radius: 100%;
    background-color: #fff;
    text-indent: -9999px;
    cursor: pointer;
}

li.slick-active button {
    background-color: #210d39;
    border: 2px solid #210d39;
    cursor: pointer;
}

/* HOW IT WORKS */

.accordion {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

.accordion-item {
    background: rgb(66, 28, 112);
    background: linear-gradient(95deg,
            rgba(66, 28, 112, 1) 16%,
            rgba(27, 11, 47, 1) 64%);
    color: #fff;
    margin: 15px 0;
    border-radius: 7px;
    border: none;
    box-shadow: 3px 3px 5px 0 #8b8692;
}

.accordion-item-header {
    padding: 0;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.preparationIcon {
    margin: 30px;
}

.preparationIcon img {
    width: 50px;
}

.accordion-item-h h4 {
    margin: 15px 0;
    color: #fff;
    text-shadow: 2px 2px #09040f;
    font-family: "HURTM";
    font-size: 26px;
    letter-spacing: 2px;
}

.accordion-item-header p {
    width: 80%;
    font-family: "Noto Sans", sans-serif;
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 2px;
}

.accordion-item-header::after {
    content: "\002B";
    font-size: 30px;
    position: absolute;
    right: 15px;
}

.accordion-item-header.active::after {
    content: "\2212";
}

.accordion-item-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.accordion-item-body-content {
    padding: 15px;
    border-radius: 0 0 7px 7px;
    background-color: #fff;
    color: #210d39;
}

.accordion-item-body-content ul li {
    font-family: "Noto Sans", sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #210d39;
}

/* OFFERS */

#offers {
    width: 100%;
}

.offerDetails {
    display: flex;
    justify-content: center;
    margin: 20px 100px;
}

th {
    font-size: 25px;
    font-family: "HURTM";
    font-weight: normal;
    letter-spacing: 1.5px;
}

td {
    width: 200px;
    padding: 10px;
    font-size: 13px;
    font-family: "Noto Sans", sans-serif;
    font-weight: 400;
    border-bottom: 1px solid #bdbdbd;
}

td img {
    width: 15px;
}

td:first-child {
    width: 600px;
    font-size: 16px;
    font-family: "Noto Sans", sans-serif;
    font-weight: 400;
}

td:nth-child(2) {
    background-color: #eeeeee;
    text-align: center;
}

td:nth-child(3) {
    background-color: #210d3927;
    text-align: center;
}

td:last-child {
    background-color: #be260729;
    text-align: center;
}

.basic {
    color: white;
    background-color: #575656;
    text-align: center;
    border-radius: 7px 7px 0 0;
}

.standart {
    color: white;
    background-color: #210d39d7;
    text-align: center;
    border-radius: 7px 7px 0 0;
}

.premium {
    color: white;
    background-color: #9c192c;
    text-align: center;
    border-radius: 7px 7px 0 0;
}

.price {
    color: #210d39;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
}

tr .packages {
    vertical-align: top;
}

summary::marker {
    content: "\01F81F"" ";
}

details[open] summary::marker {
    content: "\01F81D"" ";
}

.descriptionHidden {
    display: none;
}
.openTable {
    position: relative;
    width: 400px;
    margin: 40px auto;
}
#toggleButton {
    width: 100%;
    cursor: pointer;
    background: rgb(66, 28, 112);
    background: linear-gradient(95deg,
            rgba(66, 28, 112, 1) 16%,
            rgba(27, 11, 47, 1) 64%);
    color: #fff;

    border-radius: 7px;
    box-shadow: 3px 3px 5px 0 #8b8692;
    padding: 20px;
    font-family: "HURTM";
    font-size: 26px;
    font-weight: bold;
    text-shadow: 2px 2px #09040f;
    letter-spacing: 2px;
    line-height: 30px;
    text-align: center;
}
#toggleButton::after {
    content: "\002B";
    position: absolute;
    font-size: 40px;
    right: 20px;
}

#toggleButton.active::after {
    content: "\2212";  
}

#includedTable {
    display: none;
}

/* BLOG */

.myBlog {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 30px;
}
.blogItem {position: relative;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    margin: 20px;
    width: 300px;
    height: 600px;
    background-color:#8b869226;
}
.blogItem img {
    width: 100%;
    border-radius: 15px 15px 0 0;
}
.blogItemHeader {
    font-family: "HURTM";
    font-size: 20px;
    letter-spacing: 1px;
    margin: 20px 20px 5px 20px;
}
.blogItemText {
    font-size: 14px;
    font-weight: 400;
    font-family: "Noto Sans", sans-serif;
    margin: 20px;
}
.blogItemTextMain {
    position: absolute;
    top: 370px; 
    left: 0px;
}
.readMoreBtn {
    position: absolute;
    bottom: 20px; 
    left: 0px;
    color: #860a23;
    font-size: 13px;
    font-family: "Noto Sans", sans-serif;
    font-weight: 400;
    border: 1px solid #860a23;
    border-radius: 7px;
    width: 100px;
    height: 40px;
    cursor: pointer;
    display: block;
    margin: 0 0 10px 20px;
}

.readMoreBtn:hover {
    color: #fff;
    background-color: #860a23;
}

/* CONTACTS */

.socialMediaBottom {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.socialMediaBottom a {
    margin: 30px;
    text-decoration: none;
}

.socialMediaBottom a img {
    width: 60px;
    height: 60px;
    background-color: #fff;
    border: 1px solid white;
    border-radius: 50%;
}

.formDescription {
    text-align: center;
    text-shadow: 1px 1px #9c192c;
    font-family: "HURTM";
    color: #210d39;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

form input,
form textarea {
    width: 400px;
    padding: 10px 20px;
    margin: 10px;
    font-family: "Noto Sans", sans-serif;
    font-size: 16px;
    color: #1b073a;
    background-color: #eeeeee;
    border: 1px solid #1b073a;
    border-radius: 7px;
    box-shadow: 3px 3px 5px 0 #8b8692;
}

form input:focus,
form textarea:focus {
    outline: none;
    box-shadow: 5px 5px 8px 0 #8b8692, -5px -5px 8px 0 #8b8692;
}

form button {
    width: 200px;
    padding: 10px 20px;
    margin: 20px;
    font-family: "Noto Sans", sans-serif;
    font-size: 17px;
    background-color: #210d39;
    color: white;
    border-radius: 7px;
    box-shadow: 3px 3px 5px 0 #8b8692;
}

form button:hover {
    background-color: #9c192c;
    cursor: pointer;
}

label.error {
    font-family: "Nunito", sans-serif;
    font-size: 15px;
}

input.error {
    border: 2px solid #9c192c;
}

input.valid {
    border: 2px solid #210d39;
}

/* FOOTER AND UP-ARROW*/

footer {
    margin-top: 30px;
}

.pageUp {
    width: 40px;
    height: 80px;
    display: none;
    position: fixed;
    bottom: 60px;
    right: 40px;
}

.pageUp img {
    width: 100%;
}

/* MODALS */

.overlay {
    display: none;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.625);
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: max-content; 
    max-width: 80%;
    max-height: 90%;
    min-height: max-content;
    padding: 30px;
    border-radius: 7px;
    background-color: #fff;
    box-shadow: 5px 5px 8px #9c192c;
    
}

.modalClose {
    position: absolute;
    top: 0;
    right: -70px;
    color: white;
    text-shadow: 3px 3px 3px #d4132d;
    font-size: 60px;
    font-weight: 900;
    font-family: "HURTM";
    line-height: 30px;
    cursor: pointer;
}
.modalText {
    overflow-y: auto;  
    scrollbar-width: thin;
    max-height: 500px;
}
.modalRead {
    width: 50%;
}
.modalSubtitle {
    margin: 20px;
    text-align: center;
    font-family: "HURTM";
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #210d39;
    text-shadow: 1px 1px #9c192c;
    line-height: 30px;
}

.modalSubtitle span {
    color: #9c192c;
    text-shadow: none;
    font-size: 13px;
    font-family: "Noto Sans", sans-serif;
    font-weight: 500;
}

.okButton, .okButtonTable {
    color: #fff;
    background-color: #860a23;
    font-size: 13px;
    font-family: "Noto Sans", sans-serif;
    font-weight: 500;
    border-radius: 7px;
    width: 100px;
    height: 40px;
    cursor: pointer;
    display: block;
    margin: 50px auto 20px auto;
}

#consultation,
#thanks,
#okButton,
#basic,
#standart,
#premium,
#smallBusiness,
#websiteCost,
#handwrittenWebsite,
#mobileAdaptation,
#hamburgerMenu, 
#pageUpButton,
#layout, 
#feedbackForm, 
#websiteSeo, 
#websiteDomain, 
#websiteHosting {
    display: none;
}


/* TYPING HEADER */

.greetingHello{
    display: inline-block;
    width: 0;
    white-space: nowrap;
    overflow: hidden;
    animation: typeHello 0.7s steps(6, end) forwards;
}
@keyframes typeHello{
    from { width: 0; }
    to { width: 8rem }
}
.gretingSubheader{
    display: inline-block;
    width: 0;
    white-space: nowrap;
    overflow: hidden;
    animation: typeSubheader 1s steps(25, end) forwards;
    animation-delay: 1s;    
}
@keyframes typeSubheader{
    from { width: 0; }
    to { width: 25rem }
}
.greetingMainHeader{
    display: inline-block;
    width: 0;
    white-space: nowrap;
    overflow: hidden;
    animation: typeMainHeader 1s steps(15, end) forwards;
    animation-delay: 2s;    
}
@keyframes typeMainHeader{
    from { width: 0; }
    to { width: 46rem }
}



/* MOBILE ADAPTATION */

@media (max-width: 1450px) {
.greetingDescription {
    width: 70%;
}
}

@media (max-width: 1024px) {

    .logoMenu,
    .logoMenuBottom {
        margin-left: 50px;
        margin-right: auto;
    }

    .navMenu,
    .navMenuBottom {
        justify-content: space-evenly;
    }

    .menuLink {
        font-size: 16px;
        padding: 0 10px 0px 10px;
        margin: 0 10px 0 10px;
    }

    .greeting {
        padding: 50px;
    }

    .greetingDescription {
        font-size: 16px;
        width: 60%;
    }
    .modalText { 
        height: 700px;
    }
    .modalRead {
        width: 90%;
    } 
    .modalRead .modalClose {
        right: -45px;
    }
}

@media (max-width: 850px) {
    .burger {
        display: flex;
    }
    .burger span {
        transition: 0.5s all;
    }

    .nav {
        justify-content: space-between;
    }

    .navMenu {
        display: none;
        flex-direction: column;
        position: fixed;
        height: fit-content;
        width: fit-content;
        right: 0;
        top: 0;
        z-index: 50;
        overflow-y: auto;
        padding: 50px 60px 50px 20px;
        background-color: #9c192dc1;
        animation: burgerAnimarion 0.4s;
        transition: 0.5s all;
    }

    .menuLink {
        flex-direction: column;
        font-size: 18px;
        font-family: "HURTM";
        letter-spacing: 2px;
        padding: 10px;
        row-gap: 30px;
    }

    .logoMenu {
        margin: 10px 50px;
    }

    .logoLink img,
    .logoLinkBottom img {
        width: 200px;
    }

   

    .portfolioContainer {
        width: 90%;
    }

    .portfilioItem {
        height: 500px;
        padding: 10px;
        margin: 20px;
    }

    .greeting {
        padding-right: 300px;
    }

    .greetingMainHeader, .greetingMainHeaderHidden {
        font-size: 50px;
    }

    .greetingDescription {
        width: 100%;
    }

    .photoHeader {
        float: right;
        height: 420px;
    }

    .offerDetails {
        margin: 30px;
    }

    .subheader h2 {
        margin: 40px auto;
        font-family: "HURTM";
        font-size: 45px;
        font-weight: 900;
        letter-spacing: 2px;
        color: #210d39;
    }

    tr .included,
    .included {
        padding: 30px;
        font-size: 23px;
    }

    .formDescription {
        font-size: 21px;
    }
}

@media (max-width: 540px) {

    .headerBanner h2 {
        font-size: 12px;
    }

   .logoLink img,
    .logoLinkBottom img {
        width: 150px;
    }

    .burger {
        width: 30px;
        height: 20px;
        margin-right: 20px;
    }

    .burger span,
    .burger::before,
    .burger::after {
        height: 2px;
        transition: 0.5s all;
    }

    .logoMenu, .logoMenuBottom {
        margin: 10px 20px;
    }

    .photoHeader, .greetingHello, .gretingSubheader, .greetingMainHeader {
        display: none;
    }

    .greeting {
        padding: 20px;
    }

    .greetingHidden {
        display: flex;
        align-items: center;
        margin: 30px 0;
        padding-bottom: 3px;
        border-bottom: 2px solid white;
    }

    .greetingHeaderHidden {
        flex: 2;
        margin: 0;
        text-align: left;
        font-family: "HURTM";
        font-size: 25px;
    }

    .greetingHelloHidden {
        margin: 10px 0;
        font-size: 25px;
    }

    .photoHeaderHidden {
        flex: 1;
        margin: 0 0 0 auto;
    }

    .photoHeaderHidden img {
        width: 100%;
    }

    .gretingSubheaderHidden {
        font-size: 18px;
        letter-spacing: 1px;
        margin: 5px 0;
    }

    .greetingMainHeaderHidden {
        font-size: 25px;
    }

    .greetingDescription {
        font-size: 15px;
    }

    .socialMedia {
        width: 100%;
    }

    .socialMedia button {
        display: block;
        margin: 0 auto;
        padding: 5px;
    }

    .subheader h2 {
        margin: 30px auto;
        font-size: 35px;
        font-weight: 900;
        letter-spacing: 2px;
        color: #210d39;
    }

    .portfolioContainer {
        margin: 0 20px;
    }

    .portfilioItem {
        height: 400px;
    }

    .portfolioItemText {
        font-size: 15px;
        margin: 20px;
    }

    .accordion {
        width: 100%;
        padding: 10px;
    }

    .preparationIcon {
        margin: 15px;
    }

    .preparationIcon img {
        width: 40px;
    }

    .accordion-item-h h4 {
        margin: 10px 0;
        font-size: 20px;
    }

    .offerDetails {
        margin: 10px;
    }

    th {
        font-size: 10px;
        padding: 5px;
        letter-spacing: 1px;
    }

    td {
        width: 30px;
        padding: 5px;
        font-size: 10px;
    }

    td img {
        width: 10px;
    }

    td:first-child {
        width: 200px;
        font-size: 12px;
        font-family: "Noto Sans", sans-serif;
        font-weight: 400;
    }

    #price {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .readBasic {
        font-family: "Nunito", sans-serif;
        font-size: 10px;
        color: white;
        background-color: #575656cb;
        border-radius: 7px;
    }

    .readStandart {
        font-family: "Nunito", sans-serif;
        font-size: 10px;
        color: white;
        background-color: #210d39c1;
        border-radius: 7px;
    }

    .readPremium {
        font-family: "Nunito", sans-serif;
        font-size: 10px;
        color: white;
        background-color: #9c192dcb;
        border-radius: 7px;
    }

    .openTable {
        width: 80%;
        margin: 30px auto;
    }

    #toggleButton {
        padding: 8px;
        font-size: 18px;
        letter-spacing: 1px;
        line-height: 20px;
    }

    #toggleButton::after {
        font-size: 30px;
    }

    .descriptionLaptop {
        display: none;
    }

    .descriptionHidden {
        display: table-row;
    }


    .socialMediaBottom {
        margin-bottom: 30px;
    }

    .socialMediaBottom a {
        margin: 20px;
    }

    .socialMediaBottom a img {
        width: 45px;
        height: 45px;
    }

    .formDescription {
        font-size: 20px;
        letter-spacing: 1px;
        margin: 30px;

        text-shadow: 0.3px 0.3px #9c192c;
    }

    form input,
    form textarea {
        width: 270px;
        padding: 10px 20px;
        font-family: "Noto Sans", sans-serif;
        font-size: 16px;
        color: #1b073a;
        background-color: #eeeeee;
        border: 1px solid #1b073a;
        border-radius: 7px;
        box-shadow: 3px 3px 5px 0 #8b8692;
    }

    form button {
        width: 150px;
    }

    .pageUp {
        width: 40px;
        bottom: 50px;
        right: 10px;
    }

    .modal {
        padding: 10px;
    }

    .modalClose {
        color: #210d39;
        right: 10px;
        top: 10px;
    }

    .modalSubtitle {
        margin: 30px 0 10px 0;
    }

    .getModalThanks {
        margin: 10px;
    }

    .modalText {
        width: 270px;
        color: #210d39;
        font-size: 15px;
        font-family: "Noto Sans", sans-serif;
        font-weight: 400;
        letter-spacing: 0;
        padding: 20px;
    }

    #thanks {
        width: 90%;
    }

    .modalSubtitle {
        margin: 20px;
        font-size: 20px;
        line-height: 30px;
    }
    .modalText { 
        height: 500px;
        width: 100%;
        padding: 0;
    }
    .modalRead {
        width: 100%;
        max-width: 90%;
    } 
    .modalRead .modalClose {
        right: 0;
        top: -40px;
        color: white;
        text-shadow: 3px 3px 3px #d4132d;
    }

}

/* GALAXY FOLD */
@media (max-width: 280px) {
    .greetingMainHeaderHidden {
        margin: 10px 0;
    }

    th {
        font-size: 9px;
        padding: 2px;
    }

    td {
        width: 30px;
        padding: 5px;
        font-size: 9px;
    }

    td:first-child {
        font-size: 11px;
    }

    form input,
    form textarea, #thanks {
        width: 200px;
        font-size: 13px;
    }
}


@font-face {
    font-family: "BigDaddy";
    src: url(../fonts/BigSquareDots.ttf);
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: "BTTTRIAL";
    src: url(../fonts/BTTTRIAL.ttf);
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: "HURTM";
    src: url(../fonts/HURTM___.otf);
    font-style: normal;
    font-weight: normal;
}