* {
    padding: 0%;
    margin: 0%;
    box-sizing: border-box;
}



.section-2 {
    background: #2d2d2d;
}

.section-2-container {
    min-height: 270px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    padding-left: 3%;
}

.section-2 .section-2-container h5 {
    border-left: 4px solid #fcbf00;
    padding-left: 1.5%;
}



.section-3 li {
    padding: 0% 1%;
    opacity: 0.4;
    font-size: 18px;
    cursor: pointer;
}

.section-3 {
    font-family: sans-serif;
    font-weight: 600;
    font-size: 17px;
}

.section-3 li.active {
    opacity: 1;
}

.section-3 ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    grid-row-gap: 8px;
}

.section-4 .para-container {
    display: grid;
    grid-row-gap: 12px;
}

.section-4 .para-container h5 {
    color: #fcbf00;
    font-size: 16px;
}

.section-4 .para-container p {
    text-align: justify;
}

.section-4 .para-container .main-title {
    color: #ec2028 !important;
    font-size: 15px;
}

.section-4 .main img {
    height: 35vh;
    width: 100%;
}

.section-4 .container .main {
    display: grid;
    grid-template-columns: 46% 46%;
    grid-column-gap: 8%;
    padding: 2% 6%;
}

.section-4 button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid white;
    padding: 0px;
    font-weight: 600;
    background: #fcbf00;
    /* box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2); */
}

.section-4 button:after {
    content: " ";
    bottom: 0;
    width: 100%;
    height: 0%;
    background: #3d3d3d;
    position: absolute;
    transition: all 0.4s ease-in-out;
}

.section-4 button:hover::after {
    top: auto;
    bottom: 0;
    height: 100%;
}

.section-4 button span:hover {
    color: #fff;
}

.section-4 button span {
    text-align: center;
    text-decoration: none;
    width: 100%;
    padding: 3px 6px;
    color: #fff;
    font-size: medium;
    letter-spacing: 0.1em;
    z-index: 20;
    transition: all 0.3s ease-in-out;
}

.section-4 .btn-container {
    place-self: end;
}

footer{
    opacity: 1 ;
}

@media (max-width: 1400px) {
    .section-4 .container .main {
        padding: 2% 2%;
    }
}


@media (max-width: 1200px) {

    .section-4 .main img {
        height: 30vh;
        width: 100%;
    }

    .section-3 ul {
        grid-row-gap: 4px;
    }
}


@media (max-width: 992px) {
    .section-4 .container .main {
        display: block;
    }

    .section-4 .container .main {
        padding: 2% 4%;
    }

    .section-4 .main img {
        height: 48vh;
        width: 100%;
    }

    .section-4 .para-container .sub-title {
        font-size: 15px;
    }
}


@media (max-width: 768px) {
    .section-4 .main img {
        height: 35vh;
        width: 100%;
    }

    .section-4 .container {
        grid-template-columns: 100%;
    }

    .section-3 li {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .section-4 .main img {
        height: 30vh;
        width: 100%;
    }
}

@media (max-width: 425px) {
    .section-2-container {
        min-height: 200px;
    }

    .section-2-container h2 {
        margin-bottom: 0px;
    }

    .section-2-container h5 {
        margin-top: 7px !important;
        font-size: medium;
    }

    .section-4 .main img {
        height: 25vh;
        width: 100%;
    }

    .section-4 .para-container p {
        text-align: unset;
    }
}

@media(max-width: 375px) {
    .section-4 .main img {
        height: 22vh;
        width: 100%;
    }
}