/*--------------------------------------------------------------
# Video
--------------------------------------------------------------*/

.video-box {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 400px;
    position: relative;
}

.play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(rgb(252, 182, 3) 50%, rgba(255, 222, 138, 0.493) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
}

.play-btn::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.play-btn::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate-btn 2s;
    animation: pulsate-btn 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(247, 1, 1, 0.7);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.play-btn:hover::after {
    border-left: 15px solid #fcba03;
    transform: scale(20);
}

.play-btn:hover::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    -webkit-animation: none;
    animation: none;
    border-radius: 0;
}


/*--------------------------------------------------------------
# Navbar animation mobile
--------------------------------------------------------------*/

.nav ul {
    display: none;
}

.nav-tgl {
    display: inline-block;
    cursor: pointer;
    position: fixed;
    z-index: 100;
    right: 30px;
    top: 35px;
    width: 4rem;
    height: 4rem;
    border: none;
    border-radius: 50%;
    padding: 0;
    background: #fff;
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.24);
    line-height: 0.6;
    text-align: center;
}

@media (max-width:334px) {
    .nav-tgl {
        width: 3.5rem;
        height: 3.5rem;
        top: 40px;
    }
}

.nav-tgl>span {
    display: inline-block;
    position: relative;
    height: 2px;
    width: 34px;
    border-radius: 1px;
    background: #293335;
    vertical-align: middle;
}

.nav-tgl>span:before,
.nav-tgl>span:after {
    display: inline-block;
    position: absolute;
    content: "";
    height: 2px;
    border-radius: 1px;
    background: #293335;
    transition: all 200ms;
}

.nav-tgl>span:before {
    top: -11px;
    left: 3px;
    width: 28px;
}

.nav-tgl>span:after {
    top: 11px;
    left: 6px;
    width: 22px;
}

.nav-tgl:focus {
    outline: none;
}

.nav-tgl:hover>span:after,
.nav-tgl:hover>span:before {
    width: 34px;
    left: 0;
}

.nav-tgl.toggled>span {
    height: 0;
}

.nav-tgl.toggled>span:after,
.nav-tgl.toggled>span:before {
    top: 0px;
    left: 0;
    width: 34px;
}

.nav-tgl.toggled>span:after {
    transform: rotate(-45deg);
}

.nav-tgl.toggled>span:before {
    transform: rotate(45deg);
}

.nav:before {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    content: '';
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    transition: all 500ms ease-in-out;
    clip-path: circle(30px at calc(100% - 65px) 65px);
    visibility: hidden;
}

.active.nav:before {
    visibility: visible;
    clip-path: circle(100%);
}

.active {
    color: #ef7f4d;
}


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
    font-family: Lato, sans-serif;
    color: #212529;
    background-color: white;
}

a {
    color: #000000;
    text-decoration: none;
}

a:hover {
    color: #ef7f4d;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-primary {
    font-family: Lato, sans-serif;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    left: 15px;
    bottom: 15px;
    z-index: 99999;
    background: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
    border: 2px solid #ee7843;
}

.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #9e9e9e;
    color: rgb(0, 0, 0);
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

.radiusBackground {
    padding: 10px;
    /* border-bottom-right-radius: 50%;
    border-bottom-left-radius: 50%; */
    background-color: #ff7337;
    /* background-image: linear-gradient(0deg, #ffa011, 40%, #000000); */
    height: 20rem;
    width: 100%;
}

.overlaySection {
    border-bottom-right-radius: 50%;
    border-bottom-left-radius: 50%;
    background-color: #ff7337;
    position: absolute;
    height: 15rem;
    width: 100%;
    z-index: -1;
}


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


/*--------------------------------------------------------------
# RemoveHeader
--------------------------------------------------------------*/


/* #removeShadowheader {
    height: 72px;
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    background: #fff;
}

#removeShadowheader {
    height: 72px;
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    background: #fff;
}

#removeShadowheader .logo h1 {
    font-size: 30px;
    margin: 0;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 2px;
}

#removeShadowheader .logo h1 a,
#removeShadowheader .logo h1 a:hover {
    color: #7a6960;
    text-decoration: none;
}

#removeShadowheader .logo img {
    padding: 0;
    margin: 0;
    max-height: 40px;
} */


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

@media (max-width:991px) {
    .logoResponsive {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 50%;
    }
}

#header {
    height: 72px;
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo h1 {
    font-size: 30px;
    margin: 0;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 2px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: #7a6960;
    text-decoration: none;
}

#header .logo img {
    /* padding: 0;
                                                    margin: 0; */
    max-height: 60px;
    align-items: center;
}

#main {
    margin-top: 72px;
}


/* newletter */


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/**
* Desktop Navigation 
*/

.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-size: 15px;
    color: #4e4039;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar li:hover>a {
    color: #eb5d1e;
}

.navbar .getstarted {
    background: #eb5d1e;
    color: #fff;
    padding: 10px 25px;
    margin-left: 30px;
    border-radius: 50px;
}

@media (max-width:991px) {
    .navbar .getstarted {
        display: none;
    }
}

.navbar .getstarted:hover {
    color: #fff;
    background: #ee7843;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    /* box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25); */
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #eb5d1e;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}


/**
* Mobile Navigation 
*/

.mobile-nav-toggle {
    color: #7a6960;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }
    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgb(0, 0, 0);
    transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    /* background-color: #fff; */
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a {
    padding: 10px 20px;
    font-size: 15px;
    color: #7a6960;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #ffffff;
}

.navbar-mobile .getstarted {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: rgba(0, 0, 0, 0.8);
    /* box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25); */
    height: 100%;
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #eb5d1e;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
    width: 100%;
    height: 100vh;
    background: #fef8f5;
    border-bottom: 2px solid #fcebe3;
    /* margin: 72px 0 -72px 0; */
    background-image: url("assets/img/6340.jpg");
}

#hero h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #4e4039;
}

#hero h2 {
    color: #a08f86;
    margin: 15px 0 0 0;
    font-size: 24px;
}

#hero .btn-get-started {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 3px;
    transition: 0.5s;
    margin-top: 30px;
    color: #fff;
    background: #eb5d1e;
}

#hero .btn-get-started:hover {
    background: #ef7f4d;
}

.animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
    #hero {
        /* height: calc(100vh - 72px); */
    }
    #hero .animated {
        -webkit-animation: none;
        animation: none;
    }
    #hero .hero-img {
        text-align: center;
    }
    #hero .hero-img img {
        width: 50%;
    }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 35px;
        line-height: 36px;
    }
    #hero h2 {
        font-size: 18px;
        line-height: 24px;
    }
    #hero .hero-img img {
        width: 70%;
    }
}

@media (max-width: 575px) {
    #hero .hero-img img {
        width: 80%;
    }
}

@media (max-height: 600px) {
    #hero {
        height: calc(120vh);
    }
}

@-webkit-keyframes up-down {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
    padding: 45px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #ffffff;
}

.section-title {
    text-align: center;
    padding-bottom: 10px;
}

.section-title h2 {
    font-size: 44px;
    /* font-weight: 100;
    padding-bottom: 0;
    line-height: 1px;
    margin-bottom: 15px;
    color: #000000;
    padding: 19px; */
}

.section-title p {
    padding-bottom: 15px;
    margin-bottom: 15px;
    position: relative;
    font-size: 18px;
    font-weight: 200;
    color: #4e4039;
}

.section-title p::after {
    content: '';
    position: absolute;
    display: block;
    width: 60px;
    height: 2px;
    background: #eb5d1e;
    bottom: 0;
    left: calc(50% - 30px);
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

.breadcrumbs {
    padding: 15px 0;
    background-color: #f0f0f0d7;
    min-height: 40px;
}

.breadcrumbs h2 {
    font-size: 24px;
    font-weight: 300;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs ol li+li {
    padding-left: 10px;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #6c757d;
    content: "/";
}

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }
    .breadcrumbs ol {
        display: block;
    }
    .breadcrumbs ol li {
        display: inline-block;
    }
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about h3 {
    font-weight: 700;
    font-size: 34px;
    color: #4e4039;
}

.about h4 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 5px;
    color: #7a6960;
}

.about i {
    font-size: 48px;
    margin-top: 15px;
    color: #f39e7a;
}

.about p {
    font-size: 15px;
    color: #5a6570;
}

@media (max-width: 991px) {
    .about .about-img img {
        max-width: 70%;
    }
}

@media (max-width: 767px) {
    .about .about-img img {
        max-width: 90%;
    }
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.imgicon {
    width: 30px;
    height: auto;
    /* margin: 1vh; */
    color: #eb5d1e;
    margin-right: 2vh;
}

.hideD {
    display: none;
}

.services .icon-box {
    padding: 30px;
    position: relative;
    overflow: hidden;
    margin: 0 0 40px 0;
    background: #fff;
    box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
    transition: all 0.3s ease-in-out;
    border-radius: 15px;
    text-align: center;
    border-bottom: 3px solid #fff;
    height: 270px;
}

.icon-boxIS {
    padding: 18px;
    position: relative;
    overflow: hidden;
    margin: 0 0 30px 0;
    background: #fff;
    transition: all 0.3s ease-in-out;
    border-radius: 15px;
    text-align: center;
    border-bottom: 3px solid #fff;
}

.icon-boxISS {
    padding: 5px;
    position: relative;
    overflow: hidden;
    margin: 0 0 30px 0;
    background: #fff;
    transition: all 0.3s ease-in-out;
    border-radius: 15px;
    text-align: center;
    border-bottom: 3px solid #fff;
}

.icon-boxISS:hover {
    box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
    transform: translateY(-5px);
    border-color: #ef7f4d;
}

.icon-boxIS:hover {
    box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
    transform: translateY(-5px);
    border-color: #ef7f4d;
}

.services .icon-box:hover {
    transform: translateY(-5px);
    border-color: #ef7f4d;
}

.services .icon i {
    font-size: 48px;
    line-height: 1;
    margin-bottom: 15px;
    color: #ef7f4d;
}

.services .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

.services .title a {
    color: #111;
}

.services .description {
    font-size: 17px;
    line-height: 28px;
    margin-bottom: 0;
}


/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/

.portfolio .portfolio-item {
    margin-bottom: 30px;
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: 0 0 35px 0;
    list-style: none;
    text-align: center;
}

.portfolio #portfolio-flters li {
    cursor: pointer;
    margin: 0 15px 15px 0;
    display: inline-block;
    padding: 5px;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    color: #212529;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    color: #eb5d1e;
}

.portfolio #portfolio-flters li:last-child {
    margin-right: 0;
}

.portfolio .portfolio-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    z-index: 1;
}

.portfolio .portfolio-wrap::before {
    content: "";
    background: rgba(122, 105, 96, 0.6);
    position: absolute;
    left: 100%;
    right: 0;
    top: 0;
    bottom: 0;
    transition: all ease-in-out 0.3s;
    z-index: 2;
}

.portfolio .portfolio-wrap img {
    transition: 0.3s;
    position: relative;
    z-index: 1;
}

.portfolio .portfolio-wrap .portfolio-links {
    opacity: 0;
    left: 0;
    right: 0;
    top: calc(50% - 32px);
    text-align: center;
    z-index: 3;
    position: absolute;
    transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a {
    color: #eb5d1e;
    margin: 0 4px;
    line-height: 0;
    background-color: #fff;
    padding-top: 6px;
    padding-right: 1px;
    border-radius: 50px;
    text-align: center;
    width: 32px;
    height: 32px;
    display: inline-block;
    transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a i {
    line-height: 0;
    font-size: 20px;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
    background: #eb5d1e;
    color: #fff;
}

.portfolio .portfolio-wrap .portfolio-info {
    opacity: 0;
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 3;
    transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
}

.portfolio .portfolio-wrap:hover::before {
    left: 0;
}

.portfolio .portfolio-wrap:hover .portfolio-links {
    opacity: 1;
    top: calc(50% - 16px);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
    opacity: 1;
    bottom: 0;
}

.money {
    font-size: 2rem;
    color: #ef7f4d;
    font-weight: 300;
}


/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/

.portfolio-details {
    padding-top: 40px;
}

.heightSlider {
    height: 100vh;
    width: 100%;
}

.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #eb5d1e;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #eb5d1e;
}

.portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(122, 105, 96, 0.08);
    border-top: 3px solid #eb5d1e;
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
    margin-top: 10px;
}

.portfolio-details .portfolio-description {
    padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
}


/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/

.faq {
    padding: 20px 0;
    align-items: center;
}

.faq .faq-list {
    padding: 0;
    list-style: none;
    align-items: center;
}

.faq .faq-list li {
    border-bottom: 1px solid #eae7e5;
    margin-bottom: 20px;
    background-color: rgb(238, 238, 238);
    text-align: left;
    border-radius: 23px;
    box-shadow: 5px 4px 4px 1px #d8d8d8;
    width: 100%;
    height: max-content;
    align-items: center;
}

@media (max-width:434px) {
    .faq .faq-list .collapsed {
        width: 100%
    }
    /* .faq .faq-list li {
                                                                            width: 100%;
                                                                        } */
}

.faq .faq-list .question {
    display: block;
    /* position: relative; */
    font-family: Lato, sans-serif;
    font-size: 14px;
    line-height: 24px;
    /* font-weight: 400;
                                                    font-weight: 600; */
    padding-left: 25px;
    cursor: pointer;
    color: #000000;
    transition: 0.3s;
    background-color: rgb(238, 238, 238);
    border-radius: 23px;
    padding: 13px;
}

.faq .faq-list i {
    font-size: 16px;
    position: absolute;
    left: 0;
    top: -2px;
}

.faq .faq-list p {
    padding: 16px;
    border-radius: 23px;
}

.faq .faq-list .icon-show {
    display: none;
}

.faq .faq-list .collapsed {
    color: #ffffff;
    background-color: #eb5c1ea8;
    border-radius: 23px;
    padding: 13px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.faq .faq-list .collapsed:hover {
    color: #eb5d1e;
}

.faq .faq-list .collapsed .icon-show {
    display: inline-block;
    transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
    display: none;
    transition: 0.6s;
}


/*--------------------------------------------------------------
# Integrated-solution
--------------------------------------------------------------*/


/* .faq .faq-list .collapsedIS {
                                                    color: #ffffff;
                                                    background-color: #eb5c1ea8;
                                                    border-radius: 23px;
                                                    padding: 13px;
                                                }
                                                
                                                .faq .faq-list .collapsedIS:hover {
                                                    color: #eb5d1e;
                                                }
                                                
                                                .faq .faq-list .collapsedIS .icon-show {
                                                    display: inline-block;
                                                    transition: 0.6s;
                                                }
                                                
                                                .faq .faq-list .collapsedIS .icon-close {
                                                    display: none;
                                                    transition: 0.6s;
                                                } */


/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/

.team {
    background: #fff;
    padding: 60px 0;
}

.team .member {
    text-align: center;
    margin-bottom: 20px;
    background: #343a40;
    position: relative;
    overflow: hidden;
}

.team .member .member-info {
    opacity: 0;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    transition: 0.2s;
}

.team .member .member-info-content {
    position: absolute;
    left: 50px;
    right: 0;
    bottom: 0;
    transition: bottom 0.4s;
}

.team .member .member-info-content h4 {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 18px;
    color: #fff;
}

.team .member .member-info-content span {
    font-style: italic;
    display: block;
    font-size: 13px;
    color: #fff;
}

.team .member .social {
    position: absolute;
    left: -50px;
    top: 0;
    bottom: 0;
    width: 50px;
    transition: left ease-in-out 0.3s;
    background: rgba(78, 64, 57, 0.6);
    text-align: center;
}

.team .member .social a {
    transition: color 0.3s;
    display: block;
    color: #fff;
    margin-top: 15px;
}

.team .member .social a:hover {
    color: #eb5d1e;
}

.team .member .social i {
    font-size: 18px;
    margin: 0 2px;
}

.team .member:hover .member-info {
    background: linear-gradient(0deg, rgba(78, 64, 57, 0.95) 0%, rgba(78, 64, 57, 0.95) 15%, rgba(255, 255, 255, 0) 100%);
    opacity: 1;
    transition: 0.4s;
}

.team .member:hover .member-info-content {
    bottom: 30px;
    transition: bottom 0.4s;
}

.team .member:hover .social {
    left: 0;
    transition: left ease-in-out 0.3s;
}


/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/

.clients .clients-slider .swiper-slide img {
    opacity: 0.5;
    transition: 0.3s;
}

.clients .clients-slider .swiper-slide img:hover {
    opacity: 1;
}

.clients .clients-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.clients .clients-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #eb5d1e;
}

.clients .clients-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #eb5d1e;
}


/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/

.contact .info {
    border-top: 3px solid #eb5d1e;
    border-bottom: 3px solid #eb5d1e;
    padding: 30px;
    background: #fff;
    width: 100%;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .info i {
    font-size: 20px;
    color: #eb5d1e;
    float: left;
    width: 44px;
    height: 44px;
    background: #fdf1ec;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #7a6960;
}

.contact .info p {
    padding: 0 0 10px 60px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #ab9d95;
}

.contact .info .email p {
    padding-top: 5px;
}

.contact .info .social-links {
    padding-left: 60px;
}

.contact .info .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #333;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
    margin-right: 10px;
}

.contact .info .social-links a:hover {
    background: #eb5d1e;
    color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
    background: #eb5d1e;
    color: #fff;
}

.contact .php-email-form {
    width: 100%;
    border-top: 3px solid #eb5d1e;
    border-bottom: 3px solid #eb5d1e;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
    padding-bottom: 8px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br+br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
}

.contact .php-email-form input {
    height: 44px;
}

.contact .php-email-form textarea {
    padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
    background: #eb5d1e;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
    background: #ef7f4d;
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.titleContactUs {
    padding-top: 7rem;
}

.titleContactUs h1 {
    color: white;
    font-size: 4.5rem;
}

.titleContactUs p {
    color: rgb(255, 255, 255);
    font-size: 1.3rem;
    padding-top: 1rem;
}

@media (max-width:1041px) {
    .titleContactUs h1 {
        font-size: 3.5rem;
    }
}

@media (max-width:1041px) {
    .titleContactUs h1 {
        font-size: 2.6rem;
    }
}

@media (max-width:769px) {
    .titleContactUs p {
        font-size: 1rem;
    }
}

@media (max-width:289px) {
    .titleContactUs p {}
}


/*--------------------------------------------------------------
# Video
--------------------------------------------------------------*/

#vid {
    border: 3px solid #ECECEC;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.whiteBG {
    background-color: white;
}

.footerHR {
    width: 100%;
    border: 1px solid #eb5d1e;
}

.footerActive {
    color: #eb5d1e;
}

#footerMarginTop {
    margin-top: 30px;
}

#footer {
    background: #fff;
    padding: 0 0 30px 0;
    color: #212529;
    font-size: 14px;
    background: #fef8f5;
    height: 70vh;
    z-index: 3;
}

@media (max-width: 991px) {
    #footer {
        padding-left: 40px;
        padding-right: 40px;
        background: #fff;
    }
}

#footer .footer-newsletter {
    padding: 50px 0;
    background: #fef8f5;
    text-align: center;
    font-size: 15px;
}

#footer .footer-newsletter h4 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 0;
    line-height: 1;
    font-weight: 600;
    color: #4e4039;
}

#footer .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 4px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
}

#footer .footer-newsletter form input[type="email"] {
    border: 0;
    padding: 4px 4px;
    width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #eb5d1e;
    color: #fff;
    transition: 0.3s;
    border-radius: 4px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
    background: #c54811;
}

#footer .footer-top {
    padding: 60px 0 30px 0;
    background: #fff;
    height: 70vh;
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
    background-color: white;
}

#footer .footer-top .footer-contact h4 {
    font-size: 22px;
    margin: 0 0 30px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: Lato, sans-serif;
    color: #5c5c5c;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    color: #212529;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
    background-color: white;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #f39e7a;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    /* margin-left: auto;
        margin-right: auto;
        display: block; */
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #5c5c5c;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: #eb5d1e;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #eb5d1e;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: #ef7f4d;
    color: #fff;
    text-decoration: none;
}

#footer .copyright {
    text-align: center;
    float: center;
}

#footer .credits {
    float: right;
    text-align: center;
    font-size: 13px;
    color: #212529;
}

#footer .credits a {
    color: #eb5d1e;
}

@media (max-width: 575px) {
    #footer .copyright,
    #footer .credits {
        float: none;
        -moz-text-align-last: center;
        text-align-last: center;
        padding: 3px 0;
    }
}


/*--------------------------------------------------------------
# Newletter
--------------------------------------------------------------*/

.newletterInput {
    background-color: #000000;
    border-top: 0px;
    border-right: 0px;
    border-left: 0px;
    color: #ffffff;
}

.newletter {
    background-color: #eb5d1e;
    border-radius: 30px;
    color: white;
    padding-left: 20px;
    padding-right: 20px;
}

main {
    z-index: 2;
    position: relative;
    height: 100%;
    background-color: #ffffff;
    -webkit-transition: transform .7s ease-in-out;
    -moz-transition: transform .7s ease-in-out;
    -ms-transition: transform .7s ease-in-out;
    -o-transition: transform .7s ease-in-out;
    transition: transform .7s ease-in-out;
}

.sidebar {
    height: 100%;
    width: 400px;
    position: fixed;
    top: 0;
    z-index: 1;
    right: 0;
    background-color: #111111;
}

@media (max-width: 991px) {
    .sidebar {
        display: none;
    }
}

.bar {
    display: block;
    height: 2px;
    width: 32px;
    background-color: #0f0f0f;
    margin: 10px auto;
}

.buttonA {
    cursor: pointer;
    display: inline-block;
    width: auto;
    margin: 0 auto;
    -webkit-transition: all .7s ease;
    -moz-transition: all .7s ease;
    -ms-transition: all .7s ease;
    -o-transition: all .7s ease;
    transition: all .7s ease;
}

.nav-right {
    position: fixed;
    right: 40px;
    top: 35px;
}

.nav-right.visible-xs {
    z-index: 3;
}

.hidden-xs {
    display: none;
}

.middle {
    margin: 0 auto;
}

.bar {
    -webkit-transition: all .7s ease;
    -moz-transition: all .7s ease;
    -ms-transition: all .7s ease;
    -o-transition: all .7s ease;
    transition: all .7s ease;
}

.nav-right.visible-xs .active .bar {
    background-color: #FFF;
    -webkit-transition: all .7s ease;
    -moz-transition: all .7s ease;
    -ms-transition: all .7s ease;
    -o-transition: all .7s ease;
    transition: all .7s ease;
}

.buttonA.active .top {
    -webkit-transform: translateY(15px) rotateZ(45deg);
    -moz-transform: translateY(15px) rotateZ(45deg);
    -ms-transform: translateY(15px) rotateZ(45deg);
    -o-transform: translateY(15px) rotateZ(45deg);
    transform: translateY(15px) rotateZ(45deg);
}

.buttonA.active .bottom {
    -webkit-transform: translateY(-15px) rotateZ(-45deg);
    -moz-transform: translateY(-15px) rotateZ(-45deg);
    -ms-transform: translateY(-15px) rotateZ(-45deg);
    -o-transform: translateY(-15px) rotateZ(-45deg);
    transform: translateY(-15px) rotateZ(-45deg);
}

.buttonA.active .middle {
    width: 0;
}

.move-to-left {
    -webkit-transform: translateX(-400px);
    -moz-transform: translateX(-400px);
    -ms-transform: translateX(-400px);
    -o-transform: translateX(-400px);
    transform: translateX(-400px);
}

nav {
    padding-top: 30px;
}

.sidebar-list {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    margin-top: 150px;
    text-align: center;
}

.sidebar-item {
    margin: 30px 0;
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    transform: translateY(-20px);
}

.sidebar-item:first-child {
    -webkit-transition: all .7s .2s ease-in-out;
    -moz-transition: all .7s .2s ease-in-out;
    -ms-transition: all .7s .2s ease-in-out;
    -o-transition: all .7s .2s ease-in-out;
    transition: all .7s .2s ease-in-out;
}

.sidebar-item:nth-child(2) {
    -webkit-transition: all .7s .4s ease-in-out;
    -moz-transition: all .7s .4s ease-in-out;
    -ms-transition: all .7s .4s ease-in-out;
    -o-transition: all .7s .4s ease-in-out;
    transition: all .7s .4s ease-in-out;
}

.sidebar-item:nth-child(3) {
    -webkit-transition: all .7s .6s ease-in-out;
    -moz-transition: all .7s .6s ease-in-out;
    -ms-transition: all .7s .6s ease-in-out;
    -o-transition: all .7s .6s ease-in-out;
    transition: all .7s .6s ease-in-out;
}

.sidebar-item:last-child {
    -webkit-transition: all .7s .8s ease-in-out;
    -moz-transition: all .7s .8s ease-in-out;
    -ms-transition: all .7s .8s ease-in-out;
    -o-transition: all .7s .8s ease-in-out;
    transition: all .7s .6s ease-in-out;
}

.sidebar-item.active {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
}

.sidebar-anchor {
    color: #FFF;
    text-decoration: none;
    font-size: 1.8em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 7px;
}


/* .sidebar-anchor:before {
content: "";
width: 0;
height: 2px;
position: absolute;
bottom: 0;
left: 0;
background-color: #FFF;
-webkit-transition: all .7s ease-in-out;
-moz-transition: all .7s ease-in-out;
-ms-transition: all .7s ease-in-out;
-o-transition: all .7s ease-in-out;
transition: all .7s ease-in-out;
}

.sidebar-anchor:hover:before {
width: 100%;
} */

.ua {
    position: absolute;
    bottom: 20px;
    left: 30px;
}

.fa {
    font-size: 1em;
    color: #EF8354;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.ua:hover .fa {
    color: #FFF;
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

@media (min-width: 480px) {
    .nav-list {
        display: block;
    }
}

@media (min-width: 768px) {
    .nav-right {
        position: absolute;
    }
    .hidden-xs {
        display: block;
    }
    .visible-xs {
        display: none;
    }
}

@media (max-width:991px) {
    .responsiveHide {
        display: none;
    }
}

.whitecolortext {
    color: white;
}

.servicesHero {
    height: 70vh;
}

.servicesSelect {
    font-size: 2rem;
}

.servicesSelecthover:hover {
    color: black;
}


/* typewrite */

#typewriteText {
    color: rgb(0, 0, 0);
    font-size: 2.5rem;
    /* font-family: Arial, Helvetica, sans-serif; */
    /* position: fixed;
        left: 35%;
        top: 25%; */
    width: 45%;
}


/* contact */

@keyframes animatedBackground {
    0% {
        background-position: 0 0;
    }
    50% {
        background-position: 50% 0;
    }
    100% {
        background-position: 0 0;
    }
}

.flyinTxtCont {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-left: 2em;
}

.flyIn {
    color: #fff;
    text-transform: uppercase;
    line-height: 1.2em;
    position: relative;
    text-shadow: 2px 2px 40px rgba(0, 0, 0, 0.7);
}

.lineOne {
    transition-delay: .2s;
    transition: .4s ease in;
    animation: txtFlyIn .3s linear;
}

.lineTwo {
    transition-delay: .4s;
    transition: .6s ease in;
    animation: txtFlyIn .6s linear;
}

.lineThree {
    transition-delay: .6s;
    transition: .8s ease in;
    animation: txtFlyIn .9s linear;
}

.lineOne,
.lineTwo,
.lineThree {
    font-size: 110px;
    font-weight: bold;
    letter-spacing: 3px;
}

.lineFour {
    transition-delay: 2s;
    transition: 2s ease in;
    animation: fadeIn 2s linear;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: inline-block;
    color: #000;
    box-size: border-box;
    max-width: 63%;
    max-width: 10em;
    font-size: 2rem;
    padding: .2em .5em;
    margin-top: 30px;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes txtFlyIn {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0%);
    }
}

.preloader {
    padding-bottom: 70px;
    position: absolute;
    top: 35%;
    left: 40%;
    right: 35%;
    width: 20rem;
    height: 20rem;
    z-index: 211;
    background-color: white;
    background-size: cover;
}

@media (max-width:1000px) {
    .preloader {
        position: absolute;
        top: 35%;
        left: 33%;
        width: 15rem;
        height: 15rem;
    }
}

@media (max-width:700px) {
    .preloader {
        position: absolute;
        top: 35%;
        left: 22%;
        width: 15rem;
        height: 15rem;
    }
}

@media (max-width:400px) {
    .preloader {
        position: absolute;
        top: 35%;
        left: 25%;
        width: 11rem;
        height: 17rem;
    }
}

.preloaderE {
    height: 160%;
    width: 100%;
    background-color: rgb(255, 255, 255);
    position: absolute;
    bottom: -102px;
    right: 0px;
    z-index: 211;
}

@media (max-width:600px) {
    .preloaderE {
        height: 190%;
        width: 100%;
        background-color: rgb(255, 255, 255);
        position: absolute;
        bottom: -2102px;
        right: 0px;
        z-index: 211;
    }
}

.fRTtextSize h1 {
    font-size: 3.8rem;
}

.fRTtextSize p {
    font-size: 1.2rem;
}

@media (max-width:1500px) {
    .fRTtextSize p {
        font-size: 0.8rem;
    }
}

@media (min-width:1501px) {
    .fRTtextSize p {
        font-size: 0.9rem;
    }
}

.fRTtextSizeBig {
    font-size: 2.2rem;
    color: #000000;
}

.fRTtextSizeBig:hover {
    font-size: 2.2rem;
    color: #eb5d1e;
}

.fRTtextSizeContent {
    padding-bottom: 20px;
    padding-top: 20px;
}


/* model view */

.model-viewerSize {
    width: 100%;
    height: 100vh;
}

.height-70 {
    height: 70%;
}


/* #typewriter {
                                                    background-color: black;
                                                } */


/* .margin-80 {
                                                    margin: 80px;
                                                } */

.padding-Bottom {
    padding-bottom: 8rem;
}

.padding-TopBottom {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
    padding-left: 30px;
    padding-right: 30px;
}

@media (max-width: 991px) {
    .padding-TopBottom {
        padding-top: 1rem;
        padding-bottom: 1rem;
        padding-left: 30px;
        padding-right: 30px;
    }
}

.mySlidespadding {
    padding-top: 3rem;
    padding-bottom: 8rem;
    padding-left: 30px;
    padding-right: 30px;
    margin: 30px;
}

.mySlidespaddingTwo {
    padding-bottom: 1rem;
    padding-left: 3px;
    padding-right: 3px;
}

.careerTitle {
    padding-top: 8rem;
    padding-bottom: 3rem;
    padding-left: 30px;
    padding-right: 30px;
}


/* video background */

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:before,
*:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

video {
    display: block;
    width: 100%;
    height: 100%;
}

.linkButton {
    background-color: #eb5d1e;
    border-radius: 30px;
    color: white;
    padding-left: 20px;
    padding-right: 20px;
}


/* shape */

.circle {
    position: absolute;
    width: 24px;
    height: 24px;
    top: 49%;
    left: 52%;
    border-radius: 100%;
    /* animation: falling infinite;
        animation-direction: normal;
        animation-duration: 6s; */
    border: 1px solid rgb(144, 161, 238);
    animation: up-down 6s ease-in-out infinite alternate-reverse both;
}

.circleTwo {
    position: absolute;
    width: 24px;
    height: 24px;
    top: 49%;
    left: 2%;
    border-radius: 100%;
    border: 1px solid rgb(144, 161, 238);
    animation: circleM 22s linear infinite;
}

@keyframes circleM {
    0% {
        top: 49%;
        left: 32%;
    }
    100% {
        top: 5%;
        left: 10%;
        transform: rotate(360deg);
    }
    100% {
        top: 20%;
        left: 32%;
    }
}

.tri {
    position: absolute;
    top: 62%;
    left: 78%;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 30px solid transparent;
    border-bottom: 30px solid lightgreen;
    animation: spin 22s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.triTwo {
    position: absolute;
    top: 62%;
    left: 4%;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 30px solid transparent;
    border-bottom: 30px solid rgb(221, 238, 144);
    animation: spinTwo 32s linear infinite;
}

@keyframes spinTwo {
    0% {
        top: 62%;
    }
    100% {
        top: 3%;
        left: 50%;
        transform: rotate(360deg);
    }
    100% {
        top: 43%;
    }
}

.shapeFour {
    position: absolute;
    left: 20px;
    top: 330px;
    width: 24px;
    height: 24px;
    background-color: red;
    position: relative;
    animation: myfirst 6s linear 0s infinite alternate;
}

@keyframes myfirst {
    0% {
        background-color: rgb(214, 129, 18);
        left: 220px;
        top: 3px;
    }
    25% {
        background-color: yellow;
        left: 110px;
        top: 70px;
        transform: rotate(180deg);
    }
    100% {
        background-color: rgb(228, 183, 124);
        left: 220px;
        top: 3px;
    }
}


/* card */

.card {
    box-shadow: 0 4px 8px 0 rgba(139, 139, 139, 0.2);
    padding: 16px;
    margin: 16px;
    text-align: center;
    background-color: #ffffff;
    border-radius: 10px;
}

.sectionBackgroundColor {
    background-color: #fef8f5;
}

.title {
    position: absolute;
    font-weight: 700;
    line-height: 56px;
    color: #4e4039;
    z-index: 3;
    top: 26rem;
    left: 1%;
    right: 1%;
    font-size: 4.2rem;
}

@media (max-width: 530px) {
    .title {
        font-size: 2.2rem;
    }
}

.titleAR {
    position: absolute;
    font-weight: 700;
    line-height: 56px;
    color: #4e4039;
    z-index: 3;
    /* top: 20rem; */
    left: 1%;
    right: 1%;
    /* font-size: 4.2rem; */
}

@media (min-width: 277px) {
    .titleAR {
        top: 6.4rem;
        font-size: 2.2rem;
    }
}

@media (min-width: 590px) {
    .titleAR {
        top: 10rem;
        font-size: 3.2rem;
    }
}

@media (min-width: 790px) {
    .titleAR {
        top: 27rem;
        font-size: 4.2rem;
    }
}


/* animation */

.animationTextRight {
    position: relative;
    animation-name: rightText;
    animation-duration: 10s;
    animation-fill-mode: forwards;
}

@keyframes rightText {
    from {
        animation-delay: 1s;
        right: -349px;
    }
    to {
        right: 0px;
    }
}

.animationTextLeft {
    position: relative;
    animation-name: leftText;
    animation-duration: 4s;
    animation-fill-mode: forwards;
}

@keyframes leftText {
    from {
        animation-delay: 1s;
        left: -349px;
    }
    to {
        left: 0px;
    }
}

.animationTextbottom {
    position: relative;
    animation-name: bottomText;
    animation-duration: 4s;
    animation-fill-mode: forwards;
}

@keyframes bottomText {
    from {
        animation-delay: 1s;
        bottom: -149px;
    }
    to {
        bottom: 40px;
    }
}


/* on and off */

#radioBtn .notActive {
    color: #292929;
    background-color: #ffffff;
    border: 0px;
}


/* Intergrated solution */

.overlayBackground {
    border-radius: 100rem;
    background-color: #fef8f5;
    position: absolute;
    height: 31rem;
    width: 31rem;
    left: -15rem;
}

.overlayBackgroundTwo {
    border-bottom-left-radius: 100rem;
    border-top-left-radius: 200rem;
    background-color: #fef8f5;
    position: absolute;
    height: 31rem;
    width: 31rem;
    right: 0;
}


/* number run */

#value {
    font-size: 39px;
}

#valuetwo {
    font-size: 39px;
}

#valuethree {
    font-size: 39px;
}

#valuefour {
    font-size: 39px;
}


/* slideshow */


/*********************************************************************/


/* Bootstrap 4 Multiple Item Carousel */


/*********************************************************************/


/* medium - display 2  */

@media (min-width: 768px) {
    .carousel-inner .carousel-item-right.active,
    .carousel-inner .carousel-item-next {
        transform: translateX(50%);
    }
    .carousel-inner .carousel-item-left.active,
    .carousel-inner .carousel-item-prev {
        transform: translateX(-50%);
    }
}


/* large - display 3 */

@media (min-width: 992px) {
    .carousel-inner .carousel-item-right.active,
    .carousel-inner .carousel-item-next {
        transform: translateX(33%);
    }
    .carousel-inner .carousel-item-left.active,
    .carousel-inner .carousel-item-prev {
        transform: translateX(-33%);
    }
}

@media (max-width: 768px) {
    .carousel-inner .carousel-item>div {
        display: none;
    }
    .carousel-inner .carousel-item>div:first-child {
        display: block;
    }
}

.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
    display: flex;
}

.carousel-inner .carousel-item-right,
.carousel-inner .carousel-item-left {
    transform: translateX(0);
}

.doubleCircle {
    width: 62px;
    height: 62px;
    background: #ef7f4d;
    border-radius: 100%;
    box-shadow: inset 0px 0px 3px 10px #f7b529;
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-top: 17px;
    margin-bottom: 17px;
    transition: transform .2s;
    /* Animation */
}

.doubleCircle:hover {
    transform: scale(1.5);
    /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}


/* Sticky */

.nav-container {
    margin: 0 auto;
    text-align: justify;
}

.nav-container ul li a {
    padding: 8px 0;
    color: #000000;
    font-size: 1.3em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-container ul li {
    display: inline-block;
    padding-left: 10px;
}

.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 180px;
    z-index: 5;
}

@media screen and (max-width: 620px) {
    .sticky {
        font-size: 9px;
    }
}

@media screen and (min-width: 220px) {
    .sticky {
        top: 150px;
    }
}

@media screen and (min-width: 322px) {
    .sticky {
        top: 70px;
    }
}

@media screen and (min-width: 768px) {
    .sticky {
        top: 230px;
    }
}

@media screen and (min-width: 1199px) {
    .sticky {
        top: 70px;
    }
}

.hideBox {
    display: none;
}

@media screen and (min-width: 1199px) {
    .hideBox {
        display: block;
    }
}

.mobileBox {
    display: none;
}

@media screen and (max-width: 1199px) {
    .mobileBox {
        display: block;
    }
}

.textSizeVMS {
    width: 10.8rem;
    height: 5vh;
    font-size: 12px;
}

#header-video {
    position: relative;
    background-color: black;
    height: 100vh;
    min-height: 25rem;
    width: 100%;
    overflow: hidden;
}

#header-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    /* width: auto; */
    height: auto;
    z-index: 0;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}


/* @media (max-width:800px) {
    #header-video video {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        z-index: 0;
        -ms-transform: translateX(-50%) translateY(-50%);
        -moz-transform: translateX(-50%) translateY(-50%);
        -webkit-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
    }
} */

#header-video .container {
    position: relative;
    z-index: 2;
}

#header-video .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: 0.1;
    z-index: 1;
}

#header-video .video-content-area {
    height: 100vh;
    width: 100%;
    position: relative;
}

#header-video .home-one-slider-otem .video-content-area {
    height: 800px;
    position: relative;
}

#header-video .video-text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 1;
    text-align: center;
}

#header-video .video-text h1 {
    color: #fff;
    font-size: 70px;
    font-weight: 700;
    text-transform: capitalize;
    text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4), 0px 8px 13px rgba(0, 0, 0, 0.1), 0px 18px 23px rgba(0, 0, 0, 0.1);
}

#header-video .video-text h1 span {
    color: #33ccff;
}

@media (pointer: coarse) and (hover: none) {
    #header-video {
        background: url('') black no-repeat center center scroll;
    }
}

@media only screen and (max-width: 414px) {
    #header-video .video-text h1 {
        color: #fff;
        font-size: 35px;
        font-weight: 700;
        text-transform: capitalize;
        text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4), 0px 8px 13px rgba(0, 0, 0, 0.1), 0px 18px 23px rgba(0, 0, 0, 0.1);
    }
}

.backgroundLG {
    background: linear-gradient(to bottom left, rgb(255, 255, 255) 50%, #e2e2e2 50%);
}

.backgroundLGTwo {
    background: linear-gradient(to bottom left, #e2e2e2 50%, rgb(255, 255, 255) 50%);
}


/* box */

.details {
    text-align: center;
}

.details h2 {
    color: #243238;
    font-size: 50px;
    margin: 0;
}

.main-box {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.box {
    width: 300px;
    height: 300px;
    margin: 10px;
    text-align: center;
    padding: 40px 20px;
    color: #ffffff;
    position: relative;
    z-index: 2;
    border-radius: 5px;
}

.box>* {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.box::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.box:hover::before {
    width: 95%;
    height: 95%;
    transition: all ease .50s;
}

.box .icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #ffffff;
    text-align: center;
    display: inline-block;
    position: relative;
}

.box .icon .fas {
    color: #404044;
    font-size: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

hr {
    margin-top: 25px;
    margin-bottom: 25px;
    display: block;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.box a {
    text-decoration: none;
    color: #ffffff;
    text-transform: uppercase;
    background-color: #D50000;
    padding: 10px 25px;
    border-radius: 25px;
    margin-top: 25px;
    display: inline-block;
    font-weight: 600;
}

.box a:hover {
    background-color: #243238;
}

.box .white-border {
    border: 1px solid #ffffff;
}

.box-grey {
    background-color: #ff7337;
}

.box-red {
    background-color: #D50000;
}


/* .section-title h2::after {
                                                                        content: "";
                                                                        width: 120px;
                                                                        height: 1px;
                                                                        display: inline-block;
                                                                        background: linear-gradient( 90deg, rgba(0, 92, 234, 1) 0%, rgba(0, 197, 251, 1) 100%);
                                                                        margin: 4px 10px;
                                                                    } */

.card-career {
    border-radius: 3px;
    border: 0;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.card-career:hover {
    border-radius: 3px;
    border: 0;
    box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.card-career .card-icon {
    text-align: center;
    margin-top: -32px;
}

.card-career .card-icon i {
    font-size: 32px;
    color: #fff;
    width: 64px;
    height: 64px;
    padding-top: 5px;
    text-align: center;
    background: linear-gradient(90deg, rgba(0, 92, 234, 1) 0%, rgba(0, 197, 251, 1) 100%);
    border-radius: 4px;
    text-align: center;
    border: 4px solid #fff;
    transition: 0.3s;
    display: inline-block;
}

.card-career .card-body {
    padding-top: 12px;
}

.card-career .card-title {
    font-weight: 700;
    text-align: center;
}

.card-career .card-title a {
    color: #15222b;
}

.card-career .card-title a:hover {
    color: #006aec;
}

.card-career .card-text {
    color: #5e5e5e;
    text-align: center;
    /* chong */
}

.card-career .card:hover .card-icon i {
    background: #000;
    color: #FFF;
}

.hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

.hero-text button {
    border: none;
    outline: 0;
    display: inline-block;
    padding: 10px 25px;
    color: black;
    background-color: #ddd;
    text-align: center;
    cursor: pointer;
}

.padding10 {
    padding: 10px;
}

.sizeFRT {
    font-size: 30px;
}

@media (max-width: 577px) {
    .sizeFRT {
        font-size: 17px;
        padding-right: 20px;
    }
}

.site-nav {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.activeLine ul {
    /* display: flex; */
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.activeLine ul:hover li:not(:hover) a {
    opacity: 0.2;
}

.activeLine ul li {
    position: relative;
    padding: 30px 25px 30px 25px;
    cursor: pointer;
}

@media (max-width:577px) {
    .activeLine ul li {
        padding: 3px;
    }
}

.activeLine ul li::after {
    position: absolute;
    content: "";
    top: 100%;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgb(235, 93, 30);
    transform: scaleX(0);
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.activeLine ul li:hover::after,
.activeLine ul li.active::after {
    transform: scaleX(1);
}

.activeLine ul li a {
    /* position: relative;
                                                                        display: flex; */
    color: rgb(0, 0, 0);
    font-family: Lato, sans-serif;
    text-decoration: none;
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-size: 2rem;
}

input[type='text']::placeholder {
    text-align: center;
    /* for Chrome, Firefox, Opera */
}

.padding30 {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 30px;
}

.cardimageD {
    width: 100%;
    height: 15em;
    padding: 20px;
}

.mobiletoweb {
    display: none;
}

@media(max-width:1025px) {
    .webtomobile {
        display: none;
    }
    .mobiletoweb {
        display: block;
    }
}

.rectangleDebug {
    height: 134px;
    width: 400px;
    background-color: rgb(255, 255, 255);
    position: absolute;
    bottom: 0px;
    right: 0px;
    z-index: 3;
}

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

.changeImageSize {
    height: 30em;
    width: 35em;
}

@media(max-width:500px) {
    .changeImageSize {
        height: 19em;
        width: 100%;
    }
}

@media(max-width:500px) {
    .fontCareer {
        font-size: 16px;
    }
}

.masthead {
    padding-top: 10.5rem;
    padding-bottom: 6rem;
    text-align: center;
    color: #fff;
    background-image: url("assets/img/6340.jpg");
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 90vh;
}

.HideShow {
    display: none;
}

.HideShowBox {
    display: none;
}

.flow i {
    display: block;
    font-size: 64px;
    margin-bottom: 15px;
}

@media (max-width:991px) {
    .HideShow {
        display: block;
    }
    .ShowHide {
        display: none;
    }
    .flow {
        padding-top: 20px;
        padding-bottom: 20px;
        margin-bottom: 10px;
    }
    .HideShowBox {
        display: block;
    }
    .ShowHideBox {
        display: none;
    }
}


/* articles */

.blog-card {
    display: flex;
    flex-direction: column;
    margin: 3rem auto;
    box-shadow: 0 3px 7px -1px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.6%;
    background: #fff;
    line-height: 1.4;
    font-family: Lato, sans-serif;
    border-radius: 5px;
    overflow: hidden;
    z-index: 0;
}

.blog-card a {
    color: inherit;
}

.blog-card a:hover {
    color: #5a94d6;
}

.blog-card:hover .photo {
    transform: scale(1.3) rotate(3deg);
}

.blog-card .meta {
    position: relative;
    z-index: 0;
    height: 200px;
    width: 500px;
}

.blog-card .photo {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.2s;
}

.blog-card .details,
.blog-card .details ul {
    margin: auto;
    padding: 0;
    list-style: none;
}

.blog-card .details {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -100%;
    margin: auto;
    transition: left 0.2s;
    background: rgba(0, 102, 255, 0.6);
    color: #fff;
    padding: 10px;
    width: 100%;
    font-size: 0.9rem;
}


/* .blog-card .details a {
    -webkit-text-decoration: dotted underline;
    text-decoration: dotted underline;
} */

.blog-card .details ul li {
    display: inline-block;
}

.blog-card .details .author:before {
    font-family: Lato, sans-serif;
    margin-right: 10px;
    content: "";
}

.blog-card .details .date:before {
    font-family: Lato, sans-serif;
    margin-right: 10px;
    /* content: ""; */
    align-items: center;
}

.blog-card .details .tags ul:before {
    font-family: Lato, sans-serif;
    content: "";
    margin-right: 10px;
}

.blog-card .details .tags li {
    margin-right: 2px;
}

.blog-card .details .tags li:first-child {
    margin-left: -4px;
}

.blog-card .description {
    padding: 1rem;
    background: #fff;
    z-index: 1;
    align-items: center;
    padding-top: 10%;
}

.blog-card .description h1,
.blog-card .description h2 {
    font-family: Lato, sans-serif;
}

.blog-card .description h1 {
    line-height: 1;
    margin: 0;
    font-size: 1.7rem;
    align-items: center;
}

.blog-card .description h2 {
    font-size: 1.6rem;
    font-weight: 300;
    /* text-transform: uppercase; */
    color: #000000;
    margin-top: 5px;
    align-items: center;
}

.blog-card .description .read-more {
    text-align: right;
    align-items: center;
}

.blog-card .description .read-more a {
    color: #ffffff;
    display: inline-block;
    position: relative;
}


/* .blog-card .description .read-more a:after {
    content: "";
    font-family: FontAwesome;
    margin-left: -10px;
    opacity: 0;
    vertical-align: middle;
    transition: margin 0.3s, opacity 0.3s;
}

.blog-card .description .read-more a:hover:after {
    margin-left: 5px;
    opacity: 1;
} */

.blog-card p {
    position: relative;
    margin: 1rem 0 0;
}

.blog-card p:first-of-type {
    margin-top: 1.25rem;
}

.blog-card p:first-of-type:before {
    content: "";
    position: absolute;
    height: 1px;
    background: #eb5d1e;
    width: 100%;
    top: -0.75rem;
    border-radius: 3px;
}

.blog-card:hover .details {
    left: 0%;
}

@media (min-width: 640px) {
    .blog-card {
        flex-direction: row;
        max-width: 100%;
    }
    .blog-card .meta {
        flex-basis: 50%;
        height: 400px;
    }
    .blog-card .description {
        flex-basis: 50%;
    }
    /* .blog-card .description:before {
        transform: skewX(-3deg);
        content: "";
        background: #fff;
        width: 30px;
        position: absolute;
        left: -10px;
        top: 0;
        bottom: 0;
        z-index: -1;
    } */
    .blog-card.alt {
        flex-direction: row-reverse;
    }
    /* .blog-card.alt .description:before {
        left: inherit;
        right: -10px;
        transform: skew(3deg);
    } */
    .blog-card.alt .details {
        padding-left: 25px;
    }
}

.fcareer {
    font-size: 21px;
}

@media (max-width: 500px) {
    .fcareer {
        font-size: 16px;
    }
}