body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    transition: all ease .4s;
}

body.transformLeft {
    transform: translateX(-266px);
    position: fixed;
    width: 100%;
}
.text-center{
    text-align: center!important;
}
.d-flex {
    display: flex;
}
.flex-col {
    flex-direction: column;
}
.align-items-center {
    align-items: center;
}
.justify-content-center {
    justify-content: center;
}
.justify-content-between {
    justify-content: space-between;
}
.pd-50 {
    padding: 50px 0;
}
.wd-1000 {
    max-width: 1000px;
    width: 100%;
}
.wd-1200 {
    max-width: 1200px;
    width: 100%;
}
.mx-auto {
    margin: 0 auto;
}
.pt-30 {
    padding-top: 30px;
}
.pt-40 {
    padding-top: 40px;
}
.my-30 {
    margin:0 30px;
}
.mt-30 {
    margin-top: 30px;
}
.mb-30 {
    margin-bottom: 30px;
}
.row-reverse {
    flex-direction: row-reverse;
}
.flex-wrap{
    flex-wrap: wrap;
}

.wd-50 {
    max-width: 50%;
    width: 100%;
}

.d-none {
    display: none;
}

.mob__only,
.new_closeBTN {
  display: none;
}
.overlay{
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .2);
  z-index: 2 !important;
  display: none
}

header {
    position: fixed;
    box-shadow: unset;
    transform: translateY(0px);
    top: 0px;
    left: 0;
    background-color: transparent;
    z-index: 8;
    padding: 15px 0;
    width: 100%;
    transition: 0.3s ease all;
    background-color: #fff;
}
header.fixed-header {
    top: 0px;
    z-index: 99;
    box-shadow: 0 4px 10px rgb(119 119 119 / 15%);
}
nav {
    position: sticky;
    top: 0;
    z-index: 99;
}

.navbarBrand a {
    display: block;
}

.navbarBrand a img {
    width: 220px;
    height: auto;
    display: block;
}

.navWrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navItems ul {
    display: flex;
    align-items: center;
    column-gap: 20px;
    list-style: none;
}
.navItems ul li{
    display: block;
}
.navItems ul li a {
    font-size: 14px;
    line-height: 150%;
    display: block;
    cursor: pointer;
    color: #333;
}
.navItems ul li:hover a {
    color: #ff891e;
}

@media(max-width:768px) {
    .mob__only,.d-none{
        display: block;
    }
    .new_closeBTN{
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 28px 15px 14px;
    }
    .new_closeBTN a img{
        width: 170px;
        height: auto;
    }

    .navbarBrand{
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .hamburger{
        width: 30px;
        height: 30px;
    }
    .navItems{
        width: 0;
        position: fixed;
        transition: 0.3s ease all;
        background-color: #fff;
        top: 0;
        height: 100vh;
        right: -266px;
        z-index: 9999999;
        box-shadow: 0 4px 10px rgb(119 119 119 / 15%);
        overflow-y: auto;
    }
    .navItems ul{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .navItems ul{
        margin-top: 20px;
    }
    .navItems ul li a{
        font-size: 15px;
        padding: 15px;
        line-height: 150%;
    }
}
@media(max-width:575px) {
    .headerWrapper {
        column-gap: 0px;
        align-items: center;
        justify-content: space-between;
    }

    .headerWrapper a {
        font-size: 12px;
    }
}


























