@import url('https://fonts.googleapis.com/css2?family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');


@font-face {
    font-family: 'Graphik Semibold';
    src: url('../fonts/Graphik-Semibold.eot');
    src: url('../fonts/Graphik-Semibold.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Graphik-Semibold.woff2') format('woff2'),
         url('../fonts/Graphik-Semibold.woff') format('woff'),
         url('../fonts/Graphik-Semibold.ttf')  format('truetype'),
         url('../fonts/Graphik-Semibold.svg#Graphik Semibold') format('svg');
}
@font-face {
    font-family: 'Graphik Medium';
    src: url('../fonts/Graphik-Medium.eot');
    src: url('../fonts/Graphik-Medium.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Graphik-Medium.woff2') format('woff2'),
         url('../fonts/Graphik-Medium.woff') format('woff'),
         url('../fonts/Graphik-Medium.ttf')  format('truetype'),
         url('../fonts/Graphik-Medium.svg#Graphik Medium') format('svg');
}
@font-face {
    font-family: 'Graphik Bold';
    src: url('../fonts/Graphik-Bold.eot');
    src: url('../fonts/Graphik-Bold.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Graphik-Bold.woff2') format('woff2'),
         url('../fonts/Graphik-Bold.woff') format('woff'),
         url('../fonts/Graphik-Bold.ttf')  format('truetype'),
         url('../fonts/Graphik-Bold.svg#Graphik Bold') format('svg');
}
:root {
    --theme: #15B9F9;
    --primary:#E74C3C;
    --secondary:#000F1F;
    --black: #000;
    --gray: #707A83;
    --gray-secondary:#555C63;
    --light-gray:#F6F7FB;
    --white: #ffffff;
    --rounded-20: 1.25rem;
    --rounded-10: 0.625rem;
    --rounded-6: 0.375rem;
    --rounded-16: 1rem;
}


/*--------------------------------------*/

/*Element Base
/*--------------------------------------*/
body {
    font-size: 1rem;
    font-family: 'Graphik Medium';
    font-style: 400;
    background: #fff;
    color: var(--black);

}

/*--------------------------------------*/

/*Typography
/*--------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Graphik Semibold';
}

h1 {
    font-size: 3.563rem;
}

h2 {
    font-size: 2.75rem;
    color: var(--black);

}

h3 {
    font-size: 2.25rem;
}

h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

h5 {
    font-size: 1.25rem;
    line-height: 1.5;
}



.font-size-14 {
    font-size: .875rem;
    line-height: 1.25;
}

a {
    color: var(--black);
    text-decoration: none;
}

a:hover {
    color: var(--theme);
}

.sub-title {
    color: #000;
    font-size: .875rem;
    text-transform: uppercase;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-100 {
    padding-top: 100px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-50 {
    margin-top: 50px;
}

.w-16 {
    width: 16px !important;
}

.h-16 {
    height: 16px !important;
}

p {
    font-family: 'Graphik Medium';
    font-size: 0.938rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: var(--gray);
}

ul {
    padding: 0;
    list-style: none;
    margin-bottom: 0 !important;
}

ul li a {
    text-decoration: none;
}

.table td{
    font-size: .875rem!important;
}

#scrollTop {
    z-index: 99;
    cursor: pointer;
    border: none;
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    color: #FFFFFF;
    background: var(--theme);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
    display: none;
    transition: 0.6s all ease-in-out;
    -moz-transition: 0.6s all ease-in-out;
    -ms-transition: 0.6s all ease-in-out;
    -webkit-transition: 0.6s all ease-in-out;
    border-radius: 50%;
}

#scrollTop i {
    display: flex;
    align-items: center;
    justify-content: center;
}

#scrollTop:hover {
    background-color: var(--black);
}

/*--------------------------------------*/

/*Buttton
/*--------------------------------------*/
.btn {
    font-family: 'Graphik Semibold';
    font-weight: 500;
    padding: .75rem 1.5rem;
    border-radius: 3rem;
    border: none;
    display: inline-flex;
    align-items: center;
    transition: all .5s;
    font-size: .875rem;
    line-height: 1.5;
    
}
.btn i{
    margin-left: .75rem;
    transition: all .4s;
}

.btn.btn-primary {
    background: var(--theme);
    color: var(--white);

}

.btn.btn-primary:hover {
    background: var(--primary);
}

.btn.btn-white {
    background: var(--white);
    color: var(--theme);
}

.btn.btn-white:hover {
    background: var(--black);
    color: var(--white);
}

.btn.btn-sm {
    font-weight: 300;
    padding: .5rem 1.25rem;
    font-size: .9rem;
}

.btn-close {
    position: absolute;
    z-index: 1;
    opacity: 1;
    color: #fff;
    right: 1rem;
    top: 1rem;
    padding: .75rem;
    background: url(../images/close-icon.svg) no-repeat center;
    background-color: var(--primary);
    top: 1rem;
    right: 1rem;
}

.btn img {
    transition: all .4s;
}

.btn.btn-outline-primary {
    border: 1px solid var(--theme);
    color: var(--theme) !important;
}

.btn.btn-outline-primary:hover {
    background-color: var(--theme);
    color: var(--white) !important;
}

.btn-close:hover {
    opacity: .8;
}
.form-control{
 padding: .75rem 2rem;
 border-radius: 4rem;   
}
.sepraion {
    padding-top: 90px;
}
.sepraion-y {
    padding: 90px 0;
}

.z-index-9 {
    z-index: 9;
}

.text-justify {
    text-align: justify;
}



date {
    font-size: .875rem;
    color: var(--gray-secondary);
}
date .icon{
    font-size: 1.25rem;
}
.modal-content {
    border-radius: var(--rounded-20);
    box-shadow: 0px 0px 20px 1px rgba(255, 255, 255, .3);
    overflow: hidden;
    border:4px solid var(--white);
}


.rounded-10 {
    border-radius: var(--rounded-10);
}

.rounded-6 {
    border-radius: var(--rounded-6);
}
.rounded-16 {
    border-radius: var(--rounded-16);
}


.social-widget{
    display: flex;
    justify-content: end;
}

.social-widget li {
    display: inline-block;
}

.social-widget li a {
    display: flex;   
    align-items: center;
    justify-content: center;
    transition: all .4s;
}

.social-widget li a:hover {
    background-color: #dadada;
}

.bg-theme {
    background: var(--theme);
}
.text-red{
    color: var(--primary);
}
.text-blue{
    color: var(--theme);
}
.bg-light-gray {
    background: var(--light-gray);
}

.call-widget .needtxt{
    font-size: .875rem;
}
.call-widget .call-icon{
    background: var(--primary);
    width: 50px;
    height: 50px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1rem;
}
@media (min-width: 1400px) {
    .container {
        max-width: 1340px;
    }
}
.max-width-900 {
    max-width: 900px;
}
.max-width-1024 {
    max-width: 1024px;
}
.navbar-nav .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }

.dropdown-menu .dropend:hover > .dropdown-menu {
display: block;
top: 0;
left: 100%;
margin-top: -1px;
}

.dropdown-toggle::after {
transition: 0.3s ease;
}

/*--------------------------------------*/

/*Header
/*--------------------------------------*/


.navbar-brand img {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: all .4s linear;
}

.header-top {
    background: var(--primary);
    padding: .5rem 0;

}

.header-bottom {
    transition: all .5s;
}


.header-top,
.header-bottom {
    transition: all .4s linear;
}


.sticky {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 105;
}

.header-top ul {
    display: flex;
    padding: 0;
    list-style: none;
    margin-bottom: 0 !important;
    grid-gap: 8px;
    align-items: center;
}

.header-top li {
    color: var(--white);
    font-size: .85rem;
    font-weight: 400;
    line-height: 0;
}

.header-top li a {
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 300;
    display: inline-flex;
    align-items: center;
    grid-gap: 10px;
    transition: all .3s;
    font-weight: 500;

}

.header-top li a:hover {
    text-decoration: underline;
}

.header-top svg {
    height: 18px;
    width: 18px;
    transition: all .3s;
}

.navbar-brand {
    height: 80px;
    width: auto;
}

.navbar {
    padding: 0rem 0;
    background: var(--secondary);
    justify-content: center;
}

.navbar-nav.primary-menu {
    flex-direction: row;
}

.navbar-nav.primary-menu .nav-link {
    padding: .5rem .9rem !important;
}

.navbar.navbar-expand-lg.bg-light {
    background-color: #F2EFED !important;
    padding: 20px 0;
}

.navbar .nav-link {
    font-family: 'Graphik Medium';
    color: var(--white);
    font-size: .875rem;
    opacity: 1;
    font-weight: 400;
    padding: .75rem .65rem !important;
    transition: all .5s;
    margin: 0 .65rem;
    text-transform: uppercase;
}

.navbar .nav-link:hover {
    color: var(--black);
}

.navbar .nav-link.active {
    font-weight: 600;
    color: var(--black);
}

.navbar-nav .nav-link.show {
    color: var(--white);
}

.fixed-top.sticky .header-top {
    opacity: 0;
}

.fixed-top.sticky .header-bottom {
    margin-top: -43px;
    position: fixed;
    width: 100%;
    box-shadow: 5px 0px 10px 1px rgba(0, 0, 0, .1);
}

.fixed-top.sticky .navbar-brand img {
    height: 80px;
}

.offcanvas {
    background: var(--theme);
}


.offcanvas .nav-link:hover {
    background: var(--theme);
    color: var(--white);
}

.dropdown-toggle::after {
    background: url(../images/arrow-down.svg) no-repeat;
    width: 10px;
    height: 8px;
    background-position: center;
    background-size: 14px;
    position: relative;
    top: 3px;
    border: 0;
    left: 2px;
}

.dropdown-menu {
    border: 0;
    padding: 0;
    border-radius: var(--rounded-16);
    font-family: 'Graphik Medium';
    border-radius: var(--rounded-6);
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    box-shadow: 0 0 1.25rem rgba(0, 0, 0, .1);
    animation: growDown 300ms ease-in-out forwards;
    transform-origin: top center;
    margin: 0;
 /*   min-width: 15rem;  */
 min-width: 10rem !important;
}

.dropend .dropdown-toggle::after{
    background: none;
    top: -1px;
}
.dropdown-item {
    padding: .5rem 0.5rem;
    font-size: .850rem;
    text-transform: uppercase;

}

.dropdown-item:hover,
.dropdown-item.active,
.dropdown-item:active {
    color: var(--bs-dropdown-link-active-color);
    text-decoration: none;
    background-color: var(--theme);
}

.navbar-toggler {
    border: 0;
    padding: 0;
    margin-left: 1rem;
}

.navbar-toggler:focus {
    box-shadow: none;
    padding: 0;
}

.navbar-toggler-icon {
    background: url(../images/toggler-icon.svg) no-repeat center;
}

/*--------------------------------------*/

/*Latest News Section
/*--------------------------------------*/
.update-news {
    padding: 1rem 0;
}

.update-news .update-widget {
    box-shadow: 5px 0px 10px 1px rgba(0, 0, 0, .1);
    background: var(--white);
    line-height: 1.4;
    font-size: 1.125rem;
    color: var(--black);
}

.update-news .update-title {
    background: var(--theme);
    color: var(--white);
    padding: .75rem 2rem;
    min-width: fit-content;
    font-size: 1.125rem;
}

/*--------------------------------------*/

/*Hero Banner Section
/*--------------------------------------*/
main {
    margin-top: 182px;
}


.hero-slider img {
    height: 700px;
    object-fit: cover;
    object-position: center;
}
.hero-slider .owl-dots {
    position: absolute;
    z-index: 99;
    width: 100%;
    bottom: 20px;
    text-align: center;
}

.hero-slider .owl-dots .owl-dot{
    width: .85rem;
    height: .85rem;
    background-color: #3777DC;
    border-radius: 10rem;
    margin: .25rem;
}
.hero-slider .owl-dots .owl-dot.active{
    background-color: #fff;
}
.hero-slider .caption {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 99;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
}

.hero-slider .caption .caption-widget {
    border-radius: var(--rounded-24);
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    max-width: 720px;
    color: var(--gray);
}

.hero-slider .btn.btn-primary:hover img {
    transform: rotate(40deg);
}

.hero-slider .owl-nav {
    position: absolute;
    top: 50%;
    right: 0;
    width: 84%;
    margin: 0 8%;
    display: flex;
    justify-content: space-between;
}

.hero-slider .owl-nav button.owl-prev span,
.hero-slider .owl-nav button.owl-next span {
    display: none;
}

.hero-slider .owl-nav button.owl-prev,
.hero-slider .owl-nav button.owl-next {
    border: 1px solid var(--theme);
    background-color: var(--theme);
    display: inline-block;
    width: 2.25rem;
    height: 2.25rem;
    line-height: 1;
    border-radius: 3rem;
    margin-left: .75rem;
    font-size: 2rem;
}

.hero-slider .owl-nav button.owl-prev {
    background-image: url(../images/prev.svg);
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slider .owl-nav button.owl-next {
    background-image: url(../images/next.svg);
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slider .owl-nav button.owl-prev:hover,
.hero-slider .owl-nav button.owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.hero-slider .owl-nav button.owl-prev:hover {
    background-image: url(../images/prev.svg);
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slider .owl-nav button.owl-next:hover {
    background-image: url(../images/next.svg);
    background-position: center;
    background-repeat: no-repeat;
}

/*--------------------------------------*/

/*Facilites Section
/*--------------------------------------*/
.facilitie-section {
    background: url(../images/facality-bg.png) no-repeat;
    background-position: top;
    background-size: cover;
    padding: 5rem 0 6rem;

}

.facilitie-section .img-frame {
    max-width: 100%;
    margin: auto;
}

.facilitie-section .img-frame img {  
    border-radius: 1.25rem;
    object-fit: cover;
    width: 100%;
}
.facilitie-section h2 span{
    color: var(--primary);
}
.facilitie-nav{
    display: grid;
    grid-template-columns: auto auto;
    gap: 10px;

}
.facilitie-nav li{
    display: inline-block;
    width: 100%;
}
.facilitie-nav li a{
    display: block;
    border-radius: var(--rounded-16);
    background-color: var(--white);
    color: var(--secondary);
    text-align: center;
    padding: 1.5rem;
    cursor: pointer;
}
.facilitie-nav li p{
    color: var(--secondary);
}
.facilitie-nav li svg path{
    fill: var(--theme);
}
.facilitie-nav li a:hover{
    background-color:var(--theme);
}
.facilitie-nav li a:hover p{
    color: var(--white);
} 
.facilitie-nav li a:hover svg path{
    fill: var(--white);
}
.facilitie-nav li p{
    margin-bottom: 0;
}
/*--------------------------------------*/

/*About Section
/*--------------------------------------*/
.about-widget {
    border-radius: var(--rounded-16);
    overflow: hidden;
    position: relative;
}

.about-widget img.about-img {
    border-radius: var(--rounded-16);
    width: 100%;
    object-fit: cover;
    height: 382px;
    
}
.about-widget .about-info{
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    transition: all .2s linear;
    display: flex;
    align-items: center;
    min-height: 60px;
    
}
.about-widget .about-info h5{
    color: var(--white);
}
.about-widget .about-info .short-discription{
    display: none;
  
}
.about-widget:hover .about-info{
    min-height: 100%;
    background: rgba(21, 185, 249, 0.9);
    -webkit-background: rgba(21, 185, 249, 0.9);
    -moz-background: rgba(21, 185, 249, 0.9);
    -ms-background: rgba(21, 185, 249, 0.9);
}
.about-widget:hover .about-info .short-discription{
    display: block;
}
.about-widget .about-info .short-discription p{
    font-size: 14px;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}
.about-widget .about-info .short-discription span{
    color: #fff;
    font-size: 1rem;
}

/*--------------------------------------*/

/*Mission Section
/*--------------------------------------*/
.mission-section{
    background: url(../images/mission-vector.png) no-repeat center;
    position: relative;
    margin-top:5rem;
    padding: 4rem 0 3rem;

}
.mission-section::after,
.mission-section::before{   
    content: '';   
    position: absolute;
    top: 0;
    display: block;
    width: 50%;
    height: 100%;
    z-index: -1;
}
.mission-section::before{
    background-color: rgba(231, 76, 60, .9);
    left: 0;
}
.mission-section::after{
    right: 0;
    background-color: rgba(21, 185, 249, 9);
}


/*--------------------------------------*/

/*News & Event Section
/*--------------------------------------*/

.news-widget .card{
    border-radius: var(--rounded-20);
}
.news-widget .card p,
.news-widget .card h2{
    display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-widget .card .card-img-top{
    object-fit: cover;
}
.news-widget .card.card-f .card-img-top{
    border-top-left-radius: var(--rounded-20);
    border-top-right-radius: var(--rounded-20);
    height: 314px;
    object-fit: cover;
}
.news-widget .card .card-body{
    padding: 1.75rem 2.5rem;
}
.news-widget .card.card-s{
    flex-direction: row;
    height: 290px;
    overflow: hidden;
}
.news-widget .card.card-s .card-img-top{
    max-width:200px;
    height: 290px;
    border-radius: 0;
    border-top-left-radius: var(--rounded-20);
    border-bottom-left-radius: var(--rounded-20);
}
.news-widget .card.card-s .card-body{
    padding: 1.75rem;
} 
.news-widget .card .card-body a i{
    color: var(--theme);
}


.news-detail-widget .card-img-top{
    border-top-left-radius: var(--rounded-16);
    border-top-right-radius: var(--rounded-16);
    height: 450px;
}
/*--------------------------------------*/

/*Gallery Section
/*--------------------------------------*/
.gallery-widget img.gallery-img{
    height: 272px;
    width: 100%;
    object-fit: cover;
}
.about-widget.gallery-widget .about-info h5{
    color: var(--white);
    font-size: 1.125rem;
}


/*--------------------------------------*/

/*About Pages
/*--------------------------------------*/
.about-img{
    height: 25rem;
}
.content-area{
    padding: 60px 0!important;
}
.content-area ul li{
    list-style:disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gray);
    line-height: 1.8rem;
}
.content-area ul li li{
    list-style:circle;
}
.content-area ul li li li{
    list-style:disc;
}
.content-area p:last-child{
    margin-bottom: 0;
}
.avatar-img-lg{
    width: 10rem;
    height: 10rem;
    object-fit: cover;
}
.img-fluid{
    object-fit: cover;
}
/*--------------------------------------*/

/*Footer
/*--------------------------------------*/


footer {
    background: var(--secondary);
    font-size:.875rem;
    color: var(--white);
}
footer p{
    font-size: .875rem;
}
footer ul{
    margin-top: 1rem;
}
footer li{
    line-height: 3;

}
footer a{
    color: var(--white);
}
footer .footer-last{
    padding: 2rem 0 1rem;
    border-top:1px solid rgba(255, 255, 255, .1);
    margin-top:3rem
}
footer .footer-last a{
    color: var(--theme);
}
/*--------------------------------------*/

/*Responsive
/*--------------------------------------*/

@media all and (max-width: 1320px) {
    .navbar .nav-link {
        font-size: .875rem;
        padding: .75rem .50rem !important;
        margin: 0 .10rem;
    }

}

@media all and (max-width: 1199px) {
    .navbar-brand img {
        height: 50px;
    }

    .navbar .nav-link {
        font-size: 1.15rem;
        padding: .50rem 1rem
    }

    .fixed-top.sticky .navbar-brand img {
        height: 45px;
    }

    .navbar-toggler {
        top: 50%;
    }

    .hero-slider img {
        height: 550px;
    }

    main {
        margin-top: 120px;
    }

    h2 {
        font-size: 2.5rem;
        line-height: 3rem;
    }

    h3 {
        font-size: 2rem;
        line-height: 2.5rem;
    }

    h4 {
        font-size: 1.2rem;
        line-height: 1.7rem;
    }
    footer .footer-block {
        padding: 1.75rem 1rem;
        min-height: auto;
    }
    .header-top li {
        font-size: .75rem;
    }
}

@media all and (max-width: 991px) {
    .social-widget{
        position: fixed;
        z-index: 999;
        right: 0;
        display: grid;
        top:50%;
        margin-top: -40px;
    }

    .sepraion {
        padding-top: 60px;
    }
    .mission-section::after,
    .mission-section::before{   
        width: 100%;
        height: 50%;   
        left: 0;
        top: inherit;
    }
    .mission-section::before{  
        top:0
    }
    .mission-section::after{
        bottom: 0;
    }
    .news-widget .card.card-s {
        flex-direction: column;
        height: auto;
        overflow: inherit;
    }
    .news-widget .card.card-s .card-img-top {
        max-width: 100%;
        height: 300px;
        border-top-left-radius: var(--rounded-20);
        border-top-right-radius: var(--rounded-20);
        border-bottom-left-radius: 0;
    }
    .header-top {
        padding:1rem;
    }
    .header-top li {
        line-height: 1.1;
    }
    .navbar-nav .dropdown-menu{
        border-radius: 0;
    }
    .fixed-top.sticky .header-bottom {
        margin-top: -37px;
    }
    .navbar-nav .dropdown-menu{
        border-radius: 0;
    }
}

@media all and (max-width: 767px) {

    .hero-slider img {
        height: 450px;
    }
    .header-top ul {
        display: block;
        list-style: none;
        margin-bottom: 0 !important;
        grid-gap: 20px;
        align-items: center;
    }

    .header-top ul li {
        padding-bottom: 10px;
    }

    .header-top ul li:last-child {
        padding-bottom: 0;
    }

    .fixed-top.sticky .header-bottom {
        margin-top: -52px;
    }

    main {
        margin-top: 128px;
    }
    .sepraion-y {
        padding: 50px 0;
    }
    .avatar-img-lg{
        width: 7rem;
        height: 7rem;
    }
}

@media (max-width: 567px) {
    .hero-slider img {
        height: 200px;
    }
    .header-top{
        padding: 0;
    }
    h2 {
        font-size: 1.8rem;
        line-height: 2.3rem;
    }

    h3 {
        font-size: 1.5rem;
        line-height: 1.8rem;
    }

    h4 {
        font-size: 1.1rem;
        line-height: 1.4rem;
    }


   
}