@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    background-color: rgb(255, 255, 255);
    min-height: 200vh;
}
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.6s;
    padding: 20px 100px;
    z-index: 100000;
}

header.sticky{
    padding: 8px 100px;
    background-color: #fff;
    box-shadow: 0px 5px 5px rgba(0,0,0,0.15);
}

header .logo{
    position: relative;
}

header ul{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
header ul li{
    position: relative;
    list-style: none;
}

header ul li a{
    position: relative;
    margin: 0 0px;
    text-decoration: none;
    color: #fff;
    letter-spacing: 2px;
    font-weight: 500px;
    transition: 0.6s;
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    transition: color 0.25ms color 0.25ms;
    transition: background-color 0.25ms background-color 0.25ms;
}

header.sticky ul li a{
    color: #000;
}

header ul li a:hover{
    color: black;
    background-color: white;
}
header.sticky ul li a:hover{
box-shadow: 0px 5px 5px rgba(0,0,0,0.15);
}

.banner{
    position: relative;
    width: 100%;
    height: 100vh;
    background: url(/img/background.png);
    background-size: cover;
    transition: 0.6s;
}

.banner-content{
    color: #fff;
    padding-top: 18%;
    display: flex;
    justify-content: center;
    font-size: 20px;

}
.banner-text{
    font-size: 40px;
    text-align: center;
}
.a-text{
    color: #ececec;
    font-weight: 400;
    font-size: 20px;
}
.b-text{
    color: #e1e1e1;
    font-weight: 200;
    font-size: medium;
}

.about{   
    height: 100vh;
    width: 100%;
    padding: 0 8%;
    background-color: #fff;
}

.about h1{
    position: relative;
    text-transform: uppercase;
    text-align: center;
    padding-top: 10%;
    margin-bottom: 60px;
}
.about h1::after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: -5px;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: rgb(0, 145, 255);
}
.about-container{
    width: 80%;
    display: block;
    margin: auto;
    padding-top: 80px;

}
.about-img{
    float: left;
    width: 45px;
}
.about-img img{
    width: 450px;
}


.about-content{
    float: right;
    width: 350px;
}

.service-container{
    height: auto;
    width: 100%;
    padding: 0 8%;
    background-color: #fff;
}
.service-container h1{
    position: relative;
    text-transform: uppercase;
    text-align: center;
    padding-top: 15%;
    margin-bottom: 60px;

}

.service-container h1::after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: -5px;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: rgb(0, 145, 255);
}
.service-container .row{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    grid-gap: 30px;
}

.service-container .row .service-item{
    
    padding: 25px 10px;
    border-radius: 5px;
    text-align: center;
    transition: transform .5s;
    
}
.service-container .row .service-item h2{
    padding-bottom: 10px;
}

.service-container .row .service-item p{
    text-align: justify;
    padding: 10px 10%;
    
}

.service-container .row .service-item img{
    width: 400px;
    border-radius: 15px;
    
}

.service-container .row .service-item button {
    padding: 5px 10px; 
    border: none;   
    background-color: rgb(1, 109, 192);
    color: white;
    border-radius: 3px;
    transition: 0.15s ;
    cursor: pointer;
}

.service-container .row .service-item button:hover {
    transform: scale(1.1);
    opacity: 0.8;
}
footer{
    background: #343434;
    padding-top: 50px;
}
.footer-container{
    width: 1140px;
    margin: auto;
    display: flex;
    justify-content: center;
}
.footer-content{
    width: 33.3%;
    color: #fff;
}
h3{
    font-size: 28px;
    margin-bottom: 15px;
    text-align: center;
}
.footer-content p{
    width:190px;
    margin: auto;
    padding: 7px;
}
.footer-content ul{
    text-align: center;
}
.list{
    padding: 0;
}
.list li{
    width: auto;
    text-align: center;
    list-style-type:none;
    padding: 7px;
    position: relative;
    
}
.list li a{
    text-decoration: none;
    color: #fff;
}
.list li::before{
    content: '';
    position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 100%;
    width: 0;
    height: 2px;
    background: #f18930;
    transition-duration: .5s;
}
.list li:hover::before{
    width: 70px;
}
.social-icons{
    text-align: center;
    padding: 0;
}
.social-icons li{
    display: inline-block;
    text-align: center;
    padding: 5px;
}
.social-icons i{
    color: white;
    font-size: 25px;
}
a{
    text-decoration: none;
}
a:hover{
    color: #f18930;
}
.social-icons i:hover{
    color: #f18930;
}
.bottom-bar{
    background: #f18930;
    text-align: center;
    padding: 10px 0;
    margin-top: 50px;
}
.bottom-bar p{
    color: #343434;
    margin: 0;
    font-size: 16px;
    padding: 7px;
}

.copyright{
    margin: 0;
    text-align: center;
    padding: 30px 0px;
    color: #fff;
    background-color: #2a2a2a;
    font-size: 12px;
}