html,
body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-smoothing: antialiased;
}
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    list-style: none;
    word-wrap: break-word;
}
body {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75em;
    color: #000;
    overflow-x: hidden !important;
    background: #f4f4f2;
}
p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #333;
    margin-bottom: 15px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto Slab', serif;
    font-weight: 400;
    line-height: 1.2em;
    margin: 0 0 15px 0;
}
h1 {
    font-size: 60px;
}
h2 {
    font-size: 48px;
}
h3 {
    font-size: 36px;
}
h4 {
    font-size: 27px;
}
h5 {
    font-size: 24px;
}
h6 {
    font-size: 18px;
}
img {
    width: 100%;
    height: auto;
}
img {
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    color: #f7f7f7;
}
span,
a,
a:hover {
    display: inline-block;
    text-decoration: none;
    color: inherit;
}
b {
    font-weight: 400;
    color: #D0B62E;
}
.alert-success {
    background: transparent;
    color: #999;
    border: 1px solid #D0B62E;
    border-radius: 0px;
}
/* text field */
input[type="password"]:focus,
input[type="email"]:focus,
input[type="text"]:focus,
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus,
textarea:focus {
    outline: none;
}
input[type="password"],
input[type="email"],
input[type="text"],
input[type="file"],
textarea {
    max-width: 100%;
    padding: 15px 40px 15px 15px;
    height: auto;
    background-color: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-width: 0 0 1px;
    border-style: solid;
    display: block;
    width: 100%;
    line-height: 1.5em;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: rgba(0,0,0, 0.5);
    background-image: none;
    border: 1px solid rgba(0,0,0, 0.2);
    margin-bottom: 20px;
}
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
    text-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    line-height: 1.75em;
    -webkit-transition: background-color .15s ease-out;
    transition: background-color .15s ease-out;
    background: transparent;
    border: 0px solid transparent;
}
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
button:hover {
    border: 0px solid transparent;
}
select {
    padding: 10px;
    border-radius: 5px;
}
table,
th,
tr,
td {
    border: 1px solid #222;
}
th,
tr,
td {
    padding: 10px;
}
input[type="radio"],
input[type="checkbox"] {
    display: inline;
}
input[type="submit"] {
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    background: #D0B62E;
    color: #fff;
    padding: 12px 50px;
    margin: 0;
    text-transform:uppercase;
    position: relative;
    font-size: 15px;
    border-radius:4px
}
input[type="submit"]:hover {
    background: #000;
    color: #fff;
}
/* blockquote */
blockquote {
    padding: 45px;
    display: block;
    position: relative;
    background-color: #D0B62E;
    overflow: hidden;
    margin: 35px 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5em;
    color: #fff;
}
blockquote p {
    font-family: inherit;
    margin-bottom: 0 !important;
    color: inherit;
    max-width: 650px;
    width: 100%;
    position: relative;
    z-index: 3;
}
blockquote:before {
    content: '\e645';
    font-family: 'Themify';
    position: absolute;
    right: 40px;
    bottom: 40px;
    font-size: 110px;
    opacity: 0.2;
    line-height: 1;
    color: #fff;
}
blockquote p {
    margin-bottom: 0;
}
blockquote p a {
    color: inherit;
}
blockquote cite {
    display: inline-block;
    font-size: 15px;
    position: relative;
    padding-left: 60px;
    border-color: inherit;
    line-height: 1;
    margin-top: 22px;
    font-style: normal;
    color: #fff;
}
blockquote cite:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 45px;
    height: 1px;
    border-top: 1px solid;
    border-color: inherit;
    color: #fff;
    opacity: 0.2;
}
/* placeholder */
::-webkit-input-placeholder {
    color: #999;
    font-size: 15px;
    font-weight: 400;
}
:-moz-placeholder {
    color: #999;
}
::-moz-placeholder {
    color: #999;
    opacity: 1;
}
:-ms-input-placeholder {
    color: #999;
}


/* ======= Helper style ======= */
:root {
    scroll-behavior: auto;
}
.mt-0 {
    margin-top: 0 !important;
}
.mt-15 {
    margin-top: 15px !important;
}
.mt-20 {
    margin-top: 20px !important;
}
.mt-30 {
    margin-top: 30px !important;
}
.mt-60 {
    margin-top: 60px !important;
}
.mt-90 {
    margin-top: 90px !important;
}
.mb-0 {
    margin-bottom: 0 !important;
}
.mb-10 {
    margin-bottom: 10px !important;
}
.mb-15 {
    margin-bottom: 15px !important;
}
.mb-20 {
    margin-bottom: 15px !important;
}
.mb-30 {
    margin-bottom: 30px !important;
}
.mb-40 {
    margin-bottom: 40px !important;
}
.mb-45 {
    margin-bottom: 45px !important;
}
.mb-60 {
    margin-bottom: 60px !important;
}
.mb-90 {
    margin-bottom: 90px !important;
}
.pb-0 {
    padding-bottom: 0 !important;
}
.no-padding {
    padding: 0 !important;
}
/* important */
.bg-blck {
    background: #000;
}
.bg-darkblck {
    background:#101010;
}
.white {
    color: #fff;
}
.o-hidden {
    overflow: hidden;
}
.position-re {
    position: relative;
}
.full-width {
    width: 100%;
}
.bg-img {
    background-size: cover;
    background-repeat: no-repeat;
	background-position: center;
}
.bg-fixed {
    background-attachment: fixed;
}
.pattern {
    background-repeat: repeat;
    background-size: auto;
}
.bold {
    font-weight: 400;
}
.count {
    font-family: 'Inter', sans-serif;
}
.valign {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.v-middle {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}
.v-bottom {
    position: absolute;
    width: 100%;
    bottom: 5%;
    left: 0;
    -webkit-transform: translate(0%, -5%);
    transform: translate(0%, -5%);
}
.js .animate-box {
    opacity: 0;
}
.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    outline: none;
}
/* ======= Cursor & Drag style  ======= */
.cursor {
  position: fixed;
  top: -40px;
  left: -40px;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}
.cursor:before {
  content: "";
  width: 75px;
  height: 75px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: white;
  border: 1px solid white;
  transition: all ease 0.15s;
  transform: scale(0.15);
}
.cursor.light:before {
  transform: scale(1);
  background: transparent;
}
.cursor.drag {
  mix-blend-mode: unset;
}
.cursor.drag:before {
  transform: scale(1);
  background: #D0B62E;
  border-color: transparent;
}
.cursor.drag:before {
  content: "\e658";
  font-family: "Themify";
  font-size: 20px;
  color: #fff;
}
.line {
  fill: none;
  stroke: #fff;
  stroke-width: 3;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}


/* ======= Selection style ======= */
::-webkit-selection {
    color: #999;
    background: rgba(0, 0, 0, 0.1);
}
::-moz-selection {
    color: #999;
    background: rgba(0, 0, 0, 0.1);
}
::selection {
    color: #999;
    background: rgba(0, 0, 0, 0.1);
}


/* ======= Owl-Theme custom style ======= */
.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 10px;
    line-height: .7;
    display: block;
}
.owl-theme .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 0 3px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #fff;
    border: 1px solid #fff;
}
.owl-carousel .owl-nav button.owl-next, 
.owl-carousel .owl-nav button.owl-prev, 
.owl-carousel button.owl-dot {
    outline: none;
}


/* ======= Section style ======= */
.section-padding {
    padding: 70px 0 90px 0;
}
.section-title {
    font-size: 26px;
    font-family: 'Roboto Slab', serif;
    font-weight: 600;
    color: #fff;
    position: relative;
    margin-bottom: 20px;
}
.blog .section-title {
    margin-bottom: 40px;
    color:#000;
}
    .section-title span {
    color: transparent;
    -webkit-text-stroke: 1px #D0B62E;
    opacity: .8;
}
.section-subtitle {
    color: #D0B62E;
    font-size: 13px;
    font-family: 'Roboto Slab', serif;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 0px;
    letter-spacing: 5px;
}
.section-number {
    font-size: 225px;
    line-height: 1.2em;
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0px;
    color: transparent;
    -webkit-text-stroke: 1px #D0B62E;
    opacity: .8;
}
.section-title2 {
    font-family: 'Roboto Slab', serif;
    font-size: 27px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
}


/* ======= Navbar style ======= */
.navbar {
    width: 100%;
    background: #fff;
    z-index: 99;
    padding-right: 0;
    padding-left: 0;
    padding-top: 0;
    padding-bottom: 0;
    height: 110px;
    border: none;
    border-bottom: solid 8px #f4f4f2;
}
.navbar-toggler-icon {
    background-image: none;
}
.navbar .navbar-toggler-icon,
.navbar .icon-bar {
    color: #D0B62E;
}
.navbar .navbar-nav .nav-link {
    font-size: 14px;
    text-transform: uppercase;
    color: #000;
    font-weight: 500;
    margin: 1px;
    -webkit-transition: all .4s;
    transition: all .4s;
    margin-right: 12px;
    margin-left: 12px;
    font-family: 'Inter', serif;
    border-bottom: solid 3px #fff;
}
.lng-active {
    color: #D0B62E !important;
}
.navbar .navbar-nav .nav-link.nav-color {
    color: #fff;
}
    .navbar .navbar-nav .nav-link:hover {
        border-bottom: solid 3px #D0B62E;
    }
.navbar .navbar-nav .active {
    border-bottom: solid 3px #D0B62E;
    font-weight: 700;
}
}
.navbar .navbar-nav .active i {
    color: #D0B62E;
}
.nav-scroll {
    padding: 0 0 0 0;
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
}
.nav-scroll .navbar-toggler-icon,
.nav-scroll .icon-bar {
    color: #D0B62E;
}


.nav-scroll .navbar-nav .logo {
    padding: 15px 0;
    color: #fff;
}
.nav-scroll .logo-img {
    width: 130px;
}
.nav-scroll .logo-img {
    margin-bottom: 0px;
}
.nav-scroll .logo-wrapper .logo h2 {
    font-family: 'Roboto Slab', serif;
    font-size: 27px;
    font-weight: 500;
    display: block;
    width: 100%;
    position: relative;
    color: #fff;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.nav-scroll .logo-wrapper .logo span {
    display: block;
    font-family: 'Roboto Slab', serif;
    font-size: 12px;
    color: #D0B62E;
    font-weight: 400;
    letter-spacing: 4px;
    display: block;
    margin-top: 0px;
    line-height: 1.2em;
    text-transform: uppercase;
}
.nav-scroll .logo-wrapper {}
.logo-wrapper {
    float: left;
}
.logo-wrapper .logo h2 {
    font-family: 'Roboto Slab', serif;
    font-size: 27px;
    font-weight: 500;
    display: block;
    width: 100%;
    position: relative;
    color: #fff;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.logo-wrapper .logo h2 a i {
    color: #fff;
    font-size: 20px;
    vertical-align: super;
}
.logo-wrapper .logo span {
    display: block;
    font-family: 'Roboto Slab', serif;
    font-size: 12px;
    color: #D0B62E;
    font-weight: 400;
    letter-spacing: 4px;
    display: block;
    margin-top: 0px;
    line-height: 1.2em;
    text-transform: uppercase;
}
.logo {
    padding: 0;
}
.logo-img {
    padding: 20px 0;
    width: 140px;
    text-align: center;
}
.dropdown .nav-link i {
    padding-left: 0px;
    font-size: 8px;
    color: rgba(255, 255, 255, 0.5);
}
.navbar .dropdown-menu .dropdown-item {
    padding: 9px 0;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    position: relative;
    -webkit-transition: all .4s;
    transition: all .4s;
    background-color: transparent;
}
.navbar .dropdown-menu .dropdown-item span {
    display: block;
    cursor: pointer;
}
.navbar .dropdown-menu .dropdown-item i {
    padding: 13px 0 0 5px;
    font-size: 8px;
    float: right;
}
.navbar .dropdown-menu .dropdown:hover > .dropdown-item,
.navbar .dropdown-menu .dropdown-item.active,
.navbar .dropdown-menu .dropdown-item:hover {
    color: #D0B62E;
}
.navbar .dropdown-toggle::after {
    display: none;
}
.navbar .dropdown-menu li {
   border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}
.navbar .dropdown-menu li:last-child {
   border-bottom: none;
}
.navbar .dropdown-menu .dropdown-menu.pull-left {
    top: 0;
    left: auto;
    right: 100%;
}
/* Navbar Media Query */
@media screen and (min-width: 992px) {
    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
        width: 199px;
        padding: 15px;
        border-radius: 0;
        border: 0;
        background-color: #101010;
        -webkit-transition: all .3s;
        transition: all .3s;
    }
    .navbar .dropdown-menu .dropdown-menu {
        left: calc(100% + 5px);
        top: -10px;
        right: auto;
        min-width: 199px;
        transform: translateY(0);
    }
    .navbar .dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }    
}
@media screen and (max-width: 991px) {
    .navbar {
        padding-left: 0px;
        padding-right: 0px;
        padding-top: 0px;
        padding-bottom: 0px;
        height: 80px;
    }

    .logo-wrapper {
        float: left;
        padding: 7px 0 9px 15px;
    }
    .nav-scroll .logo-wrapper {
        padding: 7px 0 9px 15px;
        background-color: transparent;
    }
    .nav-scroll .logo-img {
        width: 110px;
    }
    .navbar .logo {
        text-align: left;
        margin-left: 0px;
    }
    .nav-scroll .logo {}
    .logo-img {
        margin-bottom: 0px;
        width: 120px;
        padding: 0;
    }
    .navbar button {
        margin-right: 0px;
        outline: none !important;
        background: transparent;
        margin-top: 10px;
        border: none;
    }
    .inner-banner-header {
        padding: 44px 0 20px 0 !important;
    }
    .navbar button:hover {
        background: transparent;
    }
    .navbar button:active,
    .navbar button:focus,
    .navbar button:hover {
        background: transparent;
        outline: none;
        color: transparent !important;
    }
    .navbar .container {
        max-width: 100%;
        padding: 0;
    }
   
     
    .navbar .dropdown-menu .dropdown-item {
        padding: 0 15px;
        font-size: 15px;
        line-height: 40px;
    }
    .navbar .dropdown-menu .dropdown-item.dropdown-toggle {
        font-weight: 500;
    }
    .navbar .dropdown-submenu .dropdown-toggle::after {
        right: 15px;
        font-size: 13px;
    }
    .navbar .dropdown-submenu:hover > .dropdown-toggle::after {
        transform: rotate(0deg);
    }
    .navbar .dropdown-submenu .dropdown-toggle.show::after {
        transform: rotate(90deg);
    }
    .navbar .dropdown-menu {
        border: none;
        padding: 0;
        border-radius: 0;
        margin: 0;
        background: #101010;
    }
    .navbar .dropdown-submenu .dropdown-menu {
        margin: 0;
        padding: 0 0 0 20px;
    }
    .navbar .dropdown-menu li a {
        padding: 0 15px;
    }
    .navbar .navbar-nav .nav-link {
        padding-right: 0px;
        padding-left: 0px;
    }
}
@media screen and (max-width: 767px) {
    .navbar .navbar-collapse {
        max-height: 450px;
        overflow: auto;
        background: #101010;
        text-align: left;
        padding: 20px;
    }
    .other-site-box-top {
        display:none;
    }
    .contact:before, [data-overlay-dark]:before {
        background: rgba(0,0,0,0.5) !important;
    }
    .navbar .nav-link {
        margin: 0px auto !important;
    }
    .navbar .navbar-nav .nav-link {
        color: #fff;
    }

    .nav-scroll .navbar-collapse .nav-link {
        color: #fff !important;
    }

    .nav-scroll .navbar-collapse .active {
        color: #D0B62E !important;
    }  
    }


/* ======= Header style ======= */
.header {
    min-height: 100vh;
    overflow: hidden;
}

.header .social a {
    color: #fff;
    font-size: 24px;
    margin: 10px 15px;
}
hr {
    margin-top: 5px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid rgba(255,255,255,0.25);
    background-color: transparent;
}


/* ======= Slider style ======= */
.slider .owl-item,
.slider-fade .owl-item {
    height: 100vh;
    position: relative;
}
.slider .item,
.slider-fade .item {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
}
.slider .item .caption,
.slider-fade .item .caption {
    z-index: 9;
}
.slider .owl-theme .owl-dots,
.slider-fade .owl-theme .owl-dots {
    position: absolute;
    bottom: 8vh;
    width: 100%;
}
/* owl-nav next and prev */
.owl-nav {
    position: absolute;
    bottom: 9%;
    right: 12%;
}
.owl-prev {
    float: left;
}
.owl-next {
    float: right;
}
.slider-fade .owl-theme .owl-nav [class*=owl-] {
    width: 45px;
    height: 45px;
    line-height: 38px;
    background: transparent;
    border-radius: 100%;
    color: #fff;
    font-size: 10px;
    margin-right: 2px;
    cursor: pointer;
	border: 1px solid rgba(255,255,255, 0.1);
    transition: all 0.2s ease-in-out;
    transform: scale(1.0);
}
.slider-fade .owl-theme .owl-nav [class*=owl-]:hover {
    transform: scale(0.9);
    background: #D0B62E;
    border: 1px solid #D0B62E;
    color: #fff;
}
@media screen and (max-width: 768px) {
    .owl-nav {
        display: none;
    }
}



/* ======= Page Header style ======= */
.banner-header {
    padding: 68px 0 85px 0;
}

    .banner-header h2 {
        position: relative;
        margin-bottom: 0;
        font-family: 'Inter', sans-serif;
        font-size: 50px;
        line-height:68px;
        -webkit-animation-delay: .4s;
        animation-delay: .4s;
        color: #fff;
    }


.banner-header p {
    font-size: 15px;
    font-weight: 400;
    color: #fff;
}
.banner-header p a {
    color: #D0B62E;
}
@media screen and (max-width: 767px) {
    .banner-header {}
    .banner-header h6 {
        font-size: 13px;
        font-weight: 400;
        margin-bottom: 10px;
    }
        .banner-header h2 {
            font-size: 28px;
            color:#fff !important;
            line-height: 36px;
        }
    
    .banner-header {
        padding: 38px 0 35px 0;
    }
    .section-padding {
        padding: 30px 0 30px 0;
    }
    .blog .section-title, .careers-new .section-title, .contact .section-title {
        margin-bottom: 20px
    }
    .faq-new-sec {
        padding-right: 0px !important;
        background: #000;
        margin-bottom:20px;
        padding-top:30px;
    }
    .careers-new {
        padding-left: 0px !important;
    }
    .half-bg {
        display:none
    }
    .faq-new-block {
        padding-top:0
    }
}

.process-faq-one-accrodion .accrodion {
    position: relative;
    display: block;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border-radius: 0;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255, 0.1);
}
.process-faq-one-accrodion .accrodion-title {
    position: relative;
    display: block;
    cursor: pointer;
    padding: 20px 0;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
    .process-faq-one-accrodion .accrodion-title h4 {
        margin: 0;
        font-size: 16px;
        color: rgba(255, 255, 255, 0.8);
        position: relative;
        line-height: 24px;
        font-family: 'Inter', sans-serif;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
        padding-right: 35px;
    }
.process-faq-one-accrodion .accrodion-title h4 span {
    color: #D0B62E;
}
.process-faq-one-accrodion .accrodion+.accrodion {
    margin-top: 0px;
}
.process-faq-one-accrodion .accrodion.active .accrodion-title {
    background-color: transparent;
}
.process-faq-one-accrodion .accrodion.active .accrodion-title h4 {
    color: rgba(255, 255, 255, 0.8);
}
.process-faq-one-accrodion .accrodion.active .accrodion-title h4 span {
    color: #D0B62E;
}
.process-faq-one-accrodion .accrodion-title h4::before {
    content: "\e61a";
    font-family: 'themify' !important;
    font-size: 18px;
    color: #D0B62E;
    position: absolute;
    top: 50%;
    right: 0;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.process-faq-one-accrodion .accrodion.active .accrodion-title h4::before {
    content: "\e622";
    color: #D0B62E;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.process-faq-one-accrodion .accrodion-content {
    position: relative;
    padding: 5px 40px 30px 0;
}
.process-faq-one-accrodion .accrodion.active .accrodion-content {
    background-color: transparent;
}
.process-faq-one-accrodion .accrodion-content p {
    color: #888;
    font-size: 15px;
    margin: 0;
}

/* ======= Homepage Blog style ======= */
.blog .item .post-img .img {
    overflow: hidden;
}
.blog .item .post-img:hover img {
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}
.blog .item .post-img img {
    -webkit-transition: all .5s;
    transition: all .5s;
}
.blog .item .cont {
    position: relative;
    padding: 20px 20px;
    width: 100%;
    margin-left: 0%;
    margin-top: 0px;
    -webkit-transition: all .4s;
    transition: all .4s;
    margin-top: -8px;
    background-color: #fff;
    min-height:148px;
}
.blog .item .info {
    margin-bottom: 0px;
    position: relative;
}
.blog .item .info a {
    color: #999;
    font-size: 13px;
}
.blog .item .info a:last-of-type {
    margin-right: 0;
    color: #999;
}
.blog .item .info a i,
.blog .item .info a span {
    margin-right: 10px;
}
.blog .item .info a span {
    color: #D0B62E !important;
}
.blog .item .info a span:after {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    flex-shrink: 0;
    margin-inline-start: 0.75em;
    border-radius: 50em;
    background-color: currentColor;
    vertical-align: middle;
    opacity: .35;
}
.blog .item h4 {
    color: #000;
    font-size: 20px;
    line-height: 26px;
    margin-bottom:10px;
}
    .blog .item p {
        margin-bottom:0
    }
    .blog .item .more {
        color: #fff;
        font-size: 15px;
        font-weight: 400;
    }
.post h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 60px;
}
.post h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 27px;
}


/* ======= Blog 2 style ======= */

/* blog sidebar */
.blog2-sidebar .widget {
    background: #f4f4f2;
    padding: 25px;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 4px;
    border: solid 1px rgba(0, 0, 0, 0.1)
}
.blog2-sidebar .widget ul {
    margin-bottom: 0;
    padding: 0;
}
.blog2-sidebar .widget ul li {
    margin-bottom: 9px;
    color: #999;
    font-size: 15px;
    line-height: 1.5em;
}
.blog2-sidebar .widget ul li a {
    color: #444;
}
    .blog2-sidebar .widget ul li a.active {
        color: #D0B62E;
    }
.blog2-sidebar .widget ul li a:hover {
    color: #D0B62E;
}
.blog2-sidebar .widget ul li:last-child {
    margin-bottom: 0;
}
.blog2-sidebar .widget ul li i {
    font-size: 9px;
    margin-right: 10px;
}

.blog2-sidebar .widget-title {
    margin-bottom: 20px;
}
.blog2-sidebar .widget-title h6 {
    font-size: 16px;
    line-height: 1.5em;
    margin-bottom: 15px;
    color: #000;
    font-weight: 600;
}

/* ======= Contact style ======= */

.contact p {
    margin-bottom: 15px;
}
.contact p span {
    color: #fff;   
}

/* info */
.contact .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 10px;
}
    .contact .item .icon {
        color: #333;
        margin-right: 15px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        width: 16px;
        height: 16px;
        text-align: center;
        padding-top: 5px;
        border-radius: 100%;
    }
.contact .item .icon:before {
    font-size: 15px;
    font-weight: 400;
}
.contact .item h6 {
    color: #fff;
    margin-bottom: 3px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 7px;
}
.contact .item p {
    font-size: 15px;
    margin-bottom: 0;
}


/* ======= Buttons style ======= */
.btn-curve {
  background: transparent;
  padding: 12px 50px;
  border: none;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius:4px;
  text-transform:uppercase
}
.btn-curve:focus {
  outline: none;
}
.btn-curve:hover {
  outline: none;
}
.btn-curve:hover:after {
  bottom: -30px;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}
.btn-curve:hover span {
  color: #fff;
}
.btn-curve:after {
  content: '';
  position: absolute;
  top: -30px;
  left: -30px;
  right: -30px;
  bottom: 130%;
  background: #000;
  -webkit-transform: rotate(-5deg);
  -ms-transform: rotate(-5deg);
  transform: rotate(-5deg);
  -webkit-transition: all .8s;
  -o-transition: all .8s;
  transition: all .8s;
}
.btn-curve span {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    position: relative;
    z-index: 2;
    -webkit-transition: all .8s;
    -o-transition: all .8s;
    transition: all .8s;
}
/* btn 1 */
    .btn-curve.btn-1 {
        background: #D0B62E;
        border: none;
        color: #fff;
    }
.btn-curve.btn-1:hover span {
  color: #fff;
}
.btn-curve.btn-1:after {
    background: #000;
}
/* btn-2 */
.btn-curve.btn-2 {
  background: #fff;
  border: none;
}
.btn-curve.btn-2:after {
  background: #D0B62E;
}
.btn-curve.btn-2 span {
  color: #000;
}
.btn-curve.btn-2:hover span {
  color: #fff;
}
/* btn-3 */
.btn-curve.btn-3 {
  background: #000;
  border: none;
}
.btn-curve.btn-3:after {
  background: #fff;
}
.btn-curve.btn-3 span {
  color: #fff;
}
.btn-curve.btn-3:hover {
  border: none;
}
.btn-curve.btn-3:hover span {
  color: #000;
}
/* btn 4 */
.btn-curve.btn-4 {
  background: #D0B62E;
  border: none;
  color: #fff;
}
.btn-curve.btn-4:hover span {
  color: #fff;
}
.btn-curve.btn-4:after {
    background: #000;
}
/* btn-5 */
.btn-curve.btn-5 {
  background: #fff;
  border: none;
}
.btn-curve.btn-5:after {
  background: #000;
}
.btn-curve.btn-5 span {
  color: #000;
}
.btn-curve.btn-5:hover span {
  color: #fff;
}
/* btn-6 */
.btn-curve.btn-6 {
  background: #000;
  border: none;
}
.btn-curve.btn-6:after {
  background: #D0B62E;
}
.btn-curve.btn-6 span {
  color: #fff;
}
.btn-curve.btn-6:hover {
  border: none;
}
.btn-curve.btn-6:hover span {
  color: #fff;
}


/* ======= Footer style ======= */
.footer {
    position: relative;
    display: block;
}
.footer p {
    color: #fff;
}
.footer-top {
    position: relative;
    display: block;
    background-color: #101010;
    padding: 23px 0;
    z-index: 1;
}

.footer-contact {
    position: relative;
    display: block;
}

.footer-contact-text {
    font-size: 15px;
    margin: 0;
    color: #D0B62E;
}


/* ======= toTop Button style ======= */
.progress-wrap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}
.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.progress-wrap::after {
    position: absolute;
    font-family: 'themify';
    content: '\e648';
    text-align: center;
    line-height: 50px;
    font-size: 13px;
    font-weight: 400;
    color: #D0B62E;
    left: 0;
    top: 0;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}
.progress-wrap svg path {
    fill: none;
}
.progress-wrap svg.progress-circle path {
    stroke:  rgba(255, 255, 255, 0.2);
    stroke-width: 2;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}
.progress-wrap {
    -webkit-box-shadow: inset 0 0 0 1px  rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 0 0 1px  rgba(255, 255, 255, 0.2);
}
.progress-wrap::after {
    color: #D0B62E;
}
.progress-wrap svg.progress-circle path {
    stroke: #D0B62E;
}


/* ======= Responsive style ======= */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px !important;
    }
}
@media screen and (max-width: 991px) {
    .bg-fixed {
        background-attachment: scroll !important;
    }

    .header {
        background-attachment: scroll !important;
        background-position: 50% 0% !important;
    }
    .header .caption h1 {
        font-size: 55px;
    }
    
    .price-banner .content {
        width: 100%;
        padding: 45px 15px;
    }
    
    .section-number {
    font-size: 125px;
    }
    .other-site-box-top {
        padding: 17px 26px !important;
    }
    .comming h1 {
    font-size: 45px;
    }
    
    .comming h3 {
        font-size: 45px
    }
}
@media screen and (max-width: 767px) {
    .hero .intro h3 {
        font-size: 28px;
    }
    .hero .intro h4 {
        font-size: 24px;
    }
    .header .caption h1 {
        font-size: 55px;
        margin-bottom: 15px;
    }
	.header .caption h1 span {
    font-size: 55px;
	}	
	.about .about-img .img {
    padding: 0 0px 20px 0px;
    position: relative;
}
	.about-img .about-img-2 {
    width: 40% !important;
    position: absolute;
    bottom: 0px;
    right: 15px;
    z-index: 3;
    padding: 15px;
}
    .header .caption p {
        font-size: 15px;
        margin-right: 10px;
    }
    .header .caption .btn-curve {
	  margin-top: 15px;
	  -webkit-animation-delay: 1.2s;
			  animation-delay: 1.2s;
	}
	.project-texts {
		padding: 20px
	}
   
    .main-footer .sub-footer p.right {
        text-align: left;
    }
    .main-footer .abot .social-icon {
        text-align: left;
        margin-bottom: 15px;
    }
    .footer .logo {
        padding: 0;
        width: auto;
        margin: 0px 0;
    }
    
}
@media screen and (max-width: 480px) {
    .section-head h4 {
        font-size: 30px;
    }
}



/* ======= Overlay Effect Bg image style ======= */
[data-overlay-dark] {
  position: relative;
}
[data-overlay-dark] .container {
  position: relative;
  z-index: 2;
}
[data-overlay-dark]:before{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
    [data-overlay-dark]:before {
        background: url(../img/bg1.png) no-repeat;
        width: 100%;
        background-size: cover;
    }

[data-overlay-dark] h2,
[data-overlay-dark] span {
  color: #000;
}

[data-overlay-dark] p {
  color: #fff;
}


.about p {
    font-size:16px;
    color:#fff
}
.contact .section-title {
    margin-bottom: 30px;
    color: #000;
}
.contact-form-new {
    position:relative;
    z-index:9
}
.contact-home {
    background-image: url(../img/contactus.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}
    .contact-home:before {
        background: url(../img/bg2.png) no-repeat;
        width: 100%;
        background-size: cover;
        position:absolute;
        content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    }
.faq-new-block {
    position:relative
}
.faq-new-sec {
    padding-right:100px
}
.half-bg {
    background: #000;
    position: absolute;
    height: 100%;
    width: 50%;
    top: 0;
    left: 0
}
.careers-new {
    padding-left:130px;
}
.career-job {
    background: rgba(255, 255, 255, 1);
    padding: 20px 25px;
    border-radius: 4px;
    font-weight: 600;
    margin-bottom:18px
}
.career-job-inner h4 {
    font-size: 16px;
    font-weight: 600; line-height: 19px;
    margin-bottom: 5px;
    font-family: 'Inter', sans-serif;
    color: #000
}
.career-job-inner a {
    color:#D0B62E;
    font-size:13px;
}
.see-more a {
    font-size: 16px;
    color: #fff
}
.see-more i {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    border: solid 1px #fff;
    padding: 10px;
    margin-left: 10px
}
.careers-new {
    width:100%
}
.careers-new .section-title {
    margin-bottom: 30px
}
.other-site-box {
    padding:12px 26px;
    background:rgba(244,244,242, 0.2);
    width:132px;
    display:inline-block;
    border-radius:4px;
    margin-left:15px;
}
.other-site-box-top {
    padding: 33px 26px;
    background: #000;
    width: 132px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}
.footer-explore p, .follow-us-new p, .follow-us-new ul {
    display: inline-block;
    margin-bottom: 0;
}
.follow-us-new, .footer-explore {
    width: 100%;
}
.follow-us-new ul {
    padding-left: 0;
    
}
    .follow-us-new ul li {
        display: inline-block;
        line-height:16px;
    }
    .follow-us-new ul li a {
        color:#fff;
        padding-left:14px;
    }
.follow-us-new i {
    font-size:16px;
}
.other-site-box img {
    max-width: 100%
}
.text-right {
    text-align:right
}
.inner-banner-header {
    background: #000;
    padding: 114px 0 40px 0;
}
.inner-banner-header h1 {
    color:#fff;
    font-size:26px
}
.contact-new-box {
    background:#fff;
    padding:30px;
    height:100%
}
    .contact-new-box h5 {
        color: #000;
        font-family: 'Inter', sans-serif;
        text-transform: uppercase;
        margin-bottom: 12px;
        font-size: 14px;
        font-weight: 600;
    }
.career-main-box-sub {
    background: #fff;
    margin-bottom:30px
}
.caree-head {
    position:relative;
}
    .caree-head h4 {
        font-size: 18px;
        color: #000;
        padding: 25px 35px 25px 35px;
        font-weight: 600;
        border-bottom: solid 1px #ccc;
        margin-bottom: 0;
        padding-right: 86px;
    }
.career-body {
    padding: 20px 35px 20px 35px;
}
    .career-body h5 {
        font-size: 15px;
        color: #000;
        margin-bottom: 10px; font-weight: 700;
        font-family: 'Inter', sans-serif;
    }
    .career-body p {
        font-size: 14px;
        color: #333333;
    }
.bg-span {
    background: #037E5A;
    color:#fff !important;
    padding:0 10px;
}
.caree-head a {
    color: #D0B62E;
    position: absolute;
    top: 24px;
    font-weight: 600;
    right: 34px;
}
.blog2 {
    min-height:600px
}

@media screen and (max-width: 1200px) {
    
    .faq-new-sec {
        padding-right: 50px !important;
        background: #000;
        margin-bottom: 20px;
        padding-top: 30px;
    }

    .careers-new {
        padding-left: 20px !important;
    }
    .section-padding {
        padding:30px 0;
    }
    
    }
@media (min-width: 768px){
    .container, .container-md, .container-sm {
    max-width: 95%;
}
}
@media screen and (max-width: 767px) {

    .faq-new-sec {
        padding-right: 20px !important;
    }
    .contact .section-title {
        color: #fff;
    }
    .careers-new {
        padding-left: 00px !important;
    }
    .navbar .navbar-nav .nav-link, .navbar .navbar-nav .nav-link:hover {
        border-bottom: none;
    }
    .navbar .navbar-nav .active {
        color: #D0B62E
    }
    .caree-head h4 {
        padding: 15px 25px 15px 15px;
        padding-right: 62px;
    }
    .career-body {
        padding: 15px 25px 15px 15px;
    }
    .contact-new-box {
        padding:15px
    }
    .career-main-box-sub, .contact .col-md-5 {
        margin-bottom: 15px
    }
    .caree-head a {
        top: 13px;
        right: 15px;
    }
   
    }
@media only screen and (max-width:1040px) and (min-width: 768px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 11px;
        margin-left: 11px;
    }
    .navbar-collapse {
        margin-right:105px
    }
}
.grid-img img {
    width:100%;
    margin-bottom:20px;
}
.blog2 h6 {
    color: #000;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: bold;
}