/*===========================================================
 Custom Variable
============================================================*/
:root {
    /* Hamber menu icon style */
    --hamWidth: 40px;
    --hamHeight: 4px;
    --hamMargin: 6px;
    /* summation of --hamMargin adn --hamHeight */
    --hamTranslate: 10px;
    /* summation of --hamMargin adn --hamHeight */
    --hamTranslate3: -10px;
    --header-height: 0;
    /*    */
    --gutter-x: 24px;
    /**/

    /*   Colors */
    --hamBg: #222;
    --white: #fff;
    --black: #000;

    /* Font sizes    */
    --sm: 16px;
    --xl: 24px;
    --lg: 22px;
    --xs: 14px;
}

/*===========================================================
 Common CSS
============================================================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-size: var(--sm);
    font-family: 'Roboto';
    font-size: 18px;
    line-height: 1.7;
    font-weight: 400;
    color: var(--black);

    letter-spacing: normal;
}

ul {
    padding: 0;
    margin: 0;
}

li,
li:hover,
a:hover,
.btn,
.btn:hover {
    transition: all 0.3s ease;
}

a:hover {
    text-decoration: none !important;
}
a {
    color: currentColor; /*this makes sure that the link always has context color.*/
    text-decoration: none;
}

.maincontent a {
    border-bottom: 1px solid currentColor;
    /*  this allows us to set the link border bottom in content, to show that it is clickable. But in buttons it should not apply, so we may need to overwrite this in buttons if needed*/
}

a:hover {
    text-decoration: none !important;
    /* outline: 2px dotted currentColor !important;  */
}
*:active,
*:focus {
    outline: none;
    border: 0;
}

img {
    max-width: 100%;
    height: auto;
}

img.lazy {
    background-image: url("../img/loading.gif");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 50px auto;
    height: auto;
}

strong {
    font-weight: 700;
}

u {
    border-bottom: 1px solid var(--white);
    line-height: 1;
    text-decoration: unset;
}

.cboth {
    overflow: hidden;
    clear: both;
}

.left {
    float: left;
}

.right {
    float: right;
}

button {
    background-color: transparent;
    border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

button:active,
button:focus {
    outline: 0;
    outline: 0;
}

#npreOverlay {
    background: var(--preloaderBg);
}

#main {
    padding-top: 26px;
}

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: calc(var(--gutter-x) * -0.5);
    margin-left: calc(var(--gutter-x) * -0.5);
}

.row > * {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--gutter-x) * 0.5);
    padding-left: calc(var(--gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
}

.col {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
}

.container {
    width: 100%;
    padding-right: calc(var(--gutter-x) * 0.5);
    padding-left: calc(var(--gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
    max-width: 1420px;
    padding: 0 10px;
}

/*===========================================================
 Scroll To Top
============================================================*/

.go-top {
    bottom: 15px;
    display: none;
    position: fixed;
    right: 15px;
    z-index: 999;
}

.go-top img {
    width: 35px;
    background: var(--white);
    border-radius: 50%;
    border: 1px solid var(--white);
}

.go-top span {
    /*background-color: #4285F4;*/
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    float: right;
    font-size: var(--sm);
    font-weight: 400;
    line-height: 22px;
    padding: 5px 10px;
}

.go-top span:hover {
    color: var(--white);
}

/*===========================================================
Loader
===========================================================*/

.preloader {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: var(--white);
    z-index: 99999999;
}

.spinner {
    width: 80px;
    height: 80px;
    border: 2px solid #f3f3f3;
    border-top: 3px solid #58b8cb;
    border-radius: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-animation: 1s infinite spin;
    animation: 1s infinite spin;
}

@-webkit-keyframes spin {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

#loading-msg {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 25px;
    text-align: center;
    color: #333;
    font-size: 0.8em;
}
/*===========================================================
 Navigation Menu Desktop
============================================================*/
.header-area {
    padding: 25px 0;
}

.header {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.header-area {
    background-color: var(--black);
}
/*===========================================================
 Navigation Menu slideout
============================================================*/
main .mobileMenuOpener {
    display: none;
}

.panel-header {
    display: none;
}

.slideout-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 256px;
    min-height: 100vh;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    z-index: 0;
    display: none;
}

.slideout-menu-left {
    left: 0;
}

.slideout-menu-right {
    right: 0;
}

.slideout-panel {
    position: relative;
    z-index: 1;
    background-color: var(--white);
    min-height: 100vh;
}

.slideout-open,
.slideout-open body,
.slideout-open .slideout-panel {
    overflow: hidden;
}

.slideout-open .slideout-menu {
    display: block;
}

.slideout-open .slideout-menu {
    background: var(--hamBg);
}

.btn-hamburger {
    cursor: pointer;
}

#menu > div > ul {
    padding: 25px 10px;
}

#menu > div > ul li a:hover {
    color: #bdc3c7;
}

#menu > div > ul li a {
    line-height: 2;
    color: var(--white);

    text-transform: uppercase;
}

#menu > div > ul li {
    display: block;
}

.btn-hamburger img {
    width: 27px;
}

/*Hamburger Menu Icon*/
/* .hamburger .line {
    width: 40px;
    height: 5px;
    background-color: #34495e;
    display: block;
    margin: 8px auto;
    transition: all 0.3s ease-in-out;
} */

.hamburger:hover {
    cursor: pointer;
}

.hamburger:hover .line {
    opacity: 0.8;
}

.slideout-open .line:nth-child(2) {
    opacity: 0;
}

.slideout-open .line:nth-child(1) {
    transform: translateY(13px) rotate(45deg);
}

.slideout-open .line:nth-child(3) {
    transform: translateY(-13px) rotate(-45deg);
}

/*===========================================================
 Hamberger
===========================================================*/

.hamburger .line {
    width: var(--hamWidth);
    height: var(--hamHeight);
    background-color: var(--hamBg);
    display: block;
    margin: var(--hamMargin) auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger:hover {
    cursor: pointer;
}

/* ONE */

.slideout-open .line:nth-child(2) {
    opacity: 0;
}

.slideout-open .line:nth-child(1) {
    -webkit-transform: translateY(var(--hamTranslate)) rotate(45deg);
    -ms-transform: translateY(var(--hamTranslate)) rotate(45deg);
    -o-transform: translateY(var(--hamTranslate)) rotate(45deg);
    transform: translateY(var(--hamTranslate)) rotate(45deg);
}

.slideout-open .line:nth-child(3) {
    -webkit-transform: translateY(var(--hamTranslate3)) rotate(-45deg);
    -ms-transform: translateY(var(--hamTranslate3)) rotate(-45deg);
    -o-transform: translateY(var(--hamTranslate3)) rotate(-45deg);
    transform: translateY(var(--hamTranslate3)) rotate(-45deg);
}

.menu ul li .dropdown-menu li {
    display: block;
    position: relative;
}

.menu ul li .dropdown-menu li a {
    padding: 5px 15px;
    line-height: 1.2;
    display: block;
}

/*===========================================================
Wrapper
===========================================================*/
.wrapper {
    overflow: hidden;
}
.wrapper-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.left-sidebar {
    width: 20%;
    left: 50px;
    top: 50px;
    position: fixed;
    bottom: 0;
    min-height: 100vh;
    padding: 30px 0 100px 0;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}
.left-sidebar::-webkit-scrollbar {
    display: none;
}

.left-sidebar ul {
  text-transform: uppercase;
}

.left-sidebar .nav > div + div > ul {
  margin-top: 30px;
}

.left-sidebar .nav > div + div > ul a {
  color: rgba(0, 0, 0, 0.5);
}

.right-sidebar {
    width: 70%;
    margin-left: auto;
    padding-top: 100px;
}
.logo {
    color: var(--black);
    font-size: var(--xl);
    font-weight: bold;
    margin-bottom: 30px;
}
.wrapper a {
    text-decoration: none;
    border: 0;
}
.nav ul li.active {
    padding-left: 10px;
}
.nav ul li.active:before {
    display: block;
}
.nav ul li:hover {
    padding-left: 10px;
}
.nav ul li:hover:before {
    display: block;
}
.nav ul li {
    list-style: none;
    font-weight: 400;
    padding: 2px 0;
    position: relative;
}
.nav ul li:before {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    background: var(--black);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    display: none;
}
.nav ul li a {
    font-weight: 400;
    font-size: var(--sm);
}
.gallery p {
    font-weight: 400;
    font-size: var(--sm);
}
/*===========================================================
 Responsive Menu
===========================================================*/
@media (min-width: 1400px) {
}

@media (min-width: 992px) {
    .dropdown:hover > a + .dropdown-menu {
        display: block;
    }

    .dropdown-menu .dropdown-menu {
        position: absolute;
        left: 100%;
        top: 0;
    }

    .dropdown .dropdown > a::after {
        transform: rotate(-90deg);
        margin-top: -4px;
    }
}

@media (max-width: 991px) {
    #main {
        padding-top: 0;
    }
    .menu ul li {
        padding-left: 0;
    }
    .header-area {
        display: none;
    }

    .mobile-logo a {
        text-decoration: none;
        font-size: var(--lg);
        border: 0;
    }

    .dropdown-menu {
        padding-top: 0;
    }

    .menu ul li .dropdown-menu li {
        padding-left: 10px;
    }

    .menu ul li .dropdown-menu li a {
        padding-left: 0;
        padding-right: 0;
    }

    .dropdown-menu {
        width: 100%;
        background-color: transparent;
        background-clip: padding-box;
        border: none;
        position: unset;
        top: unset;
    }

    main .mobileMenuOpener {
        display: block;
        position: absolute;
        width: 20px;
        height: 100%;
        z-index: 10;
    }

    .menu ul li {
        display: block;
    }

    .menu ul li a {
        font-weight: 400;
        color: var(--white);
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        line-height: 2;
        font-size: var(--xs);
    }

    .menu ul li .dropdown-menu li a {
        line-height: 2;
    }

    .dropdown > a::after {
        right: 10px;
        position: absolute;
        top: 50%;
        margin-top: -1px;
    }

    /*Menu Activation*/
    .panel-header {
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: var(--white);
        padding: 14px 15px;
    }
}

/*===========================================================
 Responsive
============================================================*/

@media (max-width: 1199px) {
}

@media (max-width: 991px) {
    .left-sidebar {
        display: none;
    }
    .right-sidebar {
        width: 100%;
        margin-left: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 10px;
    }
    .gallery br {
        display: none;
    }
    .gallery p {
        margin-bottom: 30px;
    }
    #menu > div > ul {
        padding: 5px 10px;
    }
}

@media (max-width: 767px) {
    .right-sidebar {
        padding-top: 10px;
    }
}

@media (max-width: 575px) {
}

@media (max-width: 379px) {
}
