/* border-radius: 8px;
box-shadow: 0 8px 12px 1px rgb(29 17 51 / 4%), 
            0 3px 16px 2px rgb(9 32 77 / 12%), 
            0 5px 10px -3px rgb(29 17 51 / 12%); */
@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Varela Round', sans-serif;
    letter-spacing: 0.9px;
}
a{
    color: #dc6e14;
}
.container{
    width: 100%;
    height: 100vh;
    background-color: rgb(220, 20, 60);     /*OG crimson
    /* background-color: rgb(60, 20, 220);     blue version of crimson
    background-color: rgb(20, 220, 60);    green version of crimson
    background-color:rgb(220, 110, 20);    orange version of crimson
    background-color:rgb(220, 220, 20);   yellow version of crimson */
}
html{
    scroll-behavior: smooth;
    /* background-color:#dc6e14;  */
}
body{
    overflow: overlay;
}
::-webkit-scrollbar{
    background-color: transparent;
    width: 0px;
}
::-webkit-scrollbar-track{
    background-clip: content-box;
}
::-webkit-scrollbar-thumb{
    background-color: rgba(211, 211, 211, 0.6);
    border-radius: 50px;
    width: 5px;
}
::-webkit-scrollbar-corner{
    display: none;
}
.max-width{
    max-width: 1440px;
    padding: 0 80px;
    margin: auto;
}
.scroll-up-btn{
    position: fixed;
    background-color: #dc6e14;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 30px;
    cursor: pointer;
    pointer-events: none;
    border-radius: 9px;
    border: 2px solid #dc6e14;
    opacity: 0;
    transition: all 0.5s ease-out;
}
.scroll-up-btn svg{
    color: #fff;
    font-size: 23px;
    transition: all 0.3s ease-out
}
.scroll-up-btn:hover{
    background: none;
}
.scroll-up-btn:hover svg{
    color: #dc6e14;
}
.scroll-up-btn.show{
    opacity: 1;
    pointer-events: auto;
    bottom: 90px;
    transition: all 0.5s ease-out;
}
/* navbar style */
.navbar{
    position: fixed;
    width: 100%;
    padding: 30px 0;
    transition: all 0.3s ease;
    z-index: 999;
}
.navbar.sticky{
    padding: 15px 0;
    background: #dc6e14;
    box-shadow: 0 8px 12px 1px rgba(29, 17, 51, 0.4);
    z-index: 999;
}
.navbar .max-width{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* .navbar .logo a{    
    color: #fff;
    font-size: 35px;
    font-weight: 600;
    letter-spacing: 0px;
}
.navbar .logo a span{
    color: #dc6e14;
} */
.navbar img{
    height: 50px;
}
.navbar.sticky .logo a span{
    color: transparent;
    -webkit-text-stroke-width: 0.02rem;
    -webkit-text-stroke-color: #fff;
}
.navbar .menu li{
    list-style: none;
    display: inline-block;
}
.navbar .menu li a{
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-left: 25px;
    transition: color 0.4s ease;
}
.navbar .menu li a:hover{
    color: #dc6e14;
    transition: all 0.3s ease;
}
.navbar.sticky .menu li a:hover{
    color: #fff;
}
/* menu btn styling */
.menu-btn{
    cursor: pointer;
    display: none;
}
.menu-btn svg{
    color: #fff;
    font-size: 25px;
}



/* main section */
.home{
    display: flex;
    background: url(img/banner_2.jpg) no-repeat center;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    height: 100vh;
    color: #fff;
    min-height: 500px;
}
.home .max-width{
    margin: auto 0 auto 40px;
}
.home .home-content .text-1{
    font-size: 27px;
}
.home .home-content .text-2{
    font-size: 75px;
    font-weight: 600;
    margin-left: -3;
}
.home .home-content .text-3{
    font-size: 40px;
    margin: 5px 0;  
}
.home .home-content .text-3 span{
    color: #dc6e14;
    font-weight: 500
}
.home .home-content a{
    display:inline-flex;
    align-items: center;
    gap: 7px;
    background: #dc6e14;
    color: #fff;
    font-size: 25px;
    padding: 12px 36px;
    margin-top: 20px;
    border-radius: 9px;
    border: 2px solid #dc6e14;
    transition: all 0.3s ease;
}
.home .home-content a:hover{
    color: #dc6e14;
    background: none;
}
.home .home-content a svg{
    color: #fff;
    font-size: 25px;
    transition: all 0.3s ease;
}
.home .home-content a:hover svg{
    opacity: 1;
    display: block;
    color: #dc6e14;
    margin-left: 10px;
}

/* about section */
.about{
    padding: 100px 0;
}
.about .title-bar{
    display: flex;
    flex-direction: row;
    text-align: center;
    justify-content: center;
    align-items: center;
}
.about .title-bar .title{
    text-align: center;
    margin: 0 20px;
}
.about .title-bar .left-bar, .right-bar{
    background: #dc6e14;
    height: 27px;
    width: 4px;
    border-radius: 30px;
}
/* .about .title-bar .right-bar{
    background: #dc6e14;
    height: 27px;
    width: 5px;
    border-radius: 30px;
} */
.about .about-content{
    display: flex;
    /* flex-wrap: wrap; */
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    /* height: 100vh; */
}
.about .about-content .column-left{
    width: 45%;
}
.about .about-content .column-left img{
    width: 400px;
    height: 450px;
    border-radius: 9px;
    object-fit: contain;
}
.about .about-content .column-right{
    width: 55%;
}
.about .about-content .column-right h2{
    /* font-size: 30px; */
    font-size: xx-large;
    margin-bottom: 20px;
}
.about .about-content .column-right p{
    font-size:large;
    text-align: justify;
}
.about .about-content .column-right .tag{
    display:inline-block;
    /* color: #dc6e14; */
    font-size: 15px;
    padding: 6px 10px;
    margin-top: 20px;
    border-radius: 9px;
    border: 1px solid #dc6e14;
    /* border: 1px solid #100E17; */
    transition: all 0.3s ease;
}
.about .about-content a{
    display:inline-flex;
    align-items: center;
    gap: 7px;
    background: #dc6e14;
    /* background: #392e23; */
    color: #fff;
    font-size: 25px;
    padding: 12px 36px;
    margin-top: 20px;
    border-radius: 9px;
    border: 2px solid #dc6e14;
    transition: all 0.3s ease;
}
.about .about-content a:hover{
    color: #db6e14;
    background: none;
}
.about .about-content a svg{
    font-size: 25px;
    color: #fff;
    transition: all 0.3s ease;
}
.about .about-content a:hover svg{
    color: #db6e14;
}

/* services section */
.service{
    color: #fff;
    /* background-color: #111; */
    background-color: #17130e;
    padding: 100px 0;
}
.service .title-bar{
    display: flex;
    flex-direction: row;
    text-align: center;
    justify-content: center;
    align-items: center;
}
.service .title-bar .title{
    text-align: center;
    margin: 0 20px;
}
.service .title-bar .bar{
    background: #dc6e14;
    height: 27px;
    width: 4px;
    border-radius: 30px;
}
.service .service-content{
    display: flex;
    flex-direction: row;
    justify-content:space-between;
}
.service .service-content .card{
    background-color: #222;
    width: calc(33% - 15px);
    margin-top: 100px;
    text-align: center;
    padding: 50px 30px;
    border-radius: 9px;
    transition: all 0.3s ease;
}
.service .service-content .card .text{
    font-size: 25px;
}
.service .service-content .card p{
    margin-top: 5px;
    font-size: 16px;
    /* font-weight: 300; */
}
.service .service-content .card:hover{
    background: #dc6e14;
}
.service .service-content .card .box{
    transition: all 0.3s ease;
}
.service .service-content .card:hover .box{
    transform: scale(1.06);
}
.service .service-content .card .box svg{
    color: #dc6e14;
    font-size: 40px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.service .service-content .card:hover svg{
    color: #fff;
} 

/* skills section */
.skill{
    padding: 100px 0;
}
.skill .title-bar{
    display: flex;
    flex-direction: row;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}
.skill .title-bar .title{
    text-align: center;
    margin: 0 20px;
}
.skill .title-bar .left-bar, .right-bar{
    background: #dc6e14;
    height: 27px;
    width: 4px;
    border-radius: 30px;
}
.skill .skill-content{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
}

.skill .column-left .progress-bar{
    /* width: calc(50% - 35px); */
    /* margin: 0 20px; */
    width: 50%;
    display:grid;
    grid-template-columns: 100% 100%;
    grid-row: auto auto;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}
.skill .column-left .text{
    margin-bottom: 20px;
    font-size: 25px;
    font-weight: 500;
}
.skill .column-left p{
    /* margin-top: 5px; */
    font-size: 16px;
    text-align: justify;
}


.skill .column-left .circle {
    display: grid;
    place-items: center;
    width: 100px;
    height: 100px;
    background: #fff;
    margin: 0 20px;
    border-radius: 50%;
    cursor: default;
}
.skill .column-left .circle .inner-circle {
    display: grid;
    place-items: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #fff;
    font-size: 18px;
}
  
.skill .column-left .circle.communication {
    background: conic-gradient(#dc6e14 0 95%, #d3d3d3 95% 100%);
}
.skill .column-left .circle.team-work {
    background: conic-gradient(#dc6e14 0 95%, #d3d3d3 95% 100%);
}
.skill .column-left .circle.project-managment {
    background: conic-gradient(#dc6e14 0 85%, #d3d3d3 85% 100%);
}
.skill .column-left .circle.creativity {
    background: conic-gradient(#dc6e14 0 96%, #d3d3d3 96% 100%);
}
.skill .column-left .proffesional-skills{
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 5px
}
.skill .column-left .name{
    font-size: 18px;
    text-align: center;
}
.skill .column-right{
    width: 50%;
    /* width: calc(50% + 10px); */
}
.skill .column-right .text{
    margin-bottom: 20px;
    font-size: 25px;
    font-weight: 500;
}
.skill .column-right .progress-bars{
    display: flex;
    flex-direction:column;
    /* justify-content: space-around; */
}
.skill .column-right .progress-bars .progress-bar{
    margin-bottom: 20px;
}
.skill .skill-content .column-right .bar-title{
    display: flex;
    flex-direction: row;
    justify-content:space-between;
    font-size: 18px;
    font-weight: 500;
    margin-top: 2px;
}
.skill .column-right .html-bar{
    height: 5px;
    width: 100%;
    margin: 3px 0;
    border-radius: 100px;
    background: linear-gradient(
        to right,
        #dc6e14 0%,
        #dc6e14 95%,
        #d3d3d3 0%,
        #d3d3d3 100%
    );
}
.skill .column-right .css-bar{
    height: 5px;
    width: 100%;
    margin: 3px 0;
    border-radius: 100px;
    background: linear-gradient(
        to right,
        #dc6e14 0%,
        #dc6e14 90%,
        #d3d3d3 0%,
        #d3d3d3 100%
    );
}
.skill .column-right .js-bar{
    height: 5px;
    width: 100%;
    margin: 3px 0;
    border-radius: 100px;
    background: linear-gradient(
        to right,
        #dc6e14 0%,
        #dc6e14 80%,
        #d3d3d3 0%,
        #d3d3d3 100%
    );
}
.skill .column-right .react-bar{
    height: 5px;
    width: 100%;
    margin: 3px 0;
    border-radius: 100px;
    background: linear-gradient(
        to right,
        #dc6e14 0%,
        #dc6e14 70%,
        #d3d3d3 0%,
        #d3d3d3 100%
    );
}
.skill .column-right .illustrator-bar{
    height: 5px;
    width: 100%;
    margin: 3px 0;
    border-radius: 100px;
    background: linear-gradient(
        to right,
        #dc6e14 0%,
        #dc6e14 80%,
        #d3d3d3 0%,
        #d3d3d3 100%
    );
}

/* contact section */
.contact{
    color: #fff;
    /*  background-color: #111; */
    background-color: #17130e;
    padding: 100px 0;
}
.contact .title-bar{
    display: flex;
    flex-direction: row;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-bottom: 100px;
}
.contact .title-bar .title{
    text-align: center;
    margin: 0 20px;
}
.contact .title-bar .left-bar, .right-bar{
    background: #dc6e14;
    height: 27px;
    width: 4px;
    border-radius: 30px;
}
.contact .contact-content{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items:center;
}
.contact .contact-content .column-right input, .contact .contact-content .column-right .textarea textarea{
    height: 100%;
    width: 100%;
    resize: none;       /*for textarea*/
    border: 1.5px solid #dc6e14;
    background-color:rgba(255, 255, 255, 0);
    /* background-color:rgba(255, 255, 255, 0.295); */
    color: #fff;
    /* color: #fff; */
    border-radius: 9px;
    outline: none;
    padding: 15px;
    font-size: 17px;
    font-family: 'Varela Round', sans-serif;
    transition: all 0.3s ease;
}
.contact .contact-content .column-right{
    width: calc(60% - 30px);
}
.contact .contact-content .column-right .nm_email{
    display: flex;
    flex-direction:row;
}
.contact .contact-content .column-right .btn{
    display: inline-block;
    background: #dc6e14;
    color: #fff;
    font-size: 25px;
    padding: 12px 36px;
    margin-top: 20px;
    border-radius: 9px;
    border: 2px solid #dc6e14;
    transition: all 0.3s ease;
}
.contact .contact-content .column-right .nm_email .name, .email{
    width: 100%;
}
.contact .contact-content .column-right .nm_email .name, .email, .subject, .textarea{
    margin-bottom: 10px;
}
.contact .contact-content .column-right .nm_email .name{
    margin-right: 10px;
}
.contact .contact-content .column-right input, ::placeholder{
    color: #fff;
}
.contact .contact-content .column-right input[type="submit" i]{
    background-color:#dc6e14;
    transition: all 0.3s ease;
}
.contact .contact-content .column-right input[type="submit" i]:hover{
    transform: scale(0.987);
    cursor:pointer;
}
.contact .contact-content .column-right input:hover{
    transform: scale(1.021);
}
.contact .contact-content .column-right .textarea{
    transition: all 0.3s ease;
}
.contact .contact-content .column-right .textarea:hover{
    transform: scale(1.021);
}
/* .contact .contact-content .column-right input[name="message"i]:hover{
    transform: scale(1.02);
} */

.contact .contact-content .column-left{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.contact .contact-content .column-left .row{
    display: flex;
    flex-direction:row;
    margin: 10px 0;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}
.contact .contact-content .column-left .row i, svg{
    color: #dc6e14;
    /* margin-right: 10px; */
    font-size: 35px;
    font-weight: normal;
    transition: all 0.3s ease;
}
/* .contact .contact-content .column-left .row:hover svg{
    transform: scale(1.12);
}
.contact .contact-content .column-left .row:hover i{
    transform: scale(1.12);
} */
.contact .contact-content .column-left .row .info .head{
    font-size: 25px;
    font-weight: 600;
    color: #fff;
}
.contact .contact-content .column-left .row .info .sub-head{
    font-size: 13px;
    line-height: 1.7;
    color: #dc6e14;
}
.footer{
    color: #fff;
    /*  background-color: #111; */
    background-color: #17130e;
    padding: 50px 0;
    font-size: 18px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;

}
.footer .footer-content .name{
    color: #dc6e14;
}
/* .contact .contact-content .column-right .nm_email .name input[type="text" i]{
    width: 285px;
    padding: 10px 11px;
    border-style:solid;
    margin-right: 10px;
}
.contact .contact-content .column-right .nm_email .email input[type="email" i]{
    width: 285px;
    padding: 10px 11px;
}
.contact .contact-content .column-right .subject input[type="text" i]{
    width: 100%;
    padding: 10px 11px;
} */

/* input[type="text" i] {
    padding: 1px 2px;
}





/* PORTFOLIO */
.portfolio{
    color: #fff;
    /* background-color: #111; */
    background-color: #17130e;
    padding: 180px 0;
}
.portfolio .title-bar{
    display: flex;
    flex-direction: row;
    text-align: center;
    justify-content: center;
    align-items: center;
}
.portfolio .title-bar .title{
    text-align: center;
    margin: 0 20px;
}
.portfolio .title-bar .bar{
    background: #dc6e14;
    height: 27px;
    width: 4px;
    border-radius: 30px;
}
.portfolio .portfolio-content{
    display: flex;
    flex-direction: row;
    justify-content:space-between;
}
.portfolio .portfolio-content .card{
    background-color: #222;
    width: calc(33% - 15px);
    margin-top: 100px;
    text-align: center;
    padding: 50px 30px;
    border-radius: 9px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
/* .portfolio .portfolio-content .card:hover{
    background: #dc6e14;
} */
.portfolio .portfolio-content .card .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin-left: -200px;
    background-color: #db6e14;
    transform: skew(-40deg);
    transition: all 0.4s ease;
    z-index: 900;
}
.portfolio .portfolio-content .card:hover .overlay{
    margin-left: -460px;
}
.portfolio .portfolio-content .card:hover .box{
    /* scale: 1.06; */
    scale: 1;
    /* transform: scale(1); */
}
.portfolio .portfolio-content .card .box{
    transition: all 0.3s ease;
    overflow: hidden;
    border-radius: 9px;
    scale: 1.06;
}
/* .portfolio .portfolio-content .card:hover .box{
    transform: scale(1.06);
} */
.portfolio .portfolio-content .card .box svg{
    color: #dc6e14;
    font-size: 40px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.portfolio .portfolio-content .card .box .text{
    font-size: 25px;
}
/* .portfolio .service-content .card:hover svg{
    color: #fff;
}  */
.portfolio .portfolio-content .card .box p{
    margin-top: 5px;
    font-size: 16px;
    /* font-weight: 300; */
}

/* responsive media query */
@media(max-width: 1107px){
    .about .about-content .column-right h2 {
        margin-bottom: 15px;
    }
}
@media(max-width: 1104px){
    .home .max-width{
        margin-left: 0px;
    }
    .about .about-content .column-left img{
        width: 300px;
        height: 350px;
    }
    .about .title-bar {
        margin-bottom: 25px;
    }
}
@media(max-width: 1062px){
    .about .about-content .column-left img {
        width: 280px;
        height: 330px;
    }
    .about .about-content a {
        font-size: 23px;
        padding: 10px 34px;
    }
}
@media(max-width: 1029px){
    .about .about-content .column-right h2 {
        margin-bottom: 15px;
    }
}
@media(max-width: 991px){
    .max-width{
        padding: 0 50px;
    }
}

@media(max-width: 947px){
    body.freeze{
        /* position: fixed; */
        overflow: hidden;
    }
    .max-width{
        padding: 0 50px;
    }
    .menu-btn{
        display: block;
        z-index: 999;
    }
    /* .menu-btn i{
        display: block;
    } */
    .menu-btn i.active::before{
        content: "\f00d";
    }
    .navbar .menu{
        position: fixed;
        height: 100vh;
        width: 100%;
        right: -100%;
        top: 0;
        background: #111;
        text-align: center;
        padding-top: 80px;
        transition: all 0.3s ease-in;
    }
    .navbar .menu.active{
        right: 0;
    }
    .navbar .menu li{
        display: block;
    }
    .navbar .menu li a{
        display: inline-block;
        margin: 20px 0;
        font-size: 25px;
    }
    .navbar .menu.active li a:hover{
        color: #dc6e14;
    }
    .home .home-content .text-2{
        font-size: 70px;
    }
    .home .home-content .text-3{
        font-size: 35px; 
    }
    .home .home-content a{
        font-size: 23px;
        padding: 10px 30px;
    }
    .about .about-content a {
        font-size: 23px;
        padding: 10px 30px;
    }
}
@media(max-width: 776px){
    .about .about-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }
    .about .about-content a {
        font-size: 20px;
        padding: 9px 25px;
        margin-top: 16px;
    }
    .about .about-content .column-left {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }
    .about .about-content .column-left img {
        width: 280px;
        height: 330px;
        object-fit:scale-down;
    }
    .about .about-content .column-right {
        width: 100%;
    }
    .about .about-content .column-right h2 {
        font-size:x-large;
        margin-bottom: 2px;
    }
    .about .about-content .column-right p {
        font-size: 16px;
        line-height: 1.5;
    }
    .service .service-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .service .service-content .card {
        background-color: #222;
        width: auto;
        margin-top: 50px;
        text-align: center;
        padding: 50px 30px;
        border-radius: 9px;
    }
    .service .service-content .card .text {
        font-size: 25px;
        margin-bottom: 10px;
    }
    .service .service-content .card p {
        margin-top: 4px;
    }
    .skill .skill-content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .skill .column-left {
        width: calc(100%);
        margin: 0px 0px 30px 0px;
    }
    .skill .column-left p {
        margin-top: 5px;
        font-size: 16px;
        line-height: 1.5;
    }
    .skill .column-right {
        /* width: 50%; */
        width: calc(100%);
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
    }
    .contact .contact-content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }
    .contact .contact-content .column-left {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        margin-top: -50px;
        margin-bottom: 50px;
    }
    .contact .contact-content .column-right {
        width: calc(100%);
    }
    .contact .contact-content .column-right .nm_email {
        display: flex;
        flex-direction: column;
    }

}
@media(max-width: 690px){
    .max-width{
        padding: 0 23px;
    }
    .home .home-content .text-2{
        font-size: 60px;
    }
    .home .home-content .text-3{
        font-size: 32px; 
    }
    .home .home-content a{
        font-size: 20px;
        padding: 9px 25px;
    }
}
    
@media(max-width: 500px){       
    .home .home-content .text-2{
        font-size: 50px;
    }
    .home .home-content .text-3{
        font-size: 27px; 
    }
    /* .about .about-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }
    .about .about-content .column-left {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }
    .about .about-content .column-left img {
        width: 280px;
        height: 330px;
    }
    .about .about-content .column-right {
        width: 100%;
    } */
}
@media(max-width: 300px){       
    .home .home-content .text-2{
        font-size: 40px;
    }
    .home .home-content .text-3{
        font-size: 27px; 
    }
    .service .service-content .card .text {
        font-size: 27px;
    }
    h2{
        font-size: 27px;
    }
    p{
        font-size: 18px;
    }
}
