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

html {
    scroll-behavior: smooth;
}

body {
    background: #141414;
    color: #ffff;
}

.onebg {
    background-image: url(img/servicesbg2.jpg);
    background-size: cover;
    background-position: center;
}

#header {
    /* background-image: url(img/learnbg.jpg); */
    background-size: cover;
    background-position: center;
    width: 100%;
    height: fit-content;
    margin-bottom: 30px;
}

.header-top {
    display: flex;
    width: 100%;
    height: 10%;
}

.header-top h3 {
    margin: 40px 0 0 40px;
    width: 148px;
    transition: 0.3s;
}

.header-top h3:hover {
    transform: translateY(-10px);
}

.header-top h3:active {
    transform: translateY(0px);
}

.header-top h3 a {
    text-decoration: none;
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    /* border: 2px solid #ff0000; */
    padding: 15px 40px;
    background-color: #353535;
    border-radius: 30px;
    box-shadow: 0px 3px 7px #000000;
    transition: 0.3s ease-out;
}

.header-top h3 a:hover {
    background-color: #FF4C00;
    box-shadow: 0px 10px 3px #000000;
}

.header-top h3 a:active {
    box-shadow: 0px 0px 0px #0000;
}

.container {
    padding: 40px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.explain {
    width: 100%;
    height: fit-content;
    padding: 50px 70px;
    background: #353535;
    border-radius: 50px;
    background-color: rgba(53, 53, 53, 0.5);
    box-shadow: 10px 10px 15px 4px rgba(0, 0, 0, 0.5);
}

.explain img {
    width: 100%;
    max-width: 500px;
    float: left;
    margin-right: 30px;
}

.explain h1 {
    font-size: 50px;
}

.explain p {
    font-size: 16px;
    color: #b9b9b9;
    text-align: justify;
}


/* ------- Tools ------- */

#tool {
    width: 100%;
    height: fit-content ;
}

#tool h1 {
    font-size: 50px;
    text-align: center;
    margin-bottom: 60px;
}

#tool h1 span {
    color: #FF4C00;
}

.tool-content {
    padding: 0 40px;
    display: flex;
    flex-direction: column;
}

.tool-content div {
    margin-bottom: 50px;
}

.tool-content div img {
    float: left;
    width: 100%;
    max-width: 400px;
    margin-right: 90px;
    margin-bottom: 40px;
}

.tool-content div h2 {
    font-size: 30px;
    margin-bottom: 30px;
    font-style: italic;
}

.tool-content div h2 span {
    color: #FF4C00;
    font-size: 40px;
    font-style: normal;
}

.tool-content div p {
    color: #b9b9b9;
    text-align: justify;
    font-size: larger;
}


/* ----------------- Tablet Mode ----------------- */
@media screen and (max-width: 1087px){

    .explain {
        padding: 50px 40px;
    }

    .explain h1 {
        font-size: 30px;
    }

    .explain p {
        font-size: 14px;
    }
    

    /* ------- Tool ------- */

    #tool h1 {
        font-size: 37px;
    }

    #tool img {
        max-width: 350px;
    }

    #tool p {
        font-size: 14px;
    }


}




