/*
=====================
CSS Normalize 
=====================
*/
html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: 16px;
    color: #000000;
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    font-weight: 600;
}

.fs-6 {
    font-size: 14px !important;
}

input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #222222;
}

input::-moz-placeholder {
    /* Firefox 19+ */
    color: #222222;
}

input:-ms-input-placeholder {
    /* IE 10+ */
    color: #222222;
}

input:-moz-placeholder {
    /* Firefox 18- */
    color: #222222;
}

input:focus {
    outline: 0;
}

a {
    text-decoration: none;
}

/*
=====================
CSS Bootstrap 
=====================
*/

:root {
    --bs-primary: #0067CC;
    --bs-secondary: #000000;
    --bs-success: #118F47;
    --bs-light: #F5F4F0;
    --bs-gray: #232833;
}

/* background color */
.bg-gray {
    background-color: var(--bs-gray) !important;
}

/* background color */

.text-primary {
    color: var(--bs-primary) !important;
}

.text-secondary {
    color: var(--bs-secondary) !important;
}

.text-success {
    color: var(--bs-success) !important;
}

.btn {
    --bs-btn-padding-x: 4rem;
    --bs-btn-padding-y: 1.2rem;
    --bs-btn-border-radius: 50px;
    --bs-btn-font-weight: 400;
    --bs-btn-font-size: 16px;
    box-shadow: 10px 10px 30px 10px rgba(1, 147, 200, 0.3);
    border: 0;
}

.btn-primary {
    background: rgb(45, 188, 240);
    background: linear-gradient(90deg, rgba(45, 188, 240, 1) 0%, rgba(0, 103, 204, 1) 100%);
}

.btn-primary {
    background: rgb(45, 188, 240);
    background: linear-gradient(90deg, rgba(45, 188, 240, 1) 0%, rgba(0, 103, 204, 1) 100%);
}

.btn-success {
    background: rgb(97, 188, 59);
    background: linear-gradient(90deg, rgba(97, 188, 59, 1) 0%, rgba(0, 153, 0, 1) 100%);
}

.btn-primary:hover {
    background: rgb(45, 240, 175);
    background: linear-gradient(90deg, rgb(45, 240, 230) 0%, rgb(0, 204, 204) 100%);
}

.btn-success:hover {
    background: rgb(59, 188, 171);
    background: linear-gradient(90deg, rgb(59, 188, 108) 0%, rgb(0, 110, 153) 100%);
}

.bg-gradient {
    background: rgb(45, 188, 240) !important;
    background: linear-gradient(90deg, rgba(45, 188, 240, 1) 0%, rgba(0, 103, 204, 1) 100%) !important;
}


/*
=====================
CSS Feature 
=====================
*/

.feature-big {
    font-size: 160px;
    line-height: 130px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    bottom: 0;
}

.feature-wrapper {
    max-width: 500px;
}

.feature-section::before {
    content: "";
    width: 2px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    position: absolute;
    top: 0;
    right: 40px;
}

/*
=====================
CSS Service 
=====================
*/
.service-box {
    padding: 50px 20px;
    box-shadow: 0px 0px 0px 3px #0067CC;
    border-radius: 10px;
    transition: all 300ms ease;
}

.service-box:hover {
    background: rgb(45, 188, 240);
    background: linear-gradient(90deg, rgba(45, 188, 240, 1) 0%, rgba(0, 103, 204, 1) 100%);
    box-shadow: none;
    transform: scale(1.02);
}

.service-box:hover .service-logo img {
    filter: brightness(0) invert(1);
}

.service-box:hover * {
    color: #fff;
}

.service-box .service-logo {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*
=====================
CSS Testimonial 
=====================
*/
.testimonial-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.testimonialSwiper {
    max-width: 992px;
    margin: auto;
}

.testimonial-box {
    position: relative;
    border-radius: 4px;
    box-shadow: 0px 0px 46px -20px rgba(0, 0, 0, 0.2);
    transition: all 300ms ease;
}

.swiper-slide-active .testimonial-box {
    box-shadow: 0px 0px 46px -20px rgba(0, 0, 0, 0.4);
}

.testimonial-box::before {
    content: url(../image/qoute-logo.png);
    position: absolute;
    right: 32px;
    top: 24px;
    opacity: 0.2;
}

.swiper-slide-active .testimonial-box::before {
    opacity: 1;
}

.testimonial-box .author-avata {
    height: 70px;
}

.testimonial-box .star img {
    height: 14px;
}

/*
=====================
CSS Footer 
=====================
*/
.footer-wrapper {
    max-width: 1084px;
    margin: auto;
}

.footer-list li {
    position: relative;
    margin: 10px;
}

.footer-list li::after {
    content: "";
    width: 1px;
    height: 15px;
    background-color: #fff;
    position: absolute;
    right: -10px;
    top: 5px;
}

.footer-list li a {
    font-family: "Open Sans", sans-serif;
    color: #fff;
}

.footer-list li a:hover {
    color: #28B0EC;
}

/*
=====================
CSS Mobile Screen 
=====================
*/
@media screen and (min-width: 992px) {
    .header-wrapper {
        padding-top: 75px !important;
    }

    .service-section {
        padding-top: 60px !important;
        padding-bottom: 145px !important;
    }

    .feature-section {
        padding-top: 120px !important;
        padding-bottom: 90px !important;
    }

    .feature-section::before {
        left: 0;
        right: 0;
        margin: auto;
    }

    .footer-wrapper {
        padding-top: 70px !important;
        padding-bottom: 90px !important;
    }
}