.loader-bg{
    position: fixed;
    z-index: 99999;
    background: #974f10;
    width: 100%;
    height: 100%;
}
.loader{
    border: 0 solid transparent;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    position: absolute;
    top: calc(50vh - 75px);
    left: calc(50vw - 75px);
}
.loader::before, .loader::after{
    content: '';
    border: 1em solid #ffffff;
    border-radius: 50%;
    width: inherit;
    height: inherit;
    position: absolute;
    top: 0;
    left: 0;
    animation: loader 2s linear infinite;
    opacity: 0;
}
.loader::before{
    animation-delay: .5s;
}
@keyframes loader{
    0%{
        transform: scale(0);
        opacity: 0;
    }
    50%{
        opacity: 1;
    }
    100%{
        transform: scale(1);
        opacity: 0;
    }
}
@keyframes bounce{
    0%{
        transform: scale(1.2);
    }
    100%{
        transform: scale(1);
    }
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: ibm;
    font-size: 16px;
    overflow-x: hidden;
    height: 100vh;
    width: 100%;
    background-color: #2b2a2a;
    scroll-behavior: smooth;
}
a{
    text-decoration: none;
    color: inherit;
}
a:hover{
    text-decoration: none;
    color: inherit;
}
.col-md-11, .col-md-1, .col-md-4, .col-md-8, .col-md-6, .col-md-5{
    position: relative;
    width: 100%;
    padding-right: 0px;
    padding-left: 0px;
}
h1, h2, h3, h4, h5, h6{
    margin-bottom: 0;
}
@font-face{
    font-family: sin;
    src: url(../css/Sinthya.ttf);
    font-style: normal;
    font-weight: normal;
}
@font-face{
    font-family: ibm;
    src: url(../css/IBMPlexMono-Regular.ttf);
    font-style: normal;
    font-weight: normal;
}
li{
    list-style: none;
}
nav{
    background-color: #1f1f1f;
    color: #fff;
    z-index: 1;
    position: fixed;
    font-size: 18px;
}
.navbar-brand{
    padding-left: 2rem;
    font-family: sin;
    font-size: 18px;
}
.nav-link{
    text-transform: uppercase;
}
.active{
    color: #974f10;
    font-weight: 600;
}
nav a{
    color: #fff;
}
nav a:hover{
    color: #974f10;
}
.home{
    margin: 0 2rem;
    margin-bottom: 100px;
    height: 90vh;
}
.home-col1{
    padding: 20px 10px;
    height: 100%;
    align-items: center;
}
.home-img{
    width: 397px;
    height: 80vh;
    left: 64px;
    margin-top: 20px;
    object-fit: cover;
}
.img-text{
    bottom: 40px;
    position: absolute;
    padding: 0 16px;
}
h5{
    font-size: 24px;
    color: #fff;
}
.img-text p{
    font-size: 24px;
    color: #974f10;
}
.home-col2{
    padding-top: 175px;
    padding-right: 40px;
}
h3{
    font-size: 48px;
    color: #974f10;
}
.home-text{
    font-size: 16px;
    color: #f2f2f2;
}
.static-col{
    background: rgba(242, 153, 74, 0.2);
    position: fixed;
    height: 100vh;
    right: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
}
.icons{
    text-align: center;
    font-size: 24px;
    flex-direction: column;
}
.icons li{
    list-style: none;
    margin-bottom: 10px;
}
a .ion-social-linkedin{
    color: #f2f2f2;
}
a .ion-social-github{
    color: #f2f2f2;
}
a .ion-social-twitter{
    color: #f2f2f2;
}
.home-btn{
    background-color: #974f10;
    height: 41px;
    width: 138px;
    color: #f2f2f2;
    border-radius: 5px;
    border: none;
    font-size: 16px;
    font-weight: 700;
    animation: bounce 2s ease-out infinite;
}

/* Project page */

.project{
    margin: 10px 2rem;
    margin-bottom: 100px;
}
.project-col2{
    margin: 250px 0;
    padding-left: 7px;
    display: flex;
    flex-direction: column;
}
.project-col3{
    padding: 0 4rem;
}
.project .nav-link{
    color: #BDBDBD;
    background: none;
    border: none;
}
.nav-pills .nav-link.active{
    background: none;
    border: none;
    color: #974f10;
}
.project-h4{
    color: #974f10;
    font-size: 24px;
    margin-left: 2.8rem;
    margin-top: 2rem;
}
.project-h3{
    font-size: 40px;
    color: #f2f2f2;
}
.project-img1{
    position: relative;
    width: 100%;
    height: 300px;
    padding: 10px;
    object-fit: cover;
    border-radius: 20px;
}
.row1{
    margin-bottom: 20px;
}
.row7{
    margin-bottom: 20px;
}
.robin{
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
}
.project-btn{
    border: none;
    background: none;
    color: #974f10;
    font-size: 16px;
    width: 100px;
}

/* About page */

.about-h4{
    color: #974f10;
    font-size: 24px;
    margin-left: 2.8rem;
    margin-top: 2rem;
}
.about{
    margin: 20px 2.8rem;
    margin-bottom: 100px;
}
.row2{
    margin-bottom: 32px;
}
.about-img{
    position: relative;
    width: 100%;
    height: 360px;
    padding: 5px;
    padding-left: 15px;
    object-fit: cover;
}
.about-text{
    margin-top: 11px;
    padding-right: 4rem;
    padding-left: 20px;
    color: #f2f2f2;
}
.about-btn{
    background-color: #974f10;
    color: #f2f2f2;
    height: 53px;
    width: 205px;
    border-radius: 5px;
    border: none;
    font-size: 16px;
}
.about-col2{
    line-height: 34px;
    padding-left: 15px;
}
.about-h6{
    color: #974f10;
    font-size: 18px;
    margin-bottom: 32px;
}
label{
    font-size: 16px;
    color: #f2f2f2;
}
var{
    font-style: normal;
    color: #974f10;
}
.row4{
    padding: 0 40px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
    margin: auto;
}
.about-h5{
    color: #f2f2f2;
}
.about-col1{
    text-align: center;
    justify-content: center;
    align-content: center;
    padding: 32px 0;
    width: 176px;
    height: 145px;
    border: 1px solid #974f10;
    margin: 10px;
}
.text{
    font-size: 16px;
    color: #974f10;
}
.about-icon{
    display: flex;
    justify-content: end;
    margin-top: 20px;
    background: rgba(242, 153, 74, 0.2);
    padding: 10px 20px;
    width: 920px;
    margin-left: 110px;
}
.first-row{
    display: flex;
    flex-direction: row;
}
.second-row{
    display: flex;
    flex-direction: row;
}
.abt-icon{
    padding: 10px 0;
    margin: 0 30px;
}
.abt-icon img{
    width: 52px;
    height: 52px;
}

/* Contact page */

.contact-h4{
    color: #974f10;
    font-size: 24px;
    margin-bottom: 32px;
}
.contact{
    margin-left: 2.7rem;
    margin-right: 2rem;
    padding-right: 7px;
}
.contact-col6{
    padding: 32px 0;
    padding-right: 4rem;
}
.contact-img{
    width: 100%;
    height: 100%;
    padding-right: 16px;
    object-fit: cover;
    object-position: center;
}
.contact p{
    color: #f2f2f2;
}
.var{
    color: #f2f2f2;
}
.form-control{
    border: 1px solid #974f10;
    background: none;
    border-radius: 5px;
    margin-bottom: 20px;
    color: #f2f2f2;
}
.form-control::placeholder{
    color: #f2f2f2;
}
.contact-btn{
    width: 100%;
    background-color: #974f10;
    height: 41px;
    border-radius: 5px;
    border: none;
    font-size: 16px;
    color: #f2f2f2;
}
#myBtn{
    display: none;
    position: fixed;
    bottom: 70px;
    right: 30px;
    z-index: 10;
    border: none;
    outline: none;
    background-color: #974f10;
    color: #fff;
    cursor: pointer;
    padding: 15px;
    border-radius: 10px;
    font-size: 18px;
}

#myBtn:hover{
    background-color: #91490b;
}

/* Media Queries */

@media (max-width: 480px){
    body{
        width: 100%;
        overflow-x: hidden;
        margin: 0;
        padding: 0;
        scroll-behavior: smooth;
    }
    .navbar-brand{
        padding-left: 0.5rem;
    }
    .home{
        margin: 0;
        height: 100%;
        margin-bottom: 76px;
    }
    .home-col1{
        padding: 0;
        height: 100%;
        align-items: center;
    }
    .home-img{
        width: 100%;
        height: 508px;
        left: 0;
        margin-top: 0;
        object-fit: cover;
    }
    .img-text{
        display: none;
        top: 480px;
        position: absolute;
        padding: 0 16px;
    }
    h5{
        font-size: 24px;
        color: #fff;
    }
    .home-col2{
        padding-top: 13px;
        padding-right: 20px;
        padding-left: 24px;
    }
    h3{
        font-size: 24px;
        color: #974f10;
    }
    .home-text{
        font-size: 14px;
    }
    .static-col{
        background: #92663E;
        position: fixed;
        height: 56px;
        right: 0;
        top: auto;
        bottom: 0;
        z-index: 10;
    }
    .icons{
        padding: 10px 0px;
        text-align: center;
        font-size: 24px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
    .icons li{
        list-style: none;
        padding: 0px 33px;
        margin-top: 15px;
    }
    .home-btn{
        background-color: #974f10;
        height: 41px;
        width: 138px;
        border-radius: 5px;
        border: none;
        font-size: 16px;
        font-weight: 700;
    }

    /* About page */
    .about{
        margin: 20px 0;
        margin-bottom: 76px;
    }
    .about-h4{
        color: #974f10;
        font-size: 24px;
        margin-left: 24px;
        margin-top: 2rem;
    }
    .about-img{
        position: relative;
        width: 100%;
        height: 360px;
        padding: 0 38px;
        object-fit: cover;
    }
    .row4{
        padding: 0 40px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-content: center;
        margin: auto;
    }
    .about-text{
        margin: 0 38px;
        margin-top: 11px;
        padding-right: 0;
        padding-left: 0px;
    }
    .about-text h6{
        font-size: 15px;
    }
    .about-h6{
        margin-left: 24px;
    }
    .row3{
        margin: 0 24px;
    }
    .about-col2{
        padding-left: 0;
    }
    .row4{
        padding: 0 0;
        padding-left: 5px;
        margin: auto;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-content: center;
    }
    .about-icon{
        display: flex;
        justify-content: stretch;
        align-items: center;
        position: relative;
        flex-direction: column;
        margin-top: 20px;
        background: rgba(242, 153, 74, 0.2);
        padding: 10px 20px;
        width: 100%;
        height: auto;
        margin-left: 0;
        box-sizing: content-box border-box;
    }
    .abt-icon{
        padding: 10px 0;
        margin: 0 15px;
    }

    /* Project page */
    .project{
        margin: 10px 40px;
    }
    .project-col2{
        margin: 0px 0;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
    .project-col3{
        padding: 0 15px;
    }
    .project .nav-link{
        color: #BDBDBD;
        background: none;
        border: none;
        font-size: 14px;
        padding: 16px 5px;
    }
    .nav-pills .nav-link.active{
        background: none;
        border: none;
        color: #974f10;
    }
    .project-h4{
        color: #974f10;
        font-size: 24px;
        margin-left: 24px;
        margin-top: 2rem;
    }
    .project-h3{
        font-size: 18px;
    }
    .project-img1{
        position: relative;
        width: 100%;
        height: 200px;
        padding: 0px;
        object-fit: cover;
        border-radius: 20px;
    }
    .row1{
        margin-bottom: 20px;
    }
    .row7{
        margin-bottom: 20px;
        display: flex;
        flex-direction: column-reverse;
    }
    .robin{
        display: flex;
        flex-direction: row;
        align-content: center;
        justify-content: space-between;
        margin-top: 8px;
    }
    .project-btn{
        align-self: inherit;
        border: none;
        background: none;
        color: #974f10;
        font-size: 14px;
        width: 100px;
    }

    /* Contact page */

    .contact-h4{
        color: #974f10;
        font-size: 24px;
        margin-bottom: 32px;
    }
    .contact{
        margin-left: 0px;
        margin-right: 0px;
        padding-right: 0px;
        margin-bottom: 56px;
    }
    .contact-col6{
        padding: 32px 24px;
    }
    .contact-img{
        width: 100%;
        height: 100%;
        padding-right: 0px;
        object-fit: cover;
        object-position: center;
    }
    .var{
        color: #f2f2f2;
    }
    .form-control{
        border: 1px solid #974f10;
        background: none;
        border-radius: 5px;
        margin-bottom: 20px;
    }
    .contact-btn{
        width: 100%;
        background-color: #974f10;
        height: 41px;
        border-radius: 5px;
        border: none;
        font-size: 16px;
    }
}

@media (min-width: 481px) and (max-width: 767px){
    body{
        width: 100%;
        overflow-x: hidden;
        margin: 0;
        padding: 0;
        scroll-behavior: smooth;
    }
    .navbar-brand{
        padding-left: 0.5rem;
    }
    .home{
        margin: 0;
        height: 100%;
        margin-bottom: 76px;
    }
    .home-col1{
        padding: 0;
        height: 100%;
        align-items: center;
    }
    .home-img{
        width: 100%;
        height: 700px;
        left: 0;
        margin-top: 0;
        object-fit: cover;
    }
    .img-text{
        display: none;
        top: 480px;
        position: absolute;
        padding: 0 16px;
    }
    h5{
        font-size: 24px;
        color: #fff;
    }
    .home-col2{
        padding-top: 13px;
        padding-right: 20px;
        padding-left: 24px;
    }
    h3{
        font-size: 24px;
        color: #974f10;
    }
    .home-text{
        font-size: 14px;
    }
    .static-col{
        background: #92663E;
        position: fixed;
        height: 56px;
        right: 0;
        top: auto;
        bottom: 0;
        z-index: 10;
    }
    .icons{
        padding: 10px 0px;
        text-align: center;
        font-size: 24px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-evenly;
    }
    .icons li{
        list-style: none;
        padding: 0px 33px;
        margin-top: 15px;
    }
    .home-btn{
        background-color: #974f10;
        height: 41px;
        width: 138px;
        border-radius: 5px;
        border: none;
        font-size: 16px;
        font-weight: 700;
    }

    /* About page */
    .about{
        margin: 20px 0;
        margin-bottom: 76px;
    }
    .about-h4{
        color: #974f10;
        font-size: 24px;
        margin-left: 24px;
        margin-top: 2rem;
    }
    .about-img{
        position: relative;
        width: 100%;
        height: 600px;
        padding: 0 38px;
        object-fit: cover;
    }
    .about-col2{
        padding-left: 0;
    }
    .row4{
        width: 100%;
        display: flex;
        align-content: center;
        justify-content: center;
        margin: auto;
        margin-left: 5px;
    }
    .about-text{
        margin: 0 38px;
        margin-top: 11px;
        padding-right: 0;
        padding-left: 0px;
    }
    .about-text h6{
        font-size: 15px;
    }
    .about-h6{
        margin-left: 24px;
    }
    .row3{
        margin: 0 24px;
    }
    .row4{
        padding: 0 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-content: center;
        margin: auto;
    }
    .about-icon{
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        flex-direction: column;
        margin-top: 20px;
        background: rgba(242, 153, 74, 0.2);
        padding: 10px 20px;
        width: 100%;
        height: auto;
        margin-left: 0;
        box-sizing: content-box border-box;
    }
    .abt-icon{
        padding: 10px 0;
        margin: 0 35px;
    }

    /* Project page */
    .project{
        margin: 10px 40px;
    }
    .project-col2{
        margin: 0px 0;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
    .project-col3{
        padding: 0 15px;
    }
    .project .nav-link{
        color: #BDBDBD;
        background: none;
        border: none;
        font-size: 14px;
        padding: 8px;
    }
    .nav-pills .nav-link.active{
        background: none;
        border: none;
        color: #974f10;
    }
    .project-h4{
        color: #974f10;
        font-size: 24px;
        margin-left: 24px;
        margin-top: 2rem;
    }
    .project-h3{
        font-size: 18px;
    }
    .project-img1{
        position: relative;
        width: 100%;
        height: 350px;
        padding: 0px;
        object-fit: cover;
        border-radius: 20px;
    }
    .row1{
        margin-bottom: 20px;
    }
    .row7{
        margin-bottom: 20px;
        display: flex;
        flex-direction: column-reverse;
    }
    .robin{
        display: flex;
        flex-direction: row;
        align-content: center;
        justify-content: space-between;
        margin-top: 8px;
    }
    .project-btn{
        border: none;
        background: none;
        color: #974f10;
        font-size: 14px;
        width: 100px;
    }

    /* Contact page */

    .contact-h4{
        color: #974f10;
        font-size: 24px;
        margin-bottom: 32px;
    }
    .contact{
        margin-left: 0px;
        margin-right: 0px;
        padding-right: 0px;
        margin-bottom: 56px;
    }
    .contact-col6{
        padding: 32px 24px;
    }
    .contact-img{
        width: 100%;
        height: 100%;
        padding-right: 0px;
        object-fit: cover;
        object-position: center;
    }
    .var{
        color: #f2f2f2;
    }
    .form-control{
        border: 1px solid #974f10;
        background: none;
        border-radius: 5px;
        margin-bottom: 20px;
    }
    .contact-btn{
        width: 100%;
        background-color: #974f10;
        height: 41px;
        border-radius: 5px;
        border: none;
        font-size: 16px;
    }
}

@media (min-width: 768px) and (max-width: 1023px){
    body{
        width: 100%;
        overflow-x: hidden;
        scroll-behavior: smooth;
    }
    .home{
        margin: 0 2rem;
        height: 50vh;
    }
    .home-col1{
        padding: 20px 10px;
        height: 100%;
        align-items: center;
    }
    .home-img{
        width: 100%;
        height: 100%;
        left: 64px;
        margin-top: 20px;
        object-fit: cover;
    }
    .img-text{
        bottom: 10px;
        position: absolute;
        padding: 0 16px;
    }
    h5{
        font-size: 24px;
        color: #fff;
    }
    .img-text p{
        font-size: 24px;
        color: #974f10;
    }
    .home-col2{
        position: relative;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-top: 0px;
        padding-right: 40px;
        padding-left: 20px;
    }
    h3{
        font-size: 24px;
        color: #974f10;
    }
    .home-text{
        font-size: 16px;
        position: relative;
    }
    .static-col{
        background: rgba(242, 153, 74, 0.2);
        position: fixed;
        height: 100vh;
        right: 3rem;
        display: flex;
        align-items: center;
        justify-content: center;
        top: 0;
    }
    .icons{
        text-align: center;
        font-size: 24px;
        flex-direction: column;
    }
    .icons li{
        list-style: none;
        margin-bottom: 10px;
    }
    .home-btn{
        background-color: #974f10;
        height: 41px;
        width: 138px;
        border-radius: 5px;
        border: none;
        font-size: 16px;
        font-weight: 700;
        align-self: flex-start;
    }
    
    /* Project page */
    
    .project{
        margin: 10px 2rem;
    }
    .project-col2{
        margin: 250px 0;
        padding-left: 7px;
        display: flex;
        flex-direction: column;
    }
    .project-col3{
        padding: 0 4rem;
    }
    .project .nav-link{
        color: #BDBDBD;
        background: none;
        border: none;
    }
    .nav-pills .nav-link.active{
        background: none;
        border: none;
        color: #974f10;
    }
    .project-h4{
        color: #974f10;
        font-size: 24px;
        margin-left: 2.8rem;
        margin-top: 120px;
    }
    .project-h3{
        font-size: 40px;
    }
    .project-img1{
        position: relative;
        width: 100%;
        height: 300px;
        padding: 10px;
        object-fit: cover;
        border-radius: 20px;
    }
    .row1{
        margin-bottom: 20px;
    }
    .row7{
        margin-bottom: 20px;
    }
    .robin{
        display: flex;
        flex-direction: column;
        align-content: center;
        justify-content: center;
    }
    .project-btn{
        border: none;
        background: none;
        color: #974f10;
        font-size: 16px;
        width: 100px;
    }
    
    /* About page */
    
    .about-h4{
        color: #974f10;
        font-size: 24px;
        margin-left: 2.8rem;
        margin-top: 2rem;
    }
    .about{
        margin: 20px 2.8rem;
    }
    .row2{
        margin-bottom: 32px;
    }
    .about-img{
        position: relative;
        width: 100%;
        height: 360px;
        padding: 5px;
        object-fit: cover;
    }
    .about-text{
        margin-top: 11px;
        padding-right: 4rem;
        padding-left: 20px;
    }
    .about-btn{
        background-color: #974f10;
        height: 53px;
        width: 205px;
        border-radius: 5px;
        border: none;
        font-size: 16px;
    }
    .about-col2{
        line-height: 34px;
    }
    .about-h6{
        color: #974f10;
        font-size: 18px;
        margin-bottom: 32px;
    }
    label{
        font-size: 16px;
    }
    var{
        font-style: normal;
        color: #974f10;
    }
    .row4{
        padding: 0 40px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: auto;
    }
    .about-h5{
        color: #f2f2f2;
    }
    .about-col1{
        text-align: center;
        justify-content: center;
        align-content: center;
        padding: 32px 0;
        width: 176px;
        height: 145px;
        border: 1px solid #974f10;
        margin: 10px;
    }
    .text{
        font-size: 16px;
        color: #974f10;
    }
    .about-icon{
        position: absolute;
        display: flex;
        justify-content: center;
        margin-top: 20px;
        background: rgba(242, 153, 74, 0.2);
        background-size: cover;
        padding: 10px 50px;
        width: 85%;
        right: 10px;
        box-sizing: content-box;
        right: 25px;
    }
    .first-row{
        display: flex;
        flex-direction: row;
    }
    .second-row{
        display: flex;
        flex-direction: row;
    }
    .abt-icon{
        padding: 10px 0;
        margin: 0 10px;
    }
    
    /* Contact page */
    
    .contact-h4{
        color: #974f10;
        font-size: 24px;
        margin-bottom: 32px;
    }
    .contact{
        margin-left: 2.7rem;
        margin-right: 2rem;
        padding-right: 7px;
    }
    .contact-col6{
        padding: 32px 0;
        padding-right: 4rem;
    }
    .contact-img{
        width: 100%;
        height: 100%;
        padding-right: 16px;
        object-fit: cover;
        object-position: center;
    }
    .var{
        color: #f2f2f2;
    }
    .form-control{
        border: 1px solid #974f10;
        background: none;
        border-radius: 5px;
        margin-bottom: 20px;
    }
    .contact-btn{
        width: 100%;
        background-color: #974f10;
        height: 41px;
        border-radius: 5px;
        border: none;
        font-size: 16px;
    }
}

@media (min-width: 1024px) and (max-width: 1200px){
    body{
        width: 100%;
        overflow-x: hidden;
        scroll-behavior: smooth;
    }
    .home{
        margin: 0 2rem;
        height: 100%;
        margin-bottom: 100px;
    }
    .home-col1{
        padding: 20px 10px;
        width: auto;
        height: 50%;
        align-items: center;
    }
    .home-img{
        object-fit: contain;
        width: 100%;
        height: 100%;
        left: 64px;
        margin-top: 20px;
    }
    .img-text{
        bottom: 10px;
        position: absolute;
        padding: 0 16px;
    }
    h5{
        font-size: 24px;
        color: #fff;
    }
    .img-text p{
        font-size: 24px;
        color: #974f10;
    }
    .home-col2{
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-top: 175px;
        padding-right: 40px;
        padding-left: 20px;
        height: 50%;
    }
    h3{
        font-size: 48px;
        color: #974f10;
    }
    .home-text{
        font-size: 16px;
        position: relative;
    }
    .static-col{
        background: rgba(242, 153, 74, 0.2);
        position: fixed;
        height: 100vh;
        right: 3rem;
        display: flex;
        align-items: center;
        justify-content: center;
        top: 0;
    }
    .icons{
        text-align: center;
        font-size: 24px;
        flex-direction: column;
    }
    .icons li{
        list-style: none;
        margin-bottom: 10px;
    }
    .home-btn{
        background-color: #974f10;
        height: 41px;
        width: 138px;
        border-radius: 5px;
        border: none;
        font-size: 16px;
        font-weight: 700;
        align-self: flex-start;
    }
    
    /* Project page */
    
    .project{
        margin: 10px 2rem;
        margin-bottom: 60px;
    }
    .project-col2{
        margin: 250px 0;
        padding-left: 7px;
        display: flex;
        flex-direction: column;
    }
    .project-col3{
        padding: 0 4rem;
    }
    .project .nav-link{
        color: #BDBDBD;
        background: none;
        border: none;
    }
    .nav-pills .nav-link.active{
        background: none;
        border: none;
        color: #974f10;
    }
    .project-h4{
        color: #974f10;
        font-size: 24px;
        margin-left: 2.8rem;
        margin-top: 140px;
    }
    .project-h3{
        font-size: 40px;
    }
    .project-img1{
        position: relative;
        width: 100%;
        height: 300px;
        padding: 10px;
        object-fit: cover;
        border-radius: 20px;
    }
    .row1{
        margin-bottom: 20px;
    }
    .row7{
        margin-bottom: 20px;
    }
    .robin{
        display: flex;
        flex-direction: column;
        align-content: center;
        justify-content: center;
    }
    .project-btn{
        border: none;
        background: none;
        color: #974f10;
        font-size: 16px;
        width: 100px;
    }
    
    /* About page */
    
    .about-h4{
        color: #974f10;
        font-size: 24px;
        margin-left: 2.8rem;
        margin-top: 2rem;
    }
    .about{
        margin: 20px 2.8rem;
    }
    .row2{
        margin-bottom: 32px;
    }
    .about-img{
        position: relative;
        width: 100%;
        height: 360px;
        padding: 5px;
        object-fit: cover;
    }
    .about-text{
        margin-top: 11px;
        padding-right: 4rem;
        padding-left: 20px;
    }
    .about-btn{
        background-color: #974f10;
        height: 53px;
        width: 205px;
        border-radius: 5px;
        border: none;
        font-size: 16px;
    }
    .about-col2{
        line-height: 34px;
    }
    .about-h6{
        color: #974f10;
        font-size: 18px;
        margin-bottom: 32px;
    }
    label{
        font-size: 16px;
    }
    var{
        font-style: normal;
        color: #974f10;
    }
    .row4{
        padding: 0 40px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: auto;
        margin-bottom: 30px;
    }
    .about-h5{
        color: #f2f2f2;
    }
    .about-col1{
        text-align: center;
        justify-content: center;
        align-content: center;
        padding: 32px 0;
        width: 176px;
        height: 145px;
        border: 1px solid #974f10;
        margin: 10px;
    }
    .text{
        font-size: 16px;
        color: #974f10;
    }
    .about-icon{
        position: absolute;
        display: flex;
        justify-content: center;
        margin-top: 20px;
        background: rgba(242, 153, 74, 0.2);
        background-size: cover;
        padding: 10px 50px;
        width: 80%;
        margin-left: 0px;
        box-sizing: content-box;
    }
    .first-row{
        display: flex;
        flex-direction: row;
    }
    .second-row{
        display: flex;
        flex-direction: row;
    }
    .abt-icon{
        padding: 10px 0;
        margin: 0 20px;
    }
    
    /* Contact page */
    
    .contact-h4{
        color: #974f10;
        font-size: 24px;
        margin-bottom: 32px;
    }
    .contact{
        margin-left: 2.7rem;
        margin-right: 2rem;
        padding-right: 7px;
    }
    .contact-col6{
        padding: 32px 0;
        padding-right: 4rem;
        height: 50%;
    }
    .contact-img{
        width: 100%;
        height: 100%;
        padding-right: 16px;
        object-fit: cover;
        object-position: center;
    }
    .var{
        color: #f2f2f2;
    }
    .form-control{
        border: 1px solid #974f10;
        background: none;
        border-radius: 5px;
        margin-bottom: 20px;
    }
    .contact-btn{
        width: 100%;
        background-color: #974f10;
        height: 41px;
        border-radius: 5px;
        border: none;
        font-size: 16px;
    }
}

@media (min-width: 1200px) {
    nav{
        background-color: #1f1f1f;
        color: #fff;
        z-index: 1;
        position: fixed;
        font-size: 18px;
    }
    .nav-link{
        text-transform: uppercase;
    }
    .navbar-brand{
        padding-left: 2rem;
        font-family: sin;
        font-size: 18px;
    }
    .active{
        color: #974f10;
        font-weight: 600;
    }
    nav a{
        color: #fff;
    }
    nav a:hover{
        color: #974f10;
    }
    .home{
        margin: 0 2rem;
        margin-bottom: 100px;
        height: 90vh;
    }
    .home-col1{
        padding: 20px 10px;
        height: 100%;
        align-items: center;
    }
    .home-img{
        object-fit: cover;
        width: 397px;
        height: 80vh;
        left: 64px;
        margin-top: 20px;
    }
    .img-text{
        bottom: 40px;
        position: absolute;
        padding: 0 16px;
    }
    h5{
        font-size: 24px;
        color: #fff;
    }
    .img-text p{
        font-size: 24px;
        color: #974f10;
    }
    .home-col2{
        padding-top: 175px;
        padding-right: 40px;
    }
    h3{
        font-size: 48px;
        color: #974f10;
    }
    .home-text{
        font-size: 16px;
        color: #f2f2f2;
    }
    .static-col{
        background: rgba(242, 153, 74, 0.2);
        position: fixed;
        height: 100vh;
        right: 3rem;
        display: flex;
        align-items: center;
        justify-content: center;
        top: 0;
    }
    .icons{
        text-align: center;
        font-size: 24px;
        flex-direction: column;
    }
    .icons li{
        list-style: none;
        margin-bottom: 10px;
    }
    a .ion-social-github{
        color: #f2f2f2;
    }
    a .ion-social-linkedin{
        color: #f2f2f2;
    }
    a .ion-social-twitter{
        color: #f2f2f2;
    }
    .home-btn{
        background-color: #974f10;
        height: 41px;
        width: 138px;
        color: #f2f2f2;
        border-radius: 5px;
        border: none;
        font-size: 16px;
        font-weight: 700;
        animation: bounce 2s ease-out infinite;
    }
    
    /* Project page */
    
    .project{
        margin: 10px 2rem;
        margin-bottom: 100px;
    }
    .project-col2{
        margin: 250px 0;
        padding-left: 7px;
        display: flex;
        flex-direction: column;
    }
    .project-col3{
        padding: 0 4rem;
    }
    .project .nav-link{
        color: #BDBDBD;
        background: none;
        border: none;
    }
    .nav-pills .nav-link.active{
        background: none;
        border: none;
        color: #974f10;
    }
    .project-h4{
        color: #974f10;
        font-size: 24px;
        margin-left: 2.8rem;
        margin-top: 2rem;
    }
    .project-h3{
        font-size: 40px;
        color: #f2f2f2;
    }
    .project-img1{
        position: relative;
        width: 100%;
        height: 300px;
        padding: 10px;
        object-fit: cover;
        border-radius: 20px;
    }
    .row1{
        margin-bottom: 20px;
    }
    .row7{
        margin-bottom: 20px;
    }
    .robin{
        display: flex;
        flex-direction: column;
        align-content: center;
        justify-content: center;
    }
    .project-btn{
        border: none;
        background: none;
        color: #974f10;
        font-size: 16px;
        width: 100px;
    }
    
    /* About page */
    
    .about-h4{
        color: #974f10;
        font-size: 24px;
        margin-left: 2.8rem;
        margin-top: 2rem;
    }
    .about{
        margin: 20px 2.8rem;
        margin-bottom: 100px;
    }
    .row2{
        margin-bottom: 32px;
    }
    .about-img{
        position: relative;
        width: 100%;
        height: 360px;
        padding: 5px;
        padding-left: 15px;
        object-fit: cover;
    }
    .about-text{
        margin-top: 11px;
        padding-right: 4rem;
        padding-left: 20px;
        color: #f2f2f2;
    }
    .about-btn{
        background-color: #974f10;
        color: #f2f2f2;
        height: 53px;
        width: 205px;
        border-radius: 5px;
        border: none;
        font-size: 16px;
    }
    .about-col2{
        line-height: 34px;
        padding-left: 15px;
    }
    .about-h6{
        color: #974f10;
        font-size: 18px;
        margin-bottom: 32px;
    }
    label{
        font-size: 16px;
        color: #f2f2f2;
    }
    var{
        font-style: normal;
        color: #974f10;
    }
    .row4{
        padding: 0 40px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-content: center;
        margin: auto;
    }
    .about-h5{
        color: #f2f2f2;
    }
    .about-col1{
        text-align: center;
        justify-content: center;
        align-content: center;
        padding: 32px 0;
        width: 176px;
        height: 145px;
        border: 1px solid #974f10;
        margin: 10px;
    }
    .text{
        font-size: 16px;
        color: #974f10;
    }
    .about-icon{
        display: flex;
        justify-content: end;
        margin-top: 20px;
        background: rgba(242, 153, 74, 0.2);
        padding: 10px 20px;
        width: 920px;
        margin-left: 110px;
    }
    .first-row{
        display: flex;
        flex-direction: row;
    }
    .second-row{
        display: flex;
        flex-direction: row;
    }
    .abt-icon{
        padding: 10px 0;
        margin: 0 30px;
    }
    
    /* Contact page */
    
    .contact-h4{
        color: #974f10;
        font-size: 24px;
        margin-bottom: 32px;
    }
    .contact{
        margin-left: 2.7rem;
        margin-right: 2rem;
        padding-right: 7px;
    }
    .contact-col6{
        padding: 32px 0;
        padding-right: 4rem;
    }
    .contact-img{
        width: 100%;
        height: 100%;
        padding-right: 16px;
        object-fit: cover;
        object-position: center;
    }
    .contact p{
        color: #f2f2f2;
    }
    .var{
        color: #f2f2f2;
    }
    .form-control{
        border: 1px solid #974f10;
        background: none;
        border-radius: 5px;
        margin-bottom: 20px;
        color: #f2f2f2;
    }
    .form-control::placeholder{
        color: #f2f2f2;
    }
    .contact-btn{
        width: 100%;
        background-color: #974f10;
        height: 41px;
        border-radius: 5px;
        border: none;
        font-size: 16px;
        color: #f2f2f2;
    }
}