body {
    background: #000;
    color: #666;
    font-family: almarai
}

a {
    color: #ffff;
    transition: .5s;
    text-decoration: none
}

a:active,
a:focus,
a:hover {
    color: #ff0000;
    outline: 0;
    text-decoration: none
}

#awwwards {
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease-in-out, visibility 0.3s ease-in-out, right .35s ease-in-out;
}

.d-active {
    opacity: 1 !important;
    visibility: visible !important;
}


p {
    padding: 0;
    margin: 0 0 30px 0
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: almarai;
    font-weight: 300;
    margin: 0 0 20px 0;
    padding: 0;
    /* letter-spacing: -2px; */
    letter-spacing: 0;
}

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all .4s
}

.back-to-top i {
    font-size: 28px;
    color: #000;
    line-height: 0
}

.back-to-top:hover {
    background: #2ce782;
    color: #fff
}

.back-to-top.active {
    visibility: visible;
    opacity: 1
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #f2f2f2;
    border-top: 6px solid #18d26e;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

.header {
    transition: all .9s;
    z-index: 997;
    background: rgba(0, 0, 0, .9);
    height: 90px;
    top: 0
}

.header.header-transparent {
    background: 0 0
}

.header.header-scrolled {
    background: rgba(0, 0, 0, .9);
    height: 90px
}

.header .logo {
    font-size: 34px;
    margin: 0;
    padding: 0;
    font-family: almarai;
    font-weight: 500;
    letter-spacing: 3px
}

.header .logo a {
    color: #fff
}

.header .logo img {
    max-height: 21px
}

@media (max-width:992px) {
    .header .logo {
        font-size: 28px
    }
}

.navbar {
    padding: 0
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center
}

.navbar li {
    position: relative
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-family: almarai;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    text-transform: uppercase;
    transition: .3s
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px
}

.navbar .active,
.navbar .active:focus,
.navbar a:hover,
.navbar li:hover>a {
    color: #18d26e
}

.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: 0 0 30px rgba(127, 137, 161, .25);
    transition: .3s
}

.navbar .dropdown ul li {
    min-width: 200px
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    text-transform: none;
    color: #666
}

.navbar .dropdown ul a i {
    font-size: 12px
}

.navbar .dropdown ul .active:hover,
.navbar .dropdown ul a:hover,
.navbar .dropdown ul li:hover>a {
    color: #18d26e
}

.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-nav-toggle {
    color: #fff;
    font-size: 50px;
    cursor: pointer;
    line-height: 0;
    transition: .5s;
    margin-left: 15px
}

.navbar-mobile {
    position: fixed;
    display: block !important;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: #000;
    transition: .3s;
    z-index: 999;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s
}

.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: #000;
    overflow-y: auto;
    transition: .3s
}

.navbar-mobile a,
.navbar-mobile a:focus {
    font-size: 15px;
    color: #333
}

.navbar-mobile .active,
.navbar-mobile a:hover,
.navbar-mobile .current-menu-item a,
.navbar-mobile li:hover>a {
    color: #ff0000
}

.link-list ul li.current-menu-item a {
    color: #ff0000;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0 0 30px rgba(127, 137, 161, .25)
}

.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 .active:hover,
.navbar-mobile .dropdown ul .current-menu-item a,
.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #18d26e
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block
}

.hero {
    width: 100%;
    height: 100vh !important;
    background: #000;
    overflow: hidden;
    position: relative
}

@media (max-height:500px) {
    .hero {
        height: 150vh
    }
}

.hero .carousel,
.hero .carousel-inner,
.hero .carousel-item,
.hero .carousel-item::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0
}

.hero .carousel-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat
}

.hero .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 70px;
    left: 50px;
    right: 50px
}

.hero .container {
    text-align: center
}

.hero h2 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 48px;
    font-weight: 700
}

@media (max-width:768px) {
    .hero h2 {
        font-size: 28px
    }
}

.hero p {
    width: 80%;
    margin: 0 auto 30px auto;
    color: #fff
}

@media (min-width:1024px) {
    .hero p {
        width: 60%
    }
}

.hero .carousel-fade {
    overflow: hidden
}

.hero .carousel-fade .carousel-inner .carousel-item {
    transition-property: opacity
}

.hero .carousel-fade .carousel-inner .active.carousel-item-end,
.hero .carousel-fade .carousel-inner .active.carousel-item-start,
.hero .carousel-fade .carousel-inner .carousel-item {
    opacity: 0
}

.hero .carousel-fade .carousel-inner .active,
.hero .carousel-fade .carousel-inner .carousel-item-next.carousel-item-start,
.hero .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-end {
    opacity: 1;
    transition: .5s
}

.hero .carousel-fade .carousel-inner .active.carousel-item-end,
.hero .carousel-fade .carousel-inner .active.carousel-item-start,
.hero .carousel-fade .carousel-inner .carousel-item-next,
.hero .carousel-fade .carousel-inner .carousel-item-prev {
    left: 0;
    transform: translate3d(0, 0, 0)
}

.hero .carousel-control-next,
.hero .carousel-control-prev {
    width: 10%
}

@media (min-width:1024px) {

    .hero .carousel-control-next,
    .hero .carousel-control-prev {
        width: 5%
    }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
    background: 0 0;
    font-size: 32px;
    line-height: 1
}

.hero .carousel-indicators li {
    cursor: pointer
}

.hero .btn-get-started {
    font-family: almarai;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 32px;
    border-radius: 50px;
    transition: .5s;
    margin: 10px;
    color: #fff;
    background: #18d26e
}

.hero .btn-get-started:hover {
    background: #fff;
    color: #18d26e
}

section {
    padding: 30px 0;
}

.section-header h3 {
    font-size: 32px;
    color: #111;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px
}

.section-header h3::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px)
}

.section-header h3::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #18d26e;
    bottom: 0;
    left: calc(50% - 20px)
}

.section-header p {
    text-align: center;
    padding-bottom: 30px;
    color: #333
}

.section-bg {
    background: #f7f7f7
}

.breadcrumbs {
    padding: 20px 0;
    background-color: #f7f7f7;
    min-height: 40px;
    margin-top: 80px
}

.breadcrumbs h2 {
    font-size: 24px;
    margin-bottom: 0;
    font-weight: 400
}

.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
    }
}

#featured-services {
    background: #000
}

#featured-services .box {
    padding: 30px 20px
}

#featured-services .box-bg {
    background-image: linear-gradient(0deg, #000 0, #242323 50%, #000 100%)
}

#featured-services i {
    color: #18d26e;
    font-size: 48px;
    display: inline-block;
    line-height: 1
}

#featured-services h4 {
    font-weight: 400;
    margin: 15px 0;
    font-size: 18px
}

#featured-services h4 a {
    color: #fff
}

#featured-services h4 a:hover {
    color: #18d26e
}

#featured-services p {
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    margin-bottom: 0
}

#about {
    /* background: url(../assets/img/about-bg.html) center top no-repeat fixed; */
    background-size: cover;
    padding: 60px 0 40px 0;
    position: relative
}

#about::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, .92);
    z-index: 9
}

#about .container {
    position: relative;
    z-index: 10
}

#about .about-col {
    background: #fff;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
    margin-bottom: 20px
}

#about .about-col .img {
    position: relative
}

#about .about-col .img img {
    border-radius: 4px 4px 0 0
}

#about .about-col .icon {
    width: 64px;
    height: 64px;
    text-align: center;
    position: absolute;
    background-color: #18d26e;
    border-radius: 50%;
    border: 4px solid #fff;
    left: calc(50% - 32px);
    bottom: -30px;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center
}

#about .about-col i {
    font-size: 28px;
    line-height: 0;
    color: #fff;
    transition: .3s
}

#about .about-col:hover .icon {
    background-color: #fff
}

#about .about-col:hover i {
    color: #18d26e
}

#about .about-col h2 {
    color: #000;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    padding: 0;
    margin: 40px 0 12px 0
}

#about .about-col h2 a {
    color: #000
}

#about .about-col h2 a:hover {
    color: #18d26e
}

#about .about-col p {
    font-size: 14px;
    line-height: 24px;
    color: #333;
    margin-bottom: 0;
    padding: 0 20px 20px 20px
}

#services {
    background: #fff;
    background-size: cover;
    padding: 60px 0 40px 0
}

#services .box {
    margin-bottom: 30px
}

#services .icon {
    float: left
}

#services .icon i {
    color: #18d26e;
    font-size: 36px;
    line-height: 0;
    transition: .5s
}

#services .title {
    margin-left: 60px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px
}

#services .title a {
    color: #111
}

#services .box:hover .title a {
    color: #18d26e
}

#services .description {
    font-size: 14px;
    margin-left: 60px;
    line-height: 24px;
    margin-bottom: 0
}

#call-to-action {
    /* background: linear-gradient(rgba(0, 142, 99, .1), rgba(0, 0, 0, .1)), url(../assets/img/call-to-action-bg.html) fixed center center; */
    background-size: cover;
    padding: 60px 0
}

#call-to-action h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700
}

#call-to-action p {
    color: #fff
}

#call-to-action .cta-btn {
    font-family: almarai;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 25px;
    transition: .5s;
    margin-top: 10px;
    border: 2px solid #fff;
    color: #fff
}

#call-to-action .cta-btn:hover {
    background: #18d26e;
    border: 2px solid #18d26e
}

#skills {
    padding: 60px 0
}

#skills .progress {
    height: 35px;
    margin-bottom: 10px;
    border-radius: 0
}

#skills .progress .skill {
    font-family: "Open Sans", sans-serif;
    line-height: 35px;
    padding: 0;
    margin: 0 0 0 20px;
    text-transform: uppercase
}

#skills .progress .skill .val {
    float: right;
    font-style: normal;
    margin: 0 20px 0 0
}

#skills .progress-bar {
    width: 1px;
    text-align: left;
    transition: .9s
}

#facts {
    /* background: url(../assets/img/facts-bg.html) center top no-repeat fixed; */
    background-size: cover;
    padding: 60px 0 0 0;
    position: relative
}

#facts::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, .88);
    z-index: 9
}

#facts .container {
    position: relative;
    z-index: 10
}

#facts .counters span {
    font-family: almarai;
    font-weight: 700;
    font-size: 48px;
    display: block;
    color: #18d26e
}

#facts .counters p {
    padding: 0;
    margin: 0 0 20px 0;
    font-family: almarai;
    font-size: 14px;
    color: #111
}

#facts .facts-img {
    text-align: center;
    padding-top: 30px
}

#portfolio {
    padding: 60px 0
}

#portfolio #portfolio-flters {
    padding: 0;
    margin: 5px 0 35px 0;
    list-style: none;
    text-align: center
}

#portfolio #portfolio-flters li {
    cursor: pointer;
    margin: 15px 15px 15px 0;
    display: inline-block;
    padding: 10px 20px;
    font-size: 12px;
    line-height: 20px;
    color: #666;
    border-radius: 4px;
    text-transform: uppercase;
    background: #fff;
    margin-bottom: 5px;
    transition: all .3s ease-in-out
}

#portfolio #portfolio-flters li.filter-active,
#portfolio #portfolio-flters li:hover {
    background: #18d26e;
    color: #fff
}

#portfolio #portfolio-flters li:last-child {
    margin-right: 0
}

#portfolio .portfolio-wrap {
    box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
    transition: .3s
}

#portfolio .portfolio-wrap:hover {
    box-shadow: 0 4px 14px rgba(0, 0, 0, .16)
}

#portfolio .portfolio-item {
    position: relative;
    height: 360px;
    overflow: hidden
}

#portfolio .portfolio-item figure {
    background: #000;
    overflow: hidden;
    height: 240px;
    position: relative;
    border-radius: 4px 4px 0 0;
    margin: 0
}

#portfolio .portfolio-item figure:hover img {
    opacity: .4;
    transition: .3s
}

#portfolio .portfolio-item figure .link-details,
#portfolio .portfolio-item figure .link-preview {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    line-height: 1;
    text-align: center;
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    transition: .2s linear
}

#portfolio .portfolio-item figure .link-details i,
#portfolio .portfolio-item figure .link-preview i {
    font-size: 22px;
    color: #333;
    line-height: 0
}

#portfolio .portfolio-item figure .link-details:hover,
#portfolio .portfolio-item figure .link-preview:hover {
    background: #18d26e
}

#portfolio .portfolio-item figure .link-details:hover i,
#portfolio .portfolio-item figure .link-preview:hover i {
    color: #fff
}

#portfolio .portfolio-item figure .link-preview {
    left: calc(50% - 38px);
    top: calc(50% - 18px)
}

#portfolio .portfolio-item figure .link-details {
    right: calc(50% - 38px);
    top: calc(50% - 18px)
}

#portfolio .portfolio-item figure:hover .link-preview {
    opacity: 1;
    left: calc(50% - 44px)
}

#portfolio .portfolio-item figure:hover .link-details {
    opacity: 1;
    right: calc(50% - 44px)
}

#portfolio .portfolio-item .portfolio-info {
    background: #fff;
    text-align: center;
    padding: 30px;
    height: 90px;
    border-radius: 0 0 3px 3px
}

#portfolio .portfolio-item .portfolio-info h4 {
    font-size: 18px;
    line-height: 1px;
    font-weight: 700;
    margin-bottom: 18px;
    padding-bottom: 0
}

#portfolio .portfolio-item .portfolio-info h4 a {
    color: #333
}

#portfolio .portfolio-item .portfolio-info h4 a:hover {
    color: #18d26e
}

#portfolio .portfolio-item .portfolio-info p {
    padding: 0;
    margin: 0;
    color: #b8b8b8;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase
}

.portfolio-details {
    padding-top: 40px
}

.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 #18d26e
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #18d26e
}

.portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0 0 30px rgba(51, 51, 51, .08)
}

.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
}

#clients {
    padding: 60px 0
}

#clients img {
    opacity: .5;
    transition: .3s
}

#clients img:hover {
    opacity: 1
}

#clients .swiper-pagination {
    margin-top: 30px;
    position: relative
}

#clients .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #18d26e
}

#clients .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #18d26e
}

#testimonials {
    padding: 60px 0
}

#testimonials .section-header {
    margin-bottom: 40px
}

#testimonials .testimonials-carousel,
#testimonials .testimonials-slider {
    overflow: hidden
}

#testimonials .testimonial-item {
    text-align: center
}

#testimonials .testimonial-item .testimonial-img {
    width: 120px;
    border-radius: 50%;
    border: 4px solid #fff;
    margin: 0 auto
}

#testimonials .testimonial-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 10px 0 5px 0;
    color: #111
}

#testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #999;
    margin: 0 0 15px 0
}

#testimonials .testimonial-item .quote-sign-left {
    margin-top: -15px;
    padding-right: 10px;
    display: inline-block;
    width: 37px
}

#testimonials .testimonial-item .quote-sign-right {
    margin-bottom: -15px;
    padding-left: 10px;
    display: inline-block;
    max-width: 100%;
    width: 37px
}

#testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto
}

@media (min-width:992px) {
    #testimonials .testimonial-item p {
        width: 80%
    }
}

#testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative
}

#testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #18d26e
}

#testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #18d26e
}

#team {
    background: #fff;
    padding: 60px 0
}

#team .member {
    text-align: center;
    margin-bottom: 20px;
    background: #000;
    position: relative
}

#team .member .member-info {
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    transition: .2s
}

#team .member .member-info-content {
    margin-top: -50px;
    transition: margin .2s
}

#team .member:hover .member-info {
    background: rgba(0, 0, 0, .7);
    opacity: 1;
    transition: .4s
}

#team .member:hover .member-info-content {
    margin-top: 0;
    transition: margin .4s
}

#team .member h4 {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 18px;
    color: #fff
}

#team .member span {
    font-style: italic;
    display: block;
    font-size: 13px;
    color: #fff
}

#team .member .social {
    margin-top: 15px
}

#team .member .social a {
    transition: none;
    color: #fff
}

#team .member .social a:hover {
    color: #18d26e
}

#team .member .social i {
    font-size: 18px;
    margin: 0 2px
}

#contact {
    padding: 60px 0
}

#contact .contact-info {
    margin-bottom: 20px;
    text-align: center
}

#contact .contact-info i {
    font-size: 48px;
    display: inline-block;
    margin-bottom: 10px;
    color: #18d26e
}

#contact .contact-info address,
#contact .contact-info p {
    margin-bottom: 0;
    color: #000
}

#contact .contact-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: #999
}

#contact .contact-info a {
    color: #000
}

#contact .contact-info a:hover {
    color: #18d26e
}

#contact .contact-address,
#contact .contact-email,
#contact .contact-phone {
    margin-bottom: 20px
}

.form-group .errors {
    color: #ffdede;
    margin-top: 3px
}

@media (min-width:768px) {

    #contact .contact-address,
    #contact .contact-email,
    #contact .contact-phone {
        padding: 20px 0
    }
}

@media (min-width:768px) {
    #contact .contact-phone {
        border-left: 1px solid #ddd;
        border-right: 1px solid #ddd
    }
}

#contact .php-email-form {
    box-shadow: 0 0 30px rgba(214, 215, 216, .6);
    padding: 30px;
    background: #fff
}

#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 .form-group {
    margin-bottom: 20px
}

#contact .php-email-form input,
#contact .php-email-form textarea {
    padding: 10px 14px;
    border-radius: 0;
    box-shadow: none;
    font-size: 15px
}

#contact .php-email-form input::focus,
#contact .php-email-form textarea::focus {
    background-color: #18d26e
}

#contact .php-email-form button[type=submit] {
    background: #18d26e;
    border: 0;
    padding: 10px 30px;
    color: #fff;
    transition: .4s;
    cursor: pointer
}

#contact .php-email-form button[type=submit]:hover {
    background: #13a456
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

.blog {
    padding: 40px 0 20px 0
}

.blog .entry {
    padding: 30px;
    margin-bottom: 60px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .1)
}

.blog .entry .entry-img {
    max-height: 440px;
    margin: -30px -30px 20px -30px;
    overflow: hidden
}

.blog .entry .entry-title {
    font-size: 28px;
    font-weight: 700;
    padding: 0;
    margin: 0 0 20px 0
}

.blog .entry .entry-title a {
    color: #333;
    transition: .3s
}

.blog .entry .entry-title a:hover {
    color: #18d26e
}

.blog .entry .entry-meta {
    margin-bottom: 15px;
    color: #18d26e
}

.blog .entry .entry-meta ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0
}

.blog .entry .entry-meta ul li+li {
    padding-left: 20px
}

.blog .entry .entry-meta i {
    font-size: 16px;
    margin-right: 8px;
    line-height: 0
}

.blog .entry .entry-meta a {
    color: #666;
    font-size: 14px;
    display: inline-block;
    line-height: 1
}

.blog .entry .entry-content p {
    line-height: 24px
}

.blog .entry .entry-content .read-more {
    -moz-text-align-last: right;
    text-align-last: right
}

.blog .entry .entry-content .read-more a {
    display: inline-block;
    background: #fff;
    color: #333;
    padding: 6px 30px 8px 30px;
    transition: .3s;
    font-size: 14px;
    border-radius: 50px;
    border: 2px solid #18d26e
}

.blog .entry .entry-content .read-more a:hover {
    background: #18d26e;
    color: #fff
}

.blog .entry .entry-content h3 {
    font-size: 22px;
    margin-top: 30px;
    font-weight: 700
}

.blog .entry .entry-content blockquote {
    overflow: hidden;
    background-color: #fafafa;
    padding: 60px;
    position: relative;
    text-align: center;
    margin: 20px 0
}

.blog .entry .entry-content blockquote p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 500;
    font-size: 22px
}

.blog .entry .entry-content blockquote::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #18d26e;
    margin-top: 20px;
    margin-bottom: 20px
}

.blog .entry .entry-footer {
    padding-top: 10px;
    border-top: 1px solid #e6e6e6
}

.blog .entry .entry-footer i {
    color: #18d26e;
    display: inline
}

.blog .entry .entry-footer a {
    color: #666;
    transition: .3s
}

.blog .entry .entry-footer a:hover {
    color: #18d26e
}

.blog .entry .entry-footer .cats {
    list-style: none;
    display: inline;
    padding: 0 20px 0 0;
    font-size: 14px
}

.blog .entry .entry-footer .cats li {
    display: inline-block
}

.blog .entry .entry-footer .tags {
    list-style: none;
    display: inline;
    padding: 0;
    font-size: 14px
}

.blog .entry .entry-footer .tags li {
    display: inline-block
}

.blog .entry .entry-footer .tags li+li::before {
    padding-right: 6px;
    color: #6c757d;
    content: ","
}

.blog .entry .entry-footer .share {
    font-size: 16px
}

.blog .entry .entry-footer .share i {
    padding-left: 5px
}

.blog .entry-single {
    margin-bottom: 30px
}

.blog .blog-author {
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .1)
}

.blog .blog-author img {
    width: 120px;
    margin-right: 20px
}

.blog .blog-author h4 {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 0;
    padding: 0;
    color: #333
}

.blog .blog-author .social-links {
    margin: 0 10px 10px 0
}

.blog .blog-author .social-links a {
    color: rgba(51, 51, 51, .4);
    margin-right: 5px;
    transition: .3s
}

.blog .blog-author .social-links a:hover {
    color: #18d26e
}

.blog .blog-author p {
    font-style: italic;
    color: #666
}

.blog .blog-comments {
    margin-bottom: 30px
}

.blog .blog-comments .comments-count {
    font-weight: 700
}

.blog .blog-comments .comment {
    margin-top: 30px;
    position: relative
}

.blog .blog-comments .comment .comment-img {
    margin-right: 14px
}

.blog .blog-comments .comment .comment-img img {
    width: 60px
}

.blog .blog-comments .comment h5 {
    font-size: 16px;
    margin-bottom: 2px
}

.blog .blog-comments .comment h5 a {
    font-weight: 700;
    color: #666;
    transition: .3s
}

.blog .blog-comments .comment h5 a:hover {
    color: #333
}

.blog .blog-comments .comment h5 .reply {
    padding-left: 10px;
    color: #18d26e
}

.blog .blog-comments .comment h5 .reply i {
    font-size: 20px
}

.blog .blog-comments .comment time {
    display: block;
    font-size: 14px;
    color: #999;
    margin-bottom: 5px
}

.blog .blog-comments .comment.comment-reply {
    padding-left: 40px
}

.blog .blog-comments .reply-form {
    margin-top: 30px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .1)
}

.blog .blog-comments .reply-form h4 {
    font-weight: 700;
    font-size: 22px
}

.blog .blog-comments .reply-form p {
    font-size: 14px
}

.blog .blog-comments .reply-form input {
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 14px
}

.blog .blog-comments .reply-form input:focus {
    box-shadow: none;
    border-color: #666
}

.blog .blog-comments .reply-form textarea {
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 14px
}

.blog .blog-comments .reply-form textarea:focus {
    box-shadow: none;
    border-color: #666
}

.blog .blog-comments .reply-form .form-group {
    margin-bottom: 25px
}

.blog .blog-comments .reply-form .btn-primary {
    border-radius: 50px;
    padding: 10px 30px;
    border: 0;
    background-color: #18d26e
}

.blog .blog-comments .reply-form .btn-primary:hover {
    background-color: #1ee57a
}

.blog .blog-pagination {
    color: #18d26e
}

.blog .blog-pagination ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none
}

.blog .blog-pagination li {
    margin: 0 5px;
    transition: .3s
}

.blog .blog-pagination li a {
    color: #18d26e;
    padding: 6px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-weight: 700
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
    background: #18d26e;
    border-radius: 50px
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
    color: #fff
}

.blog .sidebar {
    padding: 30px;
    margin: 0 0 60px 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .1)
}

.blog .sidebar .sidebar-title {
    font-size: 20px;
    font-weight: 700;
    padding: 0;
    margin: 0 0 15px 0;
    color: #333;
    position: relative
}

.blog .sidebar .sidebar-item {
    margin-bottom: 30px
}

.blog .sidebar .search-form form {
    background: #fff;
    border: 1px solid #ddd;
    padding: 3px 10px;
    position: relative;
    border-radius: 50px
}

.blog .sidebar .search-form form input {
    border: 0;
    padding: 4px;
    border-radius: 4px;
    width: calc(100% - 70px);
    box-shadow: none
}

.blog .sidebar .search-form form input:focus {
    box-shadow: none
}

.blog .sidebar .search-form form button {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: 0 0;
    font-size: 16px;
    padding: 0 30px;
    margin: -1px;
    background: #18d26e;
    color: #fff;
    transition: .3s;
    line-height: 0;
    border-radius: 50px
}

.blog .sidebar .search-form form button i {
    line-height: 0
}

.blog .sidebar .search-form form button:hover {
    background: #13a456
}

.blog .sidebar .categories ul {
    list-style: none;
    padding: 0
}

.blog .sidebar .categories ul li+li {
    padding-top: 10px
}

.blog .sidebar .categories ul a {
    color: #333;
    transition: .3s
}

.blog .sidebar .categories ul a:hover {
    color: #18d26e
}

.blog .sidebar .categories ul a span {
    padding-left: 5px;
    color: #b3b3b3;
    font-size: 14px
}

.blog .sidebar .recent-posts .post-item+.post-item {
    margin-top: 15px
}

.blog .sidebar .recent-posts img {
    width: 80px;
    float: left
}

.blog .sidebar .recent-posts h4 {
    font-size: 15px;
    margin-left: 95px;
    font-weight: 700
}

.blog .sidebar .recent-posts h4 a {
    color: #333;
    transition: .3s
}

.blog .sidebar .recent-posts h4 a:hover {
    color: #18d26e
}

.blog .sidebar .recent-posts time {
    display: block;
    margin-left: 95px;
    font-style: italic;
    font-size: 14px;
    color: #b3b3b3
}

.blog .sidebar .tags {
    margin-bottom: -10px
}

.blog .sidebar .tags ul {
    list-style: none;
    padding: 0
}

.blog .sidebar .tags ul li {
    display: inline-block
}

.blog .sidebar .tags ul a {
    color: #333;
    font-size: 14px;
    padding: 6px 20px;
    margin: 0 6px 8px 0;
    border: 1px solid #18d26e;
    display: inline-block;
    border-radius: 50px;
    transition: .3s
}

.blog .sidebar .tags ul a:hover {
    color: #fff;
    background: #18d26e
}

.blog .sidebar .tags ul a span {
    padding-left: 5px;
    color: #fff;
    font-size: 14px
}

#footer {
    background: #000;
    padding: 0 0 30px 0;
    color: #eee;
    font-size: 14px
}

#footer .footer-top {
    background: #111;
    padding: 60px 0 30px 0
}

#footer .footer-top .footer-info {
    margin-bottom: 30px
}

#footer .footer-top .footer-info h3 {
    font-size: 34px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 10px;
    line-height: 1;
    font-family: almarai;
    font-weight: 700;
    letter-spacing: 3px;
    border-left: 4px solid #18d26e
}

#footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: almarai;
    color: #eee
}

#footer .footer-top .social-links a {
    display: inline-block;
    background: #333;
    color: #eee;
    line-height: 1;
    margin-right: 4px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    transition: .3s;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

footer.ftr h2 {
    font-family: charlotte;
    color: #ff0000;
    font-size: 140px;
    position: relative;
}

#footer .footer-top .social-links a i {
    line-height: 0;
    font-size: 16px
}

#footer .footer-top .social-links a:hover {
    background: #18d26e;
    color: #fff
}

#footer .footer-top h4 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px
}

#footer .footer-top h4::after,
#footer .footer-top h4::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px
}

#footer .footer-top h4::before {
    right: 0;
    background: #555
}

#footer .footer-top h4::after {
    background: #18d26e;
    width: 60px
}

#footer .footer-top .footer-links {
    margin-bottom: 30px
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0
}

#footer .footer-top .footer-links ul i {
    padding-right: 8px;
    color: #ddd
}

#footer .footer-top .footer-links ul li {
    border-bottom: 1px solid #333;
    padding: 10px 0
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0
}

#footer .footer-top .footer-links ul a {
    color: #eee
}

#footer .footer-top .footer-links ul a:hover {
    color: #18d26e
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px
}

#footer .footer-top .footer-contact p {
    line-height: 26px
}

#footer .footer-top .footer-newsletter {
    margin-bottom: 30px
}

#footer .footer-top .footer-newsletter input[type=email] {
    border: 0;
    padding: 6px 8px;
    width: 65%
}

#footer .footer-top .footer-newsletter input[type=submit] {
    background: #18d26e;
    border: 0;
    width: 35%;
    padding: 6px 0;
    text-align: center;
    color: #fff;
    transition: .3s;
    cursor: pointer
}

#footer .footer-top .footer-newsletter input[type=submit]:hover {
    background: #13a456
}

#footer .copyright {
    text-align: center;
    padding-top: 30px
}

#footer .credits {
    text-align: center;
    font-size: 13px;
    color: #ddd
}

.coffe {
    width: 100%;
    margin: 0 auto;
    text-align: center
}

.coffe img {
    width: 57%;
    margin: 0
}

.fs-10 {
    font-size: 10px
}

.fs-20 {
    font-size: 20px
}

.fs-24 {
    font-size: 24px
}

.fs-30 {
    font-size: 30px
}

.fs-40 {
    font-size: 40px
}

.fs-10 {
    font-size: 10px
}

.fs-10 {
    font-size: 10px
}

.fs-55 {
    font-size: 55px
}

.fs-60 {
    font-size: 60px
}

.fs-70 {
    font-size: 70px
}

.fw-100 {
    font-weight: 100
}

.fw-200 {
    font-weight: 200
}

.fw-300 {
    font-weight: 300
}

.fw-400 {
    font-weight: 400
}

.fw-500 {
    font-weight: 500
}

.fw-600 {
    font-weight: 600
}

.fw-bold {
    font-weight: 700
}

.fc-black {
    color: #000
}

section.sec-2 {
    background: #000;
    color: #fff;
    height: auto !important;
    display: flex;
    align-items: center;
    padding-top: 150px;
}

.count-box {
    padding: 30px 30px;
    border: 1px solid #6e6e6e9c;
    border-radius: 0
}

.count-box h1 {
    letter-spacing: 0;
}

.btl-1 img {
    width: 100%
}

section.sec-3 {
    background: #000;
    display: flex;
    align-items: center;
    height: auto !important;
    padding-bottom: 150px;
}

section.sec-3 p {
    color: #fff;
    text-align: center
}

section.sec-3 p a {
    color: #fff
}

section.sec-3 p a:hover {
    color: #ababab
}

.bottle-img.row {
    align-items: center;
    justify-content: center
}

.e8-link {
    color: #ababab
}

.e8-link:hover {
    color: #fff
}

.fc-white {
    color: #ffff
}

button.case-btn {
    background: 0 0;
    border: none;
    color: #ffff;
    font-size: 22px;
    padding: 0
}

section.sec-4 {
    height: 100vh !important;
    position: relative;
    background: #1a193b;
    display: flex;
    align-items: center
}

.sc-content {
    position: absolute;
    bottom: 8%
}

.hat-img {
    text-align: center
}

.hat-img {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

span.ar-icon img {
    width: 25px;
    margin-left: 15px
}

section.sec-5 {
    height: 100vh !important;
    position: relative;
    display: flex;
    align-items: center;
    background-color: #010101;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center
}

.dive-img {
    text-align: center
}

section.sec-6 {
    height: 100vh !important;
    position: relative;
    background: #2e419d;
    display: flex;
    align-items: center;
    padding-bottom: 0
}

.mic-img {
    text-align: center
}

.beans-img img,
.dive-img img,
.mic-img img {
    max-width: 100%
}

img.mc-1 {
    width: 155px;
    position: absolute;
    bottom: -2px;
    left: 36%
}

img.shirt-1 {
    width: 400px;
    position: absolute;
    bottom: 7%
}

section.sec-7 {
    height: 100vh !important;
    position: relative;
    display: flex;
    align-items: center;
    background-color: #96a480
}

.beans-img {
    text-align: center
}

.btn-outline {
    background: #fffFFF00 0 0 no-repeat padding-box;
    border: 2px solid #fff;
    border-radius: 30px;
    width: auto;
    height: 60px;
    font-size: 25px;
    color: #ffff;
    padding: 10px 40px;
    font-weight: 200
}

.btn-outline:hover {
    background: #fff;
    color: #181003
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px
}

.btl-1 {
    text-align: center
}

section.sec-8 {
    height: 100vh !important;
    position: relative;
    display: flex;
    align-items: center;
    background: #000
}

p {
    font-size: 18px;
    font-weight: 400;
    color: #ababab
}

.client-img img {
    width: 150px
}

.client-img {
    text-align: center;
    height: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: end
}

.client-img p {
    margin-bottom: 0;
    margin-top: 5px
}

.mt-6 {
    margin-top: 6rem !important
}

.client-img p {
    font-weight: 500
}

.btn-outline-2 {
    background: #fffFFF00 0 0 no-repeat padding-box;
    border: 2px solid #6e6e6ea6;
    border-radius: 0;
    width: auto;
    height: 55px;
    font-size: 20px;
    color: #ffff;
    padding: 10px 30px;
    font-weight: 500;
    text-transform: capitalize
}

.btn-outline-2:hover {
    background-color: #ff0000;
    color: #181003;
    border-color: #ff0000
}

.btn-outline-3 {
    background: #fffFFF00 0 0 no-repeat padding-box;
    border: 2px solid #000;
    border-radius: 0;
    width: auto;
    height: 55px;
    font-size: 20px;
    color: #000;
    padding: 10px 30px;
    font-weight: 500;
    text-transform: capitalize
}

.btn-outline-3:hover {
    background: #fff;
    color: #181003
}

footer.ftr {
    background: #000;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    padding-top: 100px
}

.ftr-newletter {
    position: relative
}

.ftr-newletter input {
    width: 100%;
    background: 0 0;
    border: none;
    border-bottom: 1px solid #ffff;
    padding: 10px;
    outline: 0;
    color: #fff
}

button.btn-arrow {
    background: 0 0;
    border: none;
    position: absolute;
    right: 0
}

button.btn-arrow img {
    width: 28px
}

.social-links img {
    width: 20px;
    margin-right: 7px;
    transition: .5s
}

.social-links img:hover {
    opacity: .6
}

.social-links {
    padding-top: 15px
}

.ft-1 ul {
    list-style: none;
    padding-left: 0;
    color: #fff
}

.ft-1 {
    color: #fff;
    height: 100%;
    padding-top: 37px;
    padding-left: 0
}

.ft-1 ul li a {
    color: #ababab
}

.ft-1 ul li a:hover {
    color: #ff0000
}

.ft-1 ul li a.icon-email {
    background: url(../images/email-icon-1.svg) no-repeat 0 0;
    background-size: 17px;
    padding-left: 30px;
    background-position: 0 6px
}

.ft-1 ul li a.icon-phone {
    background: url(../images/phone-icon-1.svg) no-repeat 0 0;
    background-size: 16px;
    padding-left: 30px;
    background-position: 0 2px
}

.ft-1 ul li a.icon-whatsapp {
    background: url(../images/whatsapp-icon-1.svg) no-repeat 0 0;
    background-size: 17px;
    padding-left: 30px;
    background-position: 0 3px
}

.ft-1 ul li {
    margin-bottom: 1px
}

.ft-1 ul li p {
    margin-bottom: 20px
}

.sub-sc {
    justify-content: start
}

.ftr-2 {
    display: flex
}

.ftr-2 ul {
    margin-right: 65px
}

.ftr-btm {
    text-align: center;
    width: 100%;
    padding: 10px 0 30px
}

.fp-enabled .ftr-btm {
    position: absolute;
    bottom: 0
}

.ftr-btm p {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400
}

button {
    transition: .6s ease
}

.ft-1 h3 {
    margin-bottom: 15px;
    letter-spacing: -1px
}

.sec2-content p {
    font-size: 22px;
    margin-bottom: 60px;
}

.head-nav {
    z-index: 9999
}

.link-list ul {
    list-style: none
}

.link-list ul li a {
    color: #ababab;
    font-size: 60px !important;
    margin-right: 70px
}

.link-list ul {
    list-style: none;
    height: auto;
    position: inherit;
    overflow: hidden
}

.link-list {
    height: 100%;
    padding: 120px 53px
}

.email-info span {
    padding-right: 50px
}

.email-info {
    color: #ffff;
    font-size: 25px;
    display: flex;
    height: 90%;
    justify-content: end;
    align-items: end
}

.toggle {
    cursor: pointer;
    overflow: hidden;
    width: 125px;
    height: 120px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(.5)
}

.line-toggle {
    position: absolute;
    display: block;
    width: 75px;
    height: 6px;
    background: #fff;
    border-radius: 0;
    transition: all .6s
}

.line-toggle:first-child {
    transform: translateY(-23px) translateX(0);
    width: 74px;
    transition-delay: 0s
}

.toggle .line-toggle:nth-child(2) {
    transition-delay: .12s
}

.line-toggle:last-child {
    transform: translateY(24px) translateX(-14px);
    width: 45px;
    transition-delay: 0s
}

.toggle.activate .line-toggle:first-child {
    background: #fff;
    transform: translateY(0) translateX(0) rotate(45deg);
    width: 90px;
    height: 6px;
    transition-delay: .1s
}

.toggle.activate .line-toggle:nth-child(2) {
    transform: translateX(110px);
    transition-delay: 0s
}

.toggle.activate .line-toggle:last-child {
    background: #fff;
    transform: translateY(0) translateX(0) rotate(314deg);
    width: 90px;
    height: 6px;
    transition-delay: .1s
}

.bi-x::before {
    display: none
}


body.scroll-down .header {
    background: #000;
    top: -180px;
}

.lg-1 {
    -webkit-animation: fadeIn .6s;
    animation: fadeIn .6s;
}

.lg-2 {
    display: none;
    -webkit-animation: fadeIn .6s;
    animation: fadeIn .6s;
}

body.scroll-up .header .lg-2 {
    display: block;
    -webkit-animation: fadeIn .6s;
    animation: fadeIn .6s;
    max-height: 50px !important;
    height: 50px;
    width: 50px;
    background-color: #fff;
}

body.scroll-up .header .lg-1 {
    display: none;
    -webkit-animation: fadeIn .6s;
    animation: fadeIn .6s;
}


body.scroll-up .header {
    background: #000;
    top: 0;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

section.our_work {
    /* background-image: url(../assets/img/ourwork.png); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    justify-content: center;
    display: flex;
    align-items: center;
    padding: 0
}

.sc-text {
    text-align: center;
    font-size: 100px;
    color: #ffff;
    font-weight: 500
}

button.btn-pf {
    background: 0 0;
    color: #b7b7b7;
    height: 30px;
    padding: 4px 15px;
    font-size: 12px;
    border: 1px solid #838383;
    border-radius: 0;
    font-weight: 600;
    margin: 4px;
    cursor: initial;
}

.portfolio-btn-sc {
    text-align: center
}

.pf-img img {
    width: 100%;
    transition: .3s ease
}

.pf-box {
    position: relative;
    color: #fff;
    overflow: hidden
}

.pd-0 {
    padding: 0;
    border: none
}

.pf-content h3 {
    font-size: 50px;
    margin-bottom: 5px;
    font-weight: 300
}

.pf-content p {
    margin-bottom: 10px
}

.pf-content {
    z-index: 10;
    position: absolute;
    bottom: -66%;
    left: 25px;
    transition: .3s ease
}

.pf-box:hover .pf-content {
    bottom: 4%
}

.portfolio-btn-sc {
    padding-bottom: 50px
}

.act {
    background: #fff !important;
    color: #000 !important;
    border-color: #fff !important
}

button.btn-pf:hover {
    background: #fff !important;
    color: #000 !important;
    border-color: #fff !important
}

.pf-overlay {
    display: none;
    position: absolute;
    z-index: 9;
    height: 100%;
    width: 100%;
    background: #0000003b
}

.pf-box:hover .pf-overlay {
    display: block
}

section.portfolio {
    padding-top: 0;
    background: #000;
    overflow-x: hidden;
}

.pf-area {
    background: #000;
    padding-top: 50px
}

button.btn-outline-more {
    background: #fffFFF00 0 0 no-repeat padding-box;
    border: 2px solid #ffffff59;
    width: auto;
    height: 50px;
    font-size: 35px;
    color: #ffff;
    padding: 0 41px;
    font-weight: 200;
    line-height: 1.4
}

button.btn-outline-more:hover {
    background: #fff;
    color: #000;
    line-height: 1.4
}

.pf-box:hover .pf-img img {
    transform: scale(1.1)
}

section.detail {
    background: #2e419d;
    text-align: center;
    height: 100vh !important;
    display: flex;
    align-items: end;
    justify-content: center;
    padding: 0
}

.dt-img img {
    width: auto
}

section.friend {
    background: #000;
    display: flex;
    align-items: center;
    padding: 120px 0
}

section.circle {
    background: #283593;
    display: flex;
    align-items: center;
    height: 100vh !important
}

.cards img,
.cardss img {
    width: 100%;
}

.cancer-mark img {
    -webkit-animation: spin 20s linear infinite;
    -moz-animation: spin 20s linear infinite;
    animation: spin 20s linear infinite
}

@-moz-keyframes spin {
    100% {
        -moz-transform: rotate(360deg)
    }
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg)
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.cancer-mark {
    text-align: center
}

section.hang-cart {
    height: 100vh !important;
    padding: 0;
    text-align: center;
    background: #3159b9
}

section.cards {
    text-align: center;
    background: #cecfd1;
    padding: 0
}

section.client {
    /* background-image: url(../assets/images/clients-bg.png); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
    padding-bottom: 0;
    display: flex;
    align-items: center;
    padding: 0
}

h1.cl-text {
    text-align: center;
    color: #ffff;
    font-size: 100px;
    margin-bottom: 0;
    font-weight: 400
}

section.client-logo-sc {
    background: #000;
    padding: 120px 0
}

.client-log {
    text-align: center;
    border: 1px solid #626262c4;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    padding: 4px;
}

.client-log img {
    max-height: 100%
}

section.careers {
    background: #f262af;
    /* background-image: url(../assets/img/wedo_bg.png); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
    padding-bottom: 0;
    display: flex;
    align-items: center;
    padding: 0
}

section.blog {
    /* background-image: url(../assets/images/blog-bg.jpg); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
    padding-bottom: 0;
    display: flex;
    align-items: center;
    padding: 0
}

section.page_not_found {
    padding: 100px 0;
}

section.page_not_found h1 {
    font-family: 'geometria-heavy';
    font-size: 120px;
    line-height: 120px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0;
}

section.careers-logo-sc {
    background: #000;
    padding: 120px 0
}

.careers-box {
    height: 100%;
    padding: 70px 40px;
    color: #fff;
    border: 1px solid #686868c2;
    transition: .6s ease;
    min-height: 100%;
}


.careers-box:not(.no-hover):hover {
    background: #ffff;
    border-color: #ffff;
    color: #000;
    transition: .6s ease
}

.careers-top-text {
    max-width: 890px
}

.careers-box:not(.no-hover):hover button.btn-outline-2 {
    color: #000
}

.fs-16 {
    font-size: 16px
}

.careers-content {
    margin-bottom: 150px
}

.blog-post {
    padding: 0
}

.blog-post .padding {
    padding: 70px 40px
}

.fs-38 {
    font-size: 38px
}

.fc-gray {
    color: #ababab
}

section.services_details {
    background: #6766ff;
    /* background-image: url(../assets/img/services_details_banner.png); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
    padding-bottom: 0;
    height: 100vh !important;
    display: flex;
    align-items: center
}

section.blog_details {
    background: #240c62;
    text-align: center;
    padding-bottom: 0;
    height: 100vh !important;
    display: flex;
    align-items: center
}

section.blog_details .dt-img img {
    width: 86%
}

.dt-box {
    margin-bottom: 100px
}

.blog-social a {
    display: block;
    width: 50px;
    height: 50px;
    text-align: center;
    border: 2px solid #fff;
    border-radius: 35px;
    font-size: 24px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px
}

.blog-social {
    display: flex
}

.blog-social a:hover {
    background: #fff;
    color: #000
}

.blog-social {
    margin-top: 50px
}

section.services {
    /* background-image: url(../assets/img/wedo_bg.png); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
    display: flex;
    align-items: center;
    padding: 0
}

section.services_content {
    background: #000;
    padding: 120px 0
}

.fs-120 {
    font-size: 120px
}

.serv-dt span {
    color: #fff;
    font-size: 25px;
    font-weight: 400;
    display: block;
    margin-bottom: 25px;
    width: 300px;
}


.serv-dt {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    align-items: center
}

.fs-21 {
    font-size: 21px
}

.blog-detail-page {
    color: #ababab
}

.apply-sc h1,
.apply-sc h2,
.apply-sc h3,
.apply-sc h4,
.blog-detail-page h3,
.blog-detail-page h4,
.careers-box h3 {
    letter-spacing: -1px
}

.apply-sc p {
    margin-bottom: 16px;
    color: #000;
    font-weight: 400;
    font-size: 16px;
}

.apply-sc a .btn-outline-3 {
    margin-top: 35px;
}

.apply-sc a .btn-outline-3:hover {
    background-color: #ff0000;
    color: #181003;
    border-color: #ff0000;
}

.think-box .row {
    align-items: start;
    justify-content: space-between
}

.think-box {
    padding: 80px 0
}

#hubspot-conversations-inline-parent {
    display: none
}

.quote {
    font-size: 51px;
    font-weight: 400;
    color: #fff;
    text-align: left;
    position: relative;
    padding: 80px 0;
    line-height: 60px
}

.mark-1 {
    position: absolute;
    left: -41px;
    top: 4%
}

.mark-2 {
    position: absolute;
    right: 17%;
    bottom: 16%
}

.mark-1 img {
    width: 25px
}

.mark-2 img {
    width: 25px
}

section.sec-clnt {
    position: relative;
    display: flex;
    align-items: center;
    background: #000;
    padding: 120px 0
}

section.contact {
    /* background-image: url(../assets/img/reachus.png); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
    padding: 0;
    display: flex;
    align-items: center
}

section.contact_us {
    padding: 120px 0;
    background: #000
}

.info-box a:hover {
    color: #ff0000;
}

.info-box a.email-icon {
    background: url(../images/email-icon-1.svg) no-repeat 0 0;
    background-size: 18px;
    padding-left: 30px;
    background-position: 0 8px;
    line-height: normal
}

.info-box a.phone-icon {
    background: url(../images/phone-icon-1.svg) no-repeat 0 0;
    background-size: 18px;
    padding-left: 30px;
    background-position: 0 0;
    line-height: normal;
    padding-bottom: 1px
}

.info-box a.whatsapp-icon {
    background: url(../images/whatsapp-icon-1.svg) no-repeat 0 0;
    background-size: 19px;
    padding-left: 30px;
    background-position: 0px 3px;
    line-height: normal
}

.cnt-form .form-control {
    background: 0 0;
    color: #fff;
    height: 70px;
    border: 1px solid #ffffffad;
    border-radius: 0;
    padding: 20px 20px;
    font-size: 18px;
    font-weight: 400;
    box-shadow: none !important;
    outline: 0 !important
}

.cnt-form textarea.form-control {
    height: 170px !important;
    resize: none;
    font-size: 18px;
    font-weight: 400
}

.text-right {
    text-align: right
}

.fs-32 {
    font-size: 32px
}

section.map {
    padding: 0
}

#map {
    height: 80%;
    width: 50%
}

section.about {
    /* background-image: url(../assets/img/about-us-bg.png); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
    display: flex;
    align-items: center;
    padding: 0
}

.about_points ul {
    padding-left: 0;
    list-style: none
}

.lst-count {
    display: flex;
    align-items: center
}

.lst-count span {
    font-size: 27px;
    margin-right: 32px
}

section.purpose {
    background: #fff;
    color: #000;
    font-weight: 400;
    padding: 120px 0
}

.fs-45 {
    font-size: 45px
}

section.simply {
    text-align: center;
    background: #000;
    padding: 120px 0
}

section.care {
    background: #000
}

.fs-35 {
    font-size: 35px
}

.care h3 {
    text-transform: uppercase;
    padding-bottom: 60px
}

.care-bg {
    text-align: center
}

.pd-0 {
    padding: 0 !important
}

.carousel-inner {
    overflow: visible
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #ffff
}

.fs-100 {
    font-size: 100px
}

section.casestudy {
    background: #000;
    padding-top: 150px;
    padding-bottom: 30px
}

button.btn-pf-2 {
    background: 0 0;
    color: #fff;
    height: 30px;
    padding: 4px 15px;
    font-size: 12px;
    border: 2px solid #fff;
    border-radius: 0;
    font-weight: 600;
    margin: 4px
}

.cs-items img {
    width: 100%
}

section.casestudy-item {
    background: #000;
    border-bottom: 1px solid #ffffff40
}

section.portfolio-2 {
    padding-top: 100px;
    background: #000
}

.cs-items {
    margin-bottom: 40px
}

p.phone {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 24px;
    letter-spacing: 1px;
    color: #ffff
}

li.phone_number {
    display: none;
    -webkit-animation: fadeOut 1s;
    animation: fadeOut 1s
}

.header-scrolled li.phone_number {
    display: block !important;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s
}

p.phone i {
    font-size: 28px !important;
    position: relative;
    top: 4px
}

.btn-outline-2:not(:hover) img {
    filter: invert(1)
}

body .swal-modal {
    width: 535px;
    border-radius: 0;
    border: 1px solid #b9b9b9;
    background-color: transparent;
    /* background-image: url(../assets/img/box.png); */
    padding: 30px 30px;
    min-height: 352px
}

body .swal-content__input {
    width: 100%;
    height: 55px;
    outline: 0;
    border: none;
    font-size: 20px;
    padding: 0 35px 0 25px;
    border-radius: 0
}

body .swal-button {
    height: 35px;
    width: 95px;
    padding: 0;
    background: 0 0;
    border: 1px solid #fff;
    border-radius: 0;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500
}

body .swal-button:hover {
    background-color: #fff !important;
    color: #000 !important;
    transition: .4s ease-in
}

body .swal-button--confirm {
    color: #000;
    background-color: #b8e41b;
    border: 1px solid #b8e41b;
    cursor: pointer
}

body .swal-button--confirm:hover {
    background-color: transparent !important;
    color: #b8e41b !important;
    border: 1px solid #b8e41b !important;
    transition: .4s ease-in
}

body .swal-text {
    color: #fff;
    margin-bottom: 25px;
    text-transform: capitalize
}

body .swal-content {
    margin: 0;
    position: relative
}

body .swal-overlay {
    background: #000 !important;
    display: flex;
    align-items: center
}

body .swal-overlay::before {
    content: '';
    position: absolute;
    top: -4%;
    left: 17%;
    width: 73%;
    height: 86%;
    /* background: url(../assets/img/yellow_square.png) no-repeat; */
    z-index: -1
}

body .swal-overlay::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 62.1%;
    height: 73.5%;
    /* background: url(../assets/img/blue_square.png) no-repeat; */
    z-index: -1
}

body .swal-title {
    color: #fff;
    padding: 0;
    font-size: 32px;
    margin: 0;
    line-height: 1
}

#showhidepass {
    position: absolute;
    top: 17px;
    right: 30px;
    color: #000
}

.move_detail.service_detail {
    display: flex;
    align-items: center;
}

.move-page-banner video {
    height: 100% !important;
}

section.service_detail {
    /* background-image: url(../assets/img/services_details_bg.png) !important; */
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    text-align: center;
    height: 100vh !important;
}

.landing-page-banner {
    position: relative;
}





.move-page-banner.landing-page-banner h1.sc-text-cstm-2 {
    position: absolute;
    left: 0;
    right: 0;
    top: inherit;
    bottom: 15%;
    margin: auto;
    margin-top: auto !important;
    line-height: 120px;
    font-size: 110px;
    display: inline-block;
    text-align: center;
}


.service_detail h1.sc-text-cstm-2 {
    font-size: 155px;
    position: absolute;
    z-index: 9;
    text-align: center;
    left: 0;
    right: 0;
    top: 25%;
    text-transform: uppercase;
    bottom: 0;
    font-family: geometria-heavy;
    height: auto;
    color: #fff;
    vertical-align: -webkit-baseline-middle;
}

.eft-img {
    text-align: center;
    position: relative;
    padding-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

h1.sc-text-cstm-2 {
    text-transform: uppercase;
    bottom: 0;
    font-family: geometria-heavy;
    height: auto;
    color: #fff;
    font-size: 155px;
}

.careers-content-box.cr-bx .careers-box.new-carrer-box {
    display: block;
    padding: 30px;
}



h1.sc-text-cstm-2.landing-detail-page {
    font-size: 115px;
    line-height: 120px;

}

.serv-img-new ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-left: 0;
}

.serv-img-new ul li img {
    width: 100%;
}

.landing-services .serv-dt span {
    font-size: 23px;
}

.service-detail-page.landing-page-detail .service_detail {
    display: flex;
    align-items: center;
}

.serv-img-new ul li {
    width: 48%;
    margin-bottom: 20px;
    list-style: none;
}

.careers-logo-sc .cr-bx {
    margin-bottom: 90px;
}

.careers-logo-sc .cr-bx:last-child {
    margin-bottom: 0px;
}

@media screen and (max-width:1440px) {
    body .swal-overlay::before {
        left: 6%
    }
}

@media screen and (max-width:1024px) {
    body .swal-overlay::before {
        left: -12%;
        width: 100%
    }

    body .swal-overlay::after {
        width: 76.1%
    }

    body .swal-text {
        font-size: 27px
    }
}

@media screen and (max-width:768px) {
    body .swal-overlay::before {
        left: 0;
        width: 100%
    }
}

@media screen and (max-width:580px) {
    body .swal-modal {
        min-height: auto;
        width: 100%;
        max-width: 94%;
        padding-bottom: 15px
    }

    body .swal-overlay::before {
        left: -62%;
        width: 165%
    }

    body .swal-overlay::after {
        width: 123.1%
    }

    body .swal-footer {
        justify-content: center;
        padding: 0 0 10px 0
    }

    body .swal-content__input {
        height: 40px;
        font-size: 14px
    }

    body .swal-text {
        margin: 0 0 10px;
        font-size: 15px
    }

    .pop-up-form {
        width: 90%
    }

    body .swal-title:first-child {
        margin-top: 0;
        font-size: 25px
    }

    body .swal-content {
        padding: 0;
        position: relative
    }

    .swal-button-container:last-child {
        margin-right: 0
    }
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@-webkit-keyframes fadeOut {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes fadeOut {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

.sub-sc .col-md-4 {
    border-left: 0
}

.ftr-2 ul:last-child {
    margin: 0
}

.sub-sc {
    margin-bottom: 10px
}

ul.ls-ul {
    display: flex;
    justify-content: space-between
}

.ft-1 ul li a {
    font-size: 18px !important
}

b,
strong {
    font-weight: 700
}

.fs-22 {
    font-size: 22px
}

.fs-15 {
    font-size: 15px
}

.cr-bx {
    margin-bottom: 180px
}

.careers-content-box.cr-bx .careers-box {
    /* align-items: center; */
    display: flex;
    flex-wrap: wrap;
    vertical-align: middle;
    padding: 70px 40px 90px;
}

/* .careers-content-box.cr-bx .careers-box h3{
    min-height: 91px;
}
.careers-content-box.cr-bx .careers-box p{
    min-height: 112px;
} */
.careers-content-box.cr-bx .careers-box .btn-outline-2 {
    border: none;
}

/* .careers-content-box.cr-bx .careers-box .btn-outline-2 img {
    transition: all .3s;
} */
/*.careers-content-box.cr-bx .careers-box .btn-outline-2:hover img {
    filter: invert(1); 
    /* transform: translateX(10px); */
/* filter: invert(98%) sepia(87%) saturate(6335%) hue-rotate(17deg) brightness(99%) contrast(108%); 
}*/
.service_arw_btn.btn-outline-2:hover img {
    filter: invert(86%) sepia(89%) saturate(1679%) hue-rotate(19deg) brightness(102%) contrast(108%);
}

.careers-content-box.cr-bx .careers-box .service_arw_btn {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 2px solid #6e6e6ea6;
}

.careers-content-box.cr-bx .careers-box .service_arw_btn:hover {
    border-color: #ff0000;
    background-color: transparent;
}

.careers-content-box.cr-bx .careers-box .pos_btn {
    position: absolute;
    right: 30px;
    bottom: 20px;
}

.back_to_service {
    margin-bottom: 45px;
    display: inline-block;
    font-size: 17px;
    line-height: 31px;
    text-transform: initial;
}

section.abt-sc-1 {
    background: #000;
    padding-top: 120px
}

section.abt-sc-1 p a {
    color: #fff
}

section.abt-sc-1 p a:hover {
    color: #ababab
}

.abt-img {
    text-align: center
}

.abt-img img {
    width: 100%
}

.bbx-1 {
    color: #fff;
    font-weight: 500;
    font-size: 22px;
    border: 1px solid gray;
    padding: 30px;
    height: 200px;
    display: flex;
    align-items: center
}

.ab-img-1 img {
    width: 100%
}

.text-left {
    text-align: left
}

.modal-content {
    border-radius: 0
}

.requir ul {
    padding-left: 17px;
    color: #000
}

.apply-sc {
    padding: 50px
}

.requir ul li::marker {
    font-size: 20px
}

.requir ul li {
    margin-bottom: 10px
}

button.btn-closes {
    position: absolute;
    right: 10px;
    background: 0 0;
    padding: 0;
    border: none;
    font-size: 40px;
    color: #585858;
    top: 0px;
}

.link-list {
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: start;
    width: 100%;
    flex-wrap: wrap;
    padding-bottom: 30px;
    padding-left: 9px
}

.link-list.container .row {
    width: 100%
}

.swiper-slide .client-log img {
    width: 60%
}

.swiper-slide .client-log {
    height: 140px
}

span.cir-bx {
    width: 32px;
    float: left;
    margin: 0;
    background: url(../img/right-1.png) no-repeat 0 8px;
    background-size: 25px;
    text-align: center;
    height: 32px;
    font-size: 18px;
    position: relative;
    margin-right: 10px;
}

span.cir-bx i {
    display: none;
}

.move_detail.service_detail {
    display: flex;
    align-items: center;
}

.main-consept-section {
    width: 100%;
    height: auto;
}

.main-consept-section ul {
    display: flex;
    flex-wrap: wrap;
    min-height: 120px;
    position: relative;
    padding-left: 0;
}

.main-consept-section ul li {
    width: 14.28%;
    text-align: center;
    list-style: none;
    position: relative;
    box-sizing: border-box;
    padding: 0 10px;
    border-bottom: 1px dashed #fff;
}

.image-consept {
    margin-bottom: 10px;
}

.main-consept-section ul li h3 {
    font-size: 16px;
    line-height: 20px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 40px;
    letter-spacing: 1px;
    display: inline-block;
    font-weight: 600;
    position: relative;
}

.main-consept-section ul li::after {
    content: "";
    width: 20px;
    height: 20px;
    background-color: #000;
    border: 1px solid #fff;
    position: absolute;
    bottom: -9px;
    left: 0;
    right: 0;
    margin: 0 auto;
    /* background-image: url(../assets/img/arrow-white.svg); */
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
}

.contact_us.move-contact {
    padding: 0px;
}

.btl-paragraph {
    font-size: 32px;
    line-height: 35px;
    color: #fff;
}

.work-slider-section {
    width: 100%;
    height: auto;
    padding-top: 0px;
}

.work-main-box {
    width: 100%;
    /* min-height: 800px; */
    padding: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-wrap: wrap;
}

.work-slider-section .item {
    overflow: hidden;
}

.work-main-image {
    max-width: 100%;
    /* max-width: 90%; */
    width: 100%;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    overflow: hidden;

}

.work-main-image img {
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    display: block;
    width: 100%;
    overflow: hidden;
}

.work-slider-section .item:hover .work-main-image img {
    transform: scale(1.1);
}

.work-main-content {
    width: 100%;
    height: auto;
    position: absolute;
    padding: 50px 40px 30px 40px;
    box-sizing: border-box;
    bottom: 0px;
    left: 0px;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 5%, rgb(0 0 0 / 87%) 97%, rgb(0 0 0 / 46%) 167%, rgba(0, 0, 0, 0.54) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 5%, rgb(0 0 0 / 87%) 97%, rgb(0 0 0 / 46%) 167%, rgba(0, 0, 0, 0.54) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 5%, rgb(0 0 0 / 87%) 97%, rgb(0 0 0 / 46%) 167%, rgba(0, 0, 0, 0.54) 100%)
}

.work-main-content h3 {
    font-size: 32px;
    line-height: 25px;
    color: #fff;
    letter-spacing: 0;
    margin-bottom: 10px;
}

.work-main-content p {
    font-size: 16px;
    line-height: 20px;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: .5px;
}

button.case-btn {
    background: 0 0;
    border: none;
    color: #ffff;
    font-size: 15px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

button.case-btn:hover span.ar-icon img {
    margin-left: 15px;
}

.case-btn span.ar-icon img {
    width: 22px !important;
    margin-left: 10px;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
}

.owl-nav {
    display: none;
}

#work-slider .owl-nav button.owl-prev {
    width: 50px;
    height: 31px;
    background-image: url(../images/work-left-arrow-1.png);
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: 15px;
    top: 45%;
    z-index: 99;
    font-size: 0px;
}

#work-slider .owl-nav button.owl-prev span {
    display: none;
}

#work-slider .owl-nav button.owl-next {
    width: 50px;
    height: 31px;
    background-image: url(../images/work-right-arrow-1.png);
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 15px;
    top: 45%;
    z-index: 99;
    font-size: 0px;
}

#work-slider .owl-nav button.owl-next span {
    display: none;
}

#client-slider .owl-dots .owl-dot {
    width: 8px;
    height: 8px;
    background-color: #fff;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    margin: 0px 4px;
    display: inline-block;
}

#client-slider .owl-dots .owl-dot:not(.active) {
    opacity: .7;
}

#client-slider .owl-dots {
    width: 100%;
    text-align: center;
    margin-top: 25px;
}

.client-section .btn-outline-2 {
    margin-top: 30px;
}

.hme-strategy-section {
    width: 100%;
    padding: 80px 0px 120px;
}

.hme-strategy-section-inner {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.hme-strategy-content {
    width: 52%;
    /* width: 50%; */
    /* padding-right: 60px; */
    box-sizing: border-box;
    position: relative;
}

.hme-strategy-content h2 {
    font-size: 70px;
    /* line-height: 70px; */
    color: #fff;
    /* font-weight: bold; */
    margin-bottom: 1rem;
}

.hme-strategy-content h3 {
    font-size: 70px;
    /* line-height: 70px; */
    color: #fff;
    /* font-weight: bold; */
    margin-bottom: 1rem;
}

.hme-strategy-content p {
    font-size: 22px;
    /* font-size: 15px; */
    /* line-height: 20px; */
    color: #fff;
}

.hme-strategy-content ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0px;
    padding-left: 0px;
    margin-top: 20px;
    /* max-width: 600px; */

}

.hme-strategy-content .strategy_para {
    padding-right: 85px;
}

.hme-strategy-content ul li {
    min-height: 40px;
    /* min-height: 100px; */
    position: relative;
    display: flex;
    align-items: center;
    width: auto;
    margin-right: 5%;
    box-sizing: border-box;
    margin-top: 20px;
    transition: all .35s ease-in-out;
    border-left: 2px solid #aeef03;
}

.hme-strategy-content ul li:last-child {
    margin-right: 0;
}

.hme-strategy-content ul li p {
    margin-bottom: 0px;
    font-size: 20px !important;
    /* font-size: 16px !important; */
    color: #ffffff;
    line-height: 22px;
    /* padding-left: 20px; */
    padding-left: 28px;
    position: relative;
    z-index: 9;
    min-width: 110px;
    font-weight: 300;
}

.hme-strategy-content ul li a {
    color: #ffffff;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    cursor: pointer;
    transition: all .35s ease-in-out;
}

/* .hme-strategy-content ul li:hover p {
    color: #ff0000;
    transition: all .35s ease-in-out;
} */

/* .hme-strategy-content ul li:hover::after {
    width: 110px;
    height: 110px;
} */

/* .hme-strategy-content ul li::after {
    content: "";
    width: 111px;
    height: 111px;
    position: absolute;
    left: 0px;
    background-color: #262626;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    z-index: 6;
    transition: all .35s ease-in-out;
} */

.hme-strategy-image {
    width: 48%;
    /* width: 50%; */
    position: relative;
}

.hme-strategy-image .glow-image {
    position: absolute;
    /* right: 141px; */
    /* top: 26px; */
    right: 0;
    top: 0;
    /* transform: translate(-135px, 26px); */
    transform: translate(-193px, 125px);
    /* animation: diagonal-move-anim 10s ease-in-out; */
}

.animated.hme-strategy-image .glow-image {
    transform: translate(-60px, -80px);
    animation: diagonal-move-anim 2s ease-in-out;

}

@keyframes diagonal-move-anim {
    0% {
        transform: translate(-193px, 125px);
    }

    100% {
        transform: translate(-60px, -80px);
    }
}

/* .hme-strategy-image img {
    width: 100%;
} */

.hme-strategy-section-second {
    background-color: #212121;
    width: 100%;
    padding: 80px 0px 150px;
}

.hme-strategy-section-second .hme-strategy-section-inner {
    flex-direction: row-reverse;
}

.hme-strategy-section-second .hme-strategy-section-inner .hme-strategy-content {
    padding-right: 60px;
    padding-left: 30px;
    width: 60%;
}

.hme-strategy-section-second .hme-strategy-section-inner .hme-strategy-image {
    width: 40%;
}


.hme-strategy-section-second .hme-strategy-section-inner .hme-strategy-content ul li::after {
    background-color: #3e3e3f;
}

.launch-brand-section {
    padding: 160px 0px 270px;
    position: relative;
}

.launch-brand-section-inner {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
}

.launch-brand-section-inner .hme-strategy-content {
    width: 100%;
    max-width: 790px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.launch-brand-section-inner .hme-strategy-content h2 {
    font-size: 70px;
    /* line-height: 65px; */
    /* font-weight: bold; */
    color: #fff;
    margin-bottom: 1rem;
}

.launch-brand-section-inner .hme-strategy-content p {
    font-size: 22px;
    margin-bottom: 0;
    font-weight: 300;
}

.mb-32 {
    margin-bottom: 1rem;
}

.launch-brand-section-inner .hme-strategy-content ul {
    /* max-width: 600px; */
    justify-content: center;
}

.launch-brand-section-inner .hme-strategy-content ul li {
    width: auto;
    text-align: left;
}

/* .launch-brand-section-inner .hme-strategy-content ul li:first-child {
    margin-right: 9.2%;
} */

.launch-brand-section-inner .hme-strategy-content ul li:last-child {
    margin-right: 0px;
}

.brand-round-first {
    width: 210px;
    position: absolute;
    /* left: 36%; */
    left: 33%;
    bottom: 35px;
    z-index: 99;
    /* -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transition-duration: 1s;
    transition-duration: 1s;
    -webkit-transition-delay: now;
    transition-delay: now;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite; */

    /* transform: translate(235px, 26px); */
    opacity: 0;
}

.launch-brand-section.animated .brand-round-first {
    /* top: -80px; */
    opacity: 1;
    transform: translate(50px, -630px);
    animation: circle-move-anim 3s ease-in-out;
}



@keyframes circle-move-anim {
    0% {
        transform: translate(180px, 5px);
    }

    100% {

        transform: translate(50px, -630px);
    }
}




.brand-round-second {
    width: 600px;
    position: absolute;
    left: 36%;
    bottom: -450px;
}




/* .brand-round-second {
    width: 550px;
    position: absolute;
    left: 40%;
    bottom: -395px;
} */

.brand-round-second img {
    width: 100%;
    position: relative;
    z-index: 9;
}

.hme-strategy-section-third {
    width: 100%;
    height: auto;
    padding: 150px 0px;
    background-color: #1f1f1f;
}

.think-box .row {
    align-items: start;
    justify-content: space-between;
}

.first-row {
    flex-direction: row-reverse !important;
}

.hme-strategy-section-third .hme-strategy-image {
    text-align: right;
}

.hme-strategy-section-third .btn-outline-2 {
    margin-top: 10px;
    font-size: 15px;
    height: 50px;
    line-height: 50px;
    padding: 0px 40px;
}

.client-slider .item {
    padding: 2px;
}

.main-banner-home {
    width: 100%;
    height: auto;
}


@-webkit-keyframes rotating

/* Safari and Chrome */
    {
    from {
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotating {
    from {
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.tube-image {
    -webkit-animation: rotating 8s linear infinite;
    -moz-animation: rotating 8s linear infinite;
    -ms-animation: rotating 8s linear infinite;
    -o-animation: rotating 8s linear infinite;
    animation: rotating 8s linear infinite;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(0.9);
        opacity: 0.7;
    }

    50% {
        -webkit-transform: scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(0.9);
        opacity: 0.7;
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.7;
    }

    50% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(0.9);
        opacity: 0.7;
    }
}

.mic-image {
    -webkit-animation: pulse 3s infinite ease-in-out;
    -o-animation: pulse 3s infinite ease-in-out;
    -ms-animation: pulse 3s infinite ease-in-out;
    -moz-animation: pulse 3s infinite ease-in-out;
    animation: pulse 3s infinite ease-in-out;
}

.mic-second {
    -webkit-animation: pulse 3s infinite ease-in-out;
    -o-animation: pulse 3s infinite ease-in-out;
    -ms-animation: pulse 3s infinite ease-in-out;
    -moz-animation: pulse 3s infinite ease-in-out;
    animation: pulse 3s infinite ease-in-out;
}


.water-wave {
    -webkit-animation: pulse 3s infinite ease-in-out;
    -o-animation: pulse 3s infinite ease-in-out;
    -ms-animation: pulse 3s infinite ease-in-out;
    -moz-animation: pulse 3s infinite ease-in-out;
    animation: pulse 3s infinite ease-in-out;
}

.tp-bullet-title {
    display: none !important;
}

.hme-testimonial-section {
    width: 100%;
    height: auto;
    padding: 130px 0px;
    /* border-top: 1px solid #333333; */
    /* border-bottom: 1px solid #333333; */
}

.testimonial-slider-main {
    width: 100%;
    height: auto;
    margin-top: 35px;
}

.testimonial-slider-main .owl-stage {
    display: flex;
}

.testimonial-slider-main .owl-item {
    background-color: transparent;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

.testimonial-main-box {
    width: 100%;
    background-color: #fff;
    padding: 50px 25px 25px;
    min-height: 380px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    position: relative;
}

.testimonial-main-box p {
    font-size: 17px;
    line-height: 26px;
    color: #3c3c3c;
    min-height: 170px;
}

.testimonial-main-box h3 {
    font-size: 16px;
    line-height: 22px;
    font-weight: bold;
    width: 100%;
    margin-top: 20px;
    letter-spacing: 0px;
    margin-bottom: 0px;
}

.testimonial-main-box h5 {
    font-size: 13px;
    line-height: 18px;
    width: 100%;
    margin-top: 0;
    letter-spacing: 0px;
    margin-bottom: 0px;
}

.testimonial-image-main {
    width: 120px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 20px;
    text-align: right;
    justify-content: end;
    position: absolute;
    right: 0px;
    top: 0px;
}

.testimonial-brand {
    margin-right: 0px;
    text-align: right;
}

.testimonial-brand img {
    max-width: 100px;
    max-height: 45px;
    margin-right: 0px;
}

.testimonial-title-main {
    width: calc(100% - 120px);
}

.testimonial-profile {
    width: 85px;
    margin-left: auto;
}

.testimonial-profile img {
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}

/* #testimonial-slider .owl-item:nth-child(2) {
    -webkit-transform: rotate(-5deg);
    -moz-transform: rotate(-5deg);
    transform: rotate(-5deg);
} */

/* #testimonial-slider .owl-item.active.center {
    -webkit-transform: rotate(-5deg);
    -moz-transform: rotate(-5deg);
    transform: rotate(-5deg);
} */



#testimonial-slider.owl-carousel .owl-stage-outer {
    padding: 40px 0px;
}


#testimonial-slider .owl-nav button.owl-prev {
    width: 50px;
    height: 31px;
    background-image: url(../images/work-left-arrow-1.png);
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: -80px;
    top: 45%;
    z-index: 99;
    font-size: 0px;
}

#testimonial-slider .owl-nav button.owl-prev span {
    display: none;
}

#testimonial-slider .owl-nav button.owl-next {
    width: 50px;
    height: 31px;
    background-image: url(../images/work-right-arrow-1.png);
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: -80px;
    top: 45%;
    z-index: 99;
    font-size: 0px;
}

#testimonial-slider .owl-nav button.owl-next span {
    display: none;
}

.client-section {
    padding: 120px 0px 150px;
}

.testimonial-profile img {
    object-fit: contain;
    background-repeat: no-repeat;
    background-position: top center;
}

section.cards {
    overflow: hidden;
}

.blog-detail-content img {
    max-width: 550px;
    height: auto;
    width: 100%;
}

.blog-detail-content video {
    max-width: 550px;
    height: auto;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    border-color: 1px solid #ccc;
    color: #fff;
}

.store-locator-info-window p {
    margin: 0;
    padding: 0 0 0 0 !important;
    font-size: 14px;
    color: #000000;
    line-height: 20px;
}

.blog-detail-page.careers-logo-sc {
    padding-bottom: 0;
}


.pop-up-wrapper {
    width: 100%;
    height: 100vh;
    background-color: #000000;
    background-size: cover;
    /* background: url(../assets/images/login-banner.jpg) no-repeat; */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 0;
    overflow-x: hidden;
}

.pop-up-wrapper::before {
    content: '';
    position: absolute;
    top: -4%;
    left: 17%;
    width: 73%;
    height: 86%;
    /* background: url(../assets/images/yellow-square.png) no-repeat; */
    z-index: -1;
}

.pop-up-wrapper::after {
    content: '';
    position: absolute;
    right: 0%;
    bottom: 0%;
    width: 62.1%;
    height: 73.5%;
    /* width: ;
    height: ; */
    /* background: url(../images/blue-square.png) no-repeat; */
    z-index: -1;
}

.pop-up-box {
    max-width: 535px;
    width: 100%;
    min-height: 352px;
    /* background: url(../assets/images/box.png); */
    background-repeat: repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 15px;
    border: 1px solid #b9b9b9;
}

.pop-up-box h1 {
    margin: 67px 0 35px;
    color: #ffffff;
    font-weight: bold;
}

.pop-up-form {
    width: 80%;

}

.popup-btn-hollow:hover {
    background-color: #ffffff !important;
    color: #000000 !important;
    transition: 0.4s ease-in;
}

.popup-btn-fill:hover {
    background-color: transparent !important;
    color: #b8e41b !important;
    border: 1px solid #b8e41b !important;
    transition: 0.4s ease-in;
}

.popup-form-box {
    display: flex;
    flex-direction: column;
}

.popup-input-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.popup-input-box label {
    color: #ffffff;
    margin-bottom: 25px;
}

.popup-input-box input {
    width: 100%;
    height: 55px;
    outline: none;
    border: none;
    font-size: 20px;
    padding: 0 4%;
}

.popup-btn-box {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: 22px;
}

.popup-btn-box .popup-btn-hollow:first-child {
    background-color: transparent;
    font-size: 12px;
    color: #fff;
}

.popup-btn-box .popup-btn-hollow:first-child:hover {
    background-color: #b8e41b !important;
    border-color: #b8e41b;
    color: #000;
}

.popup-btn-box .popup-btn-hollow:last-child {
    background-color: #b8e41b;
    border-color: #b8e41b;
    ;
    font-size: 12px;
    color: #000;
    text-transform: uppercase;
    margin-right: 0;
}

.popup-btn-box .popup-btn-hollow:last-child:hover {
    background-color: transparent !important;
    color: #fff !important;
    border-color: #fff;
}

.pop-btn {
    height: 35px;
    width: 95px;
}

.popup-btn-hollow {
    margin-right: 15px;
    border: 1px solid #ffffff;
    background-color: transparent;
    color: #ffffff;
    cursor: pointer;
}

.popup-btn-fill {
    background-color: #b8e41b;
    border: 1px solid #b8e41b;
    cursor: pointer
}

/* -------------------------------------------------------------- */

.camera-image-anim {
    position: relative;
    width: 461px;
    height: 465px;
    margin-left: auto;
}

.camera-image-img {
    position: absolute;
    right: 0;
    z-index: 9;
}

.camera-image-img-bg {
    position: absolute;
    right: 30px;
}

.testimonial-title-wrapper {
    border-top: 1px solid #ccc;
    width: 100%;
    position: relative;
}

.new-slide-first-text {
    font-family: 'Montserrat-Black' !important;
    color: transparent !important;
    -webkit-text-stroke: 1px #fff !important;

}

.new-slide-second-text {
    font-family: 'Montserrat-Black' !important;
    color: transparent !important;
    -webkit-text-stroke: 1px #fff !important;

}

.new-slide-third-text {
    font-family: 'Montserrat-Black' !important;
    color: transparent !important;
    -webkit-text-stroke: 1px #fff !important;

}

.hme-strategy-section-second .btn-outline-2 {
    margin-top: 50px;
    display: inline-block;
}

.hme-strategy-section-inner .btn-outline-2.stratergy_btn {
    margin-top: 60px;
    display: inline-block;
}

.launch-brand-section .btn-outline-2 {
    margin-top: 60px;
    display: inline-block;
}

.no_process {
    padding-top: 0;
}

.anim_layer {
    animation: taadaa 2s infinite;
}

.anim_layer_3 {
    animation: layer3 2s infinite;
}

.anim_layer_4 {
    animation: layer4 2s infinite;
}


@keyframes taadaa {
    0% {
        opacity: .3;
    }

    100% {
        opacity: .6 !important;
    }
}

@keyframes layer3 {
    0% {
        opacity: .3;
    }

    100% {
        opacity: .7 !important;
    }
}

@keyframes layer4 {
    0% {
        opacity: .4;
    }

    100% {
        opacity: .8 !important;
    }
}


/* -------------------------------------------------------------- */



@media screen and (max-width:1440px) {
    .pop-up-wrapper::before {
        left: 6%;
    }

    .launch-brand-section.animated .brand-round-first {
        transform: translate(50px, -565px);
    }

    @keyframes circle-move-anim {
        0% {
            transform: translate(180px, 5px);
        }

        100% {

            transform: translate(50px, -565px);
        }
    }

    .brand-round-second {
        left: 47%;
        bottom: -270px;
    }
}

@media screen and (max-width:1300px) {
    .launch-brand-section.animated .brand-round-first {
        transform: translate(50px, -490px);
    }

    .brand-round-second {
        left: 50%;
        bottom: -240px;
    }

    @keyframes circle-move-anim {
        0% {
            transform: translate(180px, 5px);
        }

        100% {

            transform: translate(50px, -490px);
        }
    }
}

@media screen and (max-width:1024px) {
    .pop-up-wrapper::before {
        left: -12%;
        width: 100%;
    }

    .pop-up-wrapper::after {
        width: 76.1%;
    }

    .pop-up-box h1 {
        font-size: 27px;
    }

    .hme-strategy-image .glow-image {
        transform: translate(-177px, 60px);
    }

    @keyframes diagonal-move-anim {
        0% {
            transform: translate(-177px, 60px);
        }

        100% {
            transform: translate(-60px, -80px);
        }
    }

    .brand-round-second {
        bottom: -260px;
    }

    .launch-brand-section.animated .brand-round-first {
        transform: translate(-70px, -444px);
    }

    @keyframes circle-move-anim {
        0% {
            transform: translate(121px, 44px);
        }

        100% {

            transform: translate(-70px, -444px);
        }
    }
}

@media screen and (max-width:768px) {
    .pop-up-wrapper::before {
        left: 0%;
        width: 100%;
    }

    /* .careers-content-box.cr-bx .careers-box h3 {
        min-height: 60px;
    }
    .careers-content-box.cr-bx .careers-box p {
        min-height: 135px;
    } */
    .careers-content-box.cr-bx .careers-box .pos_btn {
        position: initial;
    }
}

@media screen and (max-width:500px) {
    .pop-up-box {
        min-height: 270px;
    }

    .pop-up-wrapper::before {
        left: -62%;
        width: 165%;
    }

    .pop-up-wrapper::after {
        width: 123.1%
    }

    .popup-btn-box {
        justify-content: center;
    }

    .popup-input-box input {
        height: 40px;
    }

    .pop-up-box h1 {
        margin: 40px 0 15px;
        font-size: 25px;
    }

    .popup-input-box {
        font-size: 14px;
    }

    .pop-up-form {
        width: 90%;
    }

    /* .careers-content-box.cr-bx .careers-box h3 {
            min-height: auto;
    }
    .careers-content-box.cr-bx .careers-box p {
        min-height: auto;
    } */

}


/* scale animation */

.glow-effct {
    opacity: 0;
    animation-name: myanimation;
    animation-duration: 5s;
    animation-iteration-count: infinite;
}


@keyframes myanimation {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -o-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0)
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -o-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0)
    }
}

.hand-animation {
    animation: rotation-hand 8s infinite linear !important;
    -webkit-animation: rotation-hand 8s infinite linear !important;
}


@keyframes rotation-hand {

    0% {
        -webkit-transform: rotate(0deg);
    }

    50% {
        -webkit-transform: rotate(10deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
    }

}


.cloud-animation {
    animation: rotation-cloud 12s infinite linear !important;
    -webkit-animation: rotation-cloud 12s infinite linear !important;
}


@keyframes rotation-cloud {

    0% {
        -webkit-transform: rotate(0deg);
    }

    50% {
        -webkit-transform: rotate(40deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
    }

}



.ball-animation {
    animation: rotation 4s infinite linear !important;
    -webkit-animation: rotation 4s infinite linear !important;
}

@keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
    }
}

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
    }
}



/* next previous navigation */

.nxps-navigation {
    display: flex;
    justify-content: space-between;
}

.nxps-navigation a {
    color: #fff;
    display: flex !important;
    align-items: center !important;
    gap: 5px;
    font-family: almarai;
}

.nxps-navigation .nxps-text {
    font-size: 16px;
}

.nxps-navigation .prev-icon-img {
    margin-top: -2px;
    transition: all 0.4s ease-in;
}

.nxps-navigation .prevp-btn:hover .prev-icon-img {
    transform: translateX(-5px);
}

.nxps-navigation .next-icon-img {
    margin-top: -2px;
    transition: all 0.4s ease-in;
}

.nxps-navigation .nextp-btn:hover .next-icon-img {
    transform: translateX(5px);
}



/* privacy policy css */


.privacy-policy-content h2 {
    color: #fff;
    font-size: 52px;
    font-weight: 500;
    margin-bottom: 15px;
    font-family: almarai;
}


.privacy-policy-content h3 {
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.8px;
}

.privacy-policy-content ol li {
    list-style: disc;
    color: #ababab;
    margin: 10px 0;
    margin-left: -10px;
    font-size: 18px;
}

.privacy-policy-content ul li {
    color: #ababab;
    margin: 10px 0;
    margin-left: -10px;
    font-size: 18px;
}

@media screen and (max-width:768px) {

    .privacy-policy-content h2 {
        font-size: 40px;
    }
}



/* news page css start*/



.page-template-page-news footer .lets_capture_sec,
.single-our_news footer .lets_capture_sec,
.tax-news_category footer .lets_capture_sec {
    display: none;
}

.tax-news_category .latest_news_img {
    background-position: center !important;
    background-size: cover !important;
}

.page-template-page-news footer.ftr,
.single-our_news footer.ftr,
.tax-news_category footer.ftr {
    padding-top: 0;
}

.news_section .container {
    padding-top: 50px;
}

.news_section a {
    color: #fff;
}

.news_section .title_sec {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news_section .title_sec h2 {
    color: #fff;
    font-size: 40px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.news_section .title_sec a {
    position: relative;
    text-transform: uppercase;
    font-size: 14px;
}

.news_section .title_sec a:hover {
    color: #ff0000;
}

.news_section .news_link:hover {
    color: #ff0000;
}

/* .news_section .title_sec a::after{
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background-color: #fff;
    bottom: 0;
    left: 0;
} */

.news_section .news_link:hover {
    color: #ff0000;
}

.news_section .latest_news_img {
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}






.news_section .news_common_boxes .news_common_img {
    max-width: 100%;
    position: relative;
    transform: scale(1);

    overflow: hidden;
}

.news_section .news_common_boxes .news_common_img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: all 1s ease;
}

.news_section .news_common_boxes .news_common_link {
    text-align: center;
    font-size: 20px;
    text-transform: uppercase;
    position: absolute;
    bottom: 50px;
    left: 0;
    z-index: 99;
    font-weight: bold;
    width: 100%;
    padding: 0 10px;
}

.news_section .news_common_box .news_common_img:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.news_section .collaborate_sec img {
    height: auto;
}

.signup_section {
    padding: 50px 0;
}

.signup_section .sign_up_box {
    background-color: #212121;
    /* padding: 10px; */
}

.signup_section .sign_up_box .container {
    margin-top: 0px;
    padding-top: 20px !important;

    display: flex;
    justify-content: space-between;
    align-items: center;
    /* height: 95px; */
}

.signup_section .sign_up_box h3 {
    letter-spacing: 0.5px;
    color: #ff0000;
    text-transform: capitalize;
    font-weight: 500;
}

.email-form input {
    padding: 14px 20px;
    width: 100%;
    color: #24272c !important;
    border: none;
    outline: none !important;
    padding-right: 160px;
    padding-left: 30px;
    background-color: #fff;
    height: 54px;
}

.email-form .news-letter-btn {
    position: absolute;
    top: 0;
    right: 0;
    outline: none !important;
    padding: 6px 10px;
    background: #000;
    color: #fff !important;
    border: none;
    height: 54px;
    width: max-content;
    text-transform: capitalize;
}

.email-form .newsletter-success {
    font-size: 14px;
    color: green;
    margin-top: 10px;
}

.email-form form {
    position: relative;
    max-width: 600px;
    margin: 0px auto 20px;
}


.news_section .pagination ul {
    display: flex;
    gap: 20px;
    margin-left: -25px;
}

.news_section .pagination ul li .page-numbers {
    background-color: #000;
    padding: 10px 15px;
    color: #fff;
    border: 1px solid #fff;
}

.news_section .pagination ul li span.current {
    background-color: #ff0000;
    color: #000;
    border: none;
}

.news_section .pagination ul li .next {
    border: none;
}

/* .news_section .pagination ul li span:hover{
    background-color: #ff0000;
} */
/* .news_section .pagination ul li span{
    border: 1px solid #fff;
}
.news_section .pagination ul li span.current{
    background-color: #ff0000;
    border: none;
} */
.page-thankyou .lets_capture_sec {
    display: none;
}

.news_section .pagination ul li .next,
.news_section .pagination ul li .prev,
.news_section .pagination ul li::marker {
    display: none;
}


@media screen and (max-width:768px) {
    .news_section .title_sec h2 {
        font-size: 22px;
    }

    .news_section .news_common_boxes .news_common_link {
        font-size: 14px;
        bottom: 20px;
    }

    .news_section .news_link {
        font-size: 14px;
    }

    .news_section .title_sec a {
        margin-top: -20px;
    }
}

@media screen and (max-width:600px) {

    .signup_section .sign_up_box .container {
        flex-direction: column;
    }
}

/* news page css end */




/* news single page css start */
.news-single {
    margin-top: 100px;
}

.news-single .news_heading {
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    letter-spacing: 0.5px;
    line-height: 1;
}

.news-single .author_date {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.news-single .author_date span {
    color: #fff;
}

.news-single .news_main_img {
    width: 100%;
    max-width: 1920px;
    margin-bottom: 50px;
}

/* .news-single .signup_section .sign_up_box{
    padding: 50px 0 30px;
} */


.news-single .sidebar_sec h3 {
    color: #fff;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.news-single ul {
    margin-top: -15px;
}

.news-single ul li {
    color: #ababab;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}

.news-single a {
    color: #ff0000;
    letter-spacing: 0;
}

.news-single a:hover {
    color: #ff0000;
}

.news-single .news_content img {
    width: 100%;
}

.news-single .latestnewsSwiper .swiper-slide {
    position: relative;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000 103%);
}

.news-single .latestnewsSwiper .swiper-slide img {

    border-top-right-radius: 10px;
}

.news-single .latestnewsSwiper .slider-content {
    position: absolute;
    bottom: 8px;
    left: 16px;
}

.news-single .latestnewsSwiper .slider-content a {
    color: #fff;
}

@media screen and (max-width:1024px) {
    .link-list ul.ls-ul li a {
        margin-right: 30px;
    }

    .news-single .news_heading {
        font-size: 40px;
    }

    .news-single {
        margin-top: 10px;
    }

    .news-single ul li {
        font-size: 17px;
    }

}

@media screen and (max-width:600px) {
    .news-single .news_heading {
        font-size: 25px;

    }

}


/* news single page css end */