@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

body{
    margin:0;
    font-family: 'Montserrat', sans-serif;
    font-size:15px;
    font-weight: 400;
    color:#000;
    background: #fff;
}

a{
    text-decoration: none;
}

.font-xxl{
    font-size: 8rem;
}

.text-site{
    color:#23ae00;
}

header{
    background: #e7ffe8;
    padding: 2rem 2rem 2rem 7rem;
    text-align: center;
    position: fixed;
    width: 500px;
    height: 100%;
}

.cancel-btn, .menu-toggle{
    display: none;
}

.my-image{
    border-radius: 100%;
    width:250px;
    height:250px;
    margin:30px auto;
    border:10px solid #fff;
    box-shadow: 0 2px 5px rgb(0 0 0 / 0.3);
    overflow: hidden;
}

.social{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin:2rem auto;
}
.social a{
    color: #fff;
    text-decoration: none;
}
.social a > img{
    width:35px;
}

header h2{
    font-weight: 800;
}

.download-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #000;
    background: #fff;
    color:#000;
    padding:1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 800;
    gap: 0.31rem;
    transition: all 0.5s;
}
.download-btn:hover{
    background: #000;
    color: #fff;
}

.mainMenu{
    margin:0;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 80px;
    height: 100%;
    background: #fff;
}
.mainMenu li a{ 
    display: block;
    color:#000;
    font-size: 0.7rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
}
.mainMenu li a span{
    display: block; 
}
.mainMenu li a:hover{
    background: #000;
    color:#fff;
} 

.name{
    font-weight:800;
    font-size:3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}
.name span{ 
    font-size: 3rem;
}
.tagline{
    font-weight: 300;
    font-size: 1.3rem;
}

.text-justify{
    text-align: justify;
}

.heading{
    font-weight:900;
    font-size:2rem;
    margin-bottom: 2rem;
}

.wrapper{
    padding: 2rem;
    height:100%;
    position: relative;
}
.menu-toggle + .wrapper{
    margin-left:500px;
}

.skills{
    position: relative;
}
.skills::before{
    content: attr(data-name);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #e1dedc;
    font-weight: 900;
    font-size: 12rem;
    text-align: center;
    text-shadow: 0px 0px 0px rgb(0 0 0 / 0.3);
    text-transform: uppercase;
    opacity: .5;
}
.skill-btn{
    position: relative;
    z-index: 10;
    display: inline-block;
    border: 1px solid #000;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    color: #000;
    margin: 0.4rem;
}

.what_i_do span{
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #04a9f4;
    border: 2px solid #04a9f4;
    padding: 0.7rem;
    border-radius: 1rem;
}

.what_i_do h4{
    font-weight: 500;
    font-size: 1.1rem;
}

.timeline-item{
    display: table;
    position: relative;
    width: 100%;
}
.item-left{
    width: 25%;
    display: table-cell;
    padding-right:2rem;
    text-align: right;
}
.item-divider{
    position: absolute;
    top:0;
    left: 25%;
    width: 1px;
    height: 100%;
    background: #eee;
}
.item-divider::before{
    content: '';
    display: block;
    position: absolute;
    margin-top: 4px;
    width: 17px;
    height: 17px;
    position: absolute;
    margin-left: -8px;
    border-radius: 10px;
    background-color: #04b4e0;
    opacity: .25;
    z-index: 0;
}
.item-divider::after{
    content: '';
    display: block;
    position: absolute;
    margin-top: 8px;
    width: 9px;
    height: 9px;
    margin-left: -4px;
    background-color: #fff;
    border-radius: 5px;
    border: 2px solid #04b4e0;
    z-index: 1;
}
.item-right{   
    width: 75%;
    display: table-cell;
    padding-left:2rem;
    padding-bottom: 2rem;
}
.timeline-item h5{
    font-weight: 300;
    font-size: 0.9rem;
    color:#aaa;
    margin: 0.51rem 0;
}
.timeline-item h4{
    font-weight: 700;
    font-size: 1.5rem;
    color: #02a100;
}
.timeline-item h6{
    font-weight: 300;
    font-size: 1rem;
    color: #000;
    margin-bottom: 1rem;
}

.contact .icon-lg{
    font-size: 3rem;
}
.contact a{
    color: #000;
}
.contact iframe{
    width:100%;
    margin: 0 0 20px;
}
.contact .form-control{
    padding:0.6rem 1rem;
    box-shadow:0 2px 5px rgb(0 0 0 / 0.1)
}
.contact .form-control::placeholder{
    font-size: 0.9rem;
}

.web-link{
    box-shadow: 10px 10px 2px rgb(0 0 0 / 0.2);
    display: block;
    border: 1px solid #000;
    padding: 1rem;
    height: 100%;
    position: relative;
    color: #000;
}

iframe{
    width:100%;
}

@media (max-width:1024px){
    .cancel-btn, .menu-toggle{
        display: block;
    }
    .menu-toggle{
        position: fixed;
        right: 0;
        z-index: 2;
    }
    header {
        padding:0.5rem 1.2rem;
        z-index: 3;
        top:0;
        right: -500px;
        box-shadow: 0 -10px 150px rgb(0 0 0 / 0.2);
        transition: all 0.5s;
        overflow-y: scroll;
    }
    .show-menu{
        right: 0;
    }
    header .my-image {
        width: 150px;
        height: 150px;
        border: 5px solid #fff;
    }
    .menu-toggle + .wrapper {
        margin-left: 0;
    }
    .wrapper{
        z-index: 1;
        height: auto;
    }
    .mainMenu {
        position: relative;
        width: 100%;
        height: auto;
        background: none;
        margin:20px 0;
    }
    .mainMenu li a {
        display: flex;
        align-items:center;
        color: #23ae00;
        font-size: 1rem;
        padding: 0.9rem;
        font-weight: 600;
        border-bottom: 1px solid #eee;
    }
    .mainMenu li a span {
        display: inline-block;
        margin-right:8px;
    }
    .skills::before{
        font-size: 10rem;
    }
    .what_i_do h4{
        text-align: left;
    }
}

@media (max-width:480px){
    header{
        width:100%;
    }
    .wrapper .my-image {
        width: 150px;
        height: 150px;
        border: 5px solid #fff;
    }
    .name {
        font-weight: 800;
        font-size: 1.5rem;
    }
    .name span {
        font-size: 2rem;
    }
    .skills::before{
        font-size: 5rem;
        top:30%;
    }
    .skill-btn {
        padding: 0.3rem 1rem;
    }
    .item-left {
        width: 100%;
        display: block;
        padding-right: 0;
        text-align: left;
        padding-left: 2rem;
    }
    .item-right {
        width: 100%;
        display: block;
        padding-left: 2rem;
        padding-bottom: 2rem;
    }
    .item-divider{
        left: 2%;
    }
    .timeline-item h4 {
        font-size: 1.3rem;
    }
}
