/*

[Tables of CSS Content]

reboot
header
hero
services
about
featured
team
blog
brand
gallery
contact
footer
responsive breakpoints
*/

/* reboot */
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Nanum+Myeongjo:wght@400;700;800&family=Outfit:wght@100;200;300;400;500;600;700;800;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=Schoolbell&display=swap');

body {
    color: #2f3034;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    line-height: 1.75;
}

a {
    text-decoration: none;
    transition-duration: 0.3s;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    color: #2f3034;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 0;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background-color: #1cb098;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #2f3034;
}

::selection {
    background-color: #1cb098;
    color: #ffffff;
}

:root {
    scroll-behavior: unset;
}

:focus {
    outline: none;
}

.preloader {
    position: fixed;
    width: 96px;
    height: 96px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
    border-radius: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-out, visibility 0s linear .2s;
    z-index: 1000;
}

.preloader.fullscreen {
    padding: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: none;
    background-color: #ffffff;
    border-radius: 0;
    box-shadow: none;
}

.preloader.show {
    transition: opacity 0.4s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.preloader .circular {
    animation: loader-rotate 2s linear infinite;
    position: absolute;
    left: calc(50% - 24px);
    top: calc(50% - 24px);
    display: block;
    transform: rotate(0deg);
}

.preloader .path {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    animation: loader-dash 1.5s ease-in-out infinite;
    stroke-linecap: round;
}

@keyframes loader-rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes loader-dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }

    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -136px;
    }
}

.progress-wrap {
    border-radius: 50%;
    cursor: pointer;
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 44px;
    height: 44px;
    opacity: 0;
    transition-duration: 400ms;
    visibility: hidden;
    z-index: 10;
}

.progress-wrap::after {
    color: #1cb098;
    content: "\f286";
    cursor: pointer;
    font-family: "bootstrap-icons";
    font-size: 13px;
    font-weight: 900;
    display: block;
    text-align: center;
    line-height: 44px;
    position: absolute;
    top: 0;
    left: 0;
    width: 44px;
    height: 44px;
    z-index: 1;
}

.progress-wrap.active-progress {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.progress-wrap svg.progress-circle path {
    box-sizing: border-box;
    fill: none;
    stroke: #1cb098;
    stroke-width: 4px;
}

/* header */
header {
    background-color: #05252f;
    position: absolute;
    right: 0;
    left: 0;
    z-index: 9;
}

.main-menu nav ul {
    margin-bottom: 0;
    padding-left: 0;
}

.main-menu nav ul li {
    display: inline-block;
    position: relative;
}

.main-menu nav ul li a {
    color: #0c2b37;
    display: block;
    font-size: 16px;
    font-weight: 500;
    padding: 30px 10px;
}

.main-menu nav ul li:hover>a {
    color: #1cb098;
}

.main-menu nav ul li ul.sub-menu {
    background-color: #ffffff;
    border-top: 3px solid #1cb098;
    box-shadow: 0 2px 29px rgba(0, 0, 0, 0.05);
    padding-top: 20px;
    padding-bottom: 20px;
    position: absolute;
    top: 100px;
    left: 0;
    width: 270px;
    opacity: 0;
    visibility: hidden;
    transition-duration: 0.3s;
    z-index: 2;

}

.main-menu nav ul li ul.sub-menu li {
    display: block;
    text-align: left;
}

.main-menu nav ul li ul.sub-menu li a {
    padding: 5px 25px;
    font-size: large;
    text-align: left;
}

.main-menu nav ul li:hover ul.sub-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
}

/* slicknav */
.mobile-menu {
    position: relative;
}

.slicknav_menu {
    font-size: inherit;
    background: #0c2b37;
    padding: 0;
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    z-index: 1;
}

.slicknav_btn {
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    margin: -57px 0 0;
}

.slicknav_menu .slicknav_icon-bar {
    background-color: #1cb098;
    border-radius: 0;
    box-shadow: none;
    height: 3px;
    width: 30px;
    margin: 5px 0;
    transition-duration: .3s;
}

/* .slicknav_menu .slicknav_icon {
    float: none;
} */

.slicknav_menu .slicknav_open .slicknav_icon-bar:nth-child(1) {
    transform: rotate(45deg) translate(1px, 7px);
}

.slicknav_menu .slicknav_open .slicknav_icon-bar:nth-child(2) {
    opacity: 0;
}

.slicknav_menu .slicknav_open .slicknav_icon-bar:nth-child(3) {
    transform: rotate(-45deg) translateY(-6px);
    position: relative;
    top: -1px;
}

.slicknav_nav a {
    color: #ffffff;
    font-weight: 500;
}

.slicknav_nav .slicknav_row:hover {
    background-color: #1cb098;
    border-radius: 0;
    color: #ffffff;
}

.slicknav_nav a:hover {
    background-color: #1cb098;
    border-radius: 0;
    color: #ffffff;
}

.slicknav_nav .slicknav_row:hover a {
    color: #ffffff;
}

.slicknav_arrow {
    float: right;
}

.slicknav_icon:hover .slicknav_icon-bar {
    background-color: #29313a;
}

.box-btn {
    background-color: #1cb098;
    border-radius: 4px;
    color: #ffffff;
    display: inline-block;
    font-weight: 700;
    padding: 15px 35px;
}

.box-btn:hover {
    background-color: #2f3034;
}

/* hero */
.single-hero {
    align-items: center;
    display: flex;
    background-position: center;
    background-size: cover;
    height: 800px;
    position: relative;
    z-index: 1;
}


.single-hero::before {
    /* background-color: rgba(27, 41, 69, 0.75); */
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.hero-text {
    color: #ffffff;
}

.hero-text h1 {
    font-family: 'Outfit', sans-serif;
    color: #ffffff;
    font-size: 72px;
    font-weight: 700;
}

.hero-text p {
    font-size: 20px;
    font-weight: 400;
}

.hero-carousel .owl-dots {
    text-align: center;
    position: absolute;
    right: 0;
    bottom: 100px;
    left: 0;
}

.hero-carousel .owl-dots .owl-dot {
    border: 3px solid #ffffff;
    border-radius: 50%;
    height: 15px;
    width: 15px;
    margin-right: 5px;
    margin-left: 5px;
}

.hero-carousel .owl-dots .owl-dot.active {
    border-color: #1cb098;
}

.hero-2 {
    background-size: cover;
    background-position: center;
    padding-top: 238px;
    padding-bottom: 150px;
    position: relative;
    z-index: 1;
}

.hero-2::before {
    background-color: rgba(27, 41, 69, 0.75);
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.hero-text-2 {
    text-align: center;
}

.hero-text-2 h1 {
    color: #ffffff;
    font-size: 42px;
    font-weight: 600;
}

.breadcrumb {
    display: block;
    text-align: center;
    margin-bottom: 0;
    padding-left: 0;
}

.breadcrumb li {
    color: #ffffff;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
}

.breadcrumb li a {
    color: #1cb098;
}

.breadcrumb li a:hover {
    color: #ffffff;
}


/* services */
.services {
    padding-top: 120px;
    padding-bottom: 96px;
}

.section-heading {
    text-align: center;
    margin-bottom: 80px;
}

.section-heading span {
    color: #2f2a55;
    font-weight: 500;
}

.section-heading h1 {
    color: #2f2a55;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-heading p {
    font-size: 18px;
}

.section-heading p strong {
    color: #1cb098;
    text-transform: uppercase;
}

.single-service {
    background-color: #edf7ff;
    border: 3px solid #edf7ff;
    margin-bottom: 24px;
    padding: 30px;
    transition-duration: 0.3s;
}

.single-service i {
    color: #1cb098;
    font-size: 50px;
}

.single-service h3 {
    margin-bottom: 5px;
}

.single-service h3 a {
    color: #2f2a55;
    font-weight: 700;
}

.single-service h3 a:hover {
    color: #1cb098;
}

.single-service:hover {
    border-color: #1cb098;
    box-shadow: 0 16px 43px rgba(121, 121, 121, 0.48);
}

/* about */
.about {
    padding-top: 120px;
    padding-bottom: 90px;
}

.about {
    padding-top: 120px;
    padding-bottom: 90px;
}

.about-text {
    margin-bottom: 30px;
}

.about-text h1 {
    color: #002639;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 25px;
}

.tile-gallery {
    margin-bottom: 30px;
    padding-right: 95px;
    padding-left: 95px;
    position: relative;
}

.tile-gallery img {
    border-radius: 10px;
}

.tile-gallery img:nth-child(1) {
    width: 100%;
}

.tile-gallery img:nth-child(2) {
    position: absolute;
    top: 60px;
    left: 0;
}

.tile-gallery img:nth-child(3) {
    position: absolute;
    right: 0;
    bottom: 60px;
}

/* about-feature */
.single-about-feature {
    margin-bottom: 30px;
}

.single-about-feature i {
    color: #1cb098;
    font-size: 50px;
}

.single-about-feature h2 {
    font-size: 30px;
    margin-bottom: 16px;
}

.single-about-feature p:last-child {
    margin-bottom: 0;
}

.status {
    padding-top: 120px;
    padding-bottom: 90px;
}

.status-list {
    margin-bottom: 30px;
}

.status-list table {
    border: 1px solid #29313a;
    width: 100%;
}

.status-list table tr {
    border-top: 1px solid #29313a;
}

.status-list table th {
    border-left: 1px solid #29313a;
    padding: 10px 15px;
}

.status-list table tbody th {
    font-weight: 400;
}

/* featured */
.featured {
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    padding-top: 120px;
    padding-bottom: 96px;
    position: relative;
    z-index: 1;
}

.featured::before {
    background-color: rgba(27, 41, 69, 0.75);
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.featured .section-heading span {
    color: #ffffff;
}

.featured .section-heading h1 {
    color: #ffffff;
}

.featured .section-heading p {
    color: #ffffff;
}

.single-feature {
    border: 1px solid #1cb098;
    border-top: none;
    color: #ffffff;
    text-align: center;
    margin-top: 25px;
    margin-bottom: 24px;
    padding: 60px 30px 30px;
    position: relative;
}

.single-feature::before {
    background-color: #1cb098;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 1px;
    width: 120px;
}

.single-feature::after {
    background-color: #1cb098;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 1px;
    width: 120px;
}

.single-feature i {
    color: #1cb098;
    font-size: 70px;
    position: absolute;
    top: -52px;
    right: 0;
    left: 0;
}

.single-feature h5 {
    color: #ffffff;
}

/* team */
.team {
    padding-top: 120px;
    padding-bottom: 96px;
}

.single-team {
    margin-bottom: 24px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.single-team::before {
    background-color: #1cb098;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    height: calc(100% - 60px);
    width: calc(100% - 60px);
    opacity: 0;
    transform: translate(-50%, 100%) scale(0.15);
    transition-duration: 0.3s;
}

.single-team img {
    width: 100%;
}

.team-text {
    color: #ffffff;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, 50%);
    transition-duration: 0.3s;
    width: calc(100% - 60px);
    visibility: hidden;
}

.team-text h4 {
    margin-bottom: 8px;
}

.team-text h4 a {
    color: #ffffff;
}

.team-text h4 a:hover {
    color: #2f2a55;
}

.team-text span {
    display: inline-block;
    margin-bottom: 16px;
}

.team-social-media a {
    color: #ffffff;
    margin-right: 12px;
    margin-left: 12px;
}

.team-social-media a:hover {
    color: #2f2a55;
}





.team-carousel .owl-dots {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 24px;
}

.team-carousel .owl-dots .owl-dot {
    border: 3px solid #2f2a55;
    border-radius: 50%;
    height: 15px;
    width: 15px;
    margin-right: 5px;
    margin-left: 5px;
}

.team-carousel .owl-dots .owl-dot.active {
    border-color: #1cb098;
}

.team-profile-information ul {
    list-style: none;
    display: inline-block;
    margin-bottom: 0;
    padding-left: 0;
}

.team-profile-information ul li {
    border-bottom: 1px solid #29313a;
    line-height: 30px;
    margin-bottom: 10px;
    padding-right: 103px;
}

.profile-text {
    padding-top: 24px;
}

.profile-text h4 {
    color: #2f2a55;
    font-weight: 700;
    line-height: 42px;
    margin-bottom: 10px;
}

/* blog */
.blog {
    padding-top: 120px;
    padding-bottom: 96px;
}

.single-blog {
    margin-bottom: 24px;
}

.blog-img {
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    overflow: hidden;
}

.blog-img img {
    transition-duration: 0.3s;
    width: 100%;
}

.blog-text {
    background-color: #0c2b37;
    padding: 35px 45px;
    text-align: center;
}

.blog-meta span {
    color: #9a9a9a;
    font-size: 13px;
    font-weight: 400;
    margin-right: 20px;
}

.blog-meta span i {
    margin-right: 3px;
}

.blog-meta span a {
    color: #9a9a9a;
}

.blog-meta span a:hover {
    color: #1cb098;
}

.blog-text h4 {
    font-weight: 600;
    line-height: 36px;
}

.blog-text h4 a {
    color: #2f2a55;
}

.blog-text h4 a:hover {
    color: #1cb098;
}

.read-more {
    color: #1cb098;
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 10px;
    position: relative;
}

.read-more::before {
    background-color: #1cb098;
    content: "";
    position: absolute;
    bottom: 1px;
    left: 0;
    height: 1px;
    width: 100%;
    transform: scale(1);
    transition-duration: 0.3s;
}

.read-more:hover::before {
    transform: scale(-1);
}

.single-blog:hover .blog-img img {
    transform: scale(1.05);
}

.blog-pagination {
    margin-bottom: 30px;
    text-align: center;
}

.blog-pagination ul {
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}

.blog-pagination ul li {
    display: inline-block;
}

.blog-pagination ul li a {
    color: #2f3034;
    border-radius: 50%;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    line-height: 35px;
    text-align: center;
    height: 35px;
    width: 35px;
}

.blog-pagination ul li a.active {
    background-color: #1cb098;
    color: #ffffff;
}

.blog-list .blog-text {
    background-color: #ffffff;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 0;
    text-align: left;
}

.blog-list .blog-text p {
    color: #7a7a7a;
    margin-top: 20px;
}

.blog-sidebar {
    border: 1px solid #ebebeb;
    border-radius: 5px;
    padding: 30px 30px 22px;
    margin-left: 65px;
}

.blog-search {
    margin-bottom: 30px;
    position: relative;
}

.blog-search input {
    background-color: #f8fafb;
    border: 1px solid #f8fafb;
    color: #415674;
    height: 50px;
    width: 100%;
    padding-right: 50px;
    padding-left: 25px;
    transition-duration: 0.3s;
}

.blog-search input::placeholder {
    color: #415674;
}

.blog-search input:focus,
.blog-search input:hover {
    border-color: #1cb098;
}

.blog-search button {
    background-color: #f8fafb;
    border: none;
    position: absolute;
    top: 1px;
    right: 1px;
    bottom: 0;
    height: 48px;
    width: 50px;
    transition-duration: 0.3s;
}

.blog-search button:hover {
    background-color: #1cb098;
    color: #ffffff;
}

.blog-sidebar h5 {
    color: #2f2a55;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
}

.blog-sidebar ul {
    list-style: none;
    margin-bottom: 30px;
    padding-left: 0;
}

.recent-post ul li a {
    align-items: center;
    display: flex;
}

.recent-post ul li:not(:last-child) a {
    margin-bottom: 30px;
}

.post-thumbnail {
    margin-right: 20px;
}

.post-thumbnail img {
    border-radius: 6px;
    height: 70px;
    width: 70px;
}

.post-text h6 {
    color: #2f3034;
    font-size: 14px;
    line-height: 16px;
    font-weight: 600;
    transition-duration: 0.3s;
}

.recent-post ul li a:hover h6 {
    color: #1cb098;
}

.post-meta {
    color: #838383;
    display: inline-block;
    font-size: 12px;
    line-height: 24px;
    margin-top: 5px;
}

.post-text i {
    color: #1cb098;
    margin-right: 5px;
}

.categories ul li a {
    color: #29303c;
    display: block;
    font-size: 14px;
}

.categories ul li:not(:last-child) a {
    margin-bottom: 15px;
}

.categories ul li a i {
    color: #1cb098;
    font-size: 10px;
    line-height: 24px;
    margin-right: 5px;
}

.categories ul li a span {
    background-color: #e4f2f8;
    border-radius: 50%;
    color: #1cb098;
    display: inline-block;
    line-height: 20px;
    height: 20px;
    width: 20px;
    text-align: center;
}

.categories ul li a:hover {
    color: #1cb098;
}

.tag ul {
    margin-bottom: 0;
}

.tag ul li {
    display: inline-block;
}

.tag ul li a {
    background-color: #f9f9f9;
    border-radius: 5px;
    color: #666666;
    display: inline-block;
    font-size: 14px;
    padding: 8px 15px;
    margin-right: 4px;
    margin-bottom: 10px;
}

.tag ul li a:hover {
    background-color: #1cb098;
    color: #ffffff;
}

/* brand */
.brand {
    padding-bottom: 96px;
}

.brand-carousel .owl-stage {
    align-items: center;
    display: flex;
    text-align: center;
}

.single-brand {
    margin-bottom: 24px;
}

.single-brand a {
    display: inline-block;
}

.single-brand img {
    width: auto !important;
}

/* gallery */
.gallery {
    padding-top: 120px;
    padding-bottom: 90px;
}

.single-portfolio {
    margin-bottom: 30px;
}

.single-portfolio img {
    width: 100%;
}

/* contact */
.contact {
    padding-top: 120px;
    padding-bottom: 90px;
}

.contact-text {
    margin-bottom: 30px;
}

.contact-text h1 {
    font-size: 42px;
    font-weight: 600;
    color: #2f2a55;
}

.contact-information {
    margin-top: 30px;
    padding-left: 84px;
    position: relative;
}

.contact-information i {
    background-color: #d2efea;
    color: #1cb098;
    display: inline-block;
    border-radius: 50%;
    font-size: 25px;
    line-height: 60px;
    text-align: center;
    height: 60px;
    width: 60px;
    position: absolute;
    top: calc(50% - 26px);
    left: 0;
}

.contact-information span {
    font-size: 18px;
}

.contact-information a {
    color: #2f2a55;
    display: block;
    font-size: 18px;
    font-weight: 700;
}

.contact-information a:hover {
    color: #1cb098;
}

.contact-form {
    margin-bottom: 30px;
}

.contact-form input,
.contact-form textarea {
    border: 1px solid #e1e1e1;
    color: #415674;
    height: 55px;
    width: 100%;
    margin-bottom: 30px;
    padding: 10px 25px;
    transition-duration: 0.3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #415674;
}

.contact-form textarea {
    resize: none;
    height: 135px;
}

.contact-form input:hover,
.contact-form textarea:hover,
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #1cb098;
}

.contact-form button {
    border: none;
    background-color: #1cb098;
    color: #ffffff;
    display: inline-block;
    font-weight: 700;
    height: 55px;
    padding-right: 40px;
    padding-left: 40px;
    transition-duration: 0.3s;
}

.contact-form button:hover {
    background-color: #2f3034;
}

iframe {
    display: block;
    height: 550px;
    width: 100%;
}

/* footer */
footer {
    background-color: #05252f;
    padding-top: 100px;
    padding-bottom: 8px;
}

.footer-widget {
    color: #ffffff;
    margin-bottom: 24px;
}

.footer-widget p {
    font-size: 14px;
    margin-top: 15px;
}

.address {
    margin-top: 20px;
    padding-left: 35px;
    position: relative;
}

.address i {
    color: #1cb098;
    font-size: 25px;
    margin-top: -22px;
    position: absolute;
    top: 50%;
    left: 0;
}

.address a {
    color: #1cb098;
    display: block;
    font-size: 14px;
    font-weight: 400;
}

.address a:hover {
    color: #ffffff;
}

.footer-widget h5 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 15px;
}

.footer-menu {
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}

.footer-menu li a {
    color: #cacaca;
    font-size: 14px;
    display: inline-block;
    margin-top: 10px;
}

.footer-menu li a:hover {
    color: #1cb098;
}

.payments a img {
    display: block;
    margin-top: 10px;
    width: 100px;
}

footer hr {
    margin-top: 60px;
    margin-bottom: 24px;
}

.copyright-text {
    color: #ffffff;
    font-size: 14px;
}

.social-media {
    margin-bottom: 24px;
}

.social-media a {
    color: #ffffff;
    margin-right: 12px;
}

.social-media a:hover {
    color: #1cb098;
}

/* responsive-breakpoints */
/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    header {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .main-menu nav ul li ul.sub-menu li a {
    text-align: left;
    align-items: flex-start;
}

    header .box-btn {
     margin-right: 30px;
     padding:10px;
     font-size: 15px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text-2 h1 {
        font-size: 32px;
    }

    .section-heading h1 {
        font-size: 30px;
    }

    .blog-sidebar {
        margin-left: 0;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    header {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    header .box-btn {
        margin-right: 57px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text-2 h1 {
        font-size: 32px;
    }

    .section-heading h1 {
        font-size: 38px;
    }

    .blog-sidebar {
        margin-left: 0;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    header {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    header .box-btn {
        margin-right: 35px;
    }

    .hero-text h1 {
        font-size: 50px;
    }

    .section-heading h1 {
        font-size: 38px;
    }

    .blog-sidebar {
        margin-left: 0;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {}


 .whatsapp-button {
            position: fixed;
            bottom: 80px;
            right: 25px;
            background-color: #25d366; /* WhatsApp green color */
            color: #fff;
            padding: 10px 19px;
            border-radius: 50%;
            text-align: center;
            font-size: 20px;
            text-decoration: none;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
        }

        .whatsapp-button:hover {
            background-color: #128C7E; /* Darker WhatsApp green color on hover */
        }