body,html {
padding: 0;
margin: 0;
}
* {
box-sizing: border-box;
}
a {
text-decoration: none;
}
ul,ol {
list-style-type: none;
}
.section-gap{
padding:80px 0;
}
.main-tilte h2::after{
    content: '';
    width: 20%;
    height: 80%;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -15px;
    background-image: url(../img/dots.png);
    background-repeat: repeat;
    z-index: -5;
}
.main-tilte h2{
    font-size: 50px;
    font-weight:700;
    position: relative;
}
.carousel-indicators [data-bs-target]{
    width:15px;
    height: 15px;
    border-radius: 50%;
}
/* Start Navbar  */
.navbar-toggler{
    border: 0;
    display: flex;
    flex-direction: column;
}
.navbar-toggler:focus{
    box-shadow: none;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-child(1){
    transform: rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-child(2){
    display:none;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-child(3){
    transform: rotate(135deg);
    margin-top: -6px;
}
.navbar-toggler .navbar-toggler-icon{
    background-color: #000000;
    height: 2px;
    margin-bottom: 4px;
    transition: .2s all ease-in-out;
}
.navbar-toggler .navbar-toggler-icon:nth-child(2){
    margin-left:4px ;
}
.navbar{
    padding:20px;
    background-color:transparent;
    position:absolute;
    z-index: 2;
    width: 100%;
    position: fixed;
}
.navbar .navbar-brand{
    font-size: 25px;
    font-weight: 800;
}
.navbar-collapse{
    display: flex;
    justify-content: flex-end;
}
.navbar-nav a{
font-size: 18px;
font-weight: 500;
transition: color .2s ease-in-out;
}
.navbar-nav .nav-link.active{
    color: black;
    border-bottom: 1px solid  black;
}
.navbar-nav .nav-link:hover{
color: black !important; 
border-bottom: 1px solid  #000;
}
/* End Navbar  */
/* Start SEction one  */
.section-one {
    background-image: url(../img/bg.jpg);
    background-position: center ,center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 100vh;
    position: relative;
}
.section-one .overlay{
    position: absolute;
    background-color: rgba(0, 0, 0, 0.555);
    width: 100%  ;
    top: 0%;
    right: 0;
    bottom: 0;
    left: 0;
}
.main-landing{
    position: relative;
}
.section-one .landing-caption span{
    font-size: 70px;
    font-weight: 500;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}
.section-one .landing-caption h1 span{
    font-size: 50px;
    font-weight: 400;
}
.section-one .landing-caption h1{
    font-size:50px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 100;
}
.section-one .landing-caption h1::after{
    content: "|";
    animation-name: typing;
    animation-duration: 2.5s;
    animation-iteration-count: infinite;
    animation-direction: alternate-reverse;
}
@keyframes typing {
    0% {
        content: "w | ";
        }
        5%{
        content: "we|";
        }
        10% {
        content: "web|";
        }
        15% {
        content: "web d|";
        }
        20% {
        content: "web de|";
        }
        25% {
        content: "web dev|";
        }
        30% {
        content: "web deve|";
        }
        35% {
        content: "web devel|";
        }
        40% {
        content: "web develo|";
        }
        45% {
        content: "web develop|";
        }
        50% {
        content: "web developer|";
        }
        60% {
        content: "web develop|";
        }
        65% {
        content: "web develo|";
        }
        70% {
        content: "web devel|";
        }
        75% {
        content: "web deve|";
        }
        80% {
        content: "web dev";
        }
        85% {
        content: "web de|";
        }
        90% {
        content: "web|";
        }
        95% {
        content: "we|";
        }
        100% {
        content: "w|";
        }
}
.section-one .landing-icon a{
    color: #fff;
    width: 30px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0.397);
}
.section-one .landing-icon a i{
    font-size: 14px;
}
/* End Section one  */

/* Start SEction two */
.section-two .user-image{
    position: relative;
    padding-left: 30px;
}
.section-two .user-image::after{
    content: '';
    position: absolute;
    background-image: url(../img/dots.png);
    background-repeat: repeat;
    width: 80%;
    height: 80%;
    left: 0px;
    bottom: -30px;
    z-index: -1;
}
.section-two .about-info h2{
    font-size: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}
.section-two .about-info h6{
    font-size: 15px;
    font-weight: 200;
}
.section-two .about-info p{
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 20px;
}
.section-two .about-button button{
        border: 1px solid #000;
        border-radius: 6px;
        padding:8px 25px;
        margin: 20px 0;
}
.section-two .about-button .btn1{
        background-color: #222;
        color: #fff;
        transition: all .5s ease-in-out
}
.section-two .about-button .btn1:hover{
        color: #222;
        background-color: #fff;
}
.section-two .about-button .btn2{
        color: #222;
        background-color: #fff;
        transition: all .5s ease-in-out
}
.section-two .about-button .btn2:hover{
        background-color: #222;
        color: #fff;
}
/* End SEction two */

/* Start SEction three */
.services-icon{
    margin: auto;
    width: 70px;
    height: 70px;
    background-color: rgba(184, 171, 171, 0.247);
    transition: background-color .5s ease-in-out , color .5s ease-in-out;
}
.section-three .card:hover .services-icon{
    color: #fff;
    background-color:rgba(0, 0, 0, 0.63) ;
}
.services-icon i{
    font-size: 20px;
}
.section-three .card-title{
    font-size:20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
}
.section-three .card-text{
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}
/* End SEction three */

/* Start SEction Four */
.section-four .nav-pills .nav-link.active, .nav-pills .show.nav-link {
    background-color: transparent;
    color: #222;
    border-bottom: 2px solid #222;
    border-radius: 0;
}
.section-four .nav-pills .nav-link {
    color: #222;
    font-weight: bold;
    padding: 0;
    margin: 0 0.5rem;
}
.portfolio-area .nav-pills{
    margin: 40px 0;
    padding-bottom: 20px;
    font-size: 20px;
    font-weight: 100;
    font-family: 'Montserrat', sans-serif ;
}
.portfolio-area .card img{
    transition: transform .5s ease-in-out;
}
.portfolio-area .card:hover img{
transform: scale(1.2);
}
.portfolio-area .card .layer{
    transition: opacity .5s ease-in-out;
}
.portfolio-area .card:hover .layer{
    opacity:1 !important;
}
.portfolio-area .card .text h3{
    color:rgba(34, 34, 34, 0.637);
    font-size: 30px;
    font-family: 'Poppins', sans-serif;
}
.portfolio-area .card .text{
    top:150%;
    z-index: 5;
    transition: top .5s .3s ease-in-out;
    color: #222;
}
.portfolio-area .card:hover .text{
    top: 50% !important ;
}
.portfolio-area .card .text .port-icon1 , .port-icon2{
    text-align: center;
    font-size: 16px;
    color:#eee;
    width: 35px;
    height: 35px;
    background-color: rgba(0, 0, 0, 0.692);

}
/* End Section Four */
.carsousel-area{
    margin-top: 70px;
    padding-top: 50px;
}
.carousel-item  .carousel-caption{
padding-top: 0;
position: unset;
FONT-WEIGHT: 60px;
padding-bottom: 60px;
}
.carousel-item  .carousel-caption p{
font-size: 25px;
font-weight: 400;
color:rgba(34, 34, 34, 0.411)
}
.carousel-item  .carousel-caption h5{
color:#222 ;
font-size: 20px;
font-weight: 600;
margin-top: 50px;
}
.carousel-item  .carousel-caption h6{
color:#222 ;
font-size: 30px;
font-weight: 600;
}

/* Start Section  six */
.six .card-body .card-icon i{
    font-size: 50px;
}
.six .card-body h5{
    font-size: 50px;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
}
.six .card-body h6{
    font-size: 20px;
}
/* Ens Section  six */

/* Start Section  seven */
.section-seven .card .blog-image img{
    transition: transform .5s ease-in-out;
}
.section-seven .card:hover .blog-image img{
    transform: scale(1.2);
}
.section-seven .card-body h6{
    font-size: 16px;
    color: rgba(34, 34, 34, 0.589);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}
.section-seven .card-body h5{
    font-size: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    line-height: 1.3;
}
.section-seven .card-body a{
    color: #222;
    font-size: 20px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    border-bottom: 3px solid #222;
}
/* Ens Section  seven */

/* Start Section Eight  */
.section-eight .card-body .card-icon{
    width: 80px;
    height: 80px ;
    background-color: #1c1c1c31;
    transition: background-color .5s ease-in-out;
}
.section-eight .card-body .card-icon i{
    font-size: 30px;
    transition: color .5s ease-in-out;
}
.section-eight .card-body:hover .card-icon{
    background-color: #000;
}
.section-eight .card-body:hover .card-icon i{
    color: #eee;
}
.section-eight .card-body h5{
    font-size: 25px;
    font-weight: 700;
}
.section-eight .card-body h6{
    font-size: 25px;
    font-weight: 40;
}
/* End Section Eight  */

/* Start Section Nine */
.footer .main-footer h6{
    color: #eee;
    font-size:16px;
    font-weight: 200;
}
/* End Section Nine */



















