@import url("https://fonts.googleapis.com/css2?family=Poppins:ital@0;1&display=swap");
@import"https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css";
html{
    scroll-behavior:smooth;
}
body{
margin:0;
font-family: 'Poppins', sans-serif;
}
*{
box-sizing:border-box;
margin:0;
padding:0;
}
.container{
max-width:1140px;
margin:auto;
}
.row{
display:flex;
flex-wrap:wrap;
}
.section-title{
flex:0 0 100%;
max-width:100%;
margin-bottom:40px;
}
.section-title h1{
display:inline-block;
font-size:35px;
text-transform:uppercase;
font-weight:700;
color:#000000;
margin:0 0 10px;
position:relative;
}
.section-title h1::before{
content:'';
left:0;
bottom:-5px;
height:2px;
background-color:#febd01;
position:absolute;
right:30%;

}
.text-center{
    text-align:center !important;
}
.text-left{
    text-align:left !important;
}
.text-right{
    text-align:right !important;
}
/*header*/
header{
position:absolute;
left:0;
right:0;
border-bottom:1px solid #423940;
padding:0 15px;
z-index:11;
}
header.fixed{
    background-color:#ffffff;
    position:fixed;
    border-color:#eeeeee;
    animation:fixHeader .5s ease;
    z-index:11;
}
@keyframes fixHeader{
    0%{
        transform:translateY(-100%);
    }
    100%{
        transform:translateY(-%)
    }
}
header .row{
justify-content:space-between;
align-items:center;
}
header .brand-name a{
text-decoration:none;
font-size:24px;
font-weight:600;
color:#ffffff;
text-transform:uppercase;
position:relative;
}
header.fixed .brand-name a{
    color:#000000;
}
header .brand-name a::before{
content:'';
height:2px;
background-color:#ffffff;
width:100%;
position:absolute;
left:0;
bottom:0;
}
header .navbar ul{
list-style-type:none;
margin:0;
padding:0
}
header .navbar ul li{
display:inline-block;
margin-left:38px;
}
header .navbar ul li a{
text-decoration:none;
font-size:15px;
line-height:72px;
color:#ffffff;
font-weight:600;
position:relative;
display:block;
}
header.fixed .navbar ul li a{
    color:#000000;
}
header .navbar ul li a::before{
content:'';
height:2px;
background-color:#ffffff;
width:0%;
position:absolute;
right:0;
bottom:-1px;
transition:all 0.5s ease;
}
header .navbar ul li a::before{
    background-color:#febd01;
}
header .navbar ul li a:hover::before{
width:100%;
left:0;
}
header .navbar ul li a.active::before{
width:100%;
left:0;
}
.home{
min-height:100vh;
background-image:url(./Assets/images/brand1.jpg);
background-size:cover;
transform:rotateY(180deg);
background-position:center;
padding:15px;
}
.home .fullscreen{
min-height:100vh;
}
.home .home-content{
flex:0 0 100%;
max-width:100%;
display:flex;
flex-wrap:wrap;
align-items:center;
transform:rotateY(-180deg);
}
.home .home-content .block{
flex:0 0 75%;
max-width:75%;
padding-left:35px;
border-left:5px solid #ffffff;
margin-top:50px;
}
.home .home-content .block h6{
font-size:18px;
color:#fff;
margin:0;
padding:0;
font-weight:500;
}
.home .home-content .block h1{
font-size:70px;
color:#fff;
font-weight:600;
margin:0;
padding:0;
}
.home .home-content .block h3{
font-size:25px;
color:#fff;
margin:0;
padding:0;
font-weight:500;
}
.home .home-content .block .CV-btn{
padding-top:20px;
}
.home .home-content .block .CV-btn a{
text-decoration:none;
border-radius:4px;
color:#ffffff;
padding:12px 25px;
display:inline-block;
border:1px solid #ffffff;
font-size:14px;
font-weight:600;
text-transform:uppercase;
transition:all 0.5s ease;
background-color:transparent;
}
.home .home-content .block .CV-btn a:hover{
background-color:#ffffff;
color:#000000;
}
/*About me*/
.about-me{
padding:10px 15px;
background-color:#ffffff;
}
/*.section-title{
flex:0 0 100%;
max-width:100%;
margin-bottom:40px;
}
.section-title h1{
display:inline-block;
font-size:35px;
text-transform:uppercase;
font-weight:700;
color:#000000;
margin:0 0 10px;
position:relative;
}
.section-title h1::before{
content:'';
left:0;
bottom:0;
height:2px;
background-color:#febd01;
position:absolute;
right:30%;
}*/
.text-uppercase{
text-transform:uppercase!important;
}
.about-me .section-title p.small{
display:block;
font-size:14px;
color:#838383;
font-weight:400;
letter-spacing:2px;
}
.about-me .about-content{
    
}
.about-me .about-content .img{
flex:0 0 33.33%;
max-width:33.33%;
}
.about-me .about-content .img img{
    width:100%;
    display:block;
    -webkit-transform:rotateY(180deg);
    transform:rotateY(180deg);
}
.about-me .about-content .text{
    flex:0 0 66.66%;
    max-width:66.66%;
    padding-left:100px;
}
.about-me .about-content .text h4{
    font-size:25px;
    font-weight:600;
    margin:0 0 5px;
    color:#000000;
}
.about-me .about-content .text h6{
    font-size:16px;
    font-weight:500;
    margin:0 0 15px;
    color:#000000;
}
.about-me .about-content .text h6 span{
    color:#febd01;
}
.about-me .about-content .text p{
    font-size:15px;
    font-weight:400;
    line-height:24px;
    color:#838383;
    margin:0 0 20px;
}
.about-me .about-content .text .info{
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
}
.about-me .about-content .text .info .list{
    flex:0 0 calc(50% - 15px);
    max-width:calc(50% - 15px);
    margin-top:10px;
    display:flex;
    flex-wrap:wrap;
    border-bottom:1px solid #dee2e6;
    padding-bottom:10px;
}
.about-me .about-content .text .info .list label{
    padding-right:10px;
    color:#000000;
    font-weight:600;
    font-size:15px;
}
.about-me .about-content .text .info .list p{
    margin:0;
}
.about-me .about-content .text .social-links{
    
    padding-top:30px;
}
.about-me .about-content .text .social-links a{
    height:30px;
    width:30px;
    background-color:#000000;
    border-radius:3px;
    display:inline-block;
    border:1px solid #000000;
    line-height:28px;
    text-align:center;
    margin:0 1px;
    -webkit-transition:all 0.5s ease;
    transition:all 0.5s ease;
}
.about-me .about-content .text .social-links a:hover{
    background-color:transparent;
}
.about-me .about-content .text .social-links a .fa{
    color:#ffffff;
    font-size:12px;
    -webkit-transition:all 0.5s ease;
    transition:all 0.5s ease;
}
.about-me .about-content .text .social-links a:hover .fa{
    color:#000000;
}
.services{
    background-color:#f5f8fd;
    padding:100px 15px 70px;
    margin-top:100px;
}
.services .section-title h1::before{
    left:30%;
    
}
.services .service-content{
    flex:0 0 100%;
    max-width:100%;
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
}
.services .service-content .box{
    flex:0 0 calc(33.33% - 20px);
    max-width:calc(33.33% - 20px);
    margin-bottom:30px;
    margin-left:20px;
    background-color:#ffffff;
    padding:30px;
    border:1px solid #eeeeee;
    text-align:center;
    position:relative;
    border-radius:5px;
}
.services .service-content .box::before{
    content:'';
    height:2px;
    background-color:#febd01;
    position:absolute;
    bottom:0px;
    width:50px;
    left:0;
    right:0;
    margin:auto;
    transition:all 0.5s ease;
}
.services .service-content .box:hover::before{
    width:100%;
}
.services .service-content .box .icon{
    height:60px;
    width:60px;
    background-color:#febd01;
    margin:15px auto 20px;
    border-radius:50%;
    text-align:center;
    
}
.services .service-content .box .icon .fa{
    font-size:25px;
    line-height:60px;
    color:#ffffff;
}
.services .service-content .box h5{
    font-size:16px;
    font-weight:600;
    color:#000000;
}
.services .service-content .box p{
    font-size:15px;
    font-weight:400;
    line-height:24px;
    color:#838383;
    margin:10px 0 10px;
}
/*skills*/
.skills{
    padding:100px 15px;
    background-color:#ffffff;
}
.skills .skills-content{
    flex:0 0 50%;
    max-width:50%;
    padding-right:40px;
}
.skills .image{
    flex:0 0 50%;
    max-width:50%;
}
.align-items-center{
    align-items:center;
}
.skills .image img{
    width:100%;
    display:block;
    height:450px;
}
.skills .skills-content .section-title p{
     font-size:15px;
    font-weight:400;
    line-height:24px;
    color:#838383;
    margin:15px 0 0;
}
.skills .skills-content .skill-box{
    flex:0 0100%;
    max-width:100%;
    margin-bottom:30px;
}
.skills .skills-content .skill-box h6{
    font-size:16px;
    font-weight:500;
    color:#000000;
    margin:0 0 8px;
}
.skills .skills-content .skill-box .skill-bar{
    height:5px;
    background-color:#eeeeee;
    position:relative;
}
.skills .skills-content .skill-box .skill-bar .skill-bar-in{
    background-color:#fedb01;
    position:absolute;
    left:0;
    top:0;
    height:100%;
}
.skills .skills-content .skill-box .skill-bar .skill-bar-in span{
    color:#838383;
    font-size:16px;
    font-weight:400;
    position:absolute;
    right:0;
    top:-30px;
}
/*portfolio*/
.portfolio{
    background-color:#f5f8fd;
    padding:100px 15px;
}
.portfolio .section-title h1::before{
    left:30%;
    
}
.portfolio .filter-buttons {
    flex:0 0 100%;
    max-width:100%;
}
.portfolio .filter-buttons ul{
    list-style-type:none;
    text-align:center;
    padding:0;
}
.portfolio .filter-buttons ul li{
    display:inline-block;
    margin:0px 8px;
    color:#000000;
    font-weight:500;
    font-size:16px;
    text-transform:uppercase;
    cursor:pointer;
    padding-bottom:0px;
}
.portfolio .filter-buttons ul li.active{
    color:#febd01;
    border-bottom:2px solid #febd01;
}
.portfolio .filter-buttons{
    margin-bottom:25px;
}
.portfolio .portfolio-gallery{
    flex:0 0 100%;
    max-width:100%;
    display:flex;
    flex-wrap:wrap;
}
.portfolio .portfolio-gallery .item{
    flex:0 0 33.33%;
    max-width:33.33%;
    padding:8px;
    position:relative;
}
.portfolio .portfolio-gallery .item .inner{
    position:relative;
}
.portfolio .portfolio-gallery .item img{
    width:100%;
    display:block;
}
.portfolio .portfolio-gallery .item .overlay{
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background-color:rgba(0,0,0,0.6);
    z-index:10;
    display:flex;
    flex-wrap:nowrap;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    opacity:0;
    transition:all 0.5s ease;
}
.portfolio .portfolio-gallery .item:hover .overlay{
    opacity:1;
}
.portfolio .portfolio-gallery .item .overlay .fa{
    height:50px;
    width:50px;
    background-color:#febd01;
    color:#ffffff;
    display:inline-block;
    text-align:center;
    line-height:50px;
    border-radius:50%;
    cursor:pointer;
    /*animation:galleryIcon .8s ease;*/
}
.portfolio .portfolio-gallery .item:hover .overlay .fa{
    -webkit-animation:galleryIcon .8s ease;
    animation:galleryIcon .8s ease;
}
@keyframes galleryIcon{
    0%{
        transform:translateY(-20px);
        opacity:0;
    }
    100%{
        transform:translateY(0);
        opacity:1;
    }
}
.portfolio .portfolio-gallery .item .overlay h4{
    font-size:25px;
    color:#ffffff;
    font-weight:600;
    margin-top:15px;
    /*animation:galleryText .8s ease;*/
}
.portfolio .portfolio-gallery .item:hover .overlay h4{
    -webkit-animation:galleryText .8s ease;
    animation:galleryText .8s ease;
}
@keyframes galleryText{
    0%{
        transform:translateY(20px);
        opacity:0;
    }
    100%{
        transform:translateY(0);
        opacity:1;
    }
}
/*.lightbox{
    position:fixed;
    left:0;
    top:0;
    right:0;
    bottom:0;
    z-index:100;
    background-color:rgba(0,0,0,0.6);
    display:flex;
    justify-content:center;
    align-items:center;
}
.lightbox .show{
    display:flex;
}
.lightbox .hide{
    display:none;
}
.lightbox .close-lightbox{
    height:35px;
    width:35px;
    background-color:#ffffff;
    color:#febd01;
    text-align:center;
    line-height:35px;
    position:absolute;
    right:10px;
    top:10px;
    cursor:pointer;
    border-radius:50%;
    z-index:101;
}
.lightbox img{
    max-width:90%;
    max-height:80%;
    display:block;
}*/
.message-text{
    background-color:#0c0c17;
    padding:40px 15px;
}
.message-text .text{
    flex:0 0 66.66%;
    max-width:66.66%;
}
.message-text .text h1{
    font-size:25px;
    color:#ffffff;
    font-weight:700;
    margin:0;
    padding:0;
    line-height:35px;
}
.message-text .button{
    flex:0 0 33.33%;
    max-width:33.33%;
    text-align:right;
}
.message-text .button a{
text-decoration:none;
border-radius:4px;
color:#ffffff;
padding:12px 25px;
display:inline-block;
border:1px solid #ffffff;
font-size:14px;
font-weight:600;
text-transform:uppercase;
transition:all 0.5s ease;
background-color:transparent;
}
.message-text .button a:hover{
background-color:#ffffff;
color:#000000;
}
/*testimonials*/
.testimonials{
    padding:100px 0;
    background-color:#f5f8fd;
}
.testimonials .section-title h1::before{
    left:30%;
}
.testimonials .slide .img img{
    width:60px;
    border:1.5px solid #000000;
    background-color:#838383;
    border-radius:50%;
}
.testimonials .testimonials-content{
    position:relative;
    overflow:hidden;
}
.testimonials .testimonials-content .testi-slider .slide{
    background-color:#ffffff;
    margin-bottom:15px;
    border:1px solid #eeeeee;
    padding:40px 20px;
    border-radius:4px;
    display:flex;
    flex-wrap:nowrap;
    float:left;
    width:100%;
}
.testimonials .testimonials-content .testi-slider .slide .img{
    flex:0 0 128px;
    max-width:128px;
}
.testimonials .testimonials-content .testi-slider .slide p{
      font-size:15px;
    font-weight:400;
    line-height:24px;
    color:#838383;
    margin:0px;
}
.testimonials .testimonials-content .testi-slider{
    float:left;
    transition:margin 1s ease;
}
.testimonials .testimonials-content .testi-slider .slide h6{
      font-size:16px;
    font-weight:600;
    color:#000000;
    margin:10px 0 5px;
}
.testimonials .testimonials-content .slide-controls{
    float:left;
    width:100%;
    text-align:center;
}
.testimonials .testimonials-content .slide-controls div{
    height:15px;
    width:15px;
    background-color:#ffffff;
    border-radius:50%;
    border:1px solid #febd01;
    display:inline-block;
    margin:10px 6px;
    cursor:pointer;
}
.testimonials .testimonials-content .slide-controls div.active{
    background-color:#febd01;
}
/*blogs*/
.blogs{
    padding:100px 15px;
}
.blogs .section-title h1::before{
    left:30%;
}
.blogs .blogs-content{
    flex:0 0 100%;
    max-width:100%;
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
}
.blogs .blogs-content .box{
   flex:0 0 calc(33.33% - 25px);
   max-width:calc(33.33% - 25px);
}
.blogs .blogs-content .box .image{
    overflow:hidden;
}
.blogs .blogs-content .box .image img{
    width:100%;
    display:block;
    height:200px;
    transition:all 0.5s ease;
}
.blogs .blogs-content .box:hover .image img{
    transform:scale(1.1);
}
.blogs .blogs-content .box .info{
    padding:10px 0;
}
.blogs .blogs-content .box .info span{
    font-size:12px;
    color:#838383;
    display:inline-block;
}
.blogs .blogs-content .box .info span:nth-child(2){
    border-left:1px solid #dddddd;
    padding-left:8px;
    margin-left:10px;
}
.blogs .blogs-content .box h3{
    font-size:22px;
    font-weight:600;
    color:#000000;
    margin:0 0 10px;
    padding:0;
}
.blogs .blogs-content .box p{
    font-size:15px;
    font-weight:400;
    line-height:24px;
    color:#838383;
    margin:0 0 10px;
}
.blogs .blogs-content .box a{
    font-size:14px;
    font-weight:500;
    text-transform:uppercase;
    color:#febd01;
    text-decoration:none;
    display:inline-block;
    border-bottom:2px solid #febd01;
    -webkit-transition:all 0.5s ease;
    transition:all 0.5s ease;
}
.blogs .blogs-content .box a:hover{
    color:#000000;
    border-color:#000000;
}
/*contact us*/
.contact-us .section-title h1::before{
    left:30%;
}
.contact-us{
    padding:100px 15px;
    background-color:#f5f8fd;
}
.contact-us .contact-form{
    background-color:#ffffff;
    flex:0 0 100%;
    max-width:100%;
    padding:50px;
    border:1px solid #eeeeee;
}
.contact-us .contact-form .text{
    flex:0 0 100%;
    max-width:100%;
    padding-bottom:20px;
}
.contact-us .contact-form .text h2{
    font-size:26px;
    font-weight:600;
    color:#000000;
    margin:0;
    padding:0;
}
.contact-us .contact-form .text p{
    font-size:15px;
    font-weight:400;
    line-height:24px;
    color:#838383;
    margin:0px;
}
.contact-us .contact-form .space-between{
    justify-content:space-between;
}
.contact-us .contact-form .col-6{
    flex:0 0 calc(50% - 15px);
    max-width:calc(50% - 15px);
}
.contact-us .contact-form .col-12{
    flex:0 0 100%;
    max-width:100%;
}
.contact-us .contact-form .form-control{
    width:100%;
    height:45px;
    margin-bottom:15px;
    border:1px solid #ced4da;
    padding:6px 12px;
    font-size:14px;
    font-weight:400;
}
.contact-us .contact-form textarea.form-control{
    height:140px;
}
.contact-us .contact-form .form-control::placeholder{
    color:#838383;
}
.contact-us .contact-form .button {
    flex:0 0 100%;
    max-width:100%;
}
.contact-us .contact-form .button a{
text-decoration:none;
border-radius:4px;
color:#ffffff;
padding:12px 25px;
font-size:14px;
font-weight:600;
text-transform:uppercase;
transition:all 0.5s ease;
background-color:#fedb01;
box-shadow:0px 10px 15px #e8e8e8;
border:none;
}
.contact-us .contact-form .button a:hover{
background-color:#000000;
color:#ffffff;
}
/*footer*/
footer{
    padding:70px 15px;
    background-color:#0c0c17;
    
}
footer .logo{
    flex:0 0 100%;
    max-width:100%;
    text-align:center;
    font-size:45px;
    color:#ffffff;
    font-weight:900;
}
footer .social{
    flex:0 0 100%;
    max-width:100%;
    text-align:center;
    padding-top:15px;
}
footer .social a{
    color:#999999;
    text-decoration:none;
    display:inline-block;
    margin:0px 12px;
    transition:all 0.5s ease;

}
footer .social a:hover{
    color:#ffffff;
}
/*copyright*/
.copyright{
    background-color:#0c0c17;
    border-top:1px solid #1d1d27;
    padding:15px;
}
.copyright p{
    color:#838383;
    margin:0;
    text-align:center;
    font-weight:400;
    font-size:15px;
}
.ham-burger .fa{
    font-size:20px;
    background-color:#ffffff;
    height:30px;
    width:35px;
    color:#000000;
    line-height:30px;
    cursor:pointer;
    text-align:center;
    border-radius:3px;
    display:none;
    border:1px solid #eeeeee;
}

@media(max-width:991px){
    .home .home-content .block h1{
        font-size:50px;
    }
}
@media(max-width:767px){
     .home .home-content .block h1{
        font-size:40px;
    }
    .home .home-content .block h3{
        font-size:25px;
    }
    header{
        padding:15px;
        position:fixed;
        background-color:#ffffff;
        border:none;
        border-bottom:1px solid #eeeeee;
    }
    header .brand-name a{
        color:#000000;
    }
    .ham-burger .fa{
        display:inline-block;
    }
    .navbar{
        position:absolute;
        background-color:#ffffff;
        width:100%;
        left:0px;
        top:60px;
        padding:15px;
        border-top:1px solid #eeeeee;
        display:none;
         border-bottom:1px solid #eeeeee;
    }
    .navbar.show{
        display:block;
    }
    header .navbar ul li{
        display:block;
        margin-left:0;
    }
    header .navbar ul li a{
        line-height:42px;
        color:#000000;

    }
    header .brand-name a::before{
        background-color:#febd01;
    }
    .about-me .about-content .text{
    flex:0 0 100%;
    max-width:100%;
    padding-left:0px;
    padding-top:30px;
}
.about-me .about-content .img{
    flex:0 0 100%;
    max-width:100%;
}
.services .service-content .box{
    flex:0 0 100%;
    max-width:100%;
    background-color:#ffffff;
    padding:30px;
}
.skills .skills-content{
    flex:0 0 100%;
    max-width:100%;
    padding-right:0px;
}
.skills .image{
    flex:0 0 100%;
    max-width:100%;
}
.portfolio .portfolio-gallery .item{
    flex:0 0 50%;
    max-width:50%;
    position:relative;
    padding:8px;
}
.message-text .text{
    flex:0 0 100%;
    max-width:100%;
}
.message-text .button{
    flex:0 0 100%;
    max-width:100%;
    text-align:left;
    padding-top:20px;
}
.blogs .blogs-content .box{
    flex:0 0 100%;
    max-width:100%;
    margin-bottom:40px;
}
.contact-us .contact-form{
    padding:20px;
}
.contact-us .contact-form .col-6{
    flex:0 0 100%;
    max-width:100%;
}
}

@media(max-width:500px){
     .home .home-content .block h1{
        font-size:30px;
    }
    .home .home-content .block h3{
        font-size:20px;
    }
    .home .home-content .block{
        padding-left:20px;
    }
    .portfolio .portfolio-gallery .item{
    flex:0 0 100%;
    max-width:100%;
    }
    .about-me .about-content .text .info .list p{
        flex:0 0 100%;
    }
    /*.testimonials .testimonials-content .testi-slider .slide .img{
    flex:0 0 100%;
    max-width:100%;
}*/

    }