#container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
}

#container #content {
    flex: 1;
}

body {
    font-family: "Quicksand", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

figure {
    margin-bottom: 0;
}

.figure1 img {
    object-fit: cover;
}

.subheading {
    font-size: 21px;
    font-weight: 600;
    color: #f58634;
    position: relative;
    display: inline-block;
}

.subheading:hover::after,
.subheading.alt:hover::before {
    width: 80px;
}

.subheading.alt::before {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background-color: #f58634;
    position: absolute;
    right: 108%;
    top: 16px;
    transition-duration: 0.3s;
}

.subheading::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background-color: #f58634;
    position: absolute;
    left: 108%;
    top: 16px;
    transition-duration: 0.3s;
}

/*
header
*/
#header {
    padding-bottom: 32px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

#header::after {
    content: '';
    display: block !important;
    width: 100%;
    height: 150px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

#header .container-fluid {
    padding: 0 45px;
}

#header .logo {
    position: relative;
    z-index: 99999;
}

#header .logo img {
    max-width: 80px;
}

#header .menu-btn {
    margin-left: auto;
    margin-left: auto;
    border: none;
    background: transparent;
    z-index: 99999;
    position: relative;
    display: none;
}

#header .menu-btn span {
    display: block;
    background: #fff;
    width: 22px;
    height: 2px;
    margin-bottom: 5px;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -webkit-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -moz-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -o-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -ms-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

#header .menu-btn span:nth-child(2) {
    width: 15px;
    margin-left: auto;
    transition-duration: 2s;
}

#header .menu-btn span:last-child {
    margin-bottom: 0;
}

#header .menu-btn.active span:nth-child(1) {
    -webkit-transform: translate(0px, 8px) rotate(225deg);
    -ms-transform: translate(0px, 8px) rotate(225deg);
    transform: translate(0px, 8px) rotate(225deg);
}

#header .menu-btn.active span:nth-child(2) {
    width: 22px;
    -webkit-transform: translate(-11px, 1px);
    -ms-transform: translate(-11px, 1px);
    transform: translate(-11px, 1px);
    opacity: 0;
}

#header .menu-btn.active span:nth-child(3) {
    -webkit-transform: translate(0px, -6px) rotate(-225deg);
    -ms-transform: translate(0px, -6px) rotate(-225deg);
    transform: translate(0px, -6px) rotate(-225deg);
}

#header #main-navigation {
    z-index: 9999;
    position: relative;
}

#header #main-navigation .menu {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

#header #main-navigation .menu li {
    margin-right: 28px;
    font-family: inherit;
    font-weight: 900;
    font-size: 12px;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -webkit-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -moz-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -o-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -ms-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

#header #main-navigation .menu li:hover {
    -webkit-transform: translateY(4px);
    -ms-transform: translateY(4px);
    transform: translateY(4px);
}

#header #main-navigation .menu li:last-child {
    margin-right: 0;
}

#header #main-navigation .menu li a {
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
}



@media (max-width: 1399px) {
    #header #main-navigation .menu li {
        margin-right: 20px;
    }
}

@media (max-width: 1199px) {
    #header .container-fluid {
        padding: 0 30px;
    }

    #header #main-navigation .menu li {
        font-size: 10px;
        margin-right: 16px;
    }
}

@media (max-width: 991px) {
    #header .menu-btn {
        display: block;
    }

    #header {
        padding-bottom: 25px;
    }

    #header .scrolabel-content {
        width: 100%;
        height: 100%;
        overflow-y: auto;
    }

    #header #main-navigation {
        position: fixed;
        top: 0;
        left: -100%;
        background: linear-gradient(0deg, rgba(107, 105, 105, 1) 0%, rgba(0, 0, 0, 1) 100%);
        width: 100%;
        height: 110vh;
        padding-top: 96px;
        padding-bottom: 50px;
        transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
        -webkit-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
        -moz-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
        -o-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
        -ms-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    }

    #header #main-navigation .menu {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
    }

    #header #main-navigation .menu li {
        margin-right: 0;
        margin-bottom: 15px;
    }

    #header #main-navigation .menu li:last-child {
        margin-bottom: 0;
    }

    .menu-open {
        overflow: hidden;
    }

    .menu-open #header #main-navigation {
        left: 0;
    }
}

/*banner*/
#banner {
    position: relative;
}

#banner .description {
    padding: 40px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    color: #fff;
    max-width: 700px;
}

/*
footer
*/
#footer .footer-dashboard {
    background-color: #181717;
    padding-top: 48px;
    padding-bottom: 39px;
    color: #fff;
}

#footer .footer-dashboard .h5,
#footer .footer-dashboard h5 {
    color: #fff;
}

#footer .footer-menu {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}

#footer .footer-menu li a {
    text-decoration: none;
    color: #fff;
    font-size: 0.8125rem;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -webkit-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -moz-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -o-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -ms-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

#footer .footer-menu li a:hover {
    margin-left: 5px;
}

#footer .socialbe,
#footer .contact {
    list-style: none;
    padding-left: 0;
}

#footer .socialbe li,
#footer .contact li {
    margin-bottom: 8px;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -webkit-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -moz-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -o-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -ms-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

#footer .socialbe li:hover,
#footer .contact li:hover {
    margin-left: 5px;
}

#footer .socialbe li a,
#footer .contact li a {
    color: #fff;
    text-decoration: none;
    font-size: 0.8125rem;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}

#footer .socialbe li a i,
#footer .contact li a i {
    margin-right: 8px;
    display: inline-block;
    min-width: 13px;
    text-align: center;
}

#footer .site-info {
    background-color: #0f0f0f;
    padding: 16px 0;
    font-size: 14px;
}

#footer .site-info a:hover {
    text-decoration: none;
}

#footer .site-info p {
    color: #fff;
}

#footer .footer-logo img {
    max-width: 80px;
}

/* sliders */

.slider1 .slick-dots {
    padding-left: 0;
    list-style: none;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.slider1 .slick-dots li {
    display: inline-block;
    margin-right: 6px;
}

.slider1 .slick-dots li.slick-active button {
    background-color: #000;
}

.slider1 .slick-dots li button {
    font-size: 0;
    border: none;
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 20px;
    background-color: #fff;
    border: 1px solid #fff;
}

.slider1 .slide img {
    width: 100%;
    min-height: 350px;
    object-fit: cover;
}

/* section */
.section {
    padding: 80px 0;
}

.overview .over-img {
    max-width: 75%;
    position: relative;
}

.overview .over-sce {
    position: absolute;
    right: -110px;
    top: 103px;
    max-width: 50%;
}

@media (max-width:767px) {
    .overview .over-sce {
        right: -29%;
        top: auto;
        bottom: 10%;
    }
}

/* list */
.list1 li::marker {
    font-size: 20px;
    color: #f58634;
}

.list1 li {
    margin-bottom: 8px;
}

/* card */
.card1 {
    box-shadow: 0 2px 10px 6px #00000038;
    border-radius: 12px;
    text-align: center;
    min-height: 200px;
}

.card1 header {
    padding: 10px 20px;
    background-color: #f58434be;
    color: #fff;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.card1 header span {
    font-size: 18px;
    font-weight: 700;
}

.card1 .content {
    padding: 16px;
}

.card1 .content h2 {
    font-weight: 500;
}

.card2 {
    padding: 10px;
    box-shadow: 1px 1px 1px 1px #00000059;
    transition-duration: 0.3s;
}

.card2 .badge {
    padding: 10px;
    font-size: 14px;
    margin-bottom: 10px;
}

.card2 img {
    width: 100%;
    border: 4px solid rgb(255, 193, 7);

}

.card2:hover {
    transform: scale(1.1);
}

/*box*/
.box {
    transition-duration: 0.3s;
}

.box img {
    max-height: 200px;
}

.box:hover {
    transform: scale(1.1);
}