/* global */
html {
    scroll-behavior: smooth;
}

body {
    background-color: rgb(90, 90, 90);
    color: white;
}

body h5 {
    line-height: 1.6;
    font-size: 25px;
}

body h2 {
    font-size: 60px;
    color: #3abcb0;
    text-shadow: 0px 0px 10px #3abcb0, 2px 2px 10px #3abcb0;
    font-weight: 800;
}

body h1 {
    font-size: 80px;
    font-weight: 900;
}

input::file-selector-button {
    color: white;
    border-radius: 5px;
    background-image: linear-gradient(45deg, #3abcb0, #3abcb0);
    border: transparent;
    padding: 5px;
}

.ach-p {
    font-size: 25px;
}

.home-page-img {
    height: 600px;
}

.who-page-img {
    height: 500px;
}

/* scrollbar */
/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #3abcb0 #CCCCCC;
}

/* Chrome, Edge and Safari */
*::-webkit-scrollbar {
    width: 15px;
    width: 15px;
}

*::-webkit-scrollbar-track {
    border-radius: 20px;
    background-color: #CCCCCC;
}

*::-webkit-scrollbar-track:hover {
    background-color: #BBBBBB;
}

*::-webkit-scrollbar-track:active {
    background-color: #AAAAAA;
}

*::-webkit-scrollbar-thumb {
    border-radius: 20px;
    background-color: #3abcb0;
}

*::-webkit-scrollbar-thumb:hover {
    background-color: rgb(47, 198, 183);
}

*::-webkit-scrollbar-thumb:active {
    background-color: rgb(24, 220, 201);
}

/*Html elemenets*/
.service-link {
    text-decoration: none;
}

.service-link:link {
    text-decoration: none;
}

.service-link:visited {
    text-decoration: none;
}

.service-link:active {
    text-decoration: none;
}

hr {
    border: 0;
    height: 0;
    box-shadow: 0 0 10px 2px black;
}

hr:after {
    content: "\00a0";
    /* Prevent margin collapse */
}

/* services */
.service-row {
    border-radius: 40px;
    transition: ease-out 0.5s;
}

.service-row:hover {
    color: white;
    background-color: #3abcb0;
    transition: ease-in 0.5s;
}

/* card */
.my-card {

    width: fit-content;
    height: fit-content;
    text-align: center;
    transition: ease-out 0.3s;
    margin-top: 20px;
    margin-bottom: 20px;
}

.my-card:hover {
    color: white;
    background-color: #616161;
    transition: ease-in 0.3s;
}

.card-img {
    width: fit-content;
    height: 500px;
}

/* contact us */
.form-ele {
    backdrop-filter: blur(2px) saturate(100%);
    -webkit-backdrop-filter: blur(2px) saturate(100%);
    background-color: rgba(0, 0, 140, 0.4);
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 140, 0.125);
    color: black;
    width: 100%;
    padding: 10px;
}

.form-ele::placeholder {
    color: white;
}

.form-ele:focus::placeholder {
    color: rgba(240, 240, 240, 0.5);
}

.form-ele:focus {
    backdrop-filter: blur(2px) saturate(100%);
    -webkit-backdrop-filter: blur(2px) saturate(100%);
    background-color: rgba(0, 0, 140, 0.4);
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 140, 0.125);
    color: white;
}

.send {
    color: white;
    background-color: rgba(0, 0, 140, 0.4);
    transition: ease-in 0.3s;
}

.send:hover {
    background-color: rgba(0, 0, 140, 0.7);
    transition: ease-out 0.3s;
}

/* footer */
.contact-us {
    filter: grayscale(0%);
    filter: rgb(177, 177, 177);
    -webkit-filter: grayscale(0%);
    filter: none;
    transition: 0.5s ease;
}

.contact-us:hover {
    -webkit-transform: scale(1.4);
    -ms-transform: scale(1.4);
    transform: scale(1.4);
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    transition: all 0.5s ease;
}

.footer-boody {
    backdrop-filter: blur(2px) saturate(100%);
    background-color: rgba(30, 30, 30, 0.7);
}

.footer-ele {
    backdrop-filter: blur(2px) saturate(100%);
    -webkit-backdrop-filter: blur(2px) saturate(100%);
    background-color: rgba(80, 80, 80, 0.4);
}

/* News slider */
.slide-li {
    margin-left: 100px;
    width: 100%;
    font-size: 20px;
}

.slideText {
    display: block;
    width: 100%;
    height: 50px;
    background: #AAAAAA;
    color: #fff;
    overflow: hidden;
    overflow-x: hidden;
}

.slidingtext {
    padding: 5px;
    animation-name: news-slider;
    animation-duration: 50s;
    animation-iteration-count: infinite;
    transition: all 10s ease;
}

@keyframes news-slider {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(5000px);
    }
}

/* responsive */
@media screen and (max-width:700px) {
    body h2 {
        font-size: 30px;
    }

    body h1 {
        font-size: 40px;
    }

    body h3 {
        font-size: 12px;
    }

    body h5 {
        font-size: 12px;
    }

    .ach-p {
        font-size: 7px;
    }

    .home-page-img {
        height: 200px;
    }

    .who-page-img {
        height: 200px;
    }

    .card-img {
        height: 250px;
    }

    .my-card {
        width: min-content;
        height: max-content;
    }

    .iconify {
        height: 20px;
    }

    .card-footer {
        font-size: 10px;
    }

    .apply-text {
        font-size: 30px;
    }

    .section-title {
        font-size: 40px;
    }
}