@charset "UTF-8";

html, body * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'lato';
    src: url(./fontface/Lato-Black.woff) format('woff2'),
         url(./fontface/Lato-Black.woff2) format('woff');
    font-weight: black;
}

@font-face {
    font-family: 'lato';
    src: url(./fontface/Lato-Bold.woff) format('woff2'),
         url(./fontface/Lato-Bold.woff2) format('woff');
    font-weight: bold;
}

@font-face {
    font-family: 'lato';
    src: url(./fontface/Lato-Regular.woff) format('woff2'),
         url(./fontface/Lato-Regular.woff2) format('woff');
    font-weight: normal;
}

@font-face {
    font-family: 'lato';
    src: url(./fontface/Lato-Light.woff) format('woff2'),
         url(./fontface/Lato-Light.woff2) format('woff');
    font-weight: light;
}


.img-responsive{
    max-width: 100%;
    height: auto;
}

html {
    font-size: 20px;
}

body {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    /* background-color: #FCFAF4; */
    background-color: #fffdf9;
    font-family: 'lato';
    cursor: none;

}

    .navbar{
    width: 100%;
    max-width: 65%;
    height: 5rem;
    display: inline-flex;
    flex-direction: row;
    margin: 0 auto 0 auto;
    font-family: 'lato';

}

.hamburger{
    display: none;
    cursor: pointer;
}

.bar{
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
   -webkit-transition: all 0.3s ease-in-out;
   transition: all 0.3s ease-in-out ;
   background-color: #000;
}

.header{
    width: 100%;
    height: 5rem;
    /* border-bottom: 1px solid #ea6f35 ; */
    display: flex;
    flex-direction: row;
    font-weight: normal;
}

.firstp{
    width: 50%;
    height: auto;
}

.secp{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
            float: right;
            

}



.nav-menuu{
    width: 60%;
    float: left;
}


ul.nav-menu, .nav-menuu{
    width: 100%;
    padding: 2rem 0;
    display: flex;
    flex-direction: row;
    /* justify-content: space-evenly; */
    text-decoration: none;
    list-style: none;
    align-items: center;
    /* margin-left: 42%; */
    /* gap: 1rem; */
    font-family: 'lato';
}

ul{
    width: 40%;
    padding: 2rem 0;
    display: flex;
    flex-direction: row;
    /* justify-content: space-evenly; */
    text-decoration: none;
    list-style: none;
    align-items: center;
    /* margin-left: 42%; */
    /* gap: 1rem; */

}

.nav-menu{
    width: 65%;
    display: flex;
    flex-direction: row;
    justify-content: space-between; 
    /* align-items: center; */
    /* justify-content: center;  */
    /* gap: 60px; */
    /* margin: 15px auto 20px auto; */
    
 } 

.nav-link{
    transition: 0.1s ease-in;
}

.nav-link::after{
    /* border: 1px solid black; */
    /* background-color: #000; */
    /* background-color: #FCFAF4; */
    color: #ea6f35;
    font-weight: bold;

}

.nav-link:hover{
    color: rgb(0, 0, 0);

    /* font-size: 16px; */
    font-weight: bold;
}


.nav-link.active {
    /* background-color: #000; */
    /* border-radius: 30px; */
    color: #ea6f35;
    font-weight: bold;
}


.p1 h2{
    color: #ea6f35;
}


li{
    list-style: none;
}

a{
    color: #000;
    text-decoration:none;
    cursor: none;

}

   .firstp a{
        font-family: 'lato';
        /* font-weight: bolder; */
        font-size: 20px;
    }

    .firstp{
        font-weight: 400;
    }

.card-link-mob {
    
    text-decoration: none;
    color: inherit; /* Use the default text color */
}


.cursor{
    position: fixed;
    width: 30px;
    height: 30px;
    margin-left: -20px;
    margin-top: -20px;
    border-radius: 50%;
    border: 4px solid #d6c15b;
    transition: transform .2s ease;
    transform: center center;
    pointer-events: none;
    z-index: 10000;
    display: none;

}
/* .grow, .grow-small{
    transform: scale(5);
    background: #ffffff;
    mix-blend-mode: difference;
    border: none;

} */

.grow-small{
    transform: scale(1);

}


@media only screen and (max-width: 600px) {

    /* .home{
        width: 100%;
        height: 55vh;
        margin: 2rem auto 8rem auto;
        display: flex;
        flex-direction: row;
    } */

    .navbar{
        width: 100%;
        height: 3rem;
        display: flex;
        align-items: center;
        justify-content: space-between; 
        /* border-bottom: 1px solid black; */
        background-color: #fffdf9;
        
    } 

       
    .nav-bar a {
        width: 100%;
        display: block;
        text-align: center;
    }

    
     .hamburger{
        display: block;
        cursor: pointer;
        margin: 10px 0px 0 0px;
    }
    
    .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        background-color: #000;
    }

    .hamburger.active .bar:nth-child(2){ 
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1){ 
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3){ 
        transform: translateY(-8px) rotate(-45deg);
    }

      .header{
        width: 100%;

    }

    .options{
        margin: 20px auto 0 auto;
        max-width: 80%;
    }

    .firstp{
        width: 100%;
        font-family: 'lato';
        font-size: 18px;
    }

    .firstp{
        font-weight: 400;
    }

    .secp{
        width: 100%;
        height: 12rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
        .nav-menu{
        position: fixed;
        right: 100%;
        top: 100px;
        gap: 0;
        flex-direction: column;
        background-color: #fffdf9;
        width: 100%;
        height: 280px;
        text-align: center;
        transition: 0.3s;
        font-size: 16px;
        justify-content: space-evenly;
    }
   
    .onep, .twop, .threep, .fourp{
    width: 25%;
    display: flex;
    flex-direction: column;
}

    .navv{
        position: fixed;
        right: -100%;
        top: 50px;
        gap: 0;
        flex-direction: column;
        background-color: #fffdf9;
        width: 100%;
        height: 280px;
        text-align: center;
        transition: 0.3s;
        font-size: 16px;
        justify-content: space-evenly;
    }

   .nav-link{
        margin: 10px 0 10px 0;
    }

    .nav-menu.active{
        right: 0;
        z-index: 8;

    }

    .activee{
        display: none;
    }

    .nav-link{
        margin: 10px 0;
    }

    ul{
        display: none;
    }


    .active{
     color: #ea6f35;
    font-weight: bold;
}

 #intro{
        width: 100%;
        max-width: 90%;
        height: auto;
        display: flex;
        flex-direction: column;
        margin: 80px auto 0 auto;
    }

    .first{
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: row;
        font-family: 'lato';
        font-size: 16px;
        font-weight: light;
    }

     .p2{
        max-width: 100%;
        display: flex;
        flex-direction: row;
        float: right;
        font-family: 'lato';
        font-weight: lighter;
    }

      .p1{
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        /* justify-content: space-evenly; */
        /* border: 1px solid red; */
    }

    .p1aa{
        /* background-color: #ea6f35; */
        margin-right: 10px;
        
    }

    .p1a{
        margin-left: 10px;
    }

    .p2a{
        font-family: "lato";
        font-weight: bold;
        font-size: 16px;
    }

       .p2 img{
        width: auto;
        height: 85%;
        /* float: right; */
        /* margin-right: 3rem; */
        /* margin-left: 9rem;  */
        padding-right: 1rem;
        padding-left: 7rem;
        margin-top: 2rem;
    }
    
    .part3{
        width: 100%;
    }
    .p2 h4{
         font-family: 'lato';
        font-weight: 350;
    }

    .p2 h2{
        margin-top: -10px;
        margin-left: 10px;
        margin-right: 10px;
    }


    .second{
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        margin: 10px auto 0 auto;
    }



    .part2{
        width: 100%;
        max-width: 100%;
        height: auto;
        display: flex;
        flex-direction: row;
        font-family: 'lato';
        font-weight: bold;
        font-size: 16px;
    }

    .part2 img{
        width: 30px;
        height: 30px;
        border-radius: 50%;

    }

    .third{
         width: 100%;
    max-width: 95%;
     margin: 16px auto 0 auto;
    display: flex;
    /* justify-content: flex-end; */
    align-items: center;
    /* gap: 10px; */
    font-family: 'lato';
    font-size: 12px;
    font-weight: normal;
    }

    .third img{
        width: 10px;
        height: 10px;

    }

    .textme{
        width: 95%;
    }

    .textme h3{
        float: right;
    }


       .forth{
         width: 100%;
    max-width: 100%;
     margin: 16px auto 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    font-family: 'lato';
    font-size: 16px;
    font-weight: 350;
    }

    /* .firstp a{
        font-family: 'lato';
        font-weight: bolder;
        font-size: 16px;
    } */

    /* .firstp{
        font-weight: 400;
    } */

   .p3{
        padding: 8px;
        background-color: #ea6f35;
        border-radius: 10px;
        
    }

    .p3 a{
        color: #fff2d8;
    }

    .forth img{
        height: 30px;
        width: auto;
    }



    
    .p1 h2{
        font-size: 18px;
    }

    .abtext{
        width: 90%;
        height: auto;
        /* margin-top: 2rem; */
        display: flex;
        flex-direction: column;
    }
    
    .abtext img{
        width: 100%;
        height: auto;
    }
    
    .scroll{
        width: 100%;
        height: auto;
        /* border: 1px solid red; */
        /* margin-right: 2rem; */
        /* margin-left: 2rem; */
        margin: 2rem auto 5rem auto;
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
    
    .scroll img{
        width: 100%;
        height: auto;
        float: right;
        margin-top: 1rem;

        /* margin-right: 2rem; */
    }
    
    .abtext span{
        font-weight: bold;
        color: #373737;
    }
    
    .abtext h3{
        font-size: 16px;
        font-weight: normal;
    }

 
    
    .row {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 2rem; /* Adjust gap between items as needed */
        padding-left: 5%;
        padding-right: 5%;
        /* padding-top: 8rem; */
    
    }
    
    /* .project-item {
        margin: auto;
        min-height: 20%;
        text-align: center;
        margin-bottom: -20px;
        transition: 0.5s;
        box-shadow: 0 4px 8px 0 rgba(194, 193, 186, 0.2), 0 6px 20px 0 rgba(215, 209, 198, 0.19);
        background-color: #fffdf9;
    
        border-radius: 12px;
      } */
      
      .project-item:hover {
        cursor: pointer;
        transform: translateY(-5px);
        transition: 0.5s;
      }
      
      .thumb {
        width: 100%;
        margin: auto;
        /* border-radius: 15px; */
      }
      
      .thumb-txt {
        text-align: left;
        padding: 12px;
        
      }
      
      .thumb-txt h3 {
        font-weight: bold;
        font-size: 1.2rem;
        color: #ea6f35;
      }
    
      .sec{
        display: flex;
        flex-direction: row;
        justify-content: left;
        gap: 0.5rem;
        align-items: center;
        /* padding-bottom: 1rem; */
        margin-top: 1rem;
      }
    
      .thumb-txt h5{
        /* font-weight: bold; */
        font-size: 14px;
        color: #373737;
        font-weight: lighter;
        /* padding-bottom: .5rem; */
        width: auto;
        /* height: 2rem; */
        /* background-color: #e9dbc0; */
        /* border: 2px solid #e9dbc0; */
        border-radius: 5pc;
        /* padding: .6rem; */
      }
      
      .w2{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
      }
    
    
    
      .thumb-txt p{
        font-weight: 500;
        font-size: 17px;
        margin-bottom: 10px;
        color: #1e1e1e;
      }

      
.i1{
    width: 80%;
    height: auto;

}

.wrap .slider{
    font-size: 0;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
}

.slider img{
    height: 340px;
    object-fit: cover;
    width: calc(100% / 3);
    margin-left: 14px;
}

.slider img:first-child{
    margin-left: 0px;
} 

.wrap{
    max-width: 1200px;
    position: relative;
}

.bdslide{
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100vh;
    padding: 5rem 35px;
    margin-top: 10rem;
}

.wrap i{
    background-color: #ea6f35;
    height: 45px;
    width: 45px;
    text-align: center;
    line-height: 45px;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.wrap i:first-child{
    left: -23px;
}

.wrap i:last-child{
    right: -23px;
}

.activee{
    display: none;
}

.canada{
        display: none;
}

.footer{
    width: 100%;
    height: auto;
    font-family: 'lato';
}

footer h3{
    margin-block-start: 1em;
    margin-block-end: 1em;
   font-weight: normal;
   text-align: center;
   margin-top: 15px;

}

footer h4{
    color: #ea6f35;
}

.touch{
    width: 80%;
    height: auto;
    justify-content: center;
    padding: 2rem 0 0 0rem;
}

.touchs{
    width: 80%;
    height: auto;
    margin: 0 auto 0 auto;
    justify-content: space-evenly;
    padding-top: 1rem;
}

.touchs img{
    width: 40px;
    height: auto;
}


.touchto{
    width: 90%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

footer{

    width: 100%;
    height: 10rem;
    margin: 3rem auto 0 auto;
    bottom: 0;
    /* margin-bottom: -80px; */
    /* border-top: 1px solid black; */
    font-size: 10px;
    background-color: #000;
    background-color: #fffdf9;
    display: flex;
    flex-direction: column;
    align-items: center;
    display: block;
    border-top: 1px solid #e9dbc0;
     font-family: 'lato';
        font-weight: bolder;
        font-size: 18px;
}
    

#section2{
    padding-top: 4rem;
}


.socials{
    width: 50%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    gap: 5px;
}

.touchto{
    width: 85%;
    margin: 0 auto;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

footer h5{
    font-size: 16px;
    text-align: center;
}

footer h4{
    font-size: 1.5rem;
}




.name{
    width: 5.2rem;
    height: auto;
    /* margin-top: -.2rem; */
}

.resumee{
    width: auto;
    height: auto;
    background-color: #ea6f35;
    /* border: 1px solid #C0A166; */
    background-color: #ea6f35;
    border-radius: 30px;
    padding: 10px 20px 10px 20px; 
}

.resumee:hover{
    width: auto;
    height: auto;
    border: 1px solid #ea6f35;
    background-color: #FFFDF9;

    color: #e9dbc0;
    border-radius: 30px;
    padding: 10px 20px 10px 20px; 
}

.resumeee{
    width: auto;
    height: auto;
    border: 1px solid #ea6f35;
    /* background-color: #C0A166; */
    border-radius: 30px;
    padding: 10px 20px 10px 20px; 
    margin-left: 10px;
}

.resumeee:hover{
    width: auto;
    height: auto;
    border: 1px solid #ea6f35;
    /* background-color: #FFFDF9; */

    color: #ea6f35;
    border-radius: 30px;
    padding: 10px 20px 10px 20px; 
}


.nav-menuu{
    width: 95%;
    float: left;
}
}





@media only screen and (min-width: 600px) {

    .navbar{
        font-size: 16px;
        justify-content: space-between; 

    }

    #intro{
        width: 100%;
        max-width: 65%;
        height: auto;
        display: flex;
        flex-direction: column;
        margin: 80px auto 0 auto;
    }

    .first{
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: row;
        font-family: 'lato';
        font-size: 18px;
        font-weight: light;
    }

     .p2{
        max-width: 100%;
        display: flex;
        flex-direction: row;
        float: right;
        font-family: 'lato';
        font-weight: lighter;
    }

      .p1{
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        /* justify-content: space-evenly; */
        /* border: 1px solid red; */
    }

    .p1aa{
        /* background-color: #ea6f35; */
        margin-right: 16px;
    }

    .p1a{
        margin-left: 16px;
    }

    .p2a{
        font-family: "lato";
        font-weight: bold;
        font-size: 26px;
    }

       .p2 img{
        width: auto;
        height: 85%;
        /* float: right; */
        /* margin-right: 3rem; */
        /* margin-left: 9rem;  */
        padding-right: 1rem;
        padding-left: 7rem;
        margin-top: 2rem;
    }
    
    .part3{
        width: 100%;
    }
    .p2 h4{
         font-family: 'lato';
        font-weight: 350;
    }

    .p2 h2{
        margin-top: -10px;
        margin-left: 10px;
        margin-right: 10px;
    }


    .second{
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        margin: 10px auto 0 auto;
    }



    .part2{
        width: 100%;
        max-width: 100%;
        height: auto;
        display: flex;
        flex-direction: row;
        font-family: 'lato';
        font-weight: bold;
        font-size: 26px;
    }

    .part2 img{
        width: 50px;
        height: 50px;
        border-radius: 50%;

    }

    .third{
         width: 100%;
    max-width: 100%;
     margin: 16px auto 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    font-family: 'lato';
    font-size: 18px;
    font-weight: normal;
    }

    .third img{
        width: 30px;
        height: 30px;

    }

    .textme{
        width: 80%;
    }

    .textme h3{
        float: right;
    }


       .forth{
         width: 100%;
    max-width: 100%;
     margin: 16px auto 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    font-family: 'lato';
    font-size: 25px;
    font-weight: 350;
    }

    .firstp a{
        font-family: 'lato';
        font-weight: bolder;
        font-size: 20px;
    }

    .firstp{
        font-weight: 400;
    }

    .p3{
        padding: 8px;
        background-color: #ea6f35;
        border-radius: 10px;
        
    }

    .p3 a{
        color: #fff2d8;
    }

    .p3:hover{
        background-color: #FFFDF9;
        border: 1px solid #ea6f35;
    }

    .p3 a:hover{
        color: #000;
    }

    .forth img{
        height: 40px;
        width: auto;
    }


    .home{
        width: 100%;
        height: 70vh;
        margin: 0 auto 0 auto;
        display: flex;
        flex-direction: row;
    }




    /* .p2{ */
        /* width: 50%;
        height: auto;
        padding-right: 2rem; */
        /* margin-right: 3rem; */
        /* margin-top: 3rem; */
        /* border: 1px solid red; */
        /* border: 1px solid rgb(239, 170, 170); */

    /* } */

    .activee{
        display: none;
    }

    .canada{
            display: none;
    }

    .p2 img{
        width: 75%;
        height: auto; 
        margin: 3rem 0 0 5rem;
        /* margin: 1rem auto 0 6rem; */
        /* margin-left: 12rem; */
    }

  
    
    .p1 h2{
        font-size: 23px;
    }

    .abtext{
        width: 100%;
        height: auto;
        margin-top: 5rem;
    }
    
    .abtext img{
        width: 60%;
        height: auto;
    }

    .abtext span{
        font-weight: bold;
        color: #373737;
    }
    
    .abtext h3{
        font-size: 16px;
        font-weight: normal;
    }
    
    .scroll{
        width: 55%;
        height: auto;
        margin-top: 3rem;
        display: flex;
        flex-direction: row;
        /* margin-right: 3rem; */
    }

    .scroll a{
        width: 15%;
        height: auto;
    }
    
    .scroll img{
        width: auto;
        height: 85%;
        float: right;
        /* margin-top: 3rem; */
    }
    
    #c1{
        position: relative;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: auto; 
        background-color: #e9dbc0;
        display: flex;
        flex-direction: row;
    
        /* position: sticky; */
        /* top:0; */
    }

    #c2{
        position: relative;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: auto; 
        background-color: #e9dbc0;
        border: 1px solid red;
    
    
        /* position: sticky; */
        /* top:0; */
    }

    #c3{
        position: relative;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: auto; 
        background-color: #e9dbc0;
        border: 1px solid red;
        display: flex;
        flex-direction: row;
    
        /* position: sticky; */
        /* top:0; */
    }
    
    #c4{
        position: relative;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: auto; 
        background-color: #e9dbc0;
        border: 1px solid red;
     
    
        /* position: sticky; */
        /* top:0; */
    }

    .row {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 4rem; /* Adjust gap between items as needed */
        padding-left: 5%;
        padding-right: 5%;
        /* padding-top: 3rem; */
    
    }



    .resume{
        width: auto;
        height: auto;
        border: 1px solid #ea6f35;
        border-radius: 30px;
        padding: 10px 20px 10px 20px; 
        margin-top: -10px;
    }
    
    /* .project-item {
        margin: auto;
        min-height: 20%;
        text-align: center;
        margin-bottom: -20px;
        transition: 0.5s;
        box-shadow: 0 4px 8px 0 rgba(194, 193, 186, 0.2), 0 6px 20px 0 rgba(215, 209, 198, 0.19);
        background-color: #fffdf9;
    
        border-radius: 12px;
      }
       */
      .project-item:hover {
        cursor: pointer;
        transform: translateY(-5px);
        transition: 0.5s;
      }
      
      .thumb {
        width: 100%;
        margin: auto;
        /* border-radius: 15px; */
      }
      
      .thumb-txt {
        text-align: left;
        padding: 12px;
        
      }
      
      .thumb-txt h3 {
        font-weight: bold;
        font-size: 1.2rem;
        color: #ea6f35;
      }
    
      .sec{
        display: flex;
        flex-direction: row;
        justify-content: left;
        gap: 0.5rem;
        align-items: center;
        /* padding-bottom: 1rem; */
        margin-top: 1rem;
      }
    
      .thumb-txt h5{
        /* font-weight: bold; */
        font-size: 14px;
        font-weight: lighter;
        color: #373737;
        /* padding-bottom: .5rem; */
        width: auto;
        /* height: 2rem; */
        /* background-color: #e9dbc0; */
        /* border: 2px solid #e9dbc0; */
        border-radius: 5pc;
        /* padding: .6rem; */
      }
      
      .w2{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
      }
    
    
    
      .thumb-txt p{
        font-weight: 500;
        font-size: 17px;
        margin-bottom: 10px;
        color: #1e1e1e;
      }

      
.i1{
    width: 80%;
    height: auto;

}

 #section2{
        padding-top: 8rem;
    }

.wrap .slider{
    font-size: 0;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
}

.slider img{
    height: 340px;
    object-fit: cover;
    width: calc(100% / 3);
    margin-left: 14px;
}

.slider img:first-child{
    margin-left: 0px;
} 

.wrap{
    max-width: 1200px;
    position: relative;
}

.bdslide{
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100vh;
    padding: 5rem 35px;
    margin-top: 10rem;
}

.wrap i{
    background-color: #ea6f35;
    height: 45px;
    width: 45px;
    text-align: center;
    line-height: 45px;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.wrap i:first-child{
    left: -23px;
}

.wrap i:last-child{
    right: -23px;
}

.im1{
    width: 60%;
    height: auto;
    margin: 5rem 5rem;
}

.im2{
    width: 100%;
    height: auto;
}

/* .rec{
    position: absolute;
    width: 100%;
    height: 40px;
    border-radius: 5px;
    background-color: #674a10;
    font-family: 'NeutralFace';
    
} */

.scroller__inner {
    width: 100%; /* Adjust image width as needed */
    height: 50px;
    margin-top: 25px;
white-space: nowrap;
position: relative;
animation: scroll 45s linear infinite; /* Adjust duration as needed */
}

@keyframes scroll {
0% {
    transform: translateX(0);
}
100% {
    transform: translateX(-100%);
}
}


.row {
    display: grid;
    grid-template-columns: repeat(1 1fr);
    gap: 3rem; /* Adjust gap between items as needed */
    padding-left: 20%;
    padding-right: 20%;
    padding-top: 3rem;

}


footer{

    width: 100%;
    height: 15rem;
    margin-top: 8rem;
    bottom: 0;
    margin-bottom: -80px;
    /* border-top: 1px solid black; */
    font-size: 10px;
    color: #000;
    background-color: #fffdf9;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    display: block;
    border-top: 1px solid #e9dbc0;

}

.touch{
/* max-width: 65%; */
    height: auto;
    margin: 0 auto;
    justify-content: center;
    padding: 3rem 0 0 0rem;
    /* border: 1px solid red; */
    /* padding-left: rem; */
}

.touchs{
/* max-width: 65%; */
    /* width: 30%; */
    height: auto;
    justify-content: space-between;
    padding-top: 1rem;
    /* padding-right: 10rem; */
        /* border: 1px solid red; */
margin: 0 auto;

}

.touchto{
/* max-width: 65%; */
    height: auto;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}


footer h5{
    font-size: 20px;
    text-align: center;
    font-family: 'lato';

}

footer h4{
    font-size: 20px;
}


.one{
    width: 50px;
    height: 50px;
    /* padding-right: .5rem; */
    margin-right: .3rem;

}

.two{
    width: 50px;
    height: 50px;
    /* padding-right: .rem; */
    margin-right: .3rem;


}

.three{
    width: 50px;
    height: 50px;
    margin-right: .3rem;

}

.name{
    width: 5.2rem;
    height: auto;
    margin-top: -.2rem;
}


.resume:hover{
    width: auto;
    height: auto;
    border: 1px solid #ea6f35;
    background-color: #ea6f35;
    color: #e9dbc0;
    border-radius: 30px;
    padding: 10px 20px 10px 20px; 
}

.resumee{
    width: auto;
    height: auto;
    border: 1px solid #ea6f35;
    background-color: #ea6f35;
    border-radius: 30px;
    padding: 10px 20px 10px 20px; 
}

.resumee:hover{
    width: auto;
    height: auto;
    border: 1px solid #ea6f35;
    background-color: #FFFDF9;

    color: #e9dbc0;
    border-radius: 30px;
    padding: 10px 20px 10px 20px; 
}

.resumeee{
    width: auto;
    height: auto;
    border: 1px solid #ea6f35;
    /* background-color: #C0A166; */
    border-radius: 30px;
    padding: 10px 20px 10px 20px; 
    margin-left: 10px;
}

.resumeee:hover{
    width: auto;
    height: auto;
    border: 1px solid #ea6f35;
    /* background-color: #FFFDF9; */
    background-color: #ea6f35;

    color: #e9dbc0;
    border-radius: 30px;
    padding: 10px 20px 10px 20px; 
}


.nav-menuu{
    width: 60%;
    float: left;
}



}

@media only screen and (min-width: 950px) {

    .navbar{
    width: 100%;
    /* max-width: 65%; */
    height: 5rem;
    display: inline-flex;
    flex-direction: row;
    margin: 0 auto 0 auto;
    font-family: 'lato';

}

    .navbar{
            font-size: 18px;
    }

    .home{
        width: 100%;
        height: 70vh;
        margin: 0 auto 0 auto;
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
    }

    #intro{
        width: 100%;
        /* max-width: 65%; */
        height: auto;
        display: flex;
        flex-direction: column;
        margin: 80px auto 100px auto;
    }

    .first{
        width: 100%;
        max-width: 100%;
        height: auto;
        display: flex;
        flex-direction: row;
        font-family: 'lato';
        font-size: 25px;
        font-weight: light;
    }

    
    .p2{
        max-width: 60%;
        display: flex;
        flex-direction: row;
        float: right;
        font-family: 'lato';
        font-weight: lighter;
    }


    .p2 h4{
         font-family: 'lato';
        font-weight: 350;
    }

    .p2 h2{
        margin-top: -10px;
        margin-left: 10px;
        margin-right: 10px;
    }


    .second{
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        margin: 10px auto 0 auto;
    }



    .part2{
        width: 100%;
        max-width: 100%;
        height: auto;
        display: flex;
        flex-direction: row;
        font-family: 'lato';
        font-weight: bold;
        font-size: 40px;
    }

    .part2 img{
        width: 70px;
        height: 70px;
        border-radius: 50%;

    }

    .third{
         width: 100%;
    max-width: 100%;
     margin: 16px auto 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    /* gap: 16px; */
    font-family: 'lato';
    font-size: 25px;
    font-weight: normal;
    }

    .third img{
        width: 30px;
        height: 30px;

    }

    .textme{
        width: 67%;
    }

    .textme h3{
        float: right;
    }


       .forth{
         width: 100%;
    max-width: 100%;
     margin: 16px auto 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    font-family: 'lato';
    font-size: 25px;
    font-weight: 350;
    }

    .firstp a{
        font-family: 'lato';
        font-weight: bolder;
        font-size: 20px;
    }

    .firstp{
        font-weight: 400;
    }

     .p3{
        padding: 8px;
        background-color: #ea6f35;
        border-radius: 10px;
        
    }

    .p3 a{
        color: #fff2d8;
    }

    .p3:hover{
        background-color: #FFFDF9;
        border: 1px solid #ea6f35;
    }

    .p3 a:hover{
        color: #000;
    }


    .forth img{
        height: 40px;
        width: auto;
    }


    #section2{
        padding-top: 8rem;
    }

    .p1{
        width: 55%;
        height: auto;
        display: flex;
        flex-direction: column;
        /* justify-content: space-evenly; */
        /* border: 1px solid red; */
    }

    .p1aa{
        /* background-color: #ea6f35; */
        margin-right: 16px;
    }

    .p1a{
        margin-left: 16px;
    }

    .p2a{
        font-family: "lato";
        font-weight: bold;
        font-size: 40px;
    }


    /* .p2{ */
        /* width: 45%;
        height: auto;
        margin-top: 1rem; */
        /* border: 1px solid rgb(167, 16, 16); */
    /* } */
     
    .p2 img{
        width: auto;
        height: 85%;
        /* float: right; */
        /* margin-right: 3rem; */
        /* margin-left: 9rem;  */
        padding-right: 1rem;
        padding-left: 7rem;
        margin-top: 2rem;
    }
    
    
    .abtext span{
        font-weight: bold;
        color: #373737;
    }
    
    .abtext h3{
        font-size: 19px;
        font-weight: normal;
    }
   
    

    
    .p1 h2{
        font-size: 35px;
    }
    
    .abtext{
        width: 80%;
        height: auto;
    }
    
    .scroll{
        width: 55%;
        height: auto;
        margin-top: 6rem;
        display: flex;
        flex-direction: row;
        float: right;
        /* border: 1px solid red; */
        /* margin-right: 3rem; */

    }

    .scroll a{
        width: 15%;
        height: 15%;
        
    }



    .scroll img{
        width: 70%;
        height: 100%;
        float: right;
        margin-top: 1rem;
      
        /* margin-right: 14rem; */
    }

    
#c1{
    position: relative;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: auto; 
    background-color: #e9dbc0;
    border: 1px solid red;
    display: flex;
    flex-direction: row;
    padding: 3rem; 

    /* position: sticky; */
    /* /* top:0; */
}

#c2{
    position: relative;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto; 
    background-color: #e9dbc0;
    border: 1px solid red;
    padding-left: 3rem; 
    padding-right: 3rem; 
    /* position: sticky; */
    /* top:0; */
}

#c3{
    position: relative;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: auto; 
    background-color: #e9dbc0;
    border: 1px solid red;
    display: flex;
    flex-direction: row;
    padding: 3rem; 
 

    /* position: sticky; */
    /* top:0; */
}

#c4{
    position: relative;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto; 
    background-color: #e9dbc0;
    border: 1px solid red;
    padding-left: 3rem; 
    padding-right: 3rem;
}

.border{
    width: 60%;
    height: 90%;
    border: 1px solid #373737;
    background-color: #373737;
    margin: 2.2% 0;
}

.border1{
    width: 60%;
    height: 90%;
    border: 1px solid #373737;
    background-color: #373737;
    margin: 2.2% 0 2.2% 40%;
}


.row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem; /* Adjust gap between items as needed */
    padding-left: 20%;
    padding-right: 20%;
    padding-top: 3rem;

}

/* .project-item {
    width: auto;
    height: 107%;
    margin: auto;
    min-height: 20%;
    text-align: center;
    margin-bottom: -20px;
    transition: 0.5s;
    box-shadow: 0 4px 8px 0 rgba(194, 193, 186, 0.2), 0 6px 20px 0 rgba(215, 209, 198, 0.19);
    background-color: #fffdf9;

    border-radius: 12px;
  } */
  
  .project-item:hover {
    cursor: pointer;
    transform: translateY(-5px);
    transition: 0.5s;
  }
  
  /* .thumb {
    width: 100%;
    margin: auto; */
    /* border-radius: 15px; */
  /* } */
  
  .thumb-txt {
    text-align: left;
    padding: 12px;
    
  }
  
  .thumb-txt h3 {
    font-weight: bold;
    font-size: 1.2rem;
    color: #ea6f35;
  }

  .sec{
    display: flex;
    flex-direction: row;
    justify-content: left;
    gap: 0.5rem;
    align-items: center;
    /* padding-bottom: 1rem; */
    margin-top: .2rem;
    margin-bottom: .2rem;
  }

  .thumb-txt h5{
    /* font-weight: bold; */
    font-size: 16px;
    font-weight: lighter;
    color: #6c6c6c;
    /* padding-bottom: .5rem; */
    width: auto;
    /* height: 2rem; */
    /* background-color: #e9dbc0; */
    /* border: 2px solid #e9dbc0; */
    border-radius: 5pc;
    /* padding: .6rem; */
  }
  
  .w2{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }



  .thumb-txt p{
    font-weight: 500;
    font-size: 17px;
    margin-bottom: 10px;
    color: #1e1e1e;
  }

  /* .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
} */

.on{
    width: 550px;
    height: 600px;
    background-color: #e9dbc0;
  border: 1px solid rgba(0, 0, 0, 0.8);
  border-radius: 2%;
  padding: 20px; 
}

  /* font-size: 30px; */
  /* text-align: center;
/* } */

.i1{
    width: 80%;
    height: auto;

}

.wrap .slider{
    font-size: 0;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
}

.slider img{
    height: 340px;
    object-fit: cover;
    width: calc(100% / 3);
    margin-left: 14px;
}

.slider img:first-child{
    margin-left: 0px;
} 

.wrap{
    max-width: 1200px;
    position: relative;
}

.bdslide{
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100vh;
    padding: 5rem 35px;
    margin-top: 10rem;
}

.wrap i{
    background-color: #ea6f35;
    height: 45px;
    width: 45px;
    text-align: center;
    line-height: 45px;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.wrap i:first-child{
    left: -23px;
}

.wrap i:last-child{
    right: -23px;
}

.im1{
    width: 60%;
    height: auto;
    margin: 5rem 5rem;
}

.im2{
    width: 100%;
    height: auto;
}

/* .rec{
    position: absolute;
    width: 100%;
    height: 40px;
    border-radius: 5px;
    background-color: #674a10;
    font-family: 'NeutralFace';
    
} */

.scroller__inner {
    width: 100%; /* Adjust image width as needed */
    height: 50px;
    margin-top: 25px;
white-space: nowrap;
position: relative;
animation: scroll 45s linear infinite; /* Adjust duration as needed */
}

@keyframes scroll {
0% {
    transform: translateX(0);
}
100% {
    transform: translateX(-100%);
}
}

footer{

    width: 100%;
    height: 15rem;
    margin-top: 8rem;
    bottom: 0;
    margin-bottom: -80px;
    /* border-top: 1px solid black; */
    font-size: 10px;
    color: #000;
    background-color: #fffdf9;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    display: block;
    border-top: 1px solid #e9dbc0;

}

.touch{
/* max-width: 65%; */
    height: auto;
    margin: 0 auto;
    justify-content: center;
    padding: 3rem 0 0 0rem;
    /* border: 1px solid red; */
    /* padding-left: rem; */
}

.touchs{
/* max-width: 65%; */
    /* width: 30%; */
    height: auto;
    justify-content: space-between;
    padding-top: 1rem;
    /* padding-right: 10rem; */
        /* border: 1px solid red; */
margin: 0 auto;

}

.touchto{
/* max-width: 65%; */
    height: auto;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}


footer h5{
    font-size: 25px;
    text-align: center;
    font-family: 'lato';

}

footer h4{
    font-size: 20px;
}



.one{
    width: 50px;
    height: 50px;
    /* padding-right: .5rem; */
    margin-right: .3rem;

}

.two{
    width: 50px;
    height: 50px;
    /* padding-right: .rem; */
    margin-right: .3rem;


}

.three{
    width: 50px;
    height: 50px;
    margin-right: .3rem;

}

.footer{
    width: 100%;
    height: auto;
}

.ftoo{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.onef{
    width: 45%;
    height: auto;
}

.twof{
    width: 55%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.onef img{
    width: 40%;
    height: auto;
}

.resume{
    width: auto;
    height: auto;
    border: 1px solid #ea6f35;
    border-radius: 30px;
    padding: 10px 20px 10px 20px; 
    margin-top: -10px;
}

.resume:hover{
    width: auto;
    height: auto;
    border: 1px solid #ea6f35;
    background-color: #ea6f35;
    color: #FFFDF9;
    border-radius: 30px;
    padding: 10px 20px 10px 20px; 
}

.resumee{
    width: auto;
    height: auto;
    border: 1px solid #ea6f35;
    background-color: #ea6f35;
    border-radius: 30px;
    padding: 10px 20px 10px 20px; 
}

.resumee:hover{
    width: auto;
    height: auto;
    border: 1px solid #ea6f35;
    background-color: #FFFDF9;

    color: #e9dbc0;
    border-radius: 30px;
    padding: 10px 20px 10px 20px; 
}

.resumeee{
    width: auto;
    height: auto;
    border: 1px solid #ea6f35;
    /* background-color: #C0A166; */
    border-radius: 30px;
    padding: 10px 20px 10px 20px; 
    margin-left: 10px;
}

.resumeee:hover{
    width: auto;
    height: auto;
    border: 1px solid #ea6f35;
    /* background-color: #FFFDF9; */
    background-color: #ea6f35;

    color: #e9dbc0;
    border-radius: 30px;
    padding: 10px 20px 10px 20px; 
}


.nav-menuu{
    width: 60%;
    float: left;
}

.activee{
    display: none;
}

.canada{
        display: none;

}

.nav-itemm img{
 width: 20px;
 height: 20px;
}
}

@media only screen and (max-width: 1200px) {
    #intro{
        width: 100%;
        /* max-width: 65%; */
        height: auto;
        display: flex;
        flex-direction: column;
        margin: 80px auto 100px auto;
    }
}

