* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
.container {
    margin: auto;
    width: 1200px;
    max-width: 100%;
}
header,footer {
    width: 100%;
}
html,
body {
    min-height: 100%;
    height: 100%;
    font-family: Playfair Display, sans-serif;
    color: #000000;
}
.viewport-container {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
.content {
    flex: 1 0 auto;
}
.footer {
    flex: 0 0 auto;
}
section {
    background-color: rgb(199,216,209);
}
a {
    color: inherit;
    text-decoration: none;
}
@media only screen and (max-width: 1200px)  {
    .container {
        width: 100%;
        padding: 0 20px;
    }
}
@media only screen and (max-width: 800px)  {
    .container {
        padding: 0 12px;
    }
}.prospective_students {
    padding-bottom: 80px;
    padding-top: 80px;
}

.prospective_students .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.prospective_students ul {
    list-style: none;
}

.prospective_students ul li {
    padding-left: 30px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    position: relative;
}

.prospective_students ul svg, .prospective_students ul svg path {
    fill: rgb(157,157,158);
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    flex-shrink: 0;
}

.prospective_students h2 {
    text-align: center;
    margin-bottom: 20px;
}

@media only screen and (max-width: 800px) {
    .prospective_students {
        padding-bottom: 30px;
        padding-top: 30px;
    }
}

.viewport-container .prospective_students {
    padding: 60px 0;
    background: rgb(199,216,209);
    overflow: hidden;
    position: relative;
}

.viewport-container .prospective_students .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 70px;
    background: #ffffff;
    border-radius: 10px;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.viewport-container .prospective_students h2 {
    font-family: Playfair Display, sans-serif;
    font-size: 29px;
    font-weight: 700;
    color: rgb(157,157,158);
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 5px;
    border-bottom: 2px solid rgb(157,157,158);
    position: relative;
}

.viewport-container .prospective_students h2::before,
.viewport-container .prospective_students h2::after {
    content: "";
    position: absolute;
    width: 20%;
    height: 2px;
    background: rgb(157,157,158);
    bottom: -2px;
}

.viewport-container .prospective_students h2::before {
    left: 0;
}

.viewport-container .prospective_students h2::after {
    right: 0;
}

.viewport-container .prospective_students ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 0;
    margin: 0;
}

.viewport-container .prospective_students ul li {
    font-family: Playfair Display, sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #000000;
    padding: 15px 0;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    transition: color 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.viewport-container .prospective_students ul svg, .viewport-container .prospective_students ul svg path {
    margin-right: 10px;
    width: 24px;
    height: 24px;
    fill: rgb(157,157,158);
    transition: fill 0.3s ease;
    position: static;
}

.viewport-container .prospective_students ul li:hover {
    color: rgb(157,157,158);
    border-color: rgb(157,157,158);
}

@media only screen and (max-width: 800px) {
    .viewport-container .prospective_students {
        padding: 40px 0;
    }

    .viewport-container .prospective_students .holder {
        padding: 30px 20px;
    }

    .viewport-container .prospective_students h2 {
        font-size: calc(29px - 4px);
        margin-bottom: 15px;
    }

    .viewport-container .prospective_students ul li {
        font-size: calc(17px - 2px);
        padding: 10px 0;
    }

    .viewport-container .prospective_students ul svg, .viewport-container .prospective_students ul svg path {
        margin-right: 8px;
        width: 20px;
        height: 20px;
    }
}

.viewport-container .prospective_students::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(157,157,158,0.5) 25%, transparent 75%);
    opacity: 0.1;
    transform: translateY(-50%);
    z-index: -1;
}

.viewport-container .prospective_students .holder:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
@keyframes neon-pulse {
    0%, 100% {
        box-shadow: 0 0 5px rgb(157,157,158), 0 0 20px rgb(157,157,158), 0 0 50px rgb(157,157,158), 0 0 100px rgb(157,157,158);
    }
    50% {
        box-shadow: 0 0 10px rgb(41,50,65), 0 0 30px rgb(41,50,65), 0 0 60px rgb(41,50,65), 0 0 120px rgb(41,50,65);
    }
}
@keyframes background-shift {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100% 100%;
    }
}
.contact_information {
    padding: 60px 20px;
    background: linear-gradient(135deg, rgb(41,50,65), rgb(157,157,158,0.5));
    font-family: Playfair Display, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgb(157,157,158,0.5);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}
.contact_information::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgb(157,157,158), transparent);
    opacity: 0.1;
    animation: background-shift 10s linear infinite;
    z-index: 0;
}
.contact_information h3 {
    color: rgb(157,157,158);
    font-size: 41px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgb(157,157,158);
    z-index: 1;
}
.contact_information .form {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 0 20px rgb(41,50,65,0.5);
    flex: 1;
    color: #ffffff;
    position: relative;
    z-index: 1;
}
.contact_information .info {
    flex: 1;
    padding: 40px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    box-shadow: inset 0 0 10px rgb(41,50,65,0.5);
    position: relative;
    z-index: 1;
}
.contact_information .contact_info {
    width: 100%;
}
.contact_information .info h5 {
    color: rgb(157,157,158);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 0 5px rgb(41,50,65);
    z-index: 1;
}
.contact_information .info svg, .contact_information .info svg path {
    fill: rgb(157,157,158);
    width: 24px;
    height: 24px;
    margin-right: 10px;
    filter: drop-shadow(0 0 5px rgb(157,157,158));
    z-index: 1;
}
.contact_information .info span {
    color: #ffffff;
    font-size: 12px;
    z-index: 1;
}
.contact_information .info .contact_info > div {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-size: 12px;
    z-index: 1;
}
.contact_information .info .contact_info > div svg {
    margin-right: 10px;
}
.contact_information form {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}
.contact_information form input {
    color: #ffffff;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgb(157,157,158,0.5);
    padding: 15px;
    margin-bottom: 20px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: inset 0 0 5px rgb(157,157,158,0.5);
    width: 100%;
}
.contact_information form input:focus {
    border-color: rgb(157,157,158);
    box-shadow: 0 0 10px rgb(157,157,158);
}
.contact_information form .button {
    background: rgb(157,157,158);
    color: #ffffff;
    border-radius: 28px;
    padding: 15px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 10px rgb(157,157,158);
    text-transform: uppercase;
    animation: neon-pulse 1.5s infinite alternate;
}
.contact_information form .button:hover {
    background: rgb(41,50,65);
    box-shadow: 0 0 15px rgb(41,50,65);
}
.contact_information .holder {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
    z-index: 1;
}
.contact_information .logo_holder {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 30px;
}
.contact_information .logo_holder svg, .contact_information .logo_holder img {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px rgb(157,157,158));
    z-index: 1;
}
.contact_information .name_holder {
    display: flex;
    gap: 20px;
    z-index: 1;
}
.contact_information .agree {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: #ffffff;
    z-index: 1;
}
.contact_information .agree input[type=checkbox] {
    margin-right: 10px;
    margin-bottom: 0;
    width: auto;
}
.contact_information .agree label {
    font-size: 12px;
}
.contact_information .agree a {
    color: rgb(157,157,158);
    text-decoration: underline;
    margin-left: 5px;
}
@media only screen and (max-width: 800px) {
    .contact_information {
        padding: 40px 10px;
    }
    .contact_information .holder {
        flex-direction: column;
    }
    .contact_information .info {
        padding: 20px;
        border-radius: 10px;
        box-shadow: none;
    }
    .contact_information .form {
        padding: 20px;
        border-radius: 10px;
        box-shadow: none;
    }
    .contact_information .name_holder {
        flex-wrap: wrap;
        gap: unset;
    }
}

.benefits_outline .advantages_content h2 {
    color: rgb(41,50,65);
}

.benefits_outline .advantage_item svg, .benefits_outline .advantage_item svg path {
    fill: rgb(157,157,158);
}

.benefits_outline .advantage_item p {
    color: #000000;
}

.benefits_outline .advantage_item b {
    color: rgb(157,157,158);
}

.benefits_outline {
    padding-top: 80px;
    padding-bottom: 80px;
}

.benefits_outline .advantages_holder {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.benefits_outline .advantages_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.benefits_outline .advantages_content h2 {
    text-align: center;
    margin-bottom: 48px;
    font-size: 35px;
    font-weight: 600;
}

.benefits_outline .advantages_content h4 {
    text-align: center;
    font-size: 20px;
    margin-top: 20px;
}

.benefits_outline .advantages_description {
    text-align: center;
    font-size: 20px;
    margin-bottom: 10px;
    padding: 20px;
}

.benefits_outline .advantage_item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 200px;
    width: 25%;
    padding: 10px;
}

.benefits_outline .advantage_item svg, .benefits_outline .advantage_item img {
    width: 128px;
    height: 128px;
}

@media only screen and (max-width: 1200px) {
    .viewport-container .benefits_outline .advantages_holder .advantage_item {
        width: calc(50% - 20px);
        margin: 10px;
    }
}

@media only screen and (max-width: 800px) {
    .benefits_outline .advantages_content h2 {
        font-size: 30px;
    }

    .benefits_outline .advantages_holder {
        flex-direction: column;
    }

    .benefits_outline {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .viewport-container .benefits_outline .advantages_holder .advantage_item {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }
}

.viewport-container .benefits_outline {
    position: relative;
    background: color-mix(in srgb, rgb(41,50,65) 60%, #000000);
    padding-top: 120px;
    padding-bottom: 120px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.viewport-container .benefits_outline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.2), transparent 70%);
    transform: translateX(-50%);
    z-index: 0;
}

.viewport-container .benefits_outline .advantages_content {
    position: relative;
    z-index: 1;
    color: #ffffff;
    text-align: center;
}

.viewport-container .benefits_outline .advantages_content h2 {
    font-size: 35px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
}

.viewport-container .benefits_outline .advantages_description {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

.viewport-container .benefits_outline .advantages_holder {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.viewport-container .benefits_outline .advantage_item {
    background: rgb(41,50,65,0.5);
    border: 1px solid rgb(157,157,158);
    border-radius: 10px;
    padding: 40px;
    margin: 20px;
    flex: 1 1 calc(25% - 40px);
    max-width: calc(25% - 40px);
    transition: transform 0.3s ease-in-out, border 0.3s ease-in-out;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.viewport-container .benefits_outline .advantage_item::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border: 2px solid rgb(157,157,158);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.viewport-container .benefits_outline .advantage_item:hover::before {
    opacity: 1;
}

.viewport-container .benefits_outline .advantage_item:hover {
    transform: translateY(-10px);
    border-color: rgb(41,50,65);
}

.viewport-container .benefits_outline .advantage_image {
    margin-bottom: 20px;
}

.viewport-container .benefits_outline .advantage_image img,
.viewport-container .benefits_outline .advantage_image svg {
    width: 80px;
    height: 80px;
    fill: rgb(157,157,158);
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
}

.viewport-container .benefits_outline .advantage_item h4 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-top: 10px;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.7);
}

@media only screen and (max-width: 1200px) {
    .viewport-container .benefits_outline .advantage_item {
        flex: 1 1 calc(45% - 40px);
        max-width: calc(45% - 40px);
    }
}

@media only screen and (max-width: 800px) {
    .viewport-container .benefits_outline .advantages_holder {
        flex-direction: column;
        align-items: center;
    }

    .viewport-container .benefits_outline .advantage_item {
        flex: 1 1 100%;
        max-width: 100%;
        margin: 20px 0;
    }

    .viewport-container .benefits_outline .advantages_content h2 {
        font-size: 21px;
    }
}.program_structure {
    padding-top: 120px;
    padding-bottom: 120px;
    background: rgb(157,157,158,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.program_structure::before,
.program_structure::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgb(41,50,65,0.5);
    z-index: 1;
}

.program_structure::before {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
}

.program_structure::after {
    width: 300px;
    height: 300px;
    bottom: -100px;
    right: -100px;
}

.program_structure h2 {
    color: rgb(41,50,65);
    font-size: 33px;
    font-weight: 700;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 2;
}

.program_structure .content {
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
    border: 2px solid rgb(157,157,158,0.5);
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.program_structure .content::before,
.program_structure .content::after {
    content: '';
    position: absolute;
    border-radius: 10px;
    background: rgb(157,157,158,0.5);
    z-index: -1;
}

.program_structure .content::before {
    width: 80px;
    height: 80px;
    top: -40px;
    left: -40px;
}

.program_structure .content::after {
    width: 60px;
    height: 60px;
    bottom: -30px;
    right: -30px;
}

.program_structure h3 {
    color: rgb(157,157,158);
    font-size: 33px;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.program_structure p {
    color: #000000;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 20px;
}

.program_structure .button {
    background: rgb(41,50,65);
    color: #ffffff;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    border: 2px solid rgb(157,157,158,0.5);
}

.program_structure .holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.program_structure .items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.program_structure .course {
    max-width: 100%;
    padding: 30px;
}

.program_structure .photo {
    height: 450px;
    width: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    border: 2px solid rgb(41,50,65,0.5);
    margin-bottom: 20px;
}

.program_structure .text_holder {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid rgb(157,157,158,0.5);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 800px) {
    .program_structure {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .program_structure .items {
        flex-direction: column;
    }
    .program_structure h2 {
        font-size: 24px;
    }
    .program_structure h3 {
        font-size: 20px;
    }
    .program_structure .photo {
        height: 250px;
    }
    .program_structure .text_holder {
        padding: 20px;
    }
}

.viewport-container .program_structure .items {
    width: 100%;
}

.viewport-container .program_structure .items .course .content {
    border-radius: 10px;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.viewport-container .program_structure .photo {
    border-radius: 10px;
    height: 500px;
    width: 100%;
    margin: 0;
}

.viewport-container .program_structure .text_holder {
    border-radius: 10px;
    border: 8px solid rgb(41,50,65);
    width: 80%;
    margin-top: -250px;
    background: #ffffff;
    padding: 40px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.viewport-container .program_structure h3 {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
}

.viewport-container .program_structure .button {
    display: inline;
    width: fit-content;
    margin-top: 35px;
    padding: 20px 45px;
    border-radius: 50px;
    background: rgb(157,157,158);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1.5px;
    border: 2px solid rgb(41,50,65);
}

.viewport-container .program_structure .button:hover {
    background: rgb(41,50,65);
    color: #ffffff;
}

@media only screen and (max-width: 800px) {
    .viewport-container .program_structure .photo {
        width: 100%;
        height: 300px;
    }
    .viewport-container .program_structure .text_holder {
        width: 100%;
        padding: 12px;
        margin-top: 20px;
    }
    .viewport-container .program_structure .items .course {
        padding: 0;
    }
    .viewport-container .program_structure h3 {
        font-size: 30px;
    }
}
.stay_updated {
    padding-bottom: 80px;
    padding-top: 80px;
    position: relative;
}

.stay_updated .holder {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.stay_updated input {
    padding: 12px;
    background: #ffffff;
    outline: none;
    border: 1px solid rgb(41,50,65,0.5);
    margin-right: 10px;
    min-width: 200px;
}

.stay_updated h2 {
    margin-bottom: 20px;
    text-align: center;
}

.stay_updated .button {
    background: rgb(41,50,65);
    color: #ffffff;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    flex-shrink: 0;
}

.stay_updated .input_holder {
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 800px) {
    .stay_updated .holder {
        flex-direction: column;
    }

    .stay_updated {
        padding: 30px 20px;
    }

    .stay_updated input {
        min-width: unset;
    }

    .stay_updated .button {
        flex-shrink: unset;
    }

    .stay_updated .input_holder {
        flex-direction: column;
        width: 100%;
    }

    .stay_updated input {
        margin: 0;
        margin-bottom: 10px;
        width: 100%;
    }

    .viewport-container .stay_updated .holder h2 {
        font-size: 20px;
    }
}

.viewport-container .stay_updated {
    padding: 100px 0;
    background: linear-gradient(135deg, rgb(157,157,158) 30%, rgb(41,50,65) 100%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.viewport-container .stay_updated::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgb(157,157,158) 0%, rgb(157,157,158,0.5) 100%);
    opacity: 0.3;
    z-index: 0;
}

.viewport-container .stay_updated .container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.viewport-container .stay_updated h2 {
    font-size: 44px;
    margin-bottom: 40px;
    color: #ffffff;
    font-family: Playfair Display, sans-serif;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.viewport-container .stay_updated .input_holder {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 20px;
}

.viewport-container .stay_updated input[type="email"] {
    padding: 15px 20px;
    height: auto;
    border-radius: 13px;
    background: #ffffff;
    border: 2px solid rgb(41,50,65);
    font-weight: 400;
    font-size: 12px;
    width: 60%;
    max-width: 400px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.viewport-container .stay_updated input[type="email"]:focus {
    border-color: rgb(157,157,158);
    box-shadow: 0 0 15px rgb(157,157,158,0.5);
}

.viewport-container .stay_updated .button {
    padding: 15px 30px;
    border-radius: 13px;
    background: rgb(41,50,65);
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.viewport-container .stay_updated .button:hover {
    background: #000000;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

@media only screen and (max-width: 800px) {
    .viewport-container .stay_updated {
        padding: 60px 20px;
    }

    .viewport-container .stay_updated h2 {
        font-size: 29px;
    }

    .viewport-container .stay_updated .input_holder {
        flex-direction: column;
        gap: 15px;
    }

    .viewport-container .stay_updated input[type="email"] {
        width: 100%;
    }

    .viewport-container .stay_updated .button {
        width: 100%;
    }
}header .main_header {
    color: #ffffff;
    padding: 20px 0;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    border-bottom: 2px solid rgb(157,157,158);
}
header .logo_holder {
    display: flex;
    align-items: center;
    padding: 5px 0;
}
header .logo_holder .logotype {
    display: flex;
    align-items: center;
    text-decoration: none;
}
header .logo_holder svg, header .logo_holder img {
    height: 60px;
    width: 60px;
    fill: rgb(157,157,158);
}
header .menu {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-grow: 1;
}
header .menu a {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 17px;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.2s ease;
}
header .menu a:hover {
    border-bottom: 2px solid rgb(157,157,158);
}
header .menu a.active {
    border-bottom: 2px solid rgb(157,157,158);
    color: rgb(157,157,158);
}
header .header_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
@media (max-width: 1200px) {
    header .header_content {
        flex-direction: column;
        align-items: flex-start;
    }
    header .menu {
        flex-direction: column;
        align-items: flex-start;
        display: none;
        width: 100%;
        padding: 20px;
    }
    header .menu.opened {
        display: flex;
    }
    header .menu a {
        padding: 15px;
        width: 100%;
        text-align: left;
        border-bottom: 2px solid transparent;
    }
    header .logo_holder {
        width: 100%;
        justify-content: center;
    }
    header .logo_holder .logotype svg, header .logo_holder .logotype img {
        height: 40px;
        width: 40px;
    }
}
header .menu-toggle {
    display: none;
    cursor: pointer;
    padding: 10px;
}
header .menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: rgb(157,157,158);
    margin: 5px 0;
}
@media (max-width: 1200px) {
    header .menu-toggle {
        display: block;
    }
}
.viewport-container header .main_header {
    background: rgb(41,50,65);
}
.viewport-container header .header_content {
    padding: 20px 30px;
    border-bottom: 2px solid rgb(157,157,158);
}
.viewport-container header .logo_holder .logotype svg, .viewport-container header .logo_holder .logotype img {
    width: 65px;
    height: 65px;
}
.viewport-container header .menu a {
    font-weight: 700;
    font-size: 17px;
    text-align: center;
}.ty_page {
    background: rgb(157,157,158,0.5);
    color: #ffffff;
    padding: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
.ty_page .container {
    max-width: 900px;
    padding: 20px;
    background: rgb(199,216,209);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
}
.ty_page h2 {
    font-family: Playfair Display, sans-serif;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    color: rgb(157,157,158);
    border-bottom: 2px solid rgb(41,50,65);
    padding-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.ty_page p {
    font-family: Playfair Display, sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 800px;
    margin: 0 auto;
}
.ty_page .btn {
    display: inline-block;
    padding: 12px 35px;
    font-family: Playfair Display, sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    background-color: rgb(157,157,158);
    border: 2px solid rgb(41,50,65);
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 20px;
    text-decoration: none;
}
.ty_page .btn:hover {
    background-color: rgb(41,50,65);
    color: rgb(157,157,158);
}
@media only screen and (max-width: 800px) {
    .ty_page {
        padding: 40px 0;
    }
    .ty_page h2 {
        font-size: 20px;
    }
    .ty_page p {
        font-size: 14px;
    }
    .ty_page .btn {
        font-size: 17px;
        padding: 10px 25px;
    }
}
.ty_page .container {
    position: relative;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.5);
}
.ty_page .container::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid rgb(41,50,65,0.5);
    position: absolute;
    top: -10px;
    left: -10px;
    border-radius: 12px;
    z-index: -1;
}
.developer_experience {
    padding-top: 80px;
    padding-bottom: 80px;
}

.developer_experience .review .name {
    color: rgb(41,50,65);
}

.developer_experience .review span {
    color: rgb(157,157,158);
}

.developer_experience .holder {
    display: flex;
    justify-content: center;
    align-items: center;
}

.developer_experience .review {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 33%;
}

.developer_experience .photo {
    width: 350px;
    height: 400px;
    max-width: 100%;
    margin-bottom: 8px;
    background-position: center;
}

.developer_experience .review .name {
    font-size: 20px;
    margin-bottom: 8px;
}

.developer_experience .review span {
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 14px;
}

.developer_experience .review .quote {
    font-size: 15px;
    font-weight: 300;
    font-style: italic;
}

@media only screen and (max-width: 1200px) {
    .developer_experience .review {
        max-width: unset;
    }
}

@media only screen and (max-width: 800px) {
    .developer_experience .holder {
        flex-direction: column;
    }

    .developer_experience .review {
        max-width: unset;
        width: 100%;
    }

    .developer_experience {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.viewport-container .developer_experience .holder {
    justify-content: center;
}

.viewport-container .developer_experience .review {
    max-width: unset;
    position: relative;
    width: 100%;
    border-left: 9px solid rgb(157,157,158);
    justify-content: flex-end;
    align-items: flex-start;
    flex-direction: row-reverse;
    padding-top: 30px;
    padding-bottom: 30px;
}

.viewport-container .developer_experience .review .worker_description {
    padding: 30px 120px 30px 30px;
    width: 50%;
    position: relative;
    z-index: 1;
}

.viewport-container .developer_experience .review::after {
    content: "";
    background: rgb(157,157,158);
    z-index: 0;
    width: 50%;
    height: 100%;
    border-bottom-right-radius: 50px;
    border-top-right-radius: 50px;
    position: absolute;
    top: 0;
    right: 0;
}

.viewport-container .developer_experience .photo {
    z-index: 1;
    position: relative;
    width: 430px;
    height: 430px;
    right: 100px;
}

.viewport-container .developer_experience .review .name {
    margin-top: 40px;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 0;
}

.viewport-container .developer_experience .review span {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
}

.viewport-container .developer_experience .review .quote {
    margin-top: 50px;
    font-size: 20px;
    line-height: 40px;
}

@media only screen and (max-width: 800px) {
    .viewport-container .developer_experience .review {
        flex-direction: column-reverse;
        align-items: center;
        padding: 10px;
    }

    .viewport-container .developer_experience .review::after {
        width: 100%;
        height: 140px;
        bottom: 0;
        top: unset;
    }

    .viewport-container .developer_experience .review .worker_description {
        width: 100%;
        padding: 10px;
    }

    .viewport-container .developer_experience .photo {
        right: 0;
        width: 240px;
        height: 240px;
        margin-top: 20px;
    }

    .viewport-container .developer_experience .review .name {
        margin-top: 20px;
        font-size: 36px;
    }
}.testimonials {
    padding-top: 90px;
    padding-bottom: 90px;
    background: linear-gradient(to right, rgb(157,157,158), rgb(41,50,65));
    font-family: Playfair Display, sans-serif;
    color: #ffffff;
}

.testimonials h2 {
    color: #ffffff;
    font-size: 42px;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

.testimonials .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.testimonials .reviews {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    width: 100%;
}

.testimonials .review {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 320px;
    width: 100%;
    overflow: hidden;
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonials .review:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.testimonials .photo {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    border-bottom: 2px solid rgb(157,157,158);
    transition: transform 0.3s ease;
}

.testimonials .review:hover .photo {
    transform: scale(1.05);
}

.testimonials .text {
    padding: 25px;
    text-align: center;
}

.testimonials .review span {
    display: block;
    font-size: 23px;
    font-weight: 600;
    color: rgb(157,157,158);
    margin-bottom: 8px;
}

.testimonials .review p {
    font-size: 17px;
    color: #ffffff;
    line-height: 1.6;
    font-weight: 400;
}

@media (max-width: 1200px) {
    .testimonials .review {
        width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .testimonials .review {
        width: 100%;
        max-width: 100%;
    }

    .testimonials {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .testimonials h2 {
        font-size: 31px;
    }
}

.viewport-container .testimonials {
    background: rgba(0, 0, 0, 0.5);
}

.viewport-container .testimonials .holder h2 {
    color: #ffffff;
}

.viewport-container .testimonials .review {
    background: rgb(41,50,65,0.5);
    border: 1px solid rgb(157,157,158);
    border-radius: 10px;
}

.viewport-container .testimonials .photo {
    height: 180px;
    border-bottom: 1px solid rgb(157,157,158);
}

.viewport-container .testimonials .review span {
    color: #ffffff;
}


.viewport-container .testimonials .text {
    padding: 20px;
}
.title_section {
    width: 100%;
    padding: 100px 0;
    background-color: rgb(157,157,158,0.5);
    position: relative;
}
.title_section .title_page_holder {
    width: 100%;
    margin: 0 auto;
    background-size: cover;
    padding: 60px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    overflow: hidden;
}
.title_section .title_page_holder::before,
.title_section .title_page_holder::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgb(41,50,65,0.5);
    z-index: 1;
}
.title_section .title_page_holder::before {
    width: 150px;
    height: 150px;
    top: 20px;
    left: 20px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
}
.title_section .title_page_holder::after {
    width: 200px;
    height: 200px;
    bottom: 20px;
    right: 20px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
}
.title_section .style_element {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
    width: calc(100% - 120px);
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}
.title_section .style_element h1 {
    font-family: Playfair Display, sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: rgb(157,157,158);
    margin-bottom: 20px;
    border-bottom: 2px solid rgb(41,50,65);
    padding-bottom: 10px;
    position: relative;
}
.title_section .style_element h1::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 4px;
    background: rgb(41,50,65);
    bottom: -2px;
    left: 0;
    border-radius: 10px;
}
.title_section .style_element h3 {
    font-family: Playfair Display, sans-serif;
    font-size: 19px;
    font-weight: 600;
    color: rgb(41,50,65);
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.title_section .style_element p {
    font-family: Playfair Display, sans-serif;
    font-size: 17px;
    font-weight: 300;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.8;
}
@media only screen and (max-width: 800px) {
    .title_section {
        padding: 50px 0;
    }
    .title_section .title_page_holder {
        padding: 30px;
    }
    .title_section .style_element {
        padding: 30px;
        width: calc(100% - 60px);
    }
    .title_section .style_element h1 {
        font-size: calc(38px - 10px);
        margin-bottom: 15px;
    }
    .title_section .style_element h3 {
        font-size: calc(19px - 5px);
        margin-bottom: 10px;
    }
    .title_section .style_element p {
        font-size: calc(17px - 2px);
        margin-bottom: 15px;
    }
}
.viewport-container .title_section {
    padding: 0;
    background-color: rgb(157,157,158);
}
.viewport-container .title_section .title_page_holder {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    padding: 70px;
    position: relative;
}
.viewport-container .title_section .title_page_holder::before,
.viewport-container .title_section .title_page_holder::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgb(41,50,65,0.5);
    z-index: 1;
}
.viewport-container .title_section .title_page_holder::before {
    width: 120px;
    height: 120px;
    top: 40px;
    left: 40px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
}
.viewport-container .title_section .title_page_holder::after {
    width: 170px;
    height: 170px;
    bottom: 40px;
    right: 40px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
}
.viewport-container .title_section .style_element {
    background: rgb(157,157,158,0.5);
    color: #ffffff;
    border-radius: 50%;
    width: 600px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}
.viewport-container .title_section .style_element h1 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.viewport-container .title_section .style_element h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ffffff;
}
.viewport-container .title_section .style_element p {
    font-size: 17px;
    line-height: 1.5;
    color: #ffffff;
    max-width: 80%;
    margin: 0 auto;
}
@media only screen and (max-width: 800px) {
    .viewport-container .title_section {
        padding: 60px 0;
    }
    .viewport-container .title_section .title_page_holder {
        padding: 40px 20px;
    }
    .viewport-container .title_section .style_element {
        width: 300px;
        height: 300px;
        max-width: 100%;
    }
    .viewport-container .title_section .style_element h1 {
        font-size: calc(38px - 10px);
    }
    .viewport-container .title_section .style_element h3 {
        font-size: calc(24px - 5px);
    }
    .viewport-container .title_section .style_element p {
        font-size: calc(17px - 2px);
    }
}.who_we_are .holder {
    background-size: cover;
}

.who_we_are .style_element {
    background: #ffffff;
}

.who_we_are {
    padding-bottom: 80px;
    padding-top: 80px;
}

.who_we_are h2 {
    color: rgb(41,50,65);
}

.who_we_are span {
    color: rgb(157,157,158);
}

.who_we_are p {
    color: #000000;
}

.who_we_are .holder {
    display: flex;
    justify-content: flex-end;
    padding: 40px;
    height: auto;
}

.who_we_are .style_element {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 50%;
    min-width: 400px;
    padding: 20px;
}

.who_we_are .caption_holder {
    display: flex;
    justify-content: flex-end;
}

.who_we_are h2 {
    margin-bottom: 8px;
    font-size: 37px;
    font-weight: 600;
}

.who_we_are span {
    margin-bottom: 16px;
    font-size: 21px;
    font-weight: 600;
}

.who_we_are p {
    font-size: 14px;
    font-weight: 300;
}

@media only screen and (max-width: 600px) {
    .who_we_are .holder {
        padding: 0px;
    }

    .who_we_are .style_element {
        width: 100%;
        min-width: unset;
    }

    .who_we_are {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .who_we_are h2 {
        font-size: 30px;
    }
}

.viewport-container .who_we_are {
    padding: 50px 0;
}

.viewport-container .who_we_are .holder {
    padding: 0 15px;
    height: auto;
}

.viewport-container .who_we_are .holder .photo {
    width: 50%;
    border-radius: 0px 0px 0px 50px;
}

.viewport-container .who_we_are .caption_holder {
    width: 100%;
    display: flex;
    flex-direction: row;

}

.viewport-container .who_we_are .style_element {
    width: calc(50% + 80px);
    min-height: 240px;
    margin-left: -80px;
    background: #ffffff;
    margin-top: 50px;
    border-top-left-radius: 50px;
    padding: 25px 40px 10px;
}

.viewport-container .who_we_are h2 {
    margin-top: 10px;
    font-size: 28px;
}

.viewport-container .who_we_are p {
    font-size: 18px;
    margin-bottom: 30px;
}

@media only screen and (max-width: 800px) {
    .viewport-container .who_we_are .holder .photo {
        width: 100%;
        height: 250px;
        border-radius: 0;
    }

    .viewport-container .who_we_are .style_element {
        width: calc(100% - 15px);
        margin-left: 15px;
        margin-top: -15px;
    }

    .viewport-container .who_we_are .caption_holder {
        flex-direction: column;
    }

    .viewport-container .who_we_are .holder {
        padding: 0;
    }

    .viewport-container .who_we_are h2 {
        font-size: 21px;
    }

    .viewport-container .who_we_are p {
        font-size: 15px;
    }
}.privacy_wrapper {
    padding: 40px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}


.privacy_wrapper h1 {
    margin-top: 40px;
    margin-bottom: 25px;
    font-size: 43px;
    font-family: Playfair Display, sans-serif;
    color: rgb(157,157,158);
    text-transform: uppercase;
    text-align: center;
    border-bottom: 2px solid rgb(157,157,158);
    padding-bottom: 10px;
}

.privacy_wrapper h2 {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 35px;
    font-family: Playfair Display, sans-serif;
    color: rgb(41,50,65);
    text-transform: uppercase;
    border-bottom: 1px solid rgb(41,50,65);
    padding-bottom: 8px;
}

.privacy_wrapper h3, .privacy_wrapper h4, .privacy_wrapper h5, .privacy_wrapper h6 {
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 21px;
    font-family: Playfair Display, sans-serif;
    color: #000000;
    font-weight: 600;
    text-transform: uppercase;
}

.privacy_wrapper ul, .privacy_wrapper ol {
    list-style-position: inside;
    padding-left: 0;
    padding: 15px 0;
    margin: 0;
}

.privacy_wrapper li {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
    font-family: Playfair Display, sans-serif;
    color: #000000;
    padding: 5px;
    border-radius: 10px;
    transition: background 0.3s ease-in-out;
}

.privacy_wrapper li:hover {
    background: rgb(157,157,158,0.5);
}

.privacy_wrapper section {
    background: none;
}

.privacy_wrapper p, .privacy_wrapper span, .privacy_wrapper div {
    line-height: 1.8;
    margin-bottom: 10px;
    font-family: Playfair Display, sans-serif;
    color: #000000;
    font-size: 15px;
}

@media only screen and (max-width: 800px) {
    .privacy_wrapper {
        padding: 25px 10px;
        width: 100%;
    }

    .privacy_wrapper h1, .privacy_wrapper h2 {
        text-align: left;
        font-size: calc(43px - 5px);
    }

    .privacy_wrapper ul, .privacy_wrapper ol {
        padding: 10px 0;
    }
}footer {
  background-color: rgb(41,50,65);
  color: #ffffff;
  font-family: Playfair Display, sans-serif;
  padding: 40px 0;
}
footer .copyright {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px 0;
  text-align: center;
}
footer .logo_holder svg,
footer .logo_holder svg path {
  fill: rgb(157,157,158);
}
footer h5 {
  font-size: 23px;
  font-weight: 700;
  color: rgb(157,157,158);
  margin-bottom: 10px;
}
footer .menu a {
  color: #ffffff;
  text-decoration: none;
  display: block;
  margin-bottom: 5px;
  transition: color 0.3s;
}
footer .menu a:hover {
  color: rgb(157,157,158);
}
footer .copyright_info {
  font-size: 16px;
  color: #000000;
}
footer .copyright_info a {
  color: rgb(157,157,158);
  text-decoration: none;
  transition: color 0.3s;
}
footer .copyright_info a:hover {
  color: rgb(41,50,65);
}
footer .contact_info div svg,
footer .contact_info div svg path {
  fill: rgb(157,157,158);
}
footer .contact_info div span {
  color: #ffffff;
  margin-left: 10px;
}
footer .footer_info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}
footer .footer_agreement {
  font-size: 14px;
  color: #ffffff;
  text-align: center;
  padding: 10px 0;
}
footer .logo_holder svg,
footer .logo_holder img {
  width: 64px;
  height: auto;
}
footer .contact_info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer .contact_info div {
  display: flex;
  align-items: center;
}
footer .contact_info div img,
footer .contact_info div svg {
  width: 20px;
  height: 20px;
}
footer .menu_holder {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer .menu a {
  font-size: 14px;
}
@media only screen and (max-width: 800px) {
  footer .footer_info {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  footer .menu {
    margin-bottom: 20px;
  }
  footer .menu_holder {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }
  footer .contact_info {
    align-items: center;
  }
  footer h5 {
    margin-bottom: 20px;
  }
}