@import url('https://fonts.googleapis.com/css2?family=Caveat&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kanit&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Livvic&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');

@font-face {
    font-family: 'Canva Regular';
    src: url('../font/canva/Canva Sans/CanvaSans-Regular.otf') format('opentype');
}

@font-face {
    font-family: 'Canva Medium';
    src: url('../font/canva/Canva Sans/CanvaSans-Medium.otf') format('opentype');
}

@font-face {
    font-family: 'Canva Bold';
    src: url('../font/canva/Canva Sans/CanvaSans-Bold.otf') format('opentype');
}

:root {
    --main-orange: #fe6c4c;
    --third-orange: #faede8;
    --second-orange: #ffe1d5;

    --light-blue: #e4f4ff;
    --main-blue: #19202b;
    --dark-blue: #19202b;

    --main-grey: #969999;
    --second-grey: #d3d8d8;
    --third-grey: #eff0f2;

    --light: #f6f6f9;
    --primary: #1976D2;
    --main: #f3d3c0;
    --light-primary: #CFE8FF;

    --danger: #D32F2F;
    --light-danger: #FECDD3;
    --warning: #FBC02D;
    --light-warning: #FFF2C6;
    --success: #388E3C;
    --light-success: #BBF7D0;
    --primary-clr: #b38add;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;

    scrollbar-width: thin;
    scrollbar-color: rgb(198, 196, 196) var(--light);
}

::-webkit-scrollbar-thumb {
    border-radius: 6px;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

body {
    overflow-x: hidden;
}

.rotate {
    transform: rotate(45deg);
}

.reverse_rotate {
    transform: rotate(-180deg);
}

.blured {
    background-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px 0 rgba(225, 225, 225, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(225, 225, 225, 0.18);
}

.show {
    display: block;
}


/* ================= NAVBAR ================== */
.navbar {
    /* background-color: red; */
    width: 100%;
    padding: 1.7% 3%;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.navbar a {
    color: var(--dark-blue);
    transition: all .3s ease-in-out;
    font-weight: 500;
}

.navbar a:hover {
    color: var(--main-orange);
}

.navbar img {
    height: 55px;
    width: 55px;
    cursor: pointer;
}

.navbar .path {
    width: 35%;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    font-size: 16px;
}

.navbar .options {
    width: 15%;
    display: flex;
    align-items: center;
    gap: 20%;

}

.options .flag {
    height: 35px;
    width: 35px;
    border-radius: 50%;
    border: 1px solid var(--dark-blue);
    background-size: cover;
}

.navbar button {
    font-size: 18px;
    padding: 5% 10%;
    border-radius: 44px;
    outline: none;
    border: none;
    cursor: pointer;
    background-color: var(--main-orange);
    color: var(--dark-blue);
    transition: all .3s ease-in-out;
    font-weight: 500;
}

.navbar button:hover {
    background-color: #ff9279;
}


/* ============= Header ============ */

.header {
    display: flex;
    gap: 5%;
    width: 100%;
    margin-bottom: 5%;
    padding: 70px 30px;

}

.header .left {
    width: 50%;
    padding: 1% 3%;

}

.header .left h3 {
    font-size: 76px;
    font-weight: 500;
    margin-bottom: 5%;
    line-height: 1.2;
    /* font-weight: 600; */
    color: var(--main-blue);
    font-family: 'Canva Bold';
}

.header .left .description {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 8%;
    line-height: 1.5;
    color: var(--main-grey);
}

.header .left .actions {
    display: flex;
    gap: 10px;
}

.header .left .actions a {
    padding: 16px 24px;
    font-size: 18px;
    color: var(--main-blue);
    cursor: pointer;
    transition: all .3s ease-in-out;
    border-radius: 68px;
}

.header .left .actions a:first-child {
    background-color: var(--main-orange);
    font-weight: 400;
}

.header .left .actions a:first-child:hover {
    background-color: #ff957d;
}

.header .left .actions a:last-child {
    border: 1px solid var(--second-grey);
    font-weight: 700;
}

.header .right {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: var(--third-orange);
    padding: 30px;
    border-radius: 14px;
}

.header .right .up {
    display: flex;
    gap: 20px;
    width: 100%;
    height: 65%;
}

.header .right .up .card {
    background-color: white;
    height: 100%;
    width: 50%;
    border-radius: 16px;
    border: 1px solid var(--second-grey);
    cursor: pointer;
}


.up .card .up_bloc {
    border-bottom: 1px solid var(--second-grey);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    padding: 10px 20px;
    margin-bottom: 12px;
}

.up .card:last-child .up_bloc {
    border: 1px solid var(--second-grey);
    border-radius: 16px;
    background-color: var(--main-blue);
}

.up .card .up_bloc .row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.up .card .up_bloc .availability {
    margin-bottom: 25px;
}

.up .card:last-child .up_bloc .availability,
.up .card:last-child .up_bloc .row.third p {
    color: white;
}


.up_bloc .row.first p {
    font-family: "Canva Regular";
    font-size: 20px;
    font-weight: bold;
    color: var(--main-blue);
}

.card:last-child .up_bloc .row.first p {
    color: white;
}

.up_bloc .row.first i {
    color: var(--main-grey);
    border-radius: 50%;
    border: 2px solid var(--second-grey);
    padding: 7px;

}

.card:last-child .up_bloc .row.first i {
    color: var(--main-blue);
    border-radius: 50%;
    background-color: white;
    padding: 7px;

}

.up_bloc .row.second span {
    padding: 2px 15px;
    background-color: var(--third-grey);
    border-radius: 5px;
    color: var(--main-blue);
}

.card:last-child .up_bloc .row.second span {
    padding: 2px 15px;
    background-color: var(--third-grey);
    border-radius: 5px;
    color: var(--main-blue);
}

.up_bloc .row.third .applicants {
    display: flex;
    align-items: center;
    color: var(--main-orange);
}

.down_bloc {
    padding: 0px 20px;
    padding-bottom:5px ;
    display: flex;
    justify-content: space-between;
    align-items: center;
 
}

.down_bloc p {
    color: var(--main-grey);
}

.down_bloc button {
    cursor: pointer;
    outline: none;
    background-color: #fff;
    border: 1px solid var(--main-blue);
    border-radius: 6px;
    color: var(--main-blue);
    padding: 5px 10px;

}

.header .right .bottom {
    /* position: relative; */
    width: 100%;
    height: 40%;
    background-color: white;
    border-radius: 16px;
    border: 1px solid var(--second-grey);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    
}

.header .right .bottom img{
    /* position: absolute;
    background-color: yellow; */
    /* top: -130px; */
    height: 190px;
    width: 100%;
}
.header .right .bottom .left {
    width: 15%;
}

.header .right .bottom .middle {
    width: 65%;
    align-content: end;
    padding: 10px 0;
}

.header .right .bottom .end {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    gap: 5px;
    padding: 10px 20px;
    width: 20%;

}

.bottom .end i{
    font-size: 12px;
    padding: 5px;
    border-radius: 3px;
    background-color: yellow;
}

.bottom .end i:first-child{
    background-color: var(--light-success);
}

.bottom .end i:last-child{
    background-color: var(--light-danger);
}


/* ================== STAT =============== */
.stats_section {
    width: 100%;
    margin-bottom: 5%;
    padding: 70px 40px;
}

.stats_bloc {
    padding: 100px 180px;
    /* background-color: var(--light-primary); */
    background-color: var(--dark-blue);
    background-color: #111f38;
    border-radius: 16px;

}

.stats {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.bloc {
    display: flex;
    flex-direction: column;
}

.bloc h2 {
    font-size: 64px;
    font-weight: 600;
    color: var(--main-orange);
    margin-bottom: 10px;
}

.bloc p {
    font-size: 18px;
    color: var(--second-grey);
}


/* =============== SERVICE ============== */
.service {
    padding: 0 40px;
    margin-bottom: 5%;
    display: flex;
    justify-content: space-between;
    gap: 64px;
    width: 100%;
}

.service .left {
    width: 37%;
}

.service .left h2 {
    font-family: "Canva Medium";
    font-size: 48px;
    margin-bottom: 20px;
    /* line-height: 1.2px; */
    color: var(--main-blue);
}

.service .left p {
    font-size: 16px;
    line-height: 2;
    color: var(--main-grey);
}

.service .right {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service .right .step {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 30px;
    border: 1px solid var(--dark-blue);
    border-radius: 60px;
}

.service .right .step i {
    font-size: 24px;
}


.service .right .step p {
    font-size: 20px;
    font-weight: 300;
}


/* ============ FURTHER DETAILS ==========*/
.further_details_section {
    padding: 0px 30px;
    margin-bottom: 9%;

}

.further_details_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3.5%;
}

.further_details_title h2 {
    font-family: 'Canva Medium';
    font-size: 48px;
    color: var(--main-blue);
    width: 50%;

}

.further_details_title p {
    font-size: 16px;
    color: var(--main-grey);
    line-height: 1.5;
    width: 30%;
    align-self: end;
}

.further_details_company {
    width: 100%;
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    /* padding-left: 40px; */
}

.further_details_company .further_bloc:first-child {
    padding: 50px 0px 50px 50px;
    border-radius: 20px;
    /* background-color: #141C3C; */
    background-color: #111f38;
    width: 70%;
}

.further_details_company .further_bloc:first-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.further_details_company .further_bloc:first-child .left {
    width: 50%;
}

.further_details_company .further_bloc:first-child h2 {
    font-size: 32px;
    font-family: "Canva Medium";
    text-align: left;
    color: white;
    margin-bottom: 30px;

}

.further_details_company .further_bloc:first-child p {
    font-size: 16px;
    line-height: 2;
    color: white;
    margin-bottom: 30px;
}

.further_details_company .further_bloc:first-child button {
    padding: 12px 20px;
    font-size: 18px;
    border-radius: 55px;
    cursor: pointer;
    outline: none;
    border: none;
    background-color: var(--main-orange);
    color: var(--dark-blue);
    transition: all .3s ease-in-out;
}

.further_details_company .further_bloc:first-child button:hover {
    background-color: #ff9279;
}

.further_details_company .further_bloc:last-child {
    padding: 40px;
    border-radius: 20px;
    background-color: var(--light-blue);
    background-color: #cff4ff;
    width: 30%;
}

.further_details_company .further_bloc:last-child h2 {
    font-size: 32px;
    font-family: "Canva Regular";
    color: var(--main-blue);
    margin-bottom: 30px;
}

.further_details_company .further_bloc:last-child p {
    font-size: 16px;
    line-height: 2;
    color: var(--main-grey);
}

.further_details_company .further_bloc .right {
    width: 50%;
}

.further_details_company .further_bloc img {
    height: 390px;
    width: 100%;
}

.further_details_freelancer {
    width: 100%;
    display: flex;
    gap: 30px;
}

.further_details_freelancer .further_bloc:first-child {
    display: flex;
    justify-content: flex-end;
    align-items: end;
    padding: 10px 20px;
    border-radius: 20px;
    background-color: var(--second-orange);
    /* background-color: #141C3C; */
    width: 50%;
    background-image: url("../images/back/map3.png");
    background-size: cover;
    background-position: center;
    height: 470px;
}

.further_details_freelancer .further_bloc p {
    z-index: 2;
    font-family: 'Canva Medium';
    font-size: 25px;
    text-align: center;

}

.further_details_freelancer .further_bloc:first-child p {
    color: #964f4f;
}

.further_details_freelancer .further_bloc:last-child p {
    color: white;
}

.further_details_freelancer .further_bloc:last-child {
    display: flex;
    justify-content: flex-end;
    align-items: end;
    position: relative;
    padding: 50px;
    border-radius: 20px;
    /* background-color: #ed7aaf;
    background-color: #65535B; */
    width: 50%;
    background-image: url("../images/illustration/money.png");
    background-size: cover;
    background-position: center;

}


/* =========== Wallet ============ */

.wallet_section {
    padding: 120px 70px;
    background-color: var(--main-orange);
    margin-bottom: 7%;
}

.wallet {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 64px;
}

.wallet .left {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 50%;
}

.wallet .left h2 {
    font-size: 48px;
    font-family: "Canva Medium";
    color: white;
    line-height: 1.5;
}

.wallet .left P {
    font-size: 18PX;
    color: white;
    line-height: 1.5;
}

.wallet .wallet_operations {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wallet_operations .operation {
    display: flex;
    gap: 30px;
    padding: 20px;
    border-bottom: 1px solid var(--second-grey);
    width: 100%;
}

.wallet_operations .operation .number {
    font-size: 20px;
    color: var(--second-grey);
}

.wallet_operations .operation .label {
    font-size: 20px;
    color: white;
}

.wallet .right {
    padding: 0 20px;
    width: 50%;
}

.wallet .right img {
    width: 100%;
    height: 100%;
}


/* ================= FEEDBACK ================== */
.feedback_section {
    padding: 0px 70px;
    margin-bottom: 8%;
}

.feedback_section .title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6%;
}

.feedback_section .title h2 {
    font-size: 48px;
    font-family: "Canva Medium";
    text-align: left;
    width: 40%;
}


.feedback_section .rating {
    display: flex;
    align-items: center;
    align-self: last baseline;
    gap: 18px;
}

.feedback_section .rating .rating_number {
    font-size: 64px;
    font-family: "Canva Medium";
}

.rating_texts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rating_texts .stars {
    display: flex;
    color: var(--warning);
    font-size: 18px;
    gap: 4px;
}

.rating_texts p {
    font-size: 16px;
    color: var(--main-grey);
}

.feedbacks {
    display: flex;
    gap: 24px;
}

.feedback {
    padding: 30px;
    background-color: var(--light-blue);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feedback i{
    font-size: 40px;
    color: var(--main-blue);
}

.feedback p {
    font-size: 24px;
    line-height: 1.5;
    font-weight: bold;
    color: var(--main-blue);
}

.feedback .name {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feedback .name .hyphen {
    background-color: var(--main-grey);
    width: 32px;
    height: 2px;
}

.feedback .name p {
    color: var(--main-grey);
    font-size: 18px;
}

/* =============== CATEGORIES ============ */
.categories_section{
    width: 100%;
    padding: 0px 70px;
    margin-bottom: 12%;
}

.categories_section .title{
    font-size: 48px;
    font-family: "Canva Medium";
    text-align: center;
    margin-bottom: 7%;
}

.categories{
    display: flex;
    justify-content:center;
    gap: 24px;
    align-items: center;
}

.category{
    border-radius: 16px;
    height: 400px;
    width: 30%;
    
}

.category .blur{
    padding: 40px 40px;
    height: 100%;
    width: 100%;
    backdrop-filter: blur(1px);
    background: rgba(250, 241, 241, 0.162);
    border-radius: 16px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 70px;
}

.category.one{
    background-color: #b3caff;
    background-image: url("../images/illustration/Graphic design.png");
    background-size: cover;
}

.category.two{
    background-color: #ffd5cf;
    background-image: url("../images/illustration/digital marketing.png");
    background-size: cover;
}

.category.three{
    background-color: #fff4d4;
    background-image: url("../images/illustration/programtion and tech.png");
    background-size: cover;
}

.category p {
    cursor: pointer;
    padding: 10px 5px;
    font-size: 19px;
    background-color: #fff;
    border: 1px solid var(--main-blue);
    color: var(--main-blue);
    text-align: center;
    border-radius: 60px;
    transition: all .2s ease-in-out;
}

.category p:hover{
    background-color: var(--main-blue);
    border: 1px solid white;
    color: white;
}


/* ========== APP & SUSCRIBE ======= */
.App {
    position: relative;
    margin-bottom: 8%;
    padding: 20px 40px;
    display: flex;
    justify-content: center;
}
.App .images{
    position: absolute;
    z-index: 3;
    top: -25%;
    right: 13%;
    display: flex;
    align-items: center;
    width: fit-content;

}

.App img{
    height: 450px;
    width: 250px;
}

.App .back{
    position: absolute;
    top: -21%;
    right: 5%;
    height: 530px;
    width: 730px;
    opacity: .8;
}
.App .container {
    padding: 3% 2%;
    background-color: var(--main-orange);
    /* background-image: url(../images/back/mockup_back.png);
    background-size: cover; */
    border-radius: 10px;
    width: 80%;
    display: flex;
    

}

.App .container .left {
    width: 50%;
    padding: 1% 0;
    display: flex;
    flex-direction: column;
    gap: 10%;

}

.App .container .left h2 {
    font-family: 'Canva Medium';
    font-size: 48px;
    color: white;
    margin-bottom: 8%;
}

.App .container .left .buttons {
    display: flex;
    gap: 18px;
}


.App .container .left .buttons button {
    padding: 15px 40px;
    display: flex;
    gap: 15px;
    align-items: center;
    border: none;
    border-radius: 5px;
    width: fit-content;
    background-color: white;
    cursor: pointer;
}

.App .container .left .buttons button:hover {
    border: 1px solid var(--main-blue);
    background-color: white;
    cursor: pointer;
}



.App .container .left .buttons button i {
    font-size: 25px;
    color: var(--main-blue);
}

.App .container .left .buttons button span {
    font-size: 16px;
    font-weight: bold;
    color: var(--main-blue);
}

/* ============================== FOOTER ================= */
.footer {
    width: 100%;

    padding-bottom: 0;
    background-color: var(--main-blue);
    /* border-top: 1px solid var(--main-grey); */
}

.footer img {
    height: 50px;
    width: 50px;
}

.footer .content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3%;
    padding: 4% 3%;
}

.footer .content .col:first-child {
    width: 35%;
}

.footer .content .col {
    width: 20%;
}

.footer .content .col .head {
    display: flex;
    align-items: center;
    gap: 2%;
    margin-bottom: 3%;
}

.footer .content .col .head span {
    font-family: 'Canva Bold';
    font-size: 30px;
    /* font-weight: bold; */
    color: white;
    color: var(--main-orange);
}

.footer .content .col .title {
    /* color: var(--main-blue); */
    color: var(--main-orange);
    /* font-weight: bold; */
    font-size: 1.3em;
    margin-bottom: 8%;
}

.footer .content .col ul li {
    margin-bottom: 3%;
    font-size: 18px;
}

.footer .content .col ul a {
    color: white;
    /* color: var(--main-grey); */
    margin-bottom: 3%;
    transition: all .3s ease-in-out;
}

.footer .content .col ul a:hover {
    color: var(--main-orange);
}

.footer .content .col p {
    color: white;
    /* color: var(--main-grey); */
    font-weight:lighter;
    margin-bottom: 5%;
    display: flex;
    align-items: center;
    gap: 3%;
    font-size: 18px
}

.footer .content .col:nth-child(4) p:nth-child(3) {
    margin-bottom: 8%;
}

.footer .content .col p i {
    font-size: 1.5em;
}

.footer .content .col .socials {
    display: flex;
    gap: 5%;
    align-items: center;
    margin-top: 8%;
}

.footer .content .col .socials i {
    color: white;
    font-size: 1.5em;
}

.input_field {
    background-color: white;
    border-radius: 5px;
    display: flex;
}

.input_field input {
    outline: none;
    border: none;
    width: 90%;
    font-size: 16px;
    background-color: white;
    /* background-color: var(--third-grey); */
    padding: 1% 2%;
}

.input_field button {
    padding: 3% 2%;
    border: none;
   
    background-color: var(--main-orange);
    font-size: 1.1em;
    color: white;
    cursor: pointer;
}

.footer .credits {
    border-top: .5px solid white;
    padding: 1% 2%;
}

.footer .credits p {
    text-align: center;
    color: white;
    /* color: var(--main-grey); */
    font-family: 'caveat';
    font-size: 18px;
}