

:root {
    --main-color: #fdcd00;
    --main-color2: #09098E;
    --text-color: #242424;
    --text-color2: #5a5959;
    --font: "Open Sans", sans-serif;
    --font2: "Roboto", sans-serif;
    --transition: .3s ease-in-out;
}

.colorWhite {
    color: white !important;
}

.colorMain {
    color: var(--text-color) !important;
}

.headerArea {
    position: relative;
    z-index: 9;
    font-family: var(--font);
    font-weight: 400;
}

.headerArea a {
    text-decoration: none;
    outline: none;
    color: inherit;
}

.headerAreaTop {
    padding: 25px 0;
}

.headerAreaBox {
    margin-right: 30px;
    display: flex;
    align-items: center;
}

.headerAreaBox:last-child {
    margin-right: 0;
}

.headerAreaBox .headerAreaBoxIcon {
    display: flex;
    font-size: 35px;
    color: var(--main-color);
}

.headerAreaBoxTitle {
    margin-left: 15px;
    color: var(--text-color);
    font-size: 15px;
}

.headerAreaBoxTitle span {
    display: block;
    font-weight: 700;
}

.headerAreaBoxTitle a {
    display: block;
    font-weight: 400;
}

.headerAreaBottom {
    background: var(--main-color2);
    border-radius: 10px;
}

.headerAreaBottomMenu .menu-menu-1-container > ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.headerAreaBottomMenu .menu-menu-1-container > ul > li {
    list-style-type: none;
    position: relative;
}

.headerAreaBottomMenu .menu-menu-1-container > ul > li > a {
    display: block;
    font-family: var(--font2);
    font-weight: 500;
    font-size: 16px;
    color: white;
    transition: 0.3s ease-in-out;
    padding: 20px;
}

.headerAreaBottomMenu .menu-menu-1-container > ul > li:hover > a {
    color: var(--main-color);
    transition: 0.3s ease-in-out;
}

.headerAreaBottomMenu .menu-menu-1-container > ul > li > ul {
    position: absolute;
    left: 0;
    margin: 0;
    padding: 0;
    width: 200px;
    background: white;
    visibility: hidden;
    opacity: 0;
}

.headerAreaBottomMenu .menu-menu-1-container > ul > li:hover > ul {
    visibility: visible;
    opacity: 1;
    transition: var(--transition);
}

.headerAreaBottomMenu .menu-menu-1-container > ul > li > ul > li {
    list-style: none;
}

.headerAreaBottomMenu .menu-menu-1-container > ul > li > ul > li a {
    display: block;
    color: #000;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: .5px;
    transition: var(--transition);
}

.headerAreaBottomMenu .menu-menu-1-container > ul > li > ul > li a:hover {
    background: var(--main-color2);
    color: #fff;
    transition: var(--transition);
}

.headerAreaBottomSocial {
    padding-right: 20px;
}

.headerAreaBottomSocial ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.headerAreaBottomSocial ul li {
    list-style-type: none;
}

.headerAreaBottomSocial ul li a {
    width: 30px;
    height: 30px;
    background: var(--main-color);
    color: var(--main-color2);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: 0.3s ease-in-out;
    margin-right: 10px;
}

.headerAreaBottomSocial ul li:last-child a {
    margin-right: 0;
}

.headerAreaBottomSocial ul li a:hover {
    background: white;
    transition: 0.3s ease-in-out;
}

.sliderArea {
    position: relative;
    top: -32px;
}

.heroSwiperContent {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 99;
}

.heroSwiperContentOverlay::after {
    content: '';
    position: absolute;
    height: calc(100% * 2);
    background: var(--main-color);
    width: 150px;
    top: 50%;
    left: -40px;
    z-index: 0;
    transform: translateY(-50%);
    border-radius: 10px;
}

.heroSwiperContentTopTitle {
    font-weight: 500;
    font-size: 18px;
    font-style: italic;
    color: #fff;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 10px rgba(0, 0, 0, .3);
}

.heroSwiperContentTitle {
    width: 50%;
    font-weight: 400;
    color: #fff;
    font-size: 60px;
    line-height: 75px;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 10px rgba(0, 0, 0, .3);

}

.bodyTopTitle {
    font-weight: 700;
    font-size: 18px;
    font-style: italic;
    color: var(--main-color);
    position: relative;
    margin-left: 35px;
}

.bodyTopTitle::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 3px;
    background: var(--text-color);
    top: 50%;
    transform: translateY(-50%);
    left: -35px;
}

.aboutArea img {
    border-radius: 15px;
}

.bodyTitle {
    font-weight: 700;
    font-size: 37px;
    color: var(--text-color);
}

.bodyText {
    font-size: 16px;
    font-weight: 400;
    color: var(--main-color2);
}

.aboutText {
    margin-top: 20px;
    font-weight: 400;
    font-size: 16px;
    color: var(--text-color2);
}

.serviceArea {
    background-image: url(../images/bg-layer.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    padding: 100px 0 25px 0;
}

.serviceBox {
    min-height: 250px;
    background: white;
    border-radius: 10px;
    position: relative;
    padding: 25px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    transition: var(--transition);
}

.serviceBox:hover {
    background: var(--main-color2);
    transition: var(--transition);
}

.serviceBox:hover .serviceBoxTitle {
    color: var(--main-color);
    transition: var(--transition);
}

.serviceBox:hover .serviceBoxText {
    color: white;
    transition: var(--transition);
}

.serviceBoxIcon {
    width: 85px;
    height: 85px;
    background: var(--main-color);
    border-radius: 10px;
    margin-top: -85px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.serviceBoxIcon i {
    display: flex;
    font-size: 50px;
    color: var(--main-color2);
}

.serviceBoxTitle {
    font-weight: 700;
    font-size: 24px;
    color: var(--text-color);
}

.serviceBoxText {
    margin-top: 15px;
    font-weight: 400;
    font-size: 16px;
    color: var(--text-color2);
}

.contactArea {
    background-image: url(../images/contact-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    padding: 75px 0;
}

.contactAreaText {
    font-weight: 700;
    font-size: 36px;
    color: #fff;
}

.contactAreaText span {
    color: var(--main-color);
    font-style: italic;
}

.contactAreaTitle a {
    font-weight: 700;
    font-size: 60px;
    text-decoration: none;
    color: var(--main-color);
}

.brandBox {
    margin: 0 auto;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brandBox img {
    width: 100%;
}

.historyBox1 {
    background-image: url(../images/form-bg.png);
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 30px;
    filter: grayscale(1);

}

.historyBox {
    height: 330px;
}

.historyBox img {
    width: 100%;
    height: 330px;
    object-fit: cover;
}

.historyArea .col-12 {
    padding: 0 !important;
}
.historyBox2 img{
    object-position: top;
}

.historyBox4 {
    background: var(--main-color);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../images/form-bg.png);
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 30px;
    filter: grayscale(1);
}

.footerArea {
    background-image: url(../images/footer-bg-1.jpg);
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 75px 0;
}

.footerAreaBox {
    margin-bottom: 0 !important;
    border-right: 1px solid white;
}

.col-md-3:last-child .footerAreaBox {
    border-right: none;
}

.footerInnerList {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footerInnerList .footerAreaBoxIcon {
    width: 30px;
    flex: none;
    font-size: 15px;
    color: var(--main-color);
}

.footerAreaBoxText, .footerAreaBoxText a {
    text-decoration: none;
    color: white;
    font-size: 15px;
    font-weight: 400;
}

@media only screen and (min-width: 900px) {
    .mb-md-75 {
        margin-bottom: 75px;
    }

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

    .mt-md-75 {
        margin-top: 75px;
    }

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

    .pr-3 {
        padding-right: 30px;
    }
}

@media only screen and (max-width: 899px) {
    .mb-75 {
        margin-bottom: 75px;
    }

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

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

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

    .headerAreaBox:first-child {
        display: none;
    }

    .headerLogo img {
        width: 100%;
    }

    .headerAreaBottomMenu::after {
        content: '';
        position: absolute;
        width: 100%;
        left: 100%;
        top: 0;
        height: 100%;
        background: rgba(0, 0, 0, .6);
    }

    .headerAreaBottomMenu {
        position: fixed;
        width: 80%;
        height: 100%;
        background: white;
        left: 0;
        top: 0;
        z-index: 999;
        padding: 30px;
        display: block;
        visibility: hidden;
        opacity: 0;
    }

    .headerAreaBottomMenu.active {
        visibility: visible;
        opacity: 1;
        transition: var(--transition);
    }

    .headerAreaBottomMenu .menu-menu-1-container > ul {
        display: block;
        width: 100%;
    }

    .headerAreaBottomMenu .menu-menu-1-container > ul > li {
        width: 100%;
        padding: 0;
    }

    .headerAreaBottomMenu .menu-menu-1-container > ul > li > a {
        padding: 15px;
        color: var(--text-color);
    }

    .headerAreaBottomMenu .menu-menu-1-container > ul > li > ul {
        margin: 0;
        visibility: hidden;
        opacity: 0;
        background: none;
        box-shadow: none;
        padding: 0 15px;
        height: 0;
    }

    .headerAreaBottomMenu .menu-menu-1-container > ul > li:hover > ul {
        visibility: visible;
        opacity: 1;
        transition: var(--transition);
        height: 100%;
        position: relative;
    }

    .headerAreaBottomMenu .menu-menu-1-container > ul > li > ul > li > a {
        margin-bottom: 10px;
        color: var(--text-color2);
        padding: 5px 0;
    }

    .headerAreaBottomMenu .menu-menu-1-container > ul > li > ul > li:last-child > a {
        margin-bottom: 0;
    }

    .headerAreaBottomMenu .menu-menu-1-container > ul > li:hover > ul {
        margin-top: 0;
    }

    .mobileMenuClose {
        position: absolute;
        top: 15px;
        display: flex;
        right: 15px;
        font-size: 17px;
        line-height: 10px;
    }

    .headerAreaBottom {
        padding: 10px;
    }

    .headerAreaBottomSocial {
        padding-right: 0;
    }

    .mobileMenuOpen {
        color: white;
        font-size: 25px;
    }

    .sliderArea {
        top: 0;
        margin-top: 25px;
    }

    .sliderArea img {
        height: 500px;
        width: auto;
        object-fit: cover;
        object-position: center;
    }

    .heroSwiperContentOverlay::after {
        background: #fdcd0099;
    }

    .heroSwiperContentTitle {
        width: 100%;
        font-size: 35px;
        line-height: 45px;
    }

    .heroSwiperContentTopTitle {
        font-size: 15px;
    }

    .serviceArea {
        padding: 50px 0;
    }

    .bodyTitle {
        font-size: 30px;
    }

    .contactAreaText {
        font-size: 30px;
    }

    .contactAreaTitle a {
        font-size: 45px;
    }

    .historyBox {
        height: 260px;
    }

    .historyArea .col-12:nth-of-type(1) {
        order: 1;
    }

    .historyArea .col-12:nth-of-type(2) {
        order: 0;
    }

    .historyArea .col-12:nth-of-type(3) {
        order: 2;
    }

    .historyArea .col-12:nth-of-type(4) {
        order: 3;
    }

    .footerAreaBox {
        border-right: none;
        border-bottom: 1px solid white;
        padding-bottom: 15px;
    }

    .col-md-3:last-child .footerAreaBox {
        padding-bottom: 0;
        border-bottom: 0;
    }
}


.breadcrumbs-wrapper {
    background: #f9f9f9;
    padding: 10px 0;
}

.breadcrumbs-wrapper #breadcrumbs {
    list-style: none;
    margin-bottom: 0;
    overflow: hidden;
}

.breadcrumbs-wrapper li {
    display: inline-block;
    vertical-align: middle;
    font-size: 13px;
}

.breadcrumbs-wrapper li a{
    color: var(--main-color2);
    text-decoration: none;
}

.breadcrumbs-wrapper li.item-current {
    color: var(--main-color2);
}
.content-wrapper{
    padding: 20px 0;
}

.page-title{
    font-size: 22px;
    border-bottom: 1px solid var(--main-color);
    padding-bottom: 15px;
    margin-bottom: 30px;
    display: block;
    width: 100%;
    color: var(--main-color2);
}
.category-name a{
    font-size: 22px;
    font-weight: bold;
    text-decoration: none !important;
    display: block;
    color: black;

}
.category-description{
    font-size: 16px;
    font-weight: 500;
    color: #363636;
}
.category-thumbnail img{
    border-radius: 10px;
    width: 100%;
}

.category-box{
    border: 1px solid #e1e1e1;
    padding: 15px;
    border-radius: 15px;
}