@font-face {
    font-family: alum;
    src: url(./font/PTSansNarrow-Regular.ttf);
}

@font-face {
    font-family: meri;
    src: url(./font/PTSansNarrow-Regular.ttf);
}

@font-face {
    font-family: courg;
    src: url(./font/PTSansNarrow-Regular.ttf);
}

@font-face {
    font-family: about;
    src: url(./font/Merienda-Bold.ttf);
}

/* =============================== GENERAL ============================== */
:root {
    --color-bg: hsl(157, 100%, 30%);
    /* --color-bg: #dc143c; */
    --color-variant: hsl(219, 85%, 22%);
    --color-primary: #dc143c;
    /* --color-primary: #111; */
    --color-primary-chng: hsl(255, 42%, 15%);
    /* --color-primary: #172121; */
    /* --color-primary: #070707; */
    --color-white: #fff;
    --color-azure: azure;
    --color-black: #111;
    --color-gray-900: #555;
    --color-gray-ccc: #ccc;
    --color-gray-300: #777;
    --color-gray-200: #f9f9f9;
    --color-gray-100: #efefef;
    --color-red: hsl(346, 87%, 46%);
    --color-red-light: hsl(346, 87%, 46%, 25%);
    --color-green: hsl(157, 100%, 30%);
    --color-green-light: hsla(156, 100%, 38%, 0.4);
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: alum;
    border: none;
    outline: none;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

html::-webkit-scrollbar {
    width: 5px;
    background: #eee;
}

html::-webkit-scrollbar-track {
    border-radius: 5px;
    box-shadow: inset 0 0 0px transparent;
}

html::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: var(--color-gray-ccc);
}

textarea::-webkit-scrollbar,
select::-webkit-scrollbar {
    width: 2px;
}

textarea::-webkit-scrollbar-thumb,
select::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: var(--color-gray-300);
}

input[type="file"] {
    display: none;
}

body {
    overflow-x: hidden;
    background-color: var(--color-white);
}

a {
    color: black;
    text-decoration: none;
}

p {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

ul {
    list-style: none;
}

ol,
ul {
    padding-left: 0;
    margin: 0;
}

img {
    height: 100px;
    width: 100px;
}

.carousel-control-prev-icon {
    background-image: none;
}

.carousel-control-next-icon {
    background-image: none;
}

.landpagerow .carousel-control-prev i {
    color: var(--color-azure);
    font-size: 30px;
}

.landpagerow .carousel-control-next i {
    color: var(--color-azure);
    font-size: 30px;
}

.carousel-control-prev i {
    color: var(--color-bg);
    font-size: 30px;
}

.carousel-control-next i {
    color: var(--color-bg);
    font-size: 30px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 8%;
}

.carousel-item img {
    position: relative;
}

/* =============================== NAVBAR ============================== */
.sch_name h1 {
    font-size: 20px;
    color: var(--color-azure);
    background: var(--color-primary-chng);
    text-align: center;
    padding: 10px 0;
    text-transform: uppercase;
    font-weight: 700;
}

nav {
    /* position: absolute; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 100px;
    background: transparent;
    width: 100%;
    z-index: 3;
}

.logo {
    margin: 10px 0px;
}

.logo a img {
    height: 60px;
    width: 150px;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 0px;
}

nav ul li h1 {
    font-size: 32px;
    text-align: center;
    font-family: meri;
    color: var(--color-azure);
}

nav ul li a {
    /* padding: 20px 25px; */
    font-size: 23px;
    color: var(--color-font);
    transition: 0.8s ease-in-out;
}

nav ul li a:hover {
    color: var(--color-bg);
    text-decoration: underline;
}

nav .hamburger {
    display: none;
    font-size: 25px;
    color: var(--color-bg);
    float: right;
    margin-right: 20px;
}

nav .display_pic img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
}

nav .display_pic span {
    font-size: 18px;
    color: var(--color-azure);
}

/* =============================== LAND PAGE ============================== */
.landpage {
    /* background: url(../imgs/deco14.png); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100%;
}

.landpage .carousel .w-100 {
    min-height: 60vh;
    width: 100vw !important;
}

.landpagecol {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100%;
    background: var(--color-black);
}

.landpagerow {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: auto 0px;
    text-align: center;
}

/* .landcont{
    width: 40%;
} */
.landpagerow h2 {
    font-size: 30px;
    padding: 0 0 5px;
    color: var(--color-white);
}

.landpagerow h4 {
    font-size: 50px;
    color: var(--color-bg);
    padding-bottom: 5px;
}

.landpagerow p {
    font-size: 22px;
    color: var(--color-azure);
    padding: 0 50px 5px;
    padding-bottom: 5px;
}

.landpagerow a {
    font-size: 20px;
    padding: 10px 20px;
    color: var(--color-primary);
    background: var(--color-white);
    transition: 0.8s ease;
    border-radius: 50px;
}

/* 
.landslideimg {
    padding: 0;
    width: 100%;
} */

.landslideimg img {
    width: fit-content;
    object-fit: cover;
    object-position: center;
    position: relative;
}

.landslideimg .landpage_cont {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 50%;
    margin: 0 auto;
    text-align: center;
}

.landslideimg .landpage_cont .landinfo {
    z-index: 5;
    background: linear-gradient(to right, hsla(0, 0%, 0%, 0.8), hsla(0, 0%, 0%, 0.8));
    padding: 20px 0;
    border-radius: 30px 30px 0 0;
}

.landslideimg .landpage_cont h3 {
    font-size: 35px;
    color: var(--color-white);
    text-transform: capitalize;
    font-family: about;
    padding: 0 30px 0;
}

.landslideimg .landpage_cont p {
    display: none;
    font-size: 20px;
    font-style: italic;
    color: var(--color-gray-100);
    padding: 10px 50px 0;
}

.band h1 {
    font-size: 60px;
    padding: 40px 0;
    text-align: center;
    background: var(--color-black);
    color: var(--color-azure);
    font-weight: 600;
}

/* ================= MIS_VIS ================ */
.knowuscol {
    /* position: absolute;
    top: 60vh;
    left: 0;
    right: 0; */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    place-items: center;
    background: var(--color-white);
    width: 80%;
    margin: auto;
    padding: 20px;
    border-radius: 30px;
    transition: 0.8s ease;
    color: var(--color-primary);
    box-shadow: 5px 10px 25px -15px var(--color-primary);
}

.knowusgoals {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.kn_misn {
    border-left: 2px solid var(--color-primary);
}

.knowusimg {
    padding: 0;
    overflow: hidden;
}

.knowusimg img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.knowusgoalspt i {
    font-size: 50px;
    color: var(--color-font);
    transition: 0.4s ease;
}

.knowusgoalspt h4 {
    font-size: 30px;
    padding: 5px 0px;
}

.knowusgoalspt p {
    font-size: 20px;
    font-style: italic;
}

.knowuscol:hover {
    background: var(--color-white);
    color: var(--color-primary);
    box-shadow: 5px 10px 25px -15px var(--color-primary);
}

.knowuscol:hover>.kn_misn {
    border-left: 2px solid var(--color-primary);
}

/* =============================== ABOUT ============================== */
.about {
    padding: 50px 100px 40px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 3rem;
}

.about .aboutcol {
    width: 50%;
}

.about .aboutcol img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 0px 80px 0px 80px;
    border: 3px dashed var(--color-gray-ccc);
    padding: 10px;
}

.about .aboutcol {
    text-align: center;
}

.about .aboutcol h1 {
    font-size: 70px;
    color: var(--color-black);
    padding-bottom: 5px;
}

.about .aboutcol h1 span {
    color: var(--color-primary);
}

.about .aboutcol h3 {
    font-size: 30px;
    color: var(--color-black);
    padding-bottom: 5px;
}

.about .aboutcol p {
    font-size: 20px;
    color: var(--color-gray-900);
    line-height: 30px;
    text-align: left;
    padding-bottom: 10px;
}

.about .aboutcol p span {
    font-size: 20px;
    color: var(--color-azure);
    background: var(--color-primary);
    padding: 5px 10px;
    border-radius: 5px;
    margin-right: 10px;
}

/* .about .aboutcol a {
    font-size: 20px;
    padding: 10px 20px;
    color: var(--color-azure);
    background: var(--color-primary);
    transition: 0.8s ease;
    border-radius: 50px;
} */

.about .aboutcol .social {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
}

.about .aboutcol .social i {
    font-size: 20px;
    padding: 10px;
    transition: 0.8s ease;
    border-radius: 50%;
    margin-left: 10px;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.about .aboutcol .social i:hover {
    background: var(--color-primary);
    /* border: 2px solid var(--color-bg); */
    color: var(--color-white);
}

/* =============================== CORE VALUES ============================== */
.core_value {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px auto;
    background: var(--color-bg);
}

.core_cont {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: var(--color-azure);
    padding: 0 50px;
}

.core_cont h2 {
    font-size: 45px;
    padding: 0 0 8px;
}

.core_cont p {
    text-align: left;
    font-size: 20px;
    padding: 0 0 8px;
}

.core_cont p i {
    padding-right: 5px;
}

.core_vls {
    width: 50%;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--color-azure);
    background: var(--color-black);
}

.core_vls .core_icon {
    font-size: 50px;
}

.core_vls h4 {
    font-size: 18px;
}

.core_vls h2 {
    font-size: 40px;
    font-weight: 800;
}

.core_vls h2 span {
    color: var(--color-bg);
}

.core_vlrow {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 0;
    padding: 20px 0 0;
}

.core_vlcube {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.core_vlcubept i {
    border-radius: 50%;
    border: 2px solid var(--color-azure);
    height: 90px;
    width: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    font-size: 40px;
    transition: 0.5s ease;
}

.core_vlcube:hover>.core_vlcubept i {
    background-color: var(--color-azure);
    color: var(--color-bg);
    border: 2px solid var(--color-azure);
}

.core_vlcubept h4 {
    font-size: 30px;
}

.core_vlcubept p {
    font-size: 17px;
}

/* =============================== PRODUCTS ============================== */
.products {
    padding: 50px 80px 50px;
    background: url(../imgs/deco13.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.productscolgroup {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* gap: 2rem; */
}

.products .productscolgroup .aboutcol1con {
    text-align: center;
}

.products .productscolgroup .aboutcol1con h3 {
    font-size: 30px;
    color: var(--color-black);
}

.products .productscolgroup .aboutcol1con h2 {
    font-size: 60px;
    font-weight: 800;
    padding: 10px 0px;
    color: var(--color-primary);
}

.products .productscolgroup .aboutcol1con p {
    font-size: 21px;
    line-height: 30px;
    color: #222;
    padding-bottom: 10px;
}

.productcol {
    margin: 20px 0 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    gap: 2rem;
}

.productcube {
    box-shadow: 5px 10px 25px -15px var(--color-black);
    border-radius: 20px;
    background: var(--color-black);
}

.productcube .productrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    transition: 0.8s ease;
}

.productcube .productrow img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.productrow h4 {
    font-size: 22px;
    color: var(--color-azure);
    padding: 5px 10px;
    border-radius: 5px;
}

/* =============================== TEAM ============================== */
.team {
    padding: 30px 20px 0;
    text-align: center;
    color: var(--color-primary);
}

.swiper,
swiper-container {
    margin-left: 0;
    margin-right: 0;
}

.team h2 {
    font-size: 50px;
}

.team h2 span {
    color: var(--color-black);
}

.teamcol {
    padding: 0 50px 0;
    margin: 30px 0 70px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    place-items: center;
}

.teamrow {
    text-transform: capitalize;
    display: flex;
    flex-direction: column;
    text-align: center;
    overflow: hidden;
    padding: 0 0 20px;
    height: 100%;
    width: 100%;
    background-color: var(--color-black);
    padding-bottom: 20px;
    border-radius: 20px;
    box-shadow: 0 0 15px -5px var(--color-black);
    transition: 0.8s ease-in-out;
    color: var(--color-azure);
}

.teamrow_img {
    overflow: hidden;
}

.teamrow_img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    transition: 0.8s ease-in-out;
}

.teamrow_info h2 {
    font-size: 35px;
    padding: 10px 10px 0px;
    text-align: center;
}

.teamrow_info h4 {
    font-size: 20px;
    padding: 10px 10px 0px;
    color: var(--color-primary);
    text-align: center;
}

.teamrow:hover {
    background: transparent;
    color: var(--color-black);
}

.teamrow .teamrow_img img:hover {
    transform: scale(1.1);
}

/* =============================== REVIEWS ============================== */
.reviews {
    padding: 40px 20px 40px;
    background: url(../imgs/bkg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.reviews h1 {
    color: var(--color-black);
    font-size: 50px;
    text-align: center;
    padding-bottom: 20px;
}

.reviews h1 span {
    color: var(--color-bg);
    font-size: 50px;
}

.reviews .reviewscol {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin: 10px 80px;
}

.reviews .reviewscube {
    width: 100%;
    padding: 20px 40px;
    box-shadow: 0 1px 2px var(--color-black);
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
    text-align: center;
    border-radius: 10px;
    border: 1px solid var(--color-gray-ccc);
    transition: 0.6s ease-in-out;
}

/* .reviews .reviewscube img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid var(--color-bg);
    padding: 4px;
} */

.reviews .reviewscube i {
    font-size: 50px;
    color: var(--color-bg);
}

.reviews .reviewscube h2 {
    font-size: 32px;
    font-weight: 600;
    padding-top: 10px;
    text-transform: capitalize;
}

.reviews .reviewscube p {
    font-style: italic;
    font-size: 20px;
    font-weight: 100;
}

.reviews .reviewscube .reviewinfo {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.reviews .reviewscube .reviewinfo span {
    background: var(--color-primary);
    color: var(--color-azure);
    font-size: 22px;
    padding: 2px 10px;
    border-radius: 10px;
}

/* =============================== BENEFITS ============================== */
.benefits {
    margin-top: 0px;
    /* padding: 40px 0 0; */
    text-align: center;
}

.benefits h2 {
    color: var(--color-primary);
    font-size: 50px;
}

.benefits h2 span {
    color: var(--color-black);
    font-size: 50px;
}

.benefitscol {
    margin: 20px 0px;
    padding: 0px 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    place-items: center;
    gap: 30px;
    /* height: 100%; */
}


.benefitcube {
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: 0.8s ease-in-out;
    height: auto;
    width: 100%;
    overflow: hidden;
    /* box-shadow: 5px 10px 25px -15px var(--color-primary); */
}

.benefitcube img {
    height: 250px;
    width: auto;
    object-fit: cover;
    object-position: center;
    transition: 0.5s ease;
    border-radius: 10px;
}

.benefitcont {
    transition: 0.8s ease-in-out;
    color: var(--color-primary);
    position: relative;
}

.benefitcont .benefitcont_date {
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.8s ease;
}

.benefitcont .benefitcont_date span {
    font-size: 15px;
    color: var(--color-azure);
    background: var(--color-primary);
    padding: 5px 10px;
    border-radius: 5px;
}

.benefitcont h4 {
    font-size: 22px;
    padding: 20px 0 0;
    color: var(--color-black);
    text-transform: capitalize;
}

/* =============================== COUNTER ============================== */
.counters {
    background: url(../imgs/deco15.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1500px;
    padding: 20px 0;
}

.counters h2 {
    color: var(--color-black);
    font-size: 50px;
    text-align: center;
}

.counters h2 span {
    color: var(--color-bg);
}

.counters .count_col {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    padding: 10px 0 0;
}

.counters .counter img {
    height: fit-content;
    width: 150px;
}

/* =============================== FOOTER ============================== */
.to-top {
    background: var(--color-bg);
    position: fixed;
    bottom: 16px;
    right: 0px;
    margin-right: 30px;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    color: var(--color-white);
    opacity: 0;
    text-decoration: none;
    pointer-events: none;
    transition: all .4s;
    z-index: 5;
}

.to-top.active {
    bottom: 23px;
    pointer-events: auto;
    opacity: 1;
}

footer {
    padding: 30px 60px 0px;
    color: var(--color-white);
    background: var(--color-black);
}

.footercol {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    place-items: center;
    background: url(../imgs/bgn\ \(5\).png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.footrow2 .logo {
    margin: 0px;
}

.footrow2 .logo img {
    border-radius: 10px;
}

.footrow2 {
    padding: 20px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footrow2 p {
    font-size: 20px;
    padding: 20px 0px;
    line-height: 32px;
    text-align: center;
}

.footrow2 .social {
    display: flex;
}

.footrow2 .social i {
    font-size: 20px;
    padding: 10px;
    transition: 0.8s ease;
    border-radius: 50%;
    margin-left: 10px;
    border: 1px solid var(--color-azure);
}

.footrow2 .social a i {
    color: var(--color-azure);
}

.footrow2 .social i:hover {
    background: var(--color-azure);
    color: var(--color-primary);
}

.footrow2 h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--color-white);
}

.footrow2 ul {
    margin: 10px 0px;
}

.footrow2 .foot_menu {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
}

.footrow2 ul li {
    padding: 5px 0px;
    font-size: 23px;
    font-weight: 200;
    text-align: center;
}

.footrow2 ul li a {
    color: var(--color-azure);
    transition: 0.4s ease;
}

.footrow2 ul li a:hover {
    color: var(--color-bg);
    text-decoration: underline;
}

.footrow2 small {
    padding: 5px 0px;
    font-size: 20px;
}

.footrow2 small i {
    font-size: 18px;
    padding-right: 10px;
}

.footer hr {
    background: azure;
    height: 2px;
    border: none;
}

.footrow3 {
    text-align: center;
    padding: 10px 0 20px;
    font-size: 18px;
    /* color: #ddd; */
}

/* =============================== MEDIA QUERY FOR 1024px ============================== */
@media only screen and (max-width: 1024px) {
    .landpage .carousel .w-100 {
        min-height: 70vh;
    }

    /* =============================== NAV ============================== */
    nav {
        padding: 0px 50px;
        min-height: 8vh;
    }

    nav ul {
        display: block;
        position: absolute;
        top: 70px;
        left: 0;
        background: var(--color-white);
        width: 100%;
        overflow: hidden;
        transition: max-height 0.5s;
        padding: 0px;
        z-index: 10;
    }

    nav ul li a {
        display: block;
        text-align: center;
        transition: 0.8s ease;
        padding: 5px 0px;
        color: var(--color-primary);
    }

    nav .hamburger {
        display: block;
        cursor: pointer;
        padding-top: 10px;
    }

    nav ul li:hover {
        background: rgb(221, 221, 221);
    }

    .about {
        flex-direction: column-reverse;
        gap: 1rem;
    }

    .about .aboutcol {
        width: 100%;
    }

    .about .aboutcol img {
        border-radius: 0px 50px 0px 50px;
        height: 250px;
    }

    .core_value {
        flex-direction: column-reverse;
    }

    .core_vls {
        width: 100%;
    }

    .core_vlrow {
        grid-template-columns: repeat(3, 1fr);
    }

    .core_cont {
        width: 100%;
        padding: 20px 50px;
    }

    .productcol {
        grid-template-columns: repeat(2, 1fr);
    }

    .productcube .productrow img {
        height: 250px;
    }

    .teamcol {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .teamrow_img img {
        height: 450px;
    }

    .benefitscol {
        grid-template-columns: repeat(2, 1fr);
    }

    .counters .count_col {
        gap: 2rem;
    }
}

/* =============================== MEDIA QUERY FOR 830px ============================== */
@media only screen and (max-width: 830px) {
    .landslideimg .landpage_cont {
        width: 80%;
    }

    .about {
        padding: 50px 50px 40px;
    }

    .core_vlcube {
        flex-direction: column;
    }

    .products {
        padding: 50px 50px 50px;
    }

    .teamcol {
        padding: 0;
    }

    .reviews .reviewscol {
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }

    .reviews .reviewscol {
        margin: 10px 50px;
    }

    .benefitscol {
        grid-template-columns: repeat(1, 1fr);
    }

    .counters .counter img {
        width: 100px;
    }

    .footercol {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* =============================== MEDIA QUERY FOR 430px ============================== */
@media only screen and (max-width: 430px) {
    .landpage .carousel .w-100 {
        min-height: 90vh;
    }

    .landslideimg .landpage_cont h3 {
        font-size: 25px;
    }

    .landslideimg .landpage_cont {
        width: 100%;
    }

    .landslideimg .landpage_cont .landinfo {
        border-radius: 0;
    }

    nav {
        padding: 0px 30px;
    }

    .about {
        padding: 50px 20px 40px;
    }

    .about .aboutcol h1 {
        font-size: 60px;
    }

    .core_vlrow {
        grid-template-columns: repeat(2, 1fr);
    }

    .core_cont {
        padding: 20px 30px;
    }

    .core_cont p i {
        padding-right: 8px;
    }

    .core_cont p {
        padding: 0 0 10px;
    }

    .products {
        padding: 80px 20px 50px;
    }

    .productcol {
        grid-template-columns: repeat(1, 1fr);
    }

    .products .productscolgroup .aboutcol1con h2 {
        font-size: 50px;
    }

    .team {
        padding: 30px 0 10px;
    }

    .teamcol {
        grid-template-columns: repeat(1, 1fr);
        padding: 0 30px 0;
    }

    .teamrow_img img {
        height: 450px;
    }

    .reviews {
        padding: 40px 20px 20px;
    }

    .reviews .reviewscol {
        margin: 10px;
    }

    .reviews .reviewscube {
        padding: 20px;
    }

    .benefitscol {
        padding: 0px 40px;
    }

    .counters .count_col {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        place-items: center;
    }

    .counters .counter img {
        width: 120px;
    }

    footer {
        padding: 30px 30px 0px;
    }
}

@media only screen and (max-width: 375px) {
    .teamcol {
        padding: 0 10px 0;
    }
    .reviews {
        padding: 40px 0 20px;
    }
    .reviews .reviewscol {
        margin: 0 20px 10px;
    }
    .benefitscol {
        padding: 0px 10px;
    }
}