html {
    scroll-behavior: smooth;
}

:root {
    --main-color: #131921;
    /* --main-color: #13547a; */


    --light-blue: #008E9B;
    --secondary-color: #008E9B;
    --btnEnq-color: #137a3a;
    --btnData-color: #13547a;
}

body {
    /* font-family: "Macklin Sans", Arial, Helvetica, sans-serif; */
    font-family: "Roboto", sans-serif;
    /* font-family: "Oswald", sans-serif; */
    /* font-family: "Catamaran"; */
    scroll-behavior: smooth;
}

/* // <uniquifier>: Use a unique and descriptive class name */
/* // <weight>: Use a value from 200 to 700 */

.oswald {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.oswald-regular {
    /* font-family: "Oswald", sans-serif; */
    /* font-optical-sizing: auto;
    font-weight: 700; */
    /* font-style: regular; */
    /* font-family: "Oswald variant0", Tofu; */
    font-family: "Oswald", sans-serif;

    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
}

.catamaran {
    font-family: "Catamaran";
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.roboto-regular {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* .cat img {
    height: 16rem;
} */

.bg-main {
    background-color: var(--main-color);
    color: #ffffff;
}

.hover\:bg-main:hover {
    background-color: var(--main-color);
    color: #ffffff;
}

.hover\:bg-light-blue:hover {
    background-color: var(--light-blue);
    color: #ffffff;
}


.bg-ham {
    background-color: var(--secondary-color);
    color: #ffffff;
}

.bg-second {
    background-color: var(--secondary-color);
    color: #ffffff;
}

.hover\:bg-second:hover {
    background-color: var(--secondary-color);
    color: #ffffff;
}


.catMenu:hover {
    background-color: var(--main-color);
    color: #ffffff;
}

.bg-header {
    background-color: #ffffff;
    color: var(--main-color);
}

.bg-btnEnq {
    background-color: var(--btnEnq-color);
    color: #f9f9f9;
}

.bg-btnData {
    background-color: var(--btnData-color);
    color: rgb(255, 255, 255);
}


/* Main CSS */





.navbar-nav>.nav-item:after {
    content: "";
    position: absolute;
    /* width: 100%; */
    height: 2px;
    background: #0081ff;
    bottom: -2px;
    transition: 400ms ease;
    transform: scaleX(1.5);
    opacity: 0;
}

.navbar-nav>.nav-item:hover:after {
    transform: scaleX(1);
    opacity: 1;
}






/* Dropdown CSS */
.nav-item .dropdown {
    /* width: 200px; */
    /* display: block; */
    position: absolute;
    top: 55px;
    transition: 300ms;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    z-index: 999;
    box-shadow: 0 5px 5px 0px rgba(0, 0, 0, 0.15);
}

.nav-item .dropdown .nav-link {
    color: #000000;
}

.nav-item .dropdown .dropdown {
    top: 0;
    left: calc(100% + 0px);
    border-top: 0;
    border-left: 1px solid rgba(0, 0, 0, 0.15);
}

.nav-item .dropdown .dropdown:before {
    top: 10px;
    left: -10px;
    border: 5px solid transparent;
    border-right-color: #000;
}

.nav-item .dropdown:before {
    content: "";
    position: absolute;
    top: -10px;
    left: 10px;
    border: 5px solid transparent;
    border-bottom-color: #000;
    display: none;
}

.nav-item .dropdown .nav-item:not(:last-child) {
    margin-bottom: 5px;
}

.nav-item .dropdown>.nav-item:hover>.nav-link {
    color: #0081ff;
}

.nav-item:hover>.dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.nav-item:hover>a::before {
    transform: rotate(90deg);
}


.nav-item.icon>a:before {
    /* content: ""; */
    position: absolute;
    right: -10px;
    top: calc(50% + 0px);
    transform: translateY(-50%);
    border: 4px solid transparent;
    border-left-color: inherit;
    transition: 0.15s linear;
    color: var(--main-color);
    /* background-color: var(--main-color); */
}

.nav-item.icon:hover>a::before {
    transform: rotate(90deg);
}









/* ======== Mega Menu Styles =========== */
.mega-menu {
    background: #f0f0f0;
    display: none;
    left: 0;
    position: absolute;
    text-align: left;
    width: 100%;
}

.mega-menu h3 {
    color: #444;
}

.mega-menu ul {
    float: left;
    margin-bottom: 20px;
    /* margin-right: 40px; */
    /* width: 180px; */
}

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

.mega-menu a {
    /* border-bottom: 1px solid #ddd; */
    /* color: #4ea3d8; */
    display: block;
    /* padding: 10px 0; */
}

/* .mega-menu a:hover {
    color: #4ea3d8;
} */



/* #Droppable Class Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* .droppable {
    position: static;
} */

.droppable>a:after {
    /* content: "\f107";
    font-family: FontAwesome; */
    /* font-size: 12px; */
    /* padding-left: 6px; */
    position: relative;
    /* top: -1px; */
}

.droppable:hover .mega-menu {
    display: block;
}

.droppable:hover .link .menuicon {
    rotate: 180deg;
    /* animation-name: spin; */
    animation-duration: 4000ms;
    /* animation-timing-function: linear; */
}


.cf:before,
.cf:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */
}

.cf:after {
    clear: both;
}

/* ======== Mega Menu Styles End ========= */