* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

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

ul {
    list-style: none;
    margin: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
span,
a {
    font-family: 'Offside', cursive;
    color: #242424
}

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

:root {
    --main-color: #E9BE20;
    --main-light: #ffd743
}

/*=== DIVIDER ===*/
.divider-bg {
    position: fixed;
    inset: 0 0 0 0;
    z-index: -1;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

.divider-bg div {
    height: 100%;
}

.divider-bg .container ul {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.divider-bg .container ul li {
    height: 100%;
    width: 2px;
    background-color: #bababa;
    opacity: .1;

}

/*=== SROLLBAR ===*/
/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Selection color */
::selection {
    background: var(--main-color);
}

.letter {
    color: var(--main-color)
}

a {
    font-size: 16px;
    text-decoration: none
}

p {
    line-height: 1.8
}

body {
    background-image: url(/imgs/bg.png);
    background-attachment: fixed;
}

section {
    padding: 100px 0;
}

.main-color {
    color: var(--main-color);
}

.btn {
    padding: 10px 25px;
    transition: .4s ease-in-out
}

.form-check-input:checked {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.form-control:focus {
    border-color: var(--main-color);
    box-shadow: 0 0 0 0.25rem rgb(169 137 26 / 25%);
}

.page-hero-title:first-letter {
    color: var(--main-color);
}

.main-btn {
    background-color: var(--main-color);

}

.main-btn:hover {
    background-color: var(--main-light);

}

.secondary-btn {
    background-color: #D9D9D9
}

.secondary-btn:hover {
    background-color: #D2D9D9
}

.divider {
    width: 150px;
    height: 20px;
    background-image: url(/imgs/divider.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin: 15px 0
}

.page-hero {
    padding: 100px 0px;
    background-image: url(/imgs/hero.webp);
    background-size: cover;
    background-position: center 73%;
    margin-bottom: 75px;
    position: relative;
    z-index: 9;
}

.page-hero:after {
    content: '';
    position: absolute;
    bottom: -12px;
    right: 0;
    left: 0;
    height: 12px;
    background-color: #222;
    border: 6px dashed var(--main-color);
}

/*=== NAV ===*/
nav {
    background-color: rgba(255, 255, 255, 1);
    backdrop-filter: blur(5px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, .03);
    position: fixed;
    right: 0;
    left: 0;
    z-index: 99990;
    top: 0;
}

nav .row > div {
    display: inline-flex;
    align-items: center
}

.nav-links {
    justify-content: center;
    width: 100%;
}

nav li {
    cursor: pointer;
}

nav li a {
    transition: .3s ease-in-out;
}

nav li a:hover {
    color: var(--main-color);
}

.nav-icons {
    width: 100%;
    justify-content: space-between
}

.has-menu {
    position: relative;
}

.has-menu .menu {
    position: absolute;
    top: 40px;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
}

.has-menu:hover .menu {
    height: auto;
}

.has-menu .menu li {
    opacity: 0;
    background-color: rgba(255, 255, 255, 1);
    backdrop-filter: blur(5px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, .03);
    padding: 15px 10px;
}

.has-menu:hover .menu li:first-of-type {
    animation: menu 0.3s ease-in-out forwards;

}

.has-menu:hover .menu li:nth-of-type(2) {
    animation: menu 0.3s ease-in-out forwards;
    animation-delay: 0.3s;
}

.has-menu:hover .menu li:nth-of-type(3) {
    animation: menu 0.3s ease-in-out forwards;
    animation-delay: 0.6s;
}

@keyframes menu {
    0% {
        opacity: 0;
        transform: scale(.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.dropdown-toggle::after {
    display: none !important;
}

.dropdown-menu.show {
    transform: translate(1373px, 91px) !important;
}

/*=== Hero ===*/
.hero {
    height: 100vh;
    background-image: url(https://www.doosanbobcat.com/images/sub/compact_intro_bg.png);
    background-size: 105%;
    background-repeat: no-repeat;
    align-items: center;
    position: relative;
    background-position: center;

}

@keyframes zoomout {
    from {
        background-size: 135%;
    }
    to {
        background-size: 105%;
    }
}

.hero:after {
    content: '';
    position: absolute;
    inset: 0 0 0 0;
    background-color: rgba(0, 0, 0, .4);
    z-index: 2;
}

.hero .svg {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    z-index: 9;
}

.hero p {
    color: white;
}

.hero .svg p {
    color: white;
    margin-top: 10px;
}

.hero svg {
    margin: auto;
    display: block;
}

@keyframes scroll {
    0% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(60px);
    }
}

svg #wheel {
    animation: scroll ease 2s infinite;
}

.hero h1 {
    margin-bottom: 15px;
    color: white;
}

.hero .container {
    z-index: 999;
}

/*=== about section ===*/
.about-section .col-md-6 img {
    display: block;
    margin: auto;
    height: 80px;
    margin-bottom: 15px
}

.about-section h6 {
    font-weight: 500;
    font-size: 19px;
    color: #121212
}

.about-slider img {
    border-radius: 6px;
    object-fit: cover;
    cursor: pointer;
}

.about-slider > img {
    width: 100%;
    margin-bottom: 15px;
    height: 270px;

}

.about-slider div {
    justify-content: space-between
}

.about-slider div img {
    width: 150px;
}

/*=== equipment section ===*/
.equipment-section .divider {
    margin: 15px auto
}

.equipment-section .tabs img {
    height: 70px;
    margin-bottom: 15px;
    filter: grayscale(1);
    transition: .3s ease-in-out;
}

.equipment-section .tabs .col-md-4 img,
.equipment-section .tabs .col-md-4 h4 {
    cursor: pointer;
}

.equipment-section .tabs .col-md-4 img,
.equipment-section .tabs .col-md-4 h4 {
    cursor: pointer;
}

.equipment-section .tabs .col-md-4 div:hover img {
    filter: grayscale(0)
}

.equipment-section .tabs img.active {
    filter: grayscale(0)
}

.product-container {
    margin: 20px 0;

}

.product-container > img,
.product-container a:first-of-type img {
    border-radius: 10px;
    height: 300px;
    object-fit: cover;
    width: 100%;
    margin-bottom: 10px;

}

.product-container .category {
    color: #999;
    font-size: 15px;
    margin-top: 10px;
    margin-bottom: 5px;
}

.product-container .btn {
    width: 100%;
}

/*=== Reasons ===*/
.reason-container {
    padding: 30px 20px;
    margin: 20px 0;
    background: white;
    transition: .4s ease-in-out;
    position: relative;
    top: 0;
}

.reason-container:hover {
    top: -20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .07)
}

.behind-border {
    position: absolute;
    left: -10px;
    top: -10px;
    width: 50%;
    height: 50%;
    background-color: #E9BE20;
    opacity: .26;
    z-index: -1 !important;
    transition: .4s ease-in-out;
}

.reason-container:hover .behind-border {
    width: 100%;
    height: 100%;
    right: 10px;
    bottom: 10px;
}

.reason-container i {
    font-size: 40px;
    background-color: #ecbf1d2e;
    border-radius: 50%;
    height: 90px;
    width: 90px;
    line-height: 90px;
    color: #b89722;
    margin-bottom: 10px;
}

.reason-container p {
    font-size: 16px;
}

/*=== Panner ====*/
.panner-section {
    text-align: center;
    position: relative;
    background-image: url(/imgs/about/s2.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}

.panner-section:before {
    content: '';
    position: absolute;
    top: -12px;
    right: 0;
    left: 0;
    height: 12px;
    background-color: #222;
    border: 6px dashed var(--main-color);
}

.panner-section:after {
    content: '';
    position: absolute;
    bottom: -12px;
    right: 0;
    left: 0;
    height: 12px;
    background-color: #222;
    border: 6px dashed var(--main-color);
}

.panner-section .row {
    z-index: 3;
    position: relative;

}

.panner-holder:after {
    content: '';
    position: absolute;
    inset: 0 0 0 0;
    background: #000D54;
    background-image: url("/imgs/landing-bg.png");
    background-size: cover;
    opacity: .88
}

.panner-section img {
    width: 90px;
    margin: 20px auto
}

.panner-section h2 {
    color: wheat
}

.panner-section p {
    max-width: 60%;
    margin: 20px auto;
    color: white
}

/*=== facts ===*/
.facts h3 {
    font-size: 42px;
    font-weight: 900;
    color: #555;
    text-align: left
}

.facts p {
    text-align: left
}

.facts .fact {
    padding: 5px 20px
}

/*=== Untitled ===*/
.untitled {
    padding: 0;
}

.untitled .container {
    position: relative;
    background-image: url(/imgs/untitled.png);
    background-position: center -90px;
    background-size: cover;
    padding: 35px 0 120px;
    background-repeat: no-repeat;
    overflow-x: hidden;
}


.untitled .col-md-8 > div {
    position: relative;
    z-index: 2
}

.untitled .col-md-8 > div:last-child {
    min-width: 60%;
    width: 60%;
}

.untitled .col-md-8 > div p,
.untitled .col-md-8 > div h1 {
    color: aliceblue
}

/*=== Footer ===*/
footer {
    margin-top: 50px;
    background: white;
    padding-bottom: 20px;
}

footer .logo {
    width: 150px;
    margin: auto;
}

footer ul {
    margin-left: 10px;
    padding-left: 0;

    overflow: hidden;
}

footer ul li {
    margin: 10px 0;
    padding: 3px 0;
    width: fit-content;
}

footer h4 {
    margin-bottom: 15px
}

footer h4::first-letter {
    color: var(--main-color)
}

footer .top {
    padding: 20px 0;
}

footer .top i {
    color: var(--main-color);
}

footer .middle {

    padding: 30px 0 0;
}

footer .top,
footer .middle,
footer .rights {
    border-top: 2px solid #a4a4a4
}

footer .rights {
    margin-top: 10px;
    margin-bottom: 0;
    padding: 20px 0 0;
}

/*=== Profile ===*/
.profile {
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    position: relative;
    font-family: sans-serif !important;
    top: -100px;
}

.profile *:not(i) {
    font-family: sans-serif !important;
}

.profile input,
.profile textarea {
    display: block;
    margin: 5px 0 10px;

}

.profile .card > div:first-of-type i {
    color: #888888;
    opacity: .4;
    margin-right: 5px;
}

.profile .profile-breadcrumb {

    margin-bottom: 10px;
}

.profile .profile-breadcrumb a:last-child {
    color: var(--main-color);
}

.profile .col-md-4 .card {
    padding: 30px 0;
}

.profile .col-md-4 ul {
    margin: 0;
    padding: 0;
}

.profile .col-md-4 ul li,
.profile .col-md-4 ul li a {
    padding: 15px 10px;
    cursor: pointer;
    transition: .3s ease-in-out;
}

.profile .col-md-4 ul li i,
.profile .equipment .deal-details i {
    font-size: 13px;
    margin-right: 7px;
    opacity: .5;
    color: #888888;
    transition: .3s ease-in-out;
}

.profile .col-md-4 ul li:not(:last-child) {
    border-bottom: 1px solid #eeedff;
}

.profile .col-md-4 ul li.active {
    background-color: #f6f6f6;
}

.profile .col-md-4 ul li.active i {
    opacity: .9;

}

.custom-file.avater_uploads {
    height: 150px;
    background: #f4f5f7;
    position: relative;
    border-radius: 10px;
    border: 1px solid #e4e8ef;

}

.custom-file-input {
    position: absolute;
    z-index: 2;
    width: 100%;
    margin: 0;
    overflow: hidden;
    opacity: 0;
}

.custom-file.avater_uploads label.custom-file-label {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-file.avater_uploads label.custom-file-label i {
    font-size: 100px;
    color: #ccd2de;
}

.custom-table-footer {
    margin-bottom: 20px;
}

.custom-table-header ul,
.custom-table-footer ul {
    border-radius: 5px;
    border: 1px solid #eeedff;
}

.custom-table-header ul,
.custom-table-footer ul,
.custom-table-body ul {
    justify-content: space-between;

}

.custom-table-header ul li,
.custom-table-body ul li,
.custom-table-footer ul li {
    padding: 10px;
    width: 20%;
}

.custom-table-body ul {
    background-color: #f9f9f9;
    border-radius: 5px;
    margin: 5px 0;
    align-items: center;
    transition: .3s ease-in-out;
}

.custom-table-header ul li:first-of-type,
.custom-table-footer ul li:first-of-type,
.custom-table-body ul li:first-of-type {
    width: 10%;
}

.custom-table-header ul li:nth-child(2),
.custom-table-footer ul li:nth-child(2),
.custom-table-body ul li:nth-child(2) {
    width: 30%;
}

.custom-table-body .btn {
    padding: 0.375rem 0.75rem;
}

.custom-table-body:hover ul:not(:hover) {
    opacity: .5;
    transform: scale(.98);
    transform-origin: center;
}


.profile .equipment {
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 5px;
    margin: 5px 0;
}

.profile .equipment h4 span {
    font-size: 12px;
}

.profile .equipment p {
    margin-bottom: 0;
}

.profile .equipment img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
}

.profile .equipment .deal-details i {
    margin-right: 5px;
    font-size: 18px;
}


/*=== Responsive ===*/
@media only screen and (min-width: 500px) {
    .hero {
        animation-name: zoomout;
        animation-duration: 6s;
    }
}

@media only screen and (max-width: 480px) {

    html {
        overflow-x: hidden;
    }

    p {
        font-size: 12px;
    }

    #wrapper {
        padding-top: 60px;
    }

    section {
        padding: 50px 0;
    }

    section .mt-5 {
        margin-top: 20px !important;
    }

    /*navbar*/
    .fixed-top {
        width: 100vw;
    }

    .offcanvas.offcanvas-end {
        height: 100vh;
    }

    .fixed-top {
        width: 100vw;
    }

    .offcanvas.offcanvas-end {
        height: 100vh;
    }

    .navbar-brand img {
        height: 35px;
    }

    .navbar-toggler-icon {
        width: 1em;
        height: 1em;
    }

    /*hero*/
    .hero {
        background-image: url(https://www.doosanbobcat.com/images/sub/compact_intro_bg.png);
        background-size: cover;
        background-position: center;
    }

    .hero h1 {
        margin-bottom: 10px;
    }

    /*about*/
    .about-slider div img {
        width: 100px;
    }

    .about-section .col-md-7 {
        margin-top: 25px;
    }

    /*products*/
    .product-container > img, .product-container a:first-of-type img {
        height: 150px;
        border-radius: 5px;
    }

    #product-container .col-6 {
        padding: 5px;
    }

    .product-container .category {
        font-size: 11px;
    }

    .product-container h4 {
        font-size: 17px;
    }

    .product-container p {
        font-size: 12px;
    }

    .equipment-section .tabs img {
        height: 45px;
        margin-bottom: 15px;
        filter: grayscale(1);
        transition: .3s ease-in-out;
    }

    /*facts*/
    .facts h3 {
        font-size: 30px;
        font-weight: 900;
        color: #555;
        text-align: left;
    }


    /*panner*/
    .panner-section p {
        max-width: 100%;
    }

    .untitled .container {
        padding-top: 10px;
    }

    .untitled-mobile h1,
    .untitled-mobile p {
        color: white;
    }

    .untitled-mobile h1 {
        font-size: 19px !important;
    }

    /*login*/
    .login .submit {
        width: 100%;
    }

    /*Footer*/
    footer .top * {
        text-align: center !important;
    }

    footer h4 {
        font-size: 18px;
        font-weight: bold;
        white-space: nowrap;
    }

    footer li {
        font-size: 15px;
        position: relative;
        left: 25px;
    }

    footer li:before {
        content: '';
        position: absolute;
        left: -20px;
        top: 50%;
        transform: translateY(-50%);
        height: 3px;
        width: 10px;
        background-color: var(--main-color);
    }

    footer img {
        display: block;
        margin: auto;

    }

    footer img + h4 {
        padding-bottom: 30px;
        text-align: center;
    }

    /*  Cart Page  */
    .ordered {
        margin: 15px 0 0 0 !important;
        padding: 0;
    }

    .ordered img {
        max-width: 100px !important;
        max-height: 100px !important;
        border-radius: 3px !important;
        margin-right: 10px !important;

    }

    .ordered h3 {
        font-size: 15px !important;
    }

    .details .d-flex {
        flex-direction: column;
    }

    .details p {
        margin-bottom: 0;
    }

    .ordered li {
        padding: 10px 5px !important;
    }

    .ordered li .delete-form {
        display: none !important;
    }

    .details .btn {
        padding: 6px 9px !important;
        font-size: 13px !important;
        transition: .4s ease-in-out;
        text-align: center;
        opacity: .4;
    }

    /*  Profile  */
    .custom-table-body ul {
        justify-content: flex-start;
        padding: 0;

    }

    .custom-table-body ul li {
        width: 100% !important;

    }

    #mini-equip img {
        width: 100%;
    }

    .mini-profile .equipment {
        padding: 10px;
        background-color: #f9f9f9;
        border-radius: 5px;
        margin-bottom: 10px;
    }

    .mini-profile .equipment h4 {
        font-size: 18px;
        margin-top: 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .mini-profile .equipment span {
        font-size: 12px;
    }
}
