@import url('https://fonts.googleapis.com/css?family=Poppins');
html,
body {
    position: relative;
    height: 100%;
}

body {
    background-color: #0d0d0d;
    background-image: url("../img/bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    font-family: "Poppins", sans-serif;
    height: 100vh;
}

.page h1 {
    color: white;
    padding: 10px;
    border-radius: 10px;
}

.swiper {
    width: 50%;
    height: 50%;
    border-radius: 5px;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

img{
    width: 100%;
    height: 100%;
    background-size: cover;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

:root{
    --color1: #e96521;
    --color2: #f78f40;
}
.serviceBox{
    color: var(--color1);
    font-family: 'Poppins', sans-serif;
    text-align: center;
    padding: 2px 10px 15px;
    position: relative;
    z-index: 1;
    transform: translateX(-50%);
    left: 50%;
}
.serviceBox:before{
    content: "";
    background-color: #fff;
    border-radius: 5px;
    position: absolute;
    left: 0;
    top: 22px;
    right: 0;
    bottom: 7px;
    z-index: -1;
}
.serviceBox .service-icon{
    background: #fff;
    font-size: 24px;
    line-height: 40px;
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
    position: relative;
}
.serviceBox .service-icon:before,
.serviceBox .service-icon:after{
    content: "";
    background: linear-gradient(to top,transparent 49%,var(--color1) 50%);
    border-radius: 50%;
    position: absolute;
    top: -8px;
    left: -8px;
    bottom: -8px;
    right: -8px;
    z-index: -1;
}
.serviceBox .title{
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 2px;
}
.serviceBox .description{
    color:#666;
    font-size: 13px;
    line-height: 23px;
}

h1 {
    font-size: 40px;
}

@media only screen and (max-width: 1199px){
    .serviceBox:before{
        border-radius: 0;
    }
}


@media only screen and (max-width: 600px) {
    .swiper {
        width: 90%;
        height: unset;
    }
    .card {
        width: 90%;
    }
    h1 {
        font-size: 16px;
    }
}
