/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Infine - Life and Business Coach HTML Template
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us css
06. Our Services css
07. Our Potential Css
08. Our Pricing Css
09. Our Expertise Css
10. Intro Video Css
11. How We Work Css
12. Company Growth Css
13. Our FAQs Css
14. Our Testimonial css
15. Our Blog Css
16. Footer css
17. About Us Page css
18. Services Page css
19. Service Single css
20. Blog Archive css
21. Blog Single css
22. Team Page css
23. Team Single css
24. Pricing Page css
25. Testimonial Page css
26. Image Gallery css
27. Video Gallery css
28. FAQs Page css
29. Contact Us Page css
30. Book Appointment Page css
31. 404 Page css
32. Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root {
    --primary-color: #14279b;
    --secondary-color: #3d56b2;
    --text-color: #737373;
    --accent-color: #5c7aea;
    --dark-color: #019297;
    --white-color: #ffffff;
    --divider-color: #dfe1de;
    --dark-divider-color: #ffffff33;
    --error-color: rgb(230, 87, 87);
    --default-font: "Fustat", sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body {
    font-family: var(--default-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6em;
    background: #dcdcdc;
    color: var(--text-color);
}

p {
    line-height: 1.7em;
    margin-bottom: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 700;
    line-height: 1.4em;
    color: var(--primary-color);
}

figure {
    margin: 0;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    outline: 0;
}

a:focus {
    text-decoration: none;
    outline: 0;
}

html,
body {
    width: 100%;
    overflow-x: clip;
}

.container {
    max-width: 1300px;
}

.container,
/* .container-fluid, */
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding-right: 15px;
    padding-left: 15px;
}

.image-anime {
    position: relative;
    overflow: hidden;
}

.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.row {
    margin-right: -15px;
    margin-left: -15px;
}

.row > * {
    padding-right: 15px;
    padding-left: 15px;
}

.row.no-gutters {
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters > * {
    padding-right: 0px;
    padding-left: 0px;
}

.btn-default {
    position: relative;
    display: inline-block;
    background-image: linear-gradient(
        to right,
        var(--dark-color) 0%,
        var(--accent-color) 50%,
        var(--dark-color) 100%
    );
    background-size: 200% auto;
    border-radius: 100px;
    color: var(--white-color);
    font-size: 16px;
    font-weight: 700;
    line-height: 1em;
    text-transform: capitalize;
    border: none;
    padding: 17px 54px 17px 20px;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
    z-index: 0;
}

.btn-default:hover {
    background-position: right center;
}

.btn-default::before {
    content: "";
    position: absolute;
    top: -1px;
    bottom: 0;
    right: 0;
    width: 24px;
    height: 24px;
    background: url("../images/arrow-white.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transform: translate(-20px, 50%);
    transition: all 0.4s ease-in-out;
}

.btn-default:hover::before {
    transform: translate(-20px, 50%) rotate(45deg);
}

.btn-default.btn-highlighted {
    background: var(--white-color);
    color: var(--primary-color);
    transition: all 0.5s ease-in-out;
}

.btn-default.btn-highlighted:hover {
    background: transparent;
    color: var(--white-color);
}

.btn-default.btn-highlighted::before {
    background: url("../images/dark-arrow.svg");
}

.btn-default.btn-highlighted::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    bottom: 0;
    width: 0;
    height: 106%;
    background: linear-gradient(
        263deg,
        var(--dark-color) 0.16%,
        var(--accent-color) 99.84%
    );
    border-radius: 100px;
    transition: 0.4s ease-in-out;
    z-index: -1;
}

.btn-default.btn-highlighted:hover:after {
    width: 100%;
    left: 0;
    right: auto;
}

.cb-cursor:before {
    background: linear-gradient(
        263deg,
        var(--accent-color) 0.16%,
        var(--dark-color) 99.84%
    );
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background: linear-gradient(
        263deg,
        var(--accent-color) 0.16%,
        var(--dark-color) 99.84%
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-container,
.loading {
    height: 200px;
    position: relative;
    width: 200px;
    border-radius: 100%;
}

.loading-container {
    margin: 40px auto;
}

.loading {
    border: 1px solid transparent;
    border-color: transparent var(--white-color) transparent var(--white-color);
    animation: rotate-loading 1.5s linear 0s infinite normal;
    transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
    transition: all 0.5s ease-in-out;
}

#loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    max-width: 250px;
    transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.bg-section {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    border-radius: 30px;
}

.section-row {
    margin-bottom: 80px;
}

.section-row .section-title {
    margin-bottom: 0;
}

.section-btn {
    text-align: end;
}

.section-title-content p {
    margin: 0;
}

.section-title {
    margin-bottom: 40px;
}

.section-title h3 {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4em;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-color);
    background: url("../images/icon-sub-heading.svg") no-repeat;
    background-position: left center;
    background-size: auto;
    padding-left: 24px;
    margin-bottom: 20px;
}

.section-title h1 {
    font-size: 70px;
    font-weight: 300;
    line-height: 1.1em;
    color: var(--primary-color);
    margin-bottom: 0;
}

.section-title h2 {
    font-size: 50px;
    font-weight: 300;
    line-height: 1.1em;
    color: var(--primary-color);
    margin-bottom: 0;
}

.section-title h1 span,
.section-title h2 span {
    font-weight: 700;
    background-image: linear-gradient(
        267.43deg,
        var(--accent-color) 4.95%,
        var(--dark-color) 97.92%
    );
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title p {
    margin-top: 30px;
    margin-bottom: 0;
}

.help-block.with-errors ul {
    margin: 0;
    text-align: left;
}

.help-block.with-errors ul li {
    color: var(--error-color);
    font-size: 14px;
    font-weight: 500;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header {
    position: relative;
    z-index: 100;
    margin-top: 50px;
    padding: 0 30px;
}

.main-header .container-fluid {
    position: relative;
    padding-bottom: 20px;
    display: flex;
    justify-content: end;
    align-items: center;
}

.main-header .container-fluid .logo {
    display: inline-block;
    width: 300px;
    height: auto;
    position: absolute;
    left: 0;
    margin-left: 0px;
    top: 10px;
    padding-top: 10px;
}

.main-header .container-fluid::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 0;
    border-bottom: 1px solid var(--dark-divider-color);
    width: calc(100% - 30px);
}

header.main-header .header-sticky {
    position: relative;
    top: 0;
    z-index: 100;
}

header.main-header .header-sticky.hide {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    border-radius: 0;
}

header.main-header .header-sticky.active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    transform: translateY(0);
    background: var(--primary-color);
    border-bottom: 1px solid var(--dark-divider-color);
}

header.main-header .header-sticky.active .container-fluid {
    padding-bottom: 0;
}

header.main-header .header-sticky.active .container-fluid::before {
    display: none;
}

.navbar {
    width: 100%;
    max-width: 1560px;
    margin: 0 auto;
    padding: 20px 0;
    align-items: center;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.main-menu .nav-menu-wrapper {
    flex: 3;
    text-align: right;
    margin-left: 20px;
}

.main-menu .nav-menu-wrapper > ul {
    align-items: center;
    display: inline-flex;
}

.main-menu .nav-menu-wrapper > ul > li.active {
    padding-bottom: 10px;
    scale: 1.1;
    position: relative;
}

.main-menu .nav-menu-wrapper > ul > li.active::after {
    content: "";
    height: 3px;
    background-color: var(--accent-color);
    margin: 5px auto 0;
    border-radius: 2px;
    transition: all 0.3s ease;
    width: 80%;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.main-menu ul li {
    margin: 0;
    position: relative;
}

.main-menu ul li a {
    font-size: 16px;
    font-weight: 700;
    padding: 15px !important;
    color: var(--white-color);
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu > a:after {
    content: "\f107";
    font-family: "FontAwesome";
    font-weight: 900;
    font-size: 14px;
    margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
    color: var(--accent-color);
}

.main-menu ul ul {
    visibility: hidden;
    opacity: 0;
    transform: scaleY(0.8);
    transform-origin: top;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 230px;
    border-radius: 20px;
    position: absolute;
    left: 0;
    top: 100%;
    background: linear-gradient(
        263deg,
        var(--accent-color) 0.16%,
        var(--dark-color) 99.84%
    );
    text-align: left;
    transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu:first-child ul {
    width: 230px;
}

.main-menu ul ul ul {
    left: 100%;
    top: 0;
    text-align: left;
}
.main-menu ul li:hover > ul {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu > a:after {
    content: "\f105";
    float: right;
}

.main-menu ul ul li {
    margin: 0;
    padding: 0;
}

.main-menu ul ul li a {
    color: var(--white-color);
    padding: 8px 20px !important;
    transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover > ul {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
    color: var(--primary-color);
    background-color: transparent;
    padding: 8px 20px 8px 23px !important;
}

.header-btn {
    align-items: center;
}

.btn-phone {
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    color: var(--white-color);
    margin-right: 25px;
    display: inline-flex;
    align-items: center;
    transition: all 0.4s ease-in-out;
}

.btn-phone:hover {
    color: var(--accent-color);
}

.btn-phone i {
    color: var(--white-color);
    font-size: 20px;
    margin-right: 15px;
    transition: all 0.4s ease-in-out;
}

.btn-phone:hover i {
    color: var(--accent-color);
}

.responsive-menu,
.navbar-toggle {
    display: none;
}

.responsive-menu {
    top: 0;
    position: relative;
}

.slicknav_btn {
    background: linear-gradient(
        263deg,
        var(--accent-color) 0.16%,
        var(--dark-color) 99.84%
    );
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0;
    border-radius: 6px;
}

.slicknav_icon .slicknav_icon-bar {
    display: block;
    width: 100%;
    height: 3px;
    width: 22px;
    background-color: var(--white-color);
    border-radius: 6px;
    margin: 4px auto !important;
    transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
    margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
    margin-bottom: 0 !important;
}

.navbar-toggle
    a.slicknav_btn.slicknav_open
    .slicknav_icon
    span.slicknav_icon-bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle
    a.slicknav_btn.slicknav_open
    .slicknav_icon
    span.slicknav_icon-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggle
    a.slicknav_btn.slicknav_open
    .slicknav_icon
    span.slicknav_icon-bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
    position: absolute;
    width: 100%;
    padding: 0;
    background: linear-gradient(
        263deg,
        var(--accent-color) 0.16%,
        var(--dark-color) 99.84%
    );
}

.slicknav_menu ul {
    margin: 5px 0;
}

.slicknav_menu ul ul {
    margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
    position: relative;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    padding: 10px 20px;
    color: var(--white-color);
    line-height: normal;
    margin: 0;
    border-radius: 0 !important;
    transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.slicknav_menu ul ul li a {
    padding: 10px 20px 10px 30px;
}

.slicknav_arrow {
    font-size: 0 !important;
}

.slicknav_arrow:after {
    content: "\f107";
    font-family: "FontAwesome";
    font-weight: 900;
    font-size: 12px;
    margin-left: 8px;
    color: var(--white-color);
    position: absolute;
    right: 15px;
    top: 15px;
    transition: all 0.3s ease-out;
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero {
    position: relative;
    background: url(../images/hero-bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 350px 30px 30px;
    margin-top: -120px;
    overflow: hidden;
}

.hero::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
            180deg,
            rgba(4, 42, 45, 0) 65.37%,
            var(--primary-color) 100.18%
        ),
        linear-gradient(
            270deg,
            rgba(4, 42, 45, 0) 59.75%,
            var(--primary-color) 100%
        );
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-video .hero-bg-video {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.hero.hero-video .hero-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero.hero-slider-layout {
    background: none;
    padding: 0;
}

.hero.hero-slider-layout .hero-slide {
    position: relative;
    padding: 320px 30px 200px;
}

.hero.hero-slider-layout .hero-slide::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
            180deg,
            rgba(4, 42, 45, 0) 65.37%,
            var(--primary-color) 100.18%
        ),
        linear-gradient(
            180deg,
            rgba(4, 42, 45, 0) 59.75%,
            var(--primary-color) 100%
        );
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero.hero-slider-layout .hero-pagination {
    position: absolute;
    bottom: 50px;
    text-align: left;
    padding-left: calc(((100vw - 1560px) / 2) - 45px);
    z-index: 2;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--white-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

.hero-slide .hero-section {
    text-align: left;
}

.hero-section {
    position: relative;
    width: 100%;
    max-width: 1560px;
    margin: 0 auto;
    z-index: 2;
}

.hero-slide .hero-section .hero-content {
    width: 100%;
    max-width: 750px;
}

.hero-slide .hero-section .hero-content .section-title p {
    font-size: 18px;
    font-weight: 500;
    color: var(--white-color);
}

.hero-content .section-title h3,
.hero-content .section-title h1 {
    color: var(--white-color);
}

.hero-btn .btn-default.btn-highlighted {
    margin-left: 0;
}

/************************************/
/***      06. Our Services Css     ***/
/************************************/

.our-service {
    padding: 100px 0;
    background: var(--primary-color) url(../images/service-bg-circle.svg);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: auto;
}

.service-content {
    position: sticky;
    top: 100px;
    margin-right: 30px;
}

.service-content .section-title h3,
.service-content .section-title h2,
.service-content .section-title p {
    color: var(--white-color);
}

.service-item-list {
    border-bottom: 1px solid var(--dark-divider-color);
    margin-bottom: 40px;
    padding-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 60px 30px;
}

.service-item {
    width: calc(50% - 15px);
}

.service-item .icon-box {
    background-image: linear-gradient(
        to right,
        var(--dark-color) 0%,
        var(--accent-color) 50%,
        var(--dark-color) 100%
    );
    background-size: 200% auto;
    border-radius: 50%;
    height: 70px;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.4s ease-in-out;
}

.service-item:hover .icon-box {
    background-position: right center;
}

.service-item .icon-box img {
    max-width: 35px;
}

.service-item-content h3 {
    font-size: 22px;
    text-transform: capitalize;
    color: var(--white-color);
    margin-bottom: 10px;
}

.service-item-content p {
    color: var(--white-color);
    margin-bottom: 0;
}

/************************************/
/***        16. Footer Css        ***/
/************************************/

.main-footer {
    position: relative;
    background: url(../images/footer-bg-1.png), var(--primary-color);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: auto;
    padding: 100px 0 0;
    margin-bottom: 60px;
}

.main-footer::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background: url(../images/footer-bg-2.png);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: auto;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.main-footer .container {
    position: relative;
    z-index: 1;
}

.about-footer {
    width: 100%;
    max-width: 600px;
}

.about-footer .section-title h2 {
    color: var(--white-color);
}

.footer-contact-info h3 {
    font-size: 22px;
    text-transform: capitalize;
    color: var(--white-color);
    margin-bottom: 20px;
}

.footer-contact-info p {
    color: var(--white-color);
    margin: 0;
}

.footer-contact-info p span {
    font-size: 20px;
    font-weight: 600;
}

.footer-social-links {
    margin-top: 30px;
}

.footer-social-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-social-links ul li {
    display: inline-block;
    border-radius: 50%;
    margin-right: 15px;
}

.footer-social-links ul li:last-child {
    margin-right: 0;
}

.footer-social-links ul li a {
    border: 1px solid var(--white-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a {
    border-color: var(--accent-color);
}

.footer-social-links ul li a i {
    color: var(--white-color);
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a i {
    background-image: linear-gradient(
        267.43deg,
        var(--accent-color) 4.95%,
        var(--dark-color) 97.92%
    );
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-copyright {
    border-top: 1px solid var(--dark-divider-color);
    padding: 40px 0;
    margin-top: 80px;
}

.footer-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

.footer-menu ul li {
    display: inline-block;
    margin-right: 30px;
}

.footer-menu ul li:last-child {
    margin-right: 0;
}

.footer-menu ul li a {
    color: var(--white-color);
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.footer-menu ul li:hover a {
    color: var(--accent-color);
}

.footer-copyright-text {
    text-align: end;
}

.footer-copyright-text p {
    color: var(--white-color);
    margin: 0;
}

/************************************/
/*** 	   31. 404 Page css       ***/
/************************************/

.error-page {
    padding: 100px 0;
}

.error-page-image {
    text-align: center;
    margin-bottom: 30px;
}

.error-page .error-page-content {
    text-align: center;
}

.error-page-content-heading {
    margin-bottom: 30px;
}

.error-page-content-body p {
    margin-bottom: 30px;
}

/************************************/
/***       32. Responsive Css     ***/
/************************************/

@media only screen and (max-width: 1800px) {
    .bg-section {
        width: calc(100% - 100px);
        margin-left: 50px;
        margin-right: 50px;
        max-width: 100%;
    }
}

@media only screen and (max-width: 1560px) {
    .bg-section {
        width: calc(100% - 30px);
        margin-left: 15px;
        margin-right: 15px;
    }

    header.main-header {
        width: calc(100% - 30px);
        margin-left: 15px;
        margin-right: 15px;
        margin-top: 15px;
    }

    .navbar {
        max-width: 100%;
    }

    .hero.hero-slider-layout .hero-pagination {
        padding-left: 0;
        margin: 0 0 0 45px;
    }

    .main-footer {
        margin-bottom: 15px;
    }
}

@media only screen and (max-width: 1024px) {
    header.main-header {
        padding: 0px;
    }

    .main-menu .nav-menu-wrapper {
        margin-left: 20px;
    }

    .main-menu ul li a {
        padding: 10px !important;
    }

    .hero {
        padding: 350px 0px 100px;
    }
}

@media only screen and (max-width: 991px) {
    header.main-header {
        padding: 0;
    }

    .main-header .container-fluid .logo {
        top: 0;
        bottom: 100px;
    }

    .navbar {
        flex-wrap: wrap;
        padding: 15px 0;
    }

    .navbar-collapse.main-menu {
        order: 2;
        width: 100%;
        margin-top: 15px;
    }

    .navbar-toggle {
        order: 1;
    }

    .auth-btns {
        order: 1;
        margin-left: auto;
        margin-right: 15px;
    }

    header.main-header .header-sticky.active .navbar {
        padding: 20px 0;
    }

    .slicknav_nav li,
    .slicknav_nav ul {
        display: block;
    }

    .responsive-menu,
    .navbar-toggle {
        display: block;
    }

    .header-btn {
        display: none;
    }

    .bg-section {
        width: 100%;
        margin-left: 0px;
        margin-right: 0px;
        border-radius: 0;
    }

    header.main-header {
        width: 100%;
        margin: 0px;
    }

    .section-row {
        margin-bottom: 40px;
    }

    .section-btn {
        text-align: left;
        margin-top: 20px;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .section-title h3 {
        margin-bottom: 10px;
    }

    .section-title h1 {
        font-size: 55px;
    }

    .section-title h2 {
        font-size: 40px;
    }

    .section-title p {
        margin-top: 15px;
    }

    .hero {
        padding: 280px 0 0;
        margin-top: -95px;
    }

    .hero.hero-slider-layout .hero-slide {
        padding: 245px 0px 150px;
    }

    .hero-slide .hero-section .hero-content {
        max-width: 550px;
    }

    .hero.hero-slider-layout .hero-pagination {
        margin: 0 0 0 15px;
    }

    .hero-slide .hero-section .hero-content .section-title p {
        font-size: 16px;
    }

    .our-service {
        background-size: 50% auto;
        padding: 50px 0;
    }

    .service-content {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .service-item-list {
        margin-bottom: 30px;
        padding-bottom: 30px;
        gap: 30px;
    }

    .service-item .icon-box {
        margin-bottom: 20px;
    }

    .service-item-content h3 {
        font-size: 20px;
    }

    .main-footer {
        background-size: 30% auto;
        padding: 50px 0 0;
        margin-bottom: 0;
    }

    .main-footer::before {
        background-size: 30% auto;
    }

    .footer-social-links ul li {
        margin-right: 10px;
    }

    .footer-social-links ul li a {
        width: 30px;
        height: 30px;
    }

    .footer-social-links ul li a i {
        font-size: 16px;
    }

    .footer-copyright {
        padding: 20px 0;
        margin-top: 40px;
    }

    .footer-menu ul li {
        margin-right: 20px;
    }

    .our-value-item {
        padding-top: 30px;
    }

    .page-gallery {
        padding: 50px 0 20px;
    }

    .page-video-gallery {
        padding: 50px 0 20px;
    }

    .contact-information {
        margin-left: 0;
    }

    .contact-info-item {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .error-page {
        padding: 50px 0;
    }

    .error-page-image {
        margin-bottom: 20px;
    }

    .error-page-content-heading {
        margin-bottom: 15px;
    }

    .error-page-content-body p {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .btn-default {
        padding: 15px 49px 15px 15px;
    }

    .btn-default::before {
        top: -2px;
        transform: translate(-15px, 50%);
    }

    .btn-default:hover::before {
        transform: translate(-15px, 50%) rotate(45deg);
    }

    .section-row {
        margin-bottom: 30px;
    }

    .section-title h1 {
        font-size: 40px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .section-title p {
        margin-top: 15px;
    }

    .hero {
        padding: 200px 0 100px;
        margin-top: -95px;
    }

    .hero.hero-slider-layout .hero-slide {
        padding: 195px 0px 100px;
    }

    .hero.hero-slider-layout .hero-pagination {
        bottom: 30px;
    }

    .hero-btn .btn-default {
        margin: 0 50px 10px 0;
    }

    .hero-btn .btn-default.btn-highlighted {
        margin: 0px;
    }

    .service-item {
        width: 100%;
    }

    .service-item .icon-box {
        height: 60px;
        width: 60px;
    }

    .service-item .icon-box img {
        max-width: 25px;
    }

    .service-item-content h3 {
        font-size: 18px;
    }

    .footer-contact-info h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .footer-contact-info p span {
        font-size: 18px;
    }

    .footer-social-links {
        margin: 30px 0;
    }

    .footer-copyright {
        padding: 15px 0;
        margin-top: 30px;
    }

    .footer-menu {
        margin-bottom: 10px;
    }

    .footer-menu ul,
    .footer-copyright-text {
        text-align: center;
    }

    .auth-btns {
        margin-right: 10px;
    }

    /* Make sure the logo doesn't push buttons off screen */
    .main-header .container-fluid .logo {
        width: 150px;
        margin-left: 10px;
    }
}
