@font-face {
    font-family: "Gilroy-Bold";
    src: url(../content/fonts/Gilroy/Gilroy-Bold.ttf);
    font-weight: 700;
}
@font-face {
    font-family: "Gilroy-Regular";
    src: url(../content/fonts/Gilroy/Gilroy-Regular.ttf);
    font-weight: 400;
}
@font-face {
    font-family: "Gilroy-Black";
    src: url(../content/fonts/Gilroy/Gilroy-Black.ttf);
    font-weight: 900;
}
* {
    scroll-behavior: smooth;
    --color-black: #1a1a1a;
    --color-red: #d64694;
    --color-white: #fff;

    --fs-24: 24px;
    --fs-16: 16px;
    --fs-40: 40px;
    --fs-28: 28px;
    --fs-19: 19px;

    --ff-black: "Gilroy-Black";
    --ff-bold: "Gilroy-Bold";
    --ff-regular: "Gilroy-Regular";

    --transition-regular: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    font-family: var(--ff-regular);
    box-sizing: border-box;
}
h1,
h2,
h3,
h4,
h5,
p {
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
}
html {
    overflow-x: hidden;
}
body {
    background-color: var(--color-black);
    overflow-x: hidden;
    overflow-y: auto;
}
.container {
    max-width: 1220px;
    width: 100%;
    padding: 0 10px;
    margin: 0 auto;
    position: relative;
    z-index: 11;
}
.header {
    padding: 25px 0 20px 0;
}
.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header__logo {
    font-size: var(--fs-28);
    color: var(--color-white);
    margin-right: 15px;
    display: flex;
    transition: var(--transition-regular);
}
.main__image {
    max-width: 485px;
    width: 100%;
    border-radius: 10px;
}
.header__logo > span {
    color: var(--color-red);
    display: block;
    transition: var(--transition-regular);
}
.header__logo:hover {
    color: var(--color-red);
}
.header__logo:hover > span {
    color: var(--color-white);
}
.header__button {
    width: 35px;
    background-color: transparent;
    padding: 0;
    outline: none;
    border: none;
    cursor: pointer;
    display: none;
}
.header__button > .header__button-row {
    transition: var(--transition-regular);
}
.header__button.--active > .header__button-row:nth-of-type(3) {
    opacity: 0;
    transition: 0.5s 2s cubic-bezier(0.77, 0, 0.175, 1);
}
.header__button.--active > .header__button-row:nth-of-type(1) {
    transform: rotate(45deg);
    margin: 0;
}
.header__button.--active > .header__button-row:nth-of-type(2) {
    transform: rotate(-45deg);
    margin: 0;
    margin-top: -4px;
}
.header__button-row {
    height: 4px;
    width: 100%;
    margin-bottom: 7px;
    background-color: var(--color-white);
}
.header__button-row:last-of-type {
    margin-bottom: 0;
}
.header__menu {
    max-width: 776px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.header__menu-list {
    list-style: none;
    display: flex;
    justify-content: space-between;
    max-width: 352px;
    width: 100%;
}
.header__menu-item {
    margin-left: 10px;
}
.header__menu-item > a {
    font-size: var(--fs-19);
    color: var(--color-white);
    transition: var(--transition-regular);
}
.header__menu-item > a:hover {
    color: var(--color-red);
}
.header__menu-item.--active > a {
    color: var(--color-red);
}
.contactBtn {
    border: 1px solid #fcfeff;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 175px;
    height: 50px;
    font-family: var(--ff-bold);
    font-size: var(--fs-19);
    color: #e1e3e5;
}
.caption {
    padding-top: 100px;
    padding-bottom: 120px;
    position: relative;
}
.caption__contact.mobile {
    display: none;
}
.redEllipse {
    position: absolute;
    bottom: -50px;
    left: -300px;
    width: 425px;
    height: 425px;
    filter: blur(200px);
    border-radius: 100%;
    background-color: var(--color-red);
    z-index: 5;
    pointer-events: none;
    animation: blink 5s linear infinite alternate;
}
.yellowEllipse {
    position: absolute;
    bottom: 130px;
    right: -300px;
    width: 425px;
    height: 425px;
    filter: blur(200px);
    border-radius: 100%;
    background-color: #F1A41F;
    z-index: 5;
    pointer-events: none;
    animation: blink 5s linear infinite alternate;
}
.skills > .redEllipse {
    bottom: -100%;
}
.skills > .yellowEllipse {
    bottom: -400px;
}
@keyframes blink {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.5);
    }
}
.title__main {
    max-width: 1030px;
    width: 100%;
    margin: 0 auto;
    font-family: var(--ff-bold);
    font-size: 98px;
    text-align: center;
    background: linear-gradient(180deg, #999 0%, #fff 52%, #999 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.title__main > span {
    background: linear-gradient(
        137deg,
        #e6449e 0%,
        #ef7251 53.5%,
        #faa21e 100%
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.caption__box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.caption__results {
    max-width: 328px;
    width: 100%;
}
.caption__result {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 42px 20px;
    text-align: center;
    margin-bottom: 60px;
}
.caption__result-value {
    font-family: var(--ff-bold);
    font-size: var(--fs-40);
    color: var(--color-white);
    margin-bottom: 5px;
}
.caption__result-description {
    font-family: var(--font-family);
    font-size: var(--fs-16);
    color: rgba(255, 255, 255, 0.5);
}
.caption__image {
    padding-top: 75px;
    margin: 0 20px;
}

.caption__image-inner {
    position: relative;
}
.caption__image-description {
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: 70px;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 345px;
    width: 100%;
}
.caption__image-name {
    font-family: var(--ff-bold);
    font-size: var(--fs-24);
    color: var(--color-white);
}
.caption__image-location {
    font-size: var(--fs-16);
    color: var(--color-white);
}
.caption__contact {
    max-width: 327px;
    width: 100%;
}
.caption__contact-text {
    font-size: var(--fs-24);
    line-height: 160%;
    color: var(--color-white);
}

.about {
    padding-bottom: 57px;
}
.about__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.title-line > svg {
    width: 100%;
}
.about__inner {
    position: relative;
}
.about__inner > .yellowEllipse {
    bottom: -305px;
    right: -350px;
}
.title {
    font-family: var(--ff-bold);
    font-size: 65px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #e6449e 0%, #fba31e 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}

.about__subtitle {
    margin-top: 10px;
    font-size: var(--fs-24);
    color: var(--color-white);
    max-width: 900px;
    width: 100%;
}
.about__boxes {
    position: relative;
    z-index: 12;
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
.about__box {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #a6a9b0;
    padding: 30px;
}
.about__box:first-of-type {
    border-radius: 20px 0 0 20px;
    border-right: none;
}
.about__box:last-of-type {
    border-radius: 0 20px 20px 0;
    border-left: none;
}
.about__box-title {
    font-family: var(--ff-black);
    font-size: var(--fs-24);
    color: var(--color-white);
    margin-bottom: 18px;
}
.about__box-subtitle {
    margin-top: 20px;
    font-family: var(--ff-bold);
    font-size: var(--fs-16);
    color: var(--color-white);
}
.about__box-text {
    font-size: var(--fs-16);
    color: #8d8d8d;
}
.about__box-text.white {
    color: var(--color-white);
}
.skills {
    position: relative;
    overflow: hidden;
}
.skills__description {
    font-size: var(--fs-24);
    color: var(--color-white);
    white-space: pre;
    text-wrap: wrap;
}
.skills__description > br {
    display: none;
}
.skills__boxes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    grid-gap: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 1px solid var(--color-white);
}
.skills__box {
    padding: 29px;
    border: 1px solid var(--color-border-black);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.skills__box > img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: var(--transition-regular);
    animation: filter 7s linear 3 alternate;
}
.skills__box:hover > img {
    filter: grayscale(0);
}
@keyframes filter {
    0% {
        filter: grayscale(1);
    }
    100% {
        filter: grayscale(0);
    }
}
.footer {
    margin-top: 60px;
    padding-bottom: 60px;
}
.footer__inner {
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer__copyright {
    font-size: var(--fs-19);
    color: var(--color-white);
}
.footer__copyright > span {
    color: var(--color-red);
}

.portfolio__more {
    border-radius: 20px;
    max-width: 327px;
    width: 100%;
    height: 45px;
    background: var(--color-white);
    font-size: var(--fs-24);
    line-height: 160%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-black);
    margin: 57px auto 20px;
    transition: var(--transition-regular);
}
.portfolio__more:hover {
    background-color: var(--color-red);
    color: var(--color-white);
}
.single__inner {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}
.single__links {
    max-width: 390px;
    width: 100%;
}
.single__links-image {
    width: 390px;
    height: 285px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}
.single__links-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.single__link {
    border: 1px solid #fff;
    border-radius: 10px;
    width: 190px;
    height: 53px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: #393939;
    transition: var(--transition-regular);
}
.single__link.project:hover {
    background: #e6449e;
}
.single__link.project > span {
    transition: var(--transition-regular);
}
.single__link.project:hover > span {
    color: #1a1a1a;
}
.single__link.project > svg > g > path {
    transition: var(--transition-regular);
}
.single__link.project:hover > svg > g > path {
    stroke: #1a1a1a;
}
.single__link.git:hover {
    background: #ffd948;
}
.single__link.git > span {
    transition: var(--transition-regular);
}
.single__link.git:hover > span {
    color: #1a1a1a;
}
.single__link.git > svg > g > path {
    transition: var(--transition-regular);
}
.single__link.git:hover > svg > g > path {
    fill: #1a1a1a;
}
.single__link > span {
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
}
.single__main-image {
    margin-top: 50px;
    width: 100%;
}
.single__description {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 93px;
}
.single__description-title {
    font-weight: 700;
    font-size: 65px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 30px;
}
.single__description-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.single__description-tag {
    background: #393939;
    border: 1px solid #fff;
    border-radius: 5px;
    padding: 8px 30px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
}
.single__description-text {
    font-weight: 300;
    font-size: 16px;
    color: #fff;
    margin-top: 10px;
}
.blog__controls {
    margin: 25px 0 100px;
}
.blog__controls-title {
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    margin-bottom: 15px;
}
.blog__controls-row {
    display: grid;
    grid-template: 1fr / 200px 1fr;
    margin-bottom: 15px;
}
.blog__controls-subtitle {
    font-weight: 300;
    font-size: 16px;
    color: #fff;
    display: flex;
    align-items: center;
}
.blog__controls-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.blog__controls-tag {
    border: 1px solid #fff;
    border-radius: 5px;
    background: #393939;
    padding: 8px 30px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    transition: 0.6s all linear;
    cursor: pointer;
}
.cards__inner {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(390px, 1fr));
    gap: 15px;
}
.card {
    /* border: 1px solid #fff; */
    border-radius: 10px;
    overflow: hidden;
}
.card__thumbnail {
    width: 100%;
    height: 285px;
    object-fit: cover;
    display: block;
    /* border-radius: 10px 10px 0 0; */
}
.card__body {
    background: #2e323b;
    padding: 10px 20px 20px;
}
.card__title,
.cards__inner {
    font-weight: 900;
    font-size: 24px;
    color: #fff;
    margin-bottom: 5px;
}
.card__tags {
    font-weight: 300;
    font-size: 12px;
    color: #fff;
    margin-bottom: 5px;
    width: 100%;
}
.card__description {
    font-weight: 300;
    font-size: 16px;
    color: #fff;
    height: 90px;
    overflow: hidden;
}
.card__link {
    font-weight: 400;
    font-size: 22px;
    color: #fff;
    background: #e95484;
    border-radius: 0 0 10px 10px;
    text-align: center;
    padding: 20px;
    width: 100%;
    display: block;
    transition: var(--transition-regular);
}
.card__link:hover {
    background: #83074c;
}
.blog__controls-tag.--selected {
    background-color: var(--color-red);
    color: white;
}
