* {
    -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;
}

header {
    padding-left: 192px;
    padding-right: 192px;
    display: flex;
    flex-direction: column;
}


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;
}

main {
    padding-left: 192px;
    padding-right: 192px;
    display: flex;
    flex-direction: column;
}

main section {
    display: flex;
    flex-direction: column;
    padding-top: 64px;
    padding-left: 64px;
    padding-bottom: 64px;
    border-left: solid rgba(255, 255, 255, 0.1) 3.2px;
}

main h1 {
    font-size: 2.907rem;
    line-height: 2.907rem;
    text-box: trim-both ex alphabetic;
    font-weight: 700;
    line-height: 100%;
    margin-bottom: 64px;
}

main a {
    font-size: 1.938rem;
    line-height: 1.938rem;
    font-weight: 400;
    text-box: trim-both ex alphabetic;
    margin-bottom: 32px;
    max-width: 50%;
}

.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;
    }

    .d {
        display: none;
    }

    .sub-header nav ul {
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .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: 16px;
    }
    
}