:root {
    --color-first: #1e90ff;
    --color-secondary: #ffffff;
    --text-family: Inter;
  }
  
@font-face { 
    font-family: Gunterz; 
    src: url('https://freetal.ru/fonts/GUNTERZ-MEDIUM.OTF'); 
    font-weight: medium;
    font-style: normal;
} 
@font-face { 
    font-family: Cygre; 
    src: url('https://freetal.ru/fonts/CYGRE-LIGHT.TTF'); 
    font-weight: 200;
    font-style: normal;
} 
@font-face { 
    font-family: Cygre; 
    src: url('https://freetal.ru/fonts/CYGRE-REGULAR.TTF'); 
    font-weight: 300;
    font-style: normal;
} 
@font-face { 
    font-family: Cygre; 
    src: url('https://freetal.ru/fonts/CYGRE-MEDIUM.TTF'); 
    font-weight: 400;
    font-style: normal;
} 
@font-face { 
    font-family: Cygre; 
    src: url('https://freetal.ru/fonts/CYGRE-SEMIBOLD.TTF'); 
    font-weight: 500;
    font-style: normal;
} 
@font-face { 
    font-family: Cygre; 
    src: url('https://freetal.ru/fonts/CYGRE-BOLD.TTF'); 
    font-weight: 600;
    font-style: normal;
}
@media (min-width: 1680px) {
    .container {
        max-width: 1670px;
    }
}
@media (min-width: 1580px) {
    .container {
        max-width: 1570px;
    }
}
@media (min-width: 1480px) {
    .container {
        max-width: 1470px;
    }
}
@media (min-width: 1280px) and (max-width: 1479px) {
    .container {
        max-width: 1270px;
    }
}
html {
    overflow-x: hidden;
}
#home {
    background-color: var(--color-first);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    color: #fff;
    min-height: 75vh;
    padding-top: 6%;
    background-image: url(/imgs/Home-BG.png);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
#home .container {
    min-height: 75vh;
}
#home > .container > .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    min-height: 75vh;
}
h1 {
    font-family: Gunterz;
    font-size: 180px;
}
h2, h3, h4, h5, p, a, label {
    font-family: var(--text-family);
    margin: 0;
}
a {
    text-decoration: none !important;
    transition: 0.2s;
}
a:hover {
    color: var(--color-first);
}
#home h1 {
    margin-bottom: -30px;
    margin-left: -10px;
}
#home h3 {
    margin-bottom: 50px;
    font-size: 24px;
    font-weight: 400;
}
#home form > div:first-child {
    background: #fff;
    padding: 5px;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#home form > div:last-child {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 20px;
}
input[type=text] {
    background: transparent;
    border: none;
    font-size: 20px;
    font-family: var(--text-family);
    padding: 12px 20px;
    width: 60%;
    color: #000;
    outline: none;
}
.fill-button.blue {
    background: var(--color-first);
    padding: 20px 30px;
    font-size: 16px;
    color: #fff;
    border-radius: 10px;
    transition: 0.2s;
}
.category-outline input[type=radio] {
    width: 100%;
    margin-bottom: -100%;
    height: 100%;
    opacity: 0;
}
.category-outline {
    border: 1.5px solid #fff;
    border-radius: 5px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 5px 10px;
    cursor: pointer;
    transition: 0.2s;
}
input[type="radio"]:checked ~ .category-outline {
    background: #fff;
    color: #000;
}
label {
    margin-bottom: 0;
    cursor: pointer;
}
#home form > div:last-child h4 {
    margin-right: 10px;
    font-size: 16px;
}
.freelancer-home {
    background: #fff;
    color: #000;
    border: 1px solid #e1e1e1;
    padding: 15px;
    border-radius: 10px;
}
section, div {
    position: relative;
}
.row .row {
    margin: 0;
}
.projects-container > div {
    padding: 0px 20px;
}
.freelancer-title {
    font-size: 20px;
}
.freelancer-subtitle {
    color: #606060;
}
.freelancer-title:after {
    content: "";
    width: 100%;
    background: #e1e1e1;
    height: 1px;
    display: flex;
    margin-bottom: 15px;
    margin-top: 5px;
}
img {
    vertical-align: middle;
    width: 100%;
}
.freelancer-home > div:first-child {
    padding: 0;
}
.freelancer-home > div:first-child img {
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
}
.rating img {
    width: 24px;
}
.header-wrap.colored img {
    filter: brightness(999);
}
.header-wrap img {
    max-width: 45px;
}
.rating {
    margin-bottom: 5px;
}
.header-wrap > div {
    width: 100vw;
    position: absolute;
    display: flex;
    justify-content: space-between;
    padding: 20px;
    z-index: 2;
    background: transparent;
}
.header-wrap a {
    color: #000;
    font-size: 16px;
    transition: 0.2s;
    cursor: pointer !important;
}
.header-wrap:not(.colored) a:hover {
    color: var(--color-first);
}
.header-wrap.colored a:hover {
    opacity: 0.7;
}
.header-wrap.colored a {
    color: #fff;
    font-size: 16px;
    transition: 0.2s;
}
.header-wrap a:not(:first-child) {
    margin-left: 25px;
}

@keyframes menuAppear {
    from {
        top: -20px
    }
    to {
        top: 0px;
    }
}

.header-wrap.scrolled {
    background: var(--color-first);
    z-index: 9;
    position: fixed;
    width: 100%;
    height: 81px;
}
.outline-button {
    border-width: 2px;
    border-style: solid;
    border-radius: 10px;
    padding: 15px 25px;
    transition: 0.2s;
}
#freelancers-home {
    margin-top: -80px;
}
#home img {
    position: absolute;
    bottom: -12%;
    right: -5%;
    min-width: 350%;
}
#home h1:after {
    content: "";
    width: 127px;
    height: 134px;
    background: url(/imgs/Overlay-L.png);
    display: flex;
    position: absolute;
    right: -9px;
    top: 17px;
    z-index: 5;
    background-size: contain;
    background-repeat: no-repeat;
}
.outline-button:hover {
    background: #fff;
    color: #000;
    border: 2px solid #fff;
    text-decoration: none;
}
.fill-button.blue:hover {
    text-decoration: none;
    background: #000;
}
.category-outline:hover {
    background: #fff;
    color: #000;
}
.rotating {
    width: 140px;
    height: 140px;
    padding: 45px;
    background: #fff;
    border: 2px solid #e1e1e1;
    border-radius: 50%;
}
.no-comission {
    position: absolute;
    right: 0%;
    z-index: 5;
    margin-top: -5%;
}
.no-comission:after {
    content: "";
    width: 110px;
    height: 110px;
    background: url(/imgs/No-commision.png);
    display: flex;
    margin-left: -33px;
    margin-top: -79px;
    border-radius: 50%;
    background-size: contain;
    background-position: center;
    animation-name: rotate;
    animation-timing-function: linear;
    animation-duration: 14s;
    animation-iteration-count: infinite;
}
@keyframes rotate {
    from {rotate: 0deg;}
    to {rotate: 360deg;}
}
#login {
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background-color: var(--color-first);
    background-image: url(/imgs/Home-BG.png);
    background-size: cover;
    background-position: center;
}
.login-reg-form {
    background: #fff;
    border-radius: 10px;
    padding: 50px 40px;
    text-align: center;
}
.login-reg-form input[type="mail"] {
    border: none;
    font-size: 20px;
    font-family: var(--text-family);
    padding: 20px 30px;
    color: #000;
    outline: none;
    background: #f4f4f4;
    border-radius: 10px;
}
.login-reg-form input[type="text"] {
    background: #f4f4f4;
    border-radius: 10px;
}
input[type="submit"] {
    color: #fff;
    padding: 20px 25px;
    font-size: 16px;
    background: var(--color-first);
    border: none;
    border-radius: 10px;
    font-weight: 500;
    transition: 0.2s;
    font-family: var(--text-family);
}
input[type="submit"]:hover {
    filter: brightness(0.9);
}
.login-reg-form form input {
    width: 100%;
    margin-bottom: 20px;
}
.login-reg-form h2 {
    margin-bottom: 30px;
}
.flex {
    display: inline-flex;
    gap: 5px;
}
#projects {
    padding-top: 135px;
    overflow: hidden;
    min-height: 90vh;
}
.projects-container {
    display: flex;
    flex-wrap: wrap;
}
#projects .projects-container > div > a {
    text-decoration: none !important;
    position: relative;
    height: 100%;
    display: flex;
    width: 100%;
}
.projects-container > div {
    text-decoration: none !important;
    position: relative;
    height: 100%;
    display: flex;
    width: 50%;
}
.project-link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.delete-button {
    position: absolute;
    bottom: 55px;
    left: 50px;
    z-index: 3;
    color: #ff0000;
    border-radius: 8px;
    padding: 5px 25px;
    border: 1px solid #ff0000;
}
.delete-button:hover {
    color: #fff;
    background-color: #ff0000;
}
.big-title {
    font-size: 40px;
    margin-bottom: 20px;
}
.project {
    padding: 55px 30px;
    background: #fff;
    border-radius: 10px;
    text-decoration: none !important;
    color: #000;
    transition: 0.2s;
    margin-bottom: 30px;
    border: 1px solid #e4e4e4;
    width: 100%;
}
.tilt-light {
    width: 300px;
    height: 300px;
    background: var(--color-first);
    border-radius: 50%;
    filter: blur(250px);
    position: absolute;
    transition: 0.3s;
    opacity: 0;
}
.project .tags, .project .description, .project h3 {
    z-index: 9;
    position: relative;
}
.project h3 {
    font-size: 22px;
    margin-bottom: 15px;
}
.important {
    position: absolute;
    right: 0;
    top: 0;
    background: var(--color-first);
    color: #fff;
    padding: 10px 15px;
    font-size: 14px;
    border-bottom-left-radius: 15px;
}
.card-text {
    background: #fcfcfc;
    color: #626262;
    padding: 8px 10px;
    border-radius: 5px;
    font-weight: 400;
    font-size: 14px;
    transition: 0.2s;
    border: 1px solid #e4e4e4;
}
.card-text.blue {
    background: var(--color-first);
    color: #fff;
    border-color: var(--color-first);
}
.home-details .category-outline {
    justify-content: center !important;
    border-radius: 5px;
}
#home form input[type="submit"]:hover {
    background-color: #000;
}

.tox.tox-tinymce {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 25px;
}

.tox.tox-tinymce, .tox.tox-tinymce div {
    border-color: #e4e4e4 !important;
    border-width: 1px !important;
}

.tox.tox-tinymce .tox-editor-header > div:not(:last-child) {
    background-color: var(--color-first);
}

.tox-mbtn {
    color: #fff !important;
}

.tox .tox-mbtn:hover:not(:disabled) {
    background: #1a71c7 !important;
}

.tox .tox-mbtn--active {
    background: #1a71c7 !important;
}

.tox-mbtn:hover {
    background: #1a71c7 !important;
}

.tox-mbtn__select-label {
    cursor: pointer !important;
}

#home form input[type="submit"] {
    font-size: 0;
    background-image: url(/imgs/send.svg);
    background-size: 28px;
    background-position: center;
    background-repeat: no-repeat;
    min-width: 64px;
    background-color: #f0f0f0;
    margin-right: 5px;
}
#home form {
    z-index: 3;
    position: relative;
}
#home form > div:not(.home-categories) {
    background: #fff;
    border-radius: 10px;
    padding: 5px;
    display: flex;
    flex-wrap: wrap;
}
.home-details .item a {
    color: #fff;
}
.home-details .item > input {
    width: 100%;
    position: absolute;
    height: 100%;
    cursor: pointer;
    opacity: 0;
    z-index: 6;
}
.home-categories > .home-details {
    display: flex;
    gap: 15px;
}
.home-details .category-outline input {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 9999;
    cursor: pointer;
}

.card-text.red {
    background: #ff3636;
    color: #fff;
    border-color: #ee2727;
}
.card-text.green {
    background: #14b729;
    color: #fff;
    border-color: #129623;
}
.meta {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #000;
    font-size: 24px;
}
.meta img {
    width: 80px;
    border-radius: 50%;
}
.projects-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: left;
    margin-bottom: 50px;
    padding: 0px 30px;
}
.projects-filter .filter-widget {
    margin-bottom: 40px;
}
select {
    border: none;
    font-size: 20px;
    font-family: var(--text-family);
    padding: 15px 15px;
    color: #000;
    outline: none;
    background: #ffffff;
    border-radius: 10px;
}
.red-color.open-popup {
    background: #f00;
    border: none;
}
section#content h2 {
    margin-bottom: 15px;
    margin-top: 40px;
}
.justifity-left {
    justify-content: left !important;
    gap: 2%;
}

.portfolio.justifity-left .item .image-holder {
    margin-bottom: 0px;
}
table {
    background: var(--color-first);
    border-radius: 15px;
    padding: 20px;
    color: #fff;
    font-size: 16px;
    text-transform: capitalize;
    overflow: hidden;
}
td {
    padding: 25px;
    border: 1px solid #6bb6ff;
}
.projects-filter h3 {
    margin: 10px 0px 20px 0px;
    font-size: 20px;
    font-weight: 400;
}
.projects-filter select, .projects-filter input:not([type="submit"]):not([type="checkbox"]) {
    width: 100%;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e4e4e4;
    transition: 0.2s;
    color: #757575;
    font-size: 16px;
}
.tags-filter {
    display: flex;
    justify-content: left;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.tags-filter input {
    margin: 0;
    width: 25px;
    height: 25px;
    opacity: 0;
    cursor: pointer;
}
.tags-filter label {
    display: flex;
    font-weight: 400;
    font-size: 16px;
    align-items: center;
}
.checkmark {
    height: 25px;
    width: 25px;
    background-color: #fff;
    display: flex;
    margin-left: -25px;
    margin-right: 10px;
    border: 1px solid #dedede;
    border-radius: 5px;
    cursor: pointer;
}
.tags-filter input:checked ~ .checkmark {
     background-color: var(--color-first);
}
.tags-filter input:checked ~ .checkmark:after {
    content: "";
    width: 14px;
    height: 14px;
    background-image: url(/imgs/check.svg);
    background-size: contain;
    margin-left: 5px;
    margin-top: 5px;
}
.main-color {
    color: #fff;
    background: var(--color-first);
}
.main-color p {
    color: #fff;
}
.projects-filter input[type="submit"] {
    margin-top: 30px;
    width: 100%;
}
.project .description {
    padding: 30px 0px 20px 0px;
    font-weight: 300;
}
line {
    width: 100%;
    height: 1px;
    display: flex;
    margin-top: 15px;
    margin-bottom: 15px;
    background: #e4e4e4;
}
.sidebar {
    position: sticky;
    top: 100px;
}
.created {
    position: absolute;
    top: -40px;
    right: 0;
}
.updated {
    position: absolute;
    bottom: -40px;
    right: 0;
}
.main-color u {
    color: #fff;
}
u {
    text-decoration: none;
    color: var(--color-first);
    font-weight: 800;
}
.page-title {
    border-bottom: 2px solid #cdcdcd;
    margin-bottom: 40px;
}
.projects-type {
    display: flex;
    gap: 40px;
}
.projects-type .active {
    border-bottom: 5px solid var(--color-first);
    margin-bottom: -2px;
    color: var(--color-first);
    padding-bottom: 10px;
}
.projects-type h2 {
    transition: 0.2s;
}
.projects-type h2:hover {
    color: var(--color-first);
}
.project .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.project.main-color {
    color: #000;
    background: #f1f2ff;
}
.project.main-color p:not(.important), .project.main-color u {
    color: #000;
}
.details {
    font-size: 14px;
    font-weight: 500;
    color: #434343;
    display: flex;
    gap: 10px;
}
.sorting-wrap {
    justify-content: space-between;
    display: flex;
    margin-bottom: 10px;
}
.sorting-wrap:after {
    content: "";
    width: 16px;
    height: 16px;
    left: 35px;
    position: absolute;
    top: 14px;
    background-image: url(/imgs/loupe.svg);
    background-size: contain;
}
#sorting {
    padding: 17px 22px;
    background: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 5px;
    font-size: 16px;
    color: #000000 !important;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    text-decoration: none !important;
    cursor: pointer;
    transition: 0.2s;
}
#search {
    font-size: 16px;
    background: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 90px;
    width: 100%;
    padding: 16px 30px 16px 30px;
    background-image: url(/imgs/loupe.svg);
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: 96% center;
}
#search::placeholder {
    color: #000;
}
select, input {
    transition: 0.2s;
}
select:hover, input:hover, .selector:hover, .details-select:hover {
    border-color: #bdbdbd !important;
}
.tags-filter input:hover:not(:checked) ~ .checkmark {
    background-color: #f4f4f4;
}
.selector-wrap {
    position: relative;
}
.selector {
    padding: 15px 30px;
    background: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 5px;
    font-size: 16px;
    color: #000000 !important;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    text-decoration: none !important;
    cursor: pointer;
    transition: 0.2s;
}
.arrow-down {
    width: 20px;
    height: 20px;
    display: flex;
    background-image: url(/imgs/selector-arrow.svg);
    position: relative;
    background-size: contain;
}
.selector-details {
    width: 700px;
    background: #fff;
    border: 1px solid #e4e4e4;
    padding: 30px;
    border-radius: 5px;
    position: absolute;
    top: 70px;
    display: flex;
    flex-wrap: wrap;
    z-index: 25;
    gap: 15px;
    box-shadow: 0px 20px 20px 0px rgb(0 0 0 / 10%);
}
.selector-details h4 {
    font-size: 24px;
    width: 100%;
}
.selector-details .details-select {
    background: #fcfcfc;
    color: #626262;
    padding: 10px 10px;
    border-radius: 5px;
    font-weight: 400;
    font-size: 14px;
    transition: 0.2s;
    border: 1px solid #e4e4e4;
    text-decoration: none;
    cursor: pointer;
}
.selector-details .details-select.active {
    background: var(--color-first);
    color: #fff;
    border-color: var(--color-first);
}
.selector-details .actions {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    border-top: 1px solid #e4e4e4;
    padding-top: 20px;
    align-items: center;
}
.apply {
    cursor: pointer;
    background: var(--color-first);
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.2s;
}
.apply:hover {
    text-decoration: none;
    color: #fff;
    background: #5477d3;
}
.clear {
    text-decoration: none !important;
    color: #000;
    cursor: pointer;
    opacity: 0.6;
    font-weight: 600;
    transition: 0.2s;
}
.clear:hover {
    opacity: 1;
}
#project-price-details input {
    width: 48%;
}
#project-price-details {
    justify-content: space-between;
}
.header-wrap:not(.colored) {
    border-bottom: 1px solid #e4e4e4;
    background: #fff;
}
#project-time-details input {
    width: 48%;
}
#project-time-details {
    justify-content: space-between;
}
.talent .details > p:first-child {
    width: 100%;
}
.header-wrap .right-column {
    padding-top: 9px;
}
#Home form > div:nth-child(2) {
    background: #fff;
    padding: 5px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-radius: 10px;
}
#Home input[type=text] {
    font-size: 16px;
    padding: 0px 15px;
}
#Home form {
    position: relative;
    z-index: 4;
}
.tilt {
    overflow: hidden;
}
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #5171c5;
    border-radius: 2px;
}
::-webkit-scrollbar-thumb:hover {
    background: #3f599c;
}
.p-9 {
    padding-top: 90px;
    padding-bottom: 90px;
}
.subtitle {
    width: fit-content;
    background: var(--color-first);
    padding: 12px 15px;
    border-radius: 5px;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 20px;
}
.title {
    font-size: 45px;
    line-height: 1.2;
    color: #000;
    margin-bottom: 30px;
}
.description {
    font-size: 16px;
    line-height: 1.7;
    font-weight: 300;
    color: #000;
}
body {
    background-color: #fbfcff;
}

#HowItWorks {
    min-height: 80vh;
}
.HowItWorks-graphic-wrap, .info-box-wrap {
    padding-left: 40px;
}
.HowItWorks-graphic-item-wrap {
    max-width: 330px;
}
.info-box-wrap {
    max-width: 340px;
    transition: 0.4s;
}
.info-box-wrap:hover {
    transform: translateY(-5px);
}
.HowItWorks-graphic-item, .info-box-item {
    background: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    overflow: visible;
    transition: 0.4s;
    position: relative;
}
.active .HowItWorks-graphic-item, .info-box-item:hover {
    box-shadow: 0px 15px 20px 0px rgb(0 0 0 / 10%);
}
.HowItWorks-graphic-item b {
    font-size: 20px;
    color: #000;
    position: absolute;
    top: 20%;
    transition: 0.6s;
}
.info-box-item b {
    font-size: 20px;
    color: #000;
    transition: 0.6s;
}
.active .HowItWorks-graphic-item b {
    top: 0%;
}
.HowItWorks-graphic-item p {
    font-weight: 300;
    color: #000;
    transition: 0.4s;
    opacity: 0;
    transform: scale(0.9);
}

.active .HowItWorks-graphic-item p {
    margin-top: 30px;
    opacity: 1;
    transform: scale(1);
}

.info-box-item p {
    font-weight: 300;
    color: #000;
    transition: 0.4s;
}
svg {
    max-width: 100%;
    height: auto;
}
.HowItWorks-graphic-item svg, .info-box-item svg {
    max-width: 80px;
    padding: 12px;
    background: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 5px;
    margin-left: -60px;
    transition: 0.4s;
}
.active .HowItWorks-graphic-item svg, .info-box-item:hover svg {
    background: var(--color-first);
    border-color: var(--color-first);
    padding: 15px;
    box-shadow: 0px 10px 10px 0px rgb(100 143 255 / 10%);
}

#How .HowItWorks-graphic-item path {
    stroke: #c9c9c9;
}

#How .HowItWorks-graphic-item rect {
    stroke: #c9c9c9;
    fill: #fff;
}

.HowItWorks-graphic-item path, .info-box-item path {
    fill: #fff;
    stroke: #0e0e0e;
    transition: 0.4s;
}
.active .HowItWorks-graphic-item path, .info-box-item:hover path {
    fill: #fff;
    stroke: #fff;
}
#How {
    margin-top: -122px;
    margin-left: 400px;
}
#Testing {
    margin-left: 200px;
    margin-top: 50px;
}
#Checking {
    margin-left: 400px;
    margin-top: 50px;
}

#HowItWorks > .container > .row {
    display: flex;
    align-items: center;
}

.HowItWorks-graphic-line {
    max-width: 65px;
}

.HowItWorks-graphic-line.line-1 {
    margin-bottom: -70px;
    margin-left: 100px;
}

.HowItWorks-graphic-line.line-2 {
    margin-left: 300px;
    margin-bottom: -70px;
}

.HowItWorks-graphic-line svg {
    overflow: visible !important;
}

@keyframes draw {
    0% {
        stroke-dasharray: 330;
        stroke-dashoffset: 330;
        stroke-width: 6px;
    }
    15% {
        stroke-dasharray: 330;
        stroke-dashoffset: 0;
    }
    25% {
        stroke-dasharray: 330;
        stroke-dashoffset: 0;
    }
    55% {
        stroke-dasharray: 330;
        stroke-dashoffset: 0;
        stroke-width: 6px;
    }
    75% {
        stroke-dasharray: 330;
        stroke-dashoffset: 0;
        stroke-width: 0px;
    }
    80% {
        stroke-dasharray: 330;
        stroke-dashoffset: 0;
        stroke-width: 0px;
    }
}

.HowItWorks-line polyline {
    fill: none;
    stroke: #e4e4e4;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1px;
}

.HowItWorks-line.active .colored {
    fill: none;
    stroke: var(--color-first);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 6px;
    animation: draw 4s ease-out;
}



#footer {
    background-color: #f0f4ff;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    padding: 70px 0px;
}

#footer p {
    font-size: 16px;
    color: #000;
    margin-top: 15px;
    margin-bottom: 30px;
    max-width: 90%;
}

#footer p u {
    font-weight: 700 !important;
}

.menu-items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: left;
    gap: 20px;
}

.menu-items b {
    font-size: 22px;
    color: #000;
}

.menu-items a {
    width: 100%;
    color: #000;
    font-size: 18px;
}

.menu-items a:hover {
    color: var(--color-first);
}

#copyright {
    background: var(--color-first);
    padding: 20px 0px;
    color: #fff;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

#copyright a {
    color: #fff;
}

#copyright .right {
    display: flex;
    justify-content: right;
    gap: 10px;
}

.socials {
    display: flex;
    gap: 10px;
}

.social > div {
    width: 40px;
    height: 40px;
    background: var(--color-first);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.social > div:hover {
    background: #000;
}

.social > div:after {
    background-size: contain;
    background-position: center;
    content: "";
    width: 20px;
    height: 20px;
    display: flex;
    filter: brightness(9);
    background-repeat: no-repeat;
}

.linkedin:after {
    background-image: url(/imgs/linkedin.svg);
    width: 18px !important;
    height: 18px !important;
}

.facebook:after {
    background-image: url(/imgs/facebook.svg);
}

.vk:after {
    background-image: url(/imgs/vk.svg);
}

#page-title {
    background-color: var(--color-first);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    color: #fff;
    padding: 100px 0px 60px 0px;
    background-image: url(/imgs/Home-BG.png);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    text-align: center;
    margin-bottom: 60px;
}

#page-title h1 {
    font-size: 100px;
}

#first-block {
    margin-bottom: 20px;
}

#first-block .description {
    margin-bottom: 30px;
}

.colored-box {
    padding: 40px 20px;
    background: var(--color-first);
    text-align: center;
    border-radius: 15px;
}

#second-block h2, #second-block p {
    color: #fff;
}

#project {
    padding-top: 140px;
}

.border-box {
    padding: 55px 30px;
    background: #fff;
    border-radius: 10px;
    text-decoration: none !important;
    color: #000;
    transition: 0.2s;
    margin-bottom: 30px;
    border: 1px solid #e4e4e4;
    position: relative;
    overflow: hidden;
}

#project h2 {
    margin-bottom: 15px;
}

#project .details {
    margin-bottom: 40px;
    font-size: 16px;
}

.flex-tags h4 {
    margin-bottom: 5px;
    width: 100%;
    font-size: 22px;
}

.flex-tags .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.flex-tags .tags:not(:last-child) {
    margin-bottom: 40px;
}

#freelancer-request textarea {
    min-height: 200px;
    font-size: 16px;
    background: #fbfcff;
    border: 1px solid #e4e4e4;
    border-radius: 10px;
    width: 100%;
    padding: 20px;
    font-family: var(--text-family);
    outline: none;
    color: #000;
    margin-bottom: 20px;
    max-width: 100%;
}

#freelancer-request textarea::placeholder {
    color: #000;
}

#dashboard {
    padding-top: 80px;
}

.container-right {
    padding-right: 10%;
}

#dashboard > div > .row {
    display: flex;
}

.dashboard-sidebar {
    height: 100%;
    background-color: var(--color-first);
    padding: 30px 20px;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

.dashboard-sidebar .item img {
    width: 25px;
    margin-right: 15px;
    margin-top: -4px;
}

.dashboard-sidebar .item {
    color: #fff;
    font-size: 16px;
    width: 100%;
    border-top: 1px solid #baddff;
    border-bottom: 1px solid #baddff;
    padding: 20px 0px;
    transition: 0.2s;
    margin-left: -30px;
    width: calc(100% + 20px);
    padding-left: 40px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-right: 1px solid #baddff;
    margin-bottom: 20px;
}

.dashboard-sidebar .item:hover {
    background: rgb(255 255 255 / 10%);
    margin-left: -20px;
}

.dashboard-sidebar .item.active {
    background: rgb(255 255 255);
    padding: 20px 10px;
    margin-left: -20px;
    width: calc(100% + 20px);
    padding-left: 40px;
    color: #000;
}

.dashboard-sidebar .item.active img {
    filter: brightness(0) contrast(3);
}

.dashboard-sidebar a {
    width: 100%;
}

.dashboard-content {
    padding-top: 35px;
}

.filter-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 35px;
}

.fill-button {
    font-size: 16px;
    padding: 20px 25px;
    border-radius: 10px;
    transition: 0.2s;
    color: #fff;
}

.fill-button.main-color:hover {
    color: #fff;
    background-color: #000;
}

.freelancers-request .description {
    margin-top: 30px;
    margin-bottom: 35px;
}

.freelancers-request .actions-buttons {
    margin-bottom: 60px;
}

.freelancer-details .details {
    margin-bottom: 0px;
}

.freelancer-details {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 60px;
}

.freelancer-details > div {
    max-width: 49%;
}

.freelancer-details .details {
    flex-wrap: wrap;
}

.freelancer-details .specializations {
    margin-bottom: 0px;
}

.freelancers-request .freelancer-subtitle {
    font-size: 16px;
    border-top: 1px solid #c5c5c5;
    padding-top: 10px;
    margin-top: 5px;
}

.actions-buttons {
    margin-bottom: 10px;
}

.header-wrap .left-column {
    display: flex;
    align-items: center;
}

#email, #password, #name, #password_confirmation {
    width: 100%;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e4e4e4;
    transition: 0.2s;
    color: #757575;
    font-size: 16px;
    padding: 20px 20px;
    outline: none;
}

#login h2 {
    font-size: 35px;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 400;
}

.logo-holder {
    width: 145px;
    margin: 0 auto;
    background: #ffffff;
    padding: 25px;
    border: 1px solid #e4e4e4;
    border-radius: 10px;
    margin-bottom: -40px;
    z-index: 2;
    position: relative;
}

.d-none.flex-sm-fill.d-sm-flex.align-items-sm-center.justify-content-sm-between .small.text-muted {
    display: none;
}

nav {
    width: 100%;
}

nav .align-items-sm-center {
    justify-content: center !important;
}

.page-link {
    margin-left: 10px;
    margin-right: 10px;
    border-radius: 5px;
    width: 50px;
    height: 50px !important;
    justify-content: center !important;
    align-items: center !important;
    display: flex;
}

.page-item.disabled > .page-link {
    background: #e5f0ff;
    border-color: #bad7ff;
    color: #a1a1a1;
    opacity: 0.8;
}

.page-item:last-child .page-link, .page-item:first-child .page-link {
    font-size: 20px;
    font-weight: 700;
    width: 50px;
    height: 50px;
}

.page-link:hover {
    color: #fff;
    border-color: var(--color-first);
    background: var( --color-first);
}

.talent-container {
    display: flex;
    flex-wrap: wrap;
}

.talent-container a {
    text-decoration: none !important;
    position: relative;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
}

.talent {
    padding: 40px 30px;
    background: #fff;
    border-radius: 10px;
    text-decoration: none !important;
    color: #000;
    transition: 0.2s;
    margin-bottom: 30px;
    border: 1px solid #e4e4e4;
    width: 100%;
}

.avatar {
    border-radius: 10px;
}

.talent .details {
    flex-wrap: wrap;
}

.talent .description {
    margin-top: 15px;
    margin-bottom: 20px;
}

.talent .fill-button {
    width: 100%;
    display: flex;
    padding: 15px 0px;
    justify-content: center;
    margin-top: 20px;
    z-index: 9;
    position: relative;
}

#talent-price-details input {
    width: 48%;
}

#talent-details {
    padding-top: 110px;
}

.main-details {
    display: flex;
    flex-wrap: wrap;
    gap: 5%;
    border-top: 1px solid #e4e4e4;
    border-bottom: 1px solid #e4e4e4;
    padding: 35px 0px;
    margin-top: 30px;
    margin-bottom: 30px;
}

#talent-details .details {
    flex-wrap: wrap;
}

#talent-details .details > div {
    width: 100%;
}

.talent .avatar {
    height: 200px;
    object-fit: cover;
    object-position: top;
}

#talent-details .description {
    margin-bottom: 25px;
}

.specializations h4, .skills h4, .special h4 {
    margin-bottom: 20px;
}

.specializations, .special {
    margin-bottom: 30px;
}

.contact img {
    width: 24px;
}

.contact .icon {
    background: #fff;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    border-radius: 5px;
    border: 1px solid #e4e4e4;
    margin-right: 15px;
}

.contact {
    margin-bottom: 20px;
    margin-top: 20px;
    border: 1px solid var(--color-first);
    border-radius: 5px;
    background: #1e90ff;
    padding: 10px;
    color: #fff;
    display: flex;
    align-items: center;
}

.main-details .item img {
    width: 32px;
}

.main-details .item {
    display: flex;
    gap: 10px;
    align-items: center;
}

.main-details .item .icon {
    background: var(--color-first);
    border-radius: 5px;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    border: 1px solid #e4e4e4;
    z-index: 2;
}

.main-details .item .content {
    background: #fff;
    border: 1px solid #e4e4e4;
    padding: 20px 30px 20px 45px;
    border-radius: 5px;
    margin-left: -35px;
}

.separator {
    background: #e4e4e4;
    width: 1px;
}

.contact:not(.socials) a {
    background: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 5px;
    padding: 10px 20px;
    margin-left: auto;
    width: 130px;
    text-align: center;
}

.contact.socials {
    background: transparent;
    border: none;
    padding: 0;
}

.contact.socials .social {
    background: var(--color-first);
    padding: 15px;
    border-radius: 5px;
}

.contact.socials img {
    filter: contrast(1) brightness(9);
}

#login button {
    width: 100%;
    background: var(--color-first);
    font-size: 16px;
    color: #fff;
    padding: 20px 20px;
    border-radius: 10px;
    text-transform: none;
    justify-content: center;
    margin: 0;
}

#boardOfTheAssociation {
    padding-bottom: 70px;
}

#AsosiationPresident {
    padding-bottom: 30px;
}

#ExecutiveDirectorOfTheAssociation {
    padding-bottom: 30px;
}

.submit-block {
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px !important;
}

#login a {
    background: transparent;
    border: none;
    color: #000;
    font-size: 14px;
    text-decoration: underline !important;
}

.justify-end {
    justify-content: space-between !important;
}

.remember-me {
    font-weight: 400;
    display: flex;
    gap: 10px;
}

input#remember_me {
    margin: 0;
}

input#remember_me {
    width: 15px;
    height: 15px;
}

#projects-filter {
    font-size: 16px;
    border: 1px solid #e4e4e4;
    height: 56px;
    margin-right: 25px;
}

#dashboard input {
    border: 1px solid #e4e4e4;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    font-size: 16px;
    color: #000;
    width: 100%;
    box-shadow: none !important;
}

#dashboard textarea {
    border: 1px solid #e4e4e4;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    font-size: 16px;
    color: #000;
    width: 100%;
    margin-bottom: 30px;
    min-height: 200px;
    outline: none !important;
}

#dashboard .specializations, #dashboard .skills, #dashboard .special {
    width: 100%;
}

#dashboard .skills {
    margin-bottom: 40px;
}

#dashboard form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

#dashboard .details-select {
    background: #fcfcfc;
    color: #626262;
    padding: 10px 10px;
    border-radius: 5px;
    font-weight: 400;
    font-size: 14px;
    transition: 0.2s;
    border: 1px solid #e4e4e4;
    text-decoration: none;
    cursor: pointer;
    position: relative;
}

#dashboard .details-select input {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    opacity: 0 !important;
}

input.fill-button.main-color {
    background: var(--color-first) !important;
    border: none !important;
    width: 250px !important;
    color: #fff !important;
}

.dashboard-profile button {
    background: var(--color-first);
    padding: 20px 35px !important;
    border-radius: 10px;
    transition: 0.2s;
    color: #fff;
    font-weight: 600;
}

.dashboard-profile {
    padding-bottom: 40px;
}

.examination form h2, .examination form p, .examination form b {
    width: 100%;
}

.bg-red-600 {
    background: #f00 !important;
}

.freelancers-request .meta img {
    height: 110px;
    border-radius: 10px;
    object-fit: cover;
    object-position: top;
    width: 110px;
}

.freelancers-request .freelancer-details {
    margin-bottom: 30px;
}

.freelancers-request .border-box {
    padding: 30px 30px !important;
}

.portfolio .item {
    padding: 30px 30px;
}

.portfolio .item img {
    border-radius: 10px;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(30 144 255 / 60%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 400;
    transition: 0.3s;
    opacity: 0;
}

.overlay b {
    color: #fff !important;
}

.portfolio {
    justify-content: space-between;
}

.portfolio-title {
    padding: 30px 30px;
}

.portfolio .item {
    width: 32%;
}

.portfolio .item:hover .overlay {
    opacity: 1;
}

.portfolio .item .image-holder {
    margin-bottom: 20px;
}

.portfolio .item b {
    color: #000;
}

.burger-menu {
    max-width: 38px;
    position: relative;
}

.colored .burger-menu path {
    fill: #fff;
}

.burger-menu path {
    transition: 0.4s;
}

.burger-menu svg {
    transition: 0.4s;
}

.burger-menu input {
    display: block;
    width: 38px;
    height: 38px;
    position: absolute;
    cursor: pointer;
    opacity: 0;
    z-index: 10;
    -webkit-touch-callout: none;
}

.burger-menu svg {
    z-index: 9;
    position: relative;
    overflow: visible;
}

#menu {
    position: absolute;
    width: 70vw;
    padding: 40px;
    padding-top: 75px;
    background: #fff;
    list-style-type: none;
    transform: translate(110%, 0);
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
    right: -20px;
    top: -20px;
    height: 100vh;
    z-index: 7;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
}

.outline-button.black {
    border-color: #000;
    color: #000 !important;
}

#menu a {
    margin: 0 !important;
}

#menu .nav a {
    width: 100%;
}

#menu .auth {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

#menu .auth a {
    width: 100%;
    text-align: center;
    font-size: 14px;
}

#menu li {
    color: #000;
    font-size: 20px;
    padding: 10px 0px;
}

.burger-menu input:checked ~ ul {
    transform: none !important;
}

.burger-menu input:checked ~ svg {
    transform: translateY(-10px);
}

.burger-menu input:checked ~ svg g path:nth-child(1) {
    opacity: 0;
}

.burger-menu input:checked ~ svg g path:nth-child(2) {
    transform: rotate(45deg) translate(190px, 0px);
}

.burger-menu input:checked ~ svg g path:nth-child(3) {
    transform: rotate(315deg) translate(-360px, 40px);
}

.burger-menu input:checked ~ svg path {
    fill: #000;
}

.popup {
    position: fixed;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 99;
    background: rgb(0 0 0 / 35%);
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.popup-content {
    max-width: 50vw;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    border-radius: 15px;
}

.popup-content form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
    text-align: center;
    margin-bottom: 0 !important;
}

.close-popup {
    position: absolute;
    right: 25px;
    top: 25px;
    width: 64px;
    height: 64px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s;
}

.close-popup:hover {
    background: var(--color-first);
}

.close-popup:hover span {
    background: #fff;
}

.close-popup span {
    width: 24px;
    height: 3px;
    background: #000;
    border-radius: 90px;
    position: absolute;
    transition: 0.2s;
}

.close-popup span:first-child {
    rotate: 45deg;
}

.close-popup span:last-child {
    rotate: -45deg;
}

body.no-scroll {
    height: 100vh;
    overflow: hidden;
}

#resolution-detector {
    display: none;
    z-index: 0;
}

.details input[type="checkbox"], .details input[type="radio"] {
    height: 35px;
    position: absolute;
    top: -7px;
    z-index: 2;
    opacity: 0;
    cursor: pointer;
}

.details input[type="checkbox"]:checked ~ .details-select, .details input[type="radio"]:checked ~ .details-select {
    background: var(--color-first) !important;
    color: #fff !important;
}

input[type="date"] {
    padding: 0 !important;
    height: 65px;
    padding-left: 20px !important;
}

#dashboard .specializations {
    margin-top: 50px;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    width: 100%;
    opacity: 0;
    height: 100%;
    background: #e4e4e4;
    position: absolute;
}

.project-create .row {
    width: 100%;
}

.project-create .row > div:first-child {
    padding-left: 0;
}

.project-create .row > div:last-child {
    padding-right: 0;
}

.project-create .row p {
    margin-bottom: 20px;
}

.project-create .row {
    width: 100%;
    align-items: flex-end;
}

.flex {
    flex-wrap: wrap;
    display: flex;
}

.talent .tags {
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
}

.status-text {
    position: absolute;
    bottom: 0;
    left: 40%;
    z-index: 9;
    background: #05da00;
    color: #fff;
    padding: 20px;
    border-radius: 15px;
    width: 20%;
    text-align: center;
}

@media only screen and (min-width: 1000px) and (max-width: 1300px) {
    .title {
        font-size: 35px;
    }
    .HowItWorks-graphic-item p {
        font-size: 12px;
    }
    .HowItWorks-graphic-item b {
        font-size: 16px;
    }
    .details {
        font-size: 12px;
    }
    .talent .fill-button {
        font-size: 13px;
    }
    .talent h3 {
        font-size: 26px;
    }
}

@media only screen and (min-width: 1001px) {
    .tablet {
        display: none !important;
    }
    .mobile {
        display: none !important;
    }
    .desktop {
        display: flex !important;
    }
    #home h1 {
        margin-bottom: -30px;
        margin-left: -10px;
        position: relative;
        width: fit-content;
    }
}

@media only screen and (min-width: 751px) and (max-width: 1000px) {
    .desktop {
        display: none !important;
    }
    .mobile {
        display: none !important;
    }
    .tablet {
        display: flex !important;
    }
    .projects-container > div {
        padding: 0;
        width: 100%;
    }
    #home h1:after {
        display: none;
    }
    .container-right {
        padding-right: 15px;
        padding-left: 15px;
    }
    .dashboard-sidebar {
        border-radius: 15px !important;
    }
    .dashboard-sidebar .item {
        margin-left: 0 !important;
        width: 100% !important;
        border-radius: 10px !important;
        text-align: left;
    }
    h1 {
        font-size: 120px;
    }
    #home h1 {
        margin-bottom: 0px;
        z-index: 1;
        position: relative;
    }
    #home h3 {
        max-width: 60%;
    }
    #home {
        padding-top: 80px;
    }
    #home img {
        bottom: -35%;
        right: -40%;
        min-width: 110%;
    }
    #home, #home .container, #home > .container > .row {
        min-height: 55vh;
    }
    #freelancers-home .tablet {
        display: flex !important;
    }
    .freelancer-title {
        font-size: 20px;
    }
    .rating img {
        width: 20px;
    }
    .freelancer-subtitle {
        font-size: 12px;
    }
    .no-comission {
        margin-top: -10%;
        z-index: 1;
    }
    #Home form {
        z-index: 1;
    }
    .no-comission:after {
        width: 90px;
        height: 90px;
        margin-left: -27px;
        margin-top: -64px;
    }
    #HowItWorks .row > .col-md-12:nth-child(2n) {
        background: #f0f4ff;
        padding-top: 60px;
        padding-bottom: 50px;
    }
    #HowItWorks .col-md-12 {
        margin-bottom: 60px;
    }
    .container {
        max-width: 100%;
    }
    .projects-filter {
        padding: 0px 15px;
        margin-bottom: 20px;
    }
    .details {
        flex-wrap: wrap;
    }
    .projects-container {
        z-index: 1;
    }
    .selector-details {
        width: 93vw;
        padding: 20px;
        left: 15px;
    }
    #project-price-details input {
        width: 100%;
    }
    .selector-wrap {
        position: inherit;
    }
    .projects-search {
        position: relative;
    }
}

@media only screen and (max-width: 750px) {
    #resolution-detector {
        display: none;
        z-index: 1;
    }
    .talents .selector-wrap {
        position: relative !important;
    }
    .talents .selector-details {
        left: 0px !important;
    }
    #page-title h1 {
        font-size: 40px;
    }
    #home > .container > .row, #home .container, #home {
        min-height: 0 !important;
    }
    .project .details {
        row-gap: 10px;
    }
    #dashboard form .row > div {
        padding-left: 0;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    #HowItWorks {
        padding-bottom: 0;
    }
    #HowItWorks .row > .col-md-12:last-child {
        margin-bottom: 0 !important;
    }
    #footer {
        border-top: 1px solid #b6b6b6;
    }
    #header {
        position: fixed;
        z-index: 9;
    }
    .desktop {
        display: none !important;
    }
    .tablet {
        display: none !important;
    }
    .mobile {
        display: flex !important;
    }
    h1 {
        font-size: 60px;
    }
    #home {
        padding-top: 90px;
        padding-bottom: 140px;
    }
    #home h1 {
        margin-bottom: 0;
        margin-left: 0;
    }
    #home h1:after {
        display: none;
    }
    #home img {
        display: none;
    }
    #Home input[type=text] {
        width: 80%;
        min-height: 70px;
    }    
    #home .fill-button.blue {
        width: 100%;
        text-align: center;
        margin-top: 5px;
    }
    #Home input[type=text] {
        font-size: 13px;
    }
    #home form > div:last-child h4 {
        width: 100%;
    }
    #Home form {
        z-index: 1;
    }
    .no-comission {
        z-index: 1;
        margin-top: -17%;
    }
    .no-comission:after {
        width: 81px;
        height: 81px;
        margin-left: -27px;
        margin-top: -54px;
    }
    .freelancer-title {
        font-size: 18px;
    }
    .freelancer-subtitle {
        font-size: 13px;
    }
    .freelancer-home {
        margin-bottom: 25px !important;
    }
    .category-outline {
        font-size: 12px;
    }
    .rotating {
        width: 100px;
        height: 100px;
        padding: 35px;
    }
    .HowItWorks-graphic-wrap {
        display: flex;
        flex-wrap: wrap;
    }
    .HowItWorks-graphic-wrap > div {
        margin-bottom: 20px;
    }
    #Testing {
        margin-left: 0;
        margin-top: 0;
    }
    #Checking {
        margin-left: 0;
        margin-top: 0;
    }
    #How {
        margin-top: 0;
        margin-left: 0;
        order: -1;
    }
    .title {
        font-size: 25px;
        line-height: 1.4;
    }
    #HowItWorks .row > .col-md-12:nth-child(2n) {
        background: #f0f4ff;
        padding-top: 60px;
        padding-bottom: 50px;
    }
    #HowItWorks .col-md-12 {
        margin-bottom: 60px;
    }
    #footer .container .row .row div {
        padding-left: 0px;
    }
    .menu-items {
        margin-bottom: 20px;
        margin-top: 20px;
    }
    #copyright .row {
        text-align: center;
    }
    #copyright .right {
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 15px;
    }
    #copyright .right p {
        display: none;
    }
    #copyright .row > div {
        padding-left: 0;
    }
    .projects-container > div {
        padding: 0px 0px;
        margin-top: 20px;
    }
    .projects-filter {
        padding: 0px 15px;
        margin-bottom: 20px;
    }
    .details {
        flex-wrap: wrap;
    }
    .projects-container {
        z-index: 1;
    }
    .selector-details {
        width: 93vw;
        padding: 20px;
        left: 15px;
    }
    #project-price-details input {
        width: 100%;
    }
    .selector-wrap {
        position: inherit;
    }
    .projects-search {
        position: relative;
    }
    .talent .avatar {
        height: 300px;
        margin-bottom: 30px;
    }
    .talent h3 {
        margin-bottom: 15px;
    }
    .talent .fill-button {
        margin-top: 40px;
    }
    .contact a {
        display: none;
    }
    .main-details .item {
        width: 100%;
    }
    .main-details .item:not(:last-child) {
        margin-bottom: 20px;
    }
    .main-details .item .content {
        width: 80%;
    }
    .portfolio .item {
        width: 49%;
        margin-bottom: 10px;
    }
    .container-right {
        padding: 0;
    }
    .dashboard-content {
        padding-left: 15px;
        padding-right: 15px;
    }
    .dashboard-sidebar {
        border-top-right-radius: 0;
    }
    #dashboard form > div {
        width: 100%;
    }
    .filter-wrap {
        flex-wrap: wrap;
    }
    .filter-wrap .right {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 20px;
    }
    .details {
        row-gap: 25px;
    }
    #how-it-works .container .row > div:not(:last-child) {
        margin-bottom: 55px;
    }
    .projects-container > div {
        width: 100%;
    }
}

@media only screen and (max-width: 1480px) {
    #home form > div:not(.home-categories) {
        width: 77%;
    }

    #home img {
        right: -35%;
    }

    #home form > div:last-child {
        width: 100%;
    }

    #home h3 {
        font-size: 20px;
    }

    .no-comission {
        transform: scale(0.8);
        right: 2%;
        bottom: 70%;
    }
}

@media only screen and (max-width: 1280px) {
    #home form > div:not(.home-categories) {
        width: 86%;
    }

    #home img {
        right: -100%;
        min-width: 400%;
    }
}

@media only screen and (max-width: 1200px) {
    #home form > div:not(.home-categories) {
        width: 100%;
    }

    #home input[type=text] {
        width: 59%;
    }

    #home img {
        right: -210%;
        min-width: 450%;
    }
}