* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  html,
  body,
  address,
  blockquote,
  div,
  form,
  fieldset,
  caption,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  hr,
  ul,
  li,
  ol,
  ul,
  table,
  tr,
  td,
  th,
  p,
  img {
    margin: 0;
    padding: 0;
  }
  
  img,
  fieldset {
    border: none;
  }

html, body {
    background-color: black;
    color: white;
    font-family: "IBM Plex Sans", sans-serif;
    height: 100%;
    scroll-behavior: smooth;
}

body {
    font-size: 1.938rem;
    max-width: 1920px;
    margin: 0 auto;
    text-size-adjust: none;
}

::-moz-selection { /* Code for Firefox */
    color: white;
    background: #9A3165;
  }
  
::selection {
    color: white;
    background: #9A3165;
  }

a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none !important;
  color: inherit;
}

#first-view {
    padding-left: 192px;
    padding-right: 192px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

header .sub-header {
    padding: 32px 0 32px 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

header .sub-header .logo {
    padding-left: 0;
    align-items: center;
    font-size: 1.938rem;
}


header .sub-header .logo img {
    height: 32px;
}

.sub-header nav ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.sub-header nav ul li {
    list-style: none;
}

.nav-butt {
    display: flex;
    padding-left: 32px;
    padding-right: 32px;
    font-size: 1.938rem;
    font-weight: 400;
    line-height: 1.938rem;
    text-box: trim-both ex alphabetic;
    align-items: center;
    justify-content: center;
    position: relative;
}

.nav-butt:hover {
    cursor: pointer;
    opacity: 0.75;
}

.nav-butt::after {
    content: '';
    position: absolute;
    bottom: -6.4px;
    left: 0;
    right: 0;
    height: 3.2px;
    background-color: transparent;
    width: 75%;
    justify-self: center;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
  }

.nav-butt:hover::after {
    background: linear-gradient(90deg, rgba(255,82,168,1) 0%, rgba(0,0,0,1) 100%);
    transform: scaleX(1);
  }


.nav-butt:active {
    opacity: 0.5;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    padding-left: 64px;
    border-left: solid rgba(255, 255, 255, 0.1) 3.2px;
    font-size: 1.938rem;
}

.hero span {
    font-size: 1.454rem;
    font-weight: 400;
    line-height: 1.454rem;
    text-box: trim-both ex alphabetic;
    margin-bottom: 64px;
}

.hero h1 {
    font-size: 2.907rem;
    line-height: 2.907rem;
    text-box: trim-both ex alphabetic;
    font-weight: 700;
    line-height: 100%;
    margin-bottom: 32px;
}

.hero p {
    font-size: 1.938rem;
    font-weight: 400;
    line-height: 2.907rem;
    text-box: trim-both ex alphabetic;
    margin-top: 32px;
    max-width: 80%;
}

.butt {
    display: inline-block;
    border: 3.2px solid #9A3165;
    border-radius: 16px;
    background-color: #9A3165;
    max-width: fit-content;
    margin-top: 64px;
    min-height: 64px;
    padding: 7px 32px 0px 32px;
}

.butt a {
    align-self: flex-start;
    font-size: 1.938rem;
    font-weight: 500;
    line-height: 1.938rem;
    text-box: trim-both ex alphabetic;
}

.butt:hover {
    background-color: #802954;
    cursor: pointer;
    border: 3.2px solid rgba(255, 255, 255, 0.25);
    transition: all 0.1s ease;
}

.butt:active {
    color: rgba(255, 255, 255, 0.5);
    background-color: #40142A;
}

#about {
    font-size: 1.938rem;
    display: flex;
    justify-content: center;
    background-image: linear-gradient(90deg,rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 1)), url("../images/about.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-clip: content-box;
    padding-left: 192px;
    padding-right: 192px;
}

.about-box {
    font-size: 1.938rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 192px 192px 192px 192px;
}

.about-box h2 {
    font-size: 2.907rem;
    font-weight: 700;
    line-height: 2.907rem;
    text-box: trim-both ex alphabetic;
}

.about-box p {
    font-size: 1.938rem;
    line-height: 2.907rem;
    text-box: trim-both ex alphabetic;
    width: 50%;
}

.about-sub {
    font-size: 1.938rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    margin-top: 64px;
    flex-wrap: wrap;
    gap: 64px;
}

.about-image {
    font-size: 1.938rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: solid 3.2px #FF52A8;
    border-radius: 32px;
    padding: 32px;
}

.about-image img {
    height: 192px;
}

.specialization-box {
    font-size: 1.938;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 192px 192px 192px 192px;
}

.specialization-box h2 {
    font-size: 2.907rem;
    font-weight: 700;
    line-height: 2.907rem;
    text-box: trim-both ex alphabetic;
}

.specialization-frame {
    font-size: 1.938rem;
    margin-top: 64px;
    display: flex;
    flex-direction: row;
    gap: 128px;
}

.specialization-frame h3 {
    font-size: 1.433rem;
    font-weight: 700;
    line-height: 1.433rem;
    text-box: trim-both cap alphabetic;
}

.specialization-frame .column ul {
    margin-top: 64px;
    text-box: trim-both ex alphabetic;
}

.specialization-frame .column ul li {
    font-size: 1.938rem;
    line-height: 2.907rem;
}

#contact {
    border-bottom: 1px solid rgba(255, 82, 168, 0.25);
}

.contact-card {
    font-size: 1.938rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8,17,25);
    background: linear-gradient(135deg, rgba(8,17,25,1) 0%, rgba(255,82,168,1) 100%);
    padding: 192px 0 192px 0;
}

.contact-card span {
    background-color: black;
    padding: 64px;
    font-size: 1.433rem;
    font-weight: 700;
    line-height: 1.433rem;
    text-box: trim-both cap alphabetic;
    text-transform: uppercase;
    background-color: #9A3165;
    border: 3.2px solid #9A3165;
    border-radius: 16px;
}

.contact-card span:hover {
    border: 3.2px solid rgba(255, 255, 255, 0.25);
    transition: all 0.1s ease;
    cursor: pointer;
    background-color: #802954;
    transition: all 0.1s ease;
}

.contact-card span:active {
    color: rgba(255, 255, 255, 0.5);
    background-color: #40142A; 
}

.footer-box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
    align-items: baseline;
    justify-content: space-between;
    padding: 192px 192px 192px 192px;
    font-size: 1.938rem;
}

.footer-box div ul {
    text-box: trim-both ex alphabetic;
}

.footer-box div ul li a {
    font-size: 1.938rem;
    font-weight: 400;
    line-height: 1.938rem;
    text-box: trim-both ex alphabetic;
}

.f-column1 {
    display: flex;
    flex-direction: column;
}

.f-column1 img {
    height: 32px;
    display: block;
    transform: translateY(7px);
}

.f-column2 {
    display: flex;
    flex-direction: column;
    line-height: 150%;
}

.f-column2 span {
    color: #FF52A8;
}

.f-column3 {
    display: flex;
}

.f-column3 li {
    list-style: none;
    line-height: 150%;
}

.f-column3 a:hover {
    opacity: 0.75;
    cursor: pointer;
}

.f-column3 a:active {
    opacity: 0.5;
}

.f-column4 {
    display: flex;
}

.f-column4 li {
    list-style: none;
    line-height: 150%;
}

.f-column4 a:hover {
    opacity: 0.75;
    cursor: pointer;
}

.f-column4 a:active {
    opacity: 0.5;
}

.f-column5 {
    display: flex;
    flex-direction: column;
}

.f-column5 a {
    margin-bottom: 32px;
}

.f-column5 a:hover {
    opacity: 0.75;
    cursor: pointer;
}

.f-column5 a:active {
    opacity: 0.5;
}

.disabled {
    opacity: 0.25;
}

.disabled:hover {
    cursor: not-allowed !important;
}
@media (max-width: 128em) {
    .about-box p {
        width: 100%;
    }

}

@media (max-width: 64em) {
    #first-view {
        padding-left: 32px;
        padding-right: 32px;
        height: auto;
    }

    header .sub-header {
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: flex-start;
        padding-top: 64px;
        padding-bottom: 64px;
    }

    nav {
        display: none;
    }

    .sub-header nav ul {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 16px;
    }

    .hero {
        flex: auto;
        padding-left: 0;
        border-left: none;
    }

    #about {
        padding: 0;
    }

    .about-box {
        padding: 64px 32px 64px 32px;
    }

    .about-box p {
        width: 100%;
    }

    .specialization-box {
        padding: 64px 32px 64px 32px;
    }

    .specialization-frame {
        flex-direction: column;
        padding: 0 32px 0 32px;
    }

    .contact-card {
        padding: 64px 32px 64px 32px;
    }

    .footer-box {
        padding: 64px 32px 64px 32px;
        gap: 64px;
    }
    
}