/*******************************/
/********* General CSS *********/
/*******************************/
body {
    color: #666666;
    background: #dddddd;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #131501;
}

a {
    color: #000000;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: #000;
    outline: none;
    text-decoration: none;
}

.btn:focus {
    box-shadow: none;
}

.wrapper {
    position: relative;
    width: 100%;
    /*max-width: 1366px;*/
    margin: 0 auto;
    background: #fff;
}

.wrapper_1 {
    position: relative;
    width: 100%;
    /*max-width: 1366px;*/
    margin: 0 auto;
    background: #fff;
}

.back-to-top {
    position: fixed;
    display: none;
    background: rgb(56 183 227);
    color: #fff;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 9;
}

.back-to-top:hover {
    color: #fff;
    background: rgb(35 161 203);
}

.back-to-top i {
    padding-top: 10px;
}

.btn {
    transition: .3s;
}

.text-white {
    color: #fff !important
}

.text-green {
    color: #276500 !important
}

.text-blue {
    color: #fff !important
}

.padd {
    padding: 106px 0 70px 0;
}

/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
.top-bar {
    position: relative;
    height: 150px;
    background: #fff;
}

.top-bar .logo {
    padding: 15px 0;
    text-align: left;
    overflow: hidden;
}

.top-bar .logo h1 {
    margin: 0;
    color: #131501;
    font-size: 60px;
    line-height: 60px;
    font-weight: 700;
}

.top-bar .logo img {
    /*max-width: 100%;
    max-height: 60px;*/
    max-width: 100%;
    height: auto;
    right: 50px;
    margin-top: 0px;
    position: absolute;
    z-index: 99
}

.top-header-t {
    top: 30px
}

.top-bar .top-bar-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-bar .top-bar-icon {
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-bar .top-bar-icon [class^="flaticon-"]::before {
    margin: 0;
    color: #00ba24;
    font-size: 40px;
}

.top-bar .top-bar-text {
    padding-left: 15px;
}

.top-bar .top-bar-text h3 {
    margin: 0 0 5px 0;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.top-bar .top-bar-text p {
    margin: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
}
.top-bar .top-bar-text p a{
    color: #fff;
}
@media (min-width: 992px) {
    .top-bar {
        padding: 0 60px;
    }
}

@media (max-width: 991.98px) {
    .top-bar .logo {
        text-align: center;
    }

    .feature2 .feature-item {
        min-height: 250px;
        padding: 30px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .about .about-img {
        text-align: center;
    }

    .about .about-img img {
        width: 75% !important;
        height: 75% !important;
    }

    .top-bar {
        height: 162px;
    }

    .bg-top-header {
        padding-bottom: 21px;
    }
}


/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.nav-bar {
    position: relative;
    background: linear-gradient(120deg, #121b3b 37%, #e2b462 24%);
    transition: .3s;
}

.nav-bar .container-fluid {
    padding: 0;
}

.nav-bar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 1366px;
    box-shadow: 0 2px 5px rgba(255 255 255, .3);
    z-index: 999;
    background: linear-gradient(120deg, rgb(39 101 0) 39%, rgb(0, 183, 0) 24%);
    padding: 0px 0px 0px 1%;
}

.nav-bar .navbar {
    height: 100%;
    background: #e2b462 !important;
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    padding: 10px 16px 8px 16px;
    color: #000;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #fff;
    transition: none;
}

.nav-bar .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #f8f9fa;
}

.nav-bar .btn {
    color: #ffffff;
    border: 2px solid #192919;
    border-radius: 0;
    background: #192919;
}

.nav-bar .btn:hover {
    color: #fff;
    background: #192919;
    border-color: #192919;
}

@media (min-width: 992px) {
    .nav-bar {
        /*        padding: 0 75px;*/
        padding: 0 0 0 43%;
    }

    .nav-bar.nav-sticky {
        padding: 0;
        max-width: 100%;
    }

    .nav-bar .navbar {
        padding: 5px;
    }

    .nav-bar .navbar-brand {
        display: none;
    }

    .nav-bar a.nav-link {
        padding: 8px 15px;
        font-size: 18px;
        text-transform: uppercase;
    }
}

@media (max-width: 991.98px) {
    .nav-bar .navbar {
        padding: 15px;
    }

    .nav-bar a.nav-link {
        padding: 5px;
    }

    .nav-bar .dropdown-menu {
        box-shadow: none;
    }

    .nav-bar .btn {
        display: none;
    }
}


/*******************************/
/******** Carousel CSS *********/
/*******************************/
.carousel {
    position: relative;
    width: 100%;
    height: calc(100vh - 170px);
    min-height: 400px;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
}

.carousel .carousel-inner,
.carousel .carousel-item {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel .carousel-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255 255 255, .3);
    z-index: 1;
}

.carousel .carousel-caption {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: calc(100vh - 170px);
    min-height: 400px;
}

.carousel .carousel-caption p {
    color: #ffffff;
    font-size: 30px;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 2px black;
}

.carousel .carousel-caption h1 {
    color: #ffffff;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 35px;
    text-shadow: 2px 2px 2px black;
}

.carousel .carousel-caption .btn {
    padding: 15px 35px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    background: transparent;
    border: 2px solid #ffffff;
    border-radius: 0;
    transition: .3s;
}

.carousel .carousel-caption .btn:hover {
    color: #131501;
    background: #000;
    border-color: #000;
}

@media (max-width: 767.98px) {
    .carousel .carousel-caption h1 {
        font-size: 40px;
        font-weight: 700;
    }

    .carousel .carousel-caption p {
        font-size: 20px;
    }

    .carousel .carousel-caption .btn {
        padding: 12px 30px;
        font-size: 18px;
        font-weight: 500;
        letter-spacing: 0;
    }
}

@media (max-width: 575.98px) {
    .carousel .carousel-caption h1 {
        font-size: 30px;
        font-weight: 500;
    }

    .carousel .carousel-caption p {
        font-size: 16px;
    }

    .carousel .carousel-caption .btn {
        padding: 10px 25px;
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 0;
    }
}

.carousel .animated {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
}


/*******************************/
/******* Page Header CSS *******/
/*******************************/
.page-header {
    position: relative;
    /*margin-bottom: 45px;*/
    padding: 90px 0;
    text-align: center;
    background: #000;
    background: linear-gradient(rgb(0 0 0 / 30%), rgb(0 0 0 / 72%)), url(../img/slider/carousel-1.jpg);
    text-shadow: -6px 0px 2px #0000009c;
    background-size: cover;
    background-position: center;
}

.page-header h2 {
    position: relative;
    color: #fff;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.page-header h2::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    left: calc(50% - 50px);
    bottom: 0;
    background: #fff;
}

.page-header a {
    position: relative;
    padding: 0 12px;
    font-size: 22px;
    color: #fff;
}

.page-header a:hover {
    color: #ffffff;
}

.page-header a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -2px;
    right: -7px;
    text-align: center;
    color: #fff;
}

.page-header a:last-child::after {
    display: none;
}

@media (max-width: 991.98px) {
    .page-header {
        padding: 60px 0;
    }

    .page-header h2 {
        font-size: 45px;
    }

    .page-header a {
        font-size: 20px;
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 45px 0;
    }

    .page-header h2 {
        font-size: 35px;
    }

    .page-header a {
        font-size: 18px;
    }
}


/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    width: 100%;
    margin-bottom: 45px;
}

.section-header p {
    color: #e2b462;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.section-header h2 {
    margin: 0;
    position: relative;
    font-size: 50px;
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 30px;
    }
}


/*******************************/
/********* Feature CSS *********/
/*******************************/
.feature {
    position: relative;
    /*margin-bottom: 45px;*/
}

.feature .col-md-12 {
    background: #1e4384;
}

.feature2 .col-md-12 {
    background: #fff;
}

.feature .col-md-12:nth-child(2n) {
    color: #131501;
    background: #e2b462;
}

.feature .feature-item,
.feature2 .feature-item {
    min-height: 250px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.feature .feature-icon,
.feature2 .feature-icon {
    position: relative;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature .feature-icon::before {
    position: absolute;
    content: "";
    width: 80px;
    height: 80px;
    top: -20px;
    left: -10px;
    border: 2px dotted #ffffff;
    border-radius: 60px;
    z-index: 1;
}

.feature2 .feature-icon::before {
    position: absolute;
    content: "";
    width: 80px;
    height: 80px;
    border: 2px dashed #00ba24;
    border-radius: 60px;
    z-index: 1;
}

.feature .feature-icon::after {
    position: absolute;
    content: "";
    width: 80px;
    height: 80px;
    top: -18px;
    left: -9px;
    background: #fff;
    border-radius: 60px;
    z-index: 2;
}

.feature2 .feature-icon::after {
    position: absolute;
    content: "";
    border-radius: 60px;
    z-index: 2;
}

.feature .col-md-12:nth-child(2n) .feature-icon::after,
.feature2 .col-md-12:nth-child(2n) .feature-icon::after {
    background: #fff;
}

.feature .feature-icon [class^="flaticon-"]::before,
.feature2 .feature-icon [class^="flaticon-"]::before {
    position: relative;
    margin: 0;
    color: rgb(0 0 0);
    font-size: 48px;
    line-height: 48px;
    z-index: 3;
}

.feature .feature-text,
.feature2 .feature-text {
    padding-left: 30px;
}

.feature .feature-text h3 {
    margin: 0 0 10px 0;
    color: #fff;
    font-size: 25px;
    font-weight: 600;
}

.feature2 .feature-text h3 {
    margin: 0 0 10px 0;
    color: #1b391d;
    font-size: 25px;
    font-weight: 600;
}

.feature .feature-text p,
.feature2 .feature-text p {
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
}

.feature .col-md-12:nth-child(2n) [class^="flaticon-"]::before,
.feature .col-md-12:nth-child(2n) h3,
.feature .col-md-12:nth-child(2n) p {
    color: rgb(0 0 0);
}


/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    padding: 45px 0px 130px 0px;
    /* margin-bottom: 130px; */
    background: #fff;
}

.about .section-header {
    margin-bottom: 30px;
}

.about .about-img {
    position: relative;
    height: 100%;
}

.about .about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.about .about-text p {
    font-size: 16px;
}

.about .about-text a.btn {
    position: relative;
    margin-top: 15px;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #fff;
    border-radius: 0;
    background: #00ba24;
    transition: .3s;
}

.about .about-text a.btn:hover {
    color: #fff;
    background: #192919;
}

.about-comment {
    position: absolute;
    top: 9px;
    left: 9px;
    z-index: 1;
}

.comment {
    position: absolute;
    top: 170px;
    left: -130px;
    background: #e2b462;
    box-shadow: 0px 10px 30px 0px rgba(255 255 255.07);
    display: flex;
    align-items: center;
    padding: 31px 30px 68px;
    padding-right: 33px;
    z-index: 1;
    width: 245px;
}

.comment1 {
    position: absolute;
    bottom: -24px;
    left: 49px;
    z-index: -1;
}

.triangle {
    top: 94px;
    padding: 0px 0px 7px 21px;
    position: relative;
    z-index: -1;
}

.about-img2 {
    position: absolute;
    bottom: -95px;
    left: 0;
    height: 308px;
    width: 308px;
    border-radius: 50%;
}

.about-img-comment {
    width: 100%;
    border-radius: 50%;
    border: 10px solid #fff;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
}

.fact-text {
    margin-top: 188px;
    z-index: 9;
    color: #fff;
    text-align: left;
    left: -104px;
    font-size: 22px;
    display: flex;
}

.icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    border: 2px dashed var(--gardon-base);
}

@media (max-width: 767.98px) {
    .about .about-img {
        margin-bottom: 30px;
        height: auto;
    }
}

/*BTN 404 ERORR*/
.btn-error {
    position: relative;
    margin-top: 15px;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #131501;
    border-radius: 0;
    background: #000;
    transition: .3s;
}

/*******************************/
/********** Fact CSS ***********/
/*******************************/
.fact {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.fact .col-6 {
    display: flex;
    align-items: flex-start;
}

.fact .fact-icon {
    position: relative;
    margin: 7px 15px 0 15px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fact .fact-icon [class^="flaticon-"]::before {
    margin: 0;
    font-size: 60px;
    line-height: 60px;
    background-image: linear-gradient(#ffffff, #000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fact .fact-right .fact-icon [class^="flaticon-"]::before {
    background-image: linear-gradient(#ffffff, #131501);
}

.fact .fact-left,
.fact .fact-right {
    padding-top: 60px;
    padding-bottom: 60px;
}

.fact .fact-text h2 {
    font-size: 35px;
    font-weight: 700;
}

.fact .fact-text p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.fact .fact-left {
    color: #000;
    background: #131501;
}

.fact .fact-right {
    color: #131501;
    background: #000;
}

.fact .fact-left h2 {
    color: #000;
}


/*******************************/
/********* Service CSS *********/
/*******************************/
.services-one-shape-1.float-bob-x {
    position: absolute;
    top: 10px;
    left: 0;
}

.services-one-shape-2.float-bob-y {
    position: absolute;
    top: 65px;
    right: 0;
}

.float-bob-x {
    -webkit-animation-name: float-bob-x;
    animation-name: float-bob-x;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

.float-bob-y {
    -webkit-animation-name: float-bob-y;
    animation-name: float-bob-y;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@keyframes float-bob-x {
    0% {
        transform: translateX(-30px);
    }

    50% {
        transform: translateX(-10px);
    }

    100% {
        transform: translateX(-30px);
    }
}

@keyframes float-bob-y {
    0% {
        transform: translateY(-20px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(-20px);
    }
}

.service {
    position: relative;
    width: 100%;
    padding: 45px 0 100px 0;
    background: white;
}

.blog-two {
    position: relative;
    display: block;
    padding: 90px 0 100px;
    background: #fff;
}

.blog-two__bg {
    position: absolute;
    top: -51px;
    left: 0;
    right: 0;
    bottom: 0px;
    inset: 0px 0px 0px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    /*mix-blend-mode: overlay;*/
    opacity: 0.5;
    z-index: 0;
}

.bg-services:after {
    opacity: 0.035;
    background: linear-gradient(90deg, #000 0%, #000 100%);
}

.service .service-item {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.service .service-img {
    position: relative;
    overflow: hidden;
}

.service .service-img img {
    width: 100%;
}

.service .service-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(3, 15, 39, .7);
    transition: .5s;
    opacity: 0;
}

.service .service-item:hover .service-overlay {
    opacity: 1;
}

.service .service-overlay p {
    margin: 0;
    color: #ffffff;
}

.service .service-text {
    display: flex;
    align-items: center;
    height: 60px;
    background: #00be4d;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.service .service-text h3 {
    margin: 0;
    padding: 0 15px 0 25px;
    width: calc(100% - 60px);
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.service .service-item a.btn {
    width: 60px;
    height: 60px;
    padding: 3px 0 0 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    line-height: 60px;
    font-weight: 100;
    color: #fff;
    background: #000;
    border-radius: 0;
    transition: .3s;
}

.service .service-item:hover a.btn {
    color: #ffffff;
}


/*******************************/
/********** Video CSS **********/
/*******************************/
.video {
    position: relative;
    /*    margin: 45px 0 0 0;*/
    height: 100%;
    min-height: 500px;
    background: linear-gradient(rgb(0 0 0 / 50%), rgb(0 0 0 / 77%)), url(../img/slider/carousel-5.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.dimenvideo {
    width: 100%;
    height: 400px;
    background: #000
}

.navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: rgb(0 0 0);
    border: 2px solid white;
    border-radius: 0.25rem;
}

/*******************************/
/*********** Team CSS **********/
/*******************************/
.team {
    position: relative;
    width: 100%;
    padding: 106px 0 70px 0;
    background: white;
}

/*******************************/
/******* Reviews CSS *******/
/*******************************/
.reviews {
    padding: 20px 0 100px 0px;
}

.reviews-container {
    border-style: solid;
    border-width: 10px 10px 10px 10px;
    border-color: #FCFAF7;
    box-shadow: 0px 7px 20px 0px rgba(0, 0, 0, 0.07058823529411765);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin: 0px 15px 0px 15px;
    --e-column-margin-right: 15px;
    --e-column-margin-left: 15px;
    padding: 40px 34px;
}

.text-orange {
    color: orange;
}

/*******************************/
/******** Portfolio CSS ********/
/*******************************/
.portfolio {
    position: relative;
    padding: 45px 0;
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: -15px 0 25px 0;
    list-style: none;
    font-size: 0;
    text-align: center;
}

.portfolio #portfolio-flters li,
.portfolio .load-more .btn {
    cursor: pointer;
    display: inline-block;
    margin: 5px;
    padding: 8px 15px;
    color: #131501;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 0;
    background: #000;
    border: none;
    transition: .3s;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    background: #131501;
    color: #000;
}

.portfolio .load-more {
    text-align: center;
}

.portfolio .load-more .btn {
    padding: 15px 35px;
    font-size: 16px;
    transition: .3s;
}

.portfolio .load-more .btn:hover {
    color: #000;
    background: #131501;
}

.portfolio .portfolio-warp {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.portfolio .portfolio-img {
    position: relative;
    overflow: hidden;
}

.portfolio .portfolio-img img {
    width: 100%;
    transition: .3s;
}

.portfolio .portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio .portfolio-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(3, 15, 39, .7);
    transition: .5s;
    opacity: 0;
}

.portfolio .portfolio-warp:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio .portfolio-overlay p {
    margin: 0;
    color: #ffffff;
}

.portfolio .portfolio-text {
    display: flex;
    align-items: center;
    height: 60px;
    background: #131501;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.portfolio .portfolio-text h3 {
    margin: 0;
    padding: 0 15px 0 25px;
    width: calc(100% - 60px);
    font-size: 20px;
    font-weight: 700;
    color: #000;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.portfolio .portfolio-warp a.btn {
    width: 60px;
    height: 60px;
    padding: 3px 0 0 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    line-height: 60px;
    font-weight: 100;
    color: #131501;
    background: #ffffff;
    border-radius: 0;
    transition: .3s;
}

.portfolio .portfolio-warp:hover a.btn {
    color: #ffffff;
    background: #000;
}


/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    padding: 45px 0;
    background: white;
}

.contact .col-lg-5 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.contact .col-lg-5:first-child {
    background: #e2b462;
}

.contact .col-lg-7:last-child {
    background: #000;
    /*    left: 20px;*/
}

.contact .col-md-6 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.contact .col-md-6:first-child {
    background: #e2b462;
}

.contact .col-md-6:last-child {
    background: #000;
    /*    left: 20px;*/
}


.pad-top {
    padding-top: 20px;
}

.pad {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    padding-left: 0px !important;
    padding-right: 0px !important
}

.contact .contact-info {
    position: relative;
    width: 100%;
    padding: 0 15px;
}

.contact .contact-item {
    position: relative;
    margin-bottom: 30px;
    padding: 30px 6px 30px 18px;
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    border: 1px solid rgba(256, 256, 256, .2);
}

.contact .contact-item [class^="flaticon-"]::before {
    margin: 0;
    color: #fff;
    font-size: 40px;
}

.contact .contact-text {
    position: relative;
    width: auto;
    padding-left: 20px;
}

.contact .contact-text h2 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

.contact .contact-text p {
    margin: 0;
    color: #ffffff;
    font-size: 14px;
}

.contact .contact-item:last-child {
    margin-bottom: 0;
}

.contact .contact-form {
    position: relative;
    padding: 0 15px;
}

.contact .contact-form input {
    color: #ffffff;
    height: 40px;
    border-radius: 0;
    border-width: 1px;
    border-color: rgba(256, 256, 256, .4);
    background: transparent;
}

.contact .contact-form textarea {
    color: #ffffff;
    height: 185px;
    border-radius: 0;
    border-width: 1px;
    border-color: rgba(256, 256, 256, .4);
    background: transparent;
}

.contact .contact-form input:focus,
.contact .contact-form textarea {
    box-shadow: none;
}

.contact .contact-form .form-control::placeholder {
    color: #ffffff;
    opacity: 1;
}

.contact .contact-form .form-control::-ms-input-placeholder {
    color: #ffffff;
}

.contact .contact-form .form-control::-ms-input-placeholder {
    color: #ffffff;
}

.contact .contact-form .btn {
    padding: 16px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    background: #131501;
    border: none;
    border-radius: 0;
    transition: .3s;
}

.contact .contact-form .btn:hover {
    color: #131501;
    background: #ffffff;
}

.contact .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}


/*******************************/
/********* Footer CSS **********/
/*******************************/
.pattern-layer-one {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 426px;
    height: 507px;
    background-position: left top;
    background-repeat: no-repeat;
}

.pattern-layer-two {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 490px;
    height: 506px;
    background-position: right top;
    background-repeat: no-repeat;
}

.footer {
    position: relative;
    /*margin-top: 45px;*/
    padding-top: 47px;
    background: #121b3b ;
    color: #fff;
}

.footer .footer-contact,
.footer .footer-link,
.footer .newsletter {
    position: relative;
    margin-bottom: 0px;
}

.footer h2 {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.footer h2::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    left: 0;
    bottom: 0;
    background: #e2b462;
}

.footer .footer-link a {
    display: block;
    margin-bottom: 10px;
    color: #fff;
    transition: .3s;
}

.footer .footer-link a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .footer-link a:hover {
    color: #626769;
    letter-spacing: 1px;
}

.footer .footer-contact p i {
    width: 25px;
}
.footer .footer-contact p a{
    color: #fff;
}
.footer .footer-social {
    position: relative;
    margin-top: 20px;
}

.footer .footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    padding: 7px 0;
    text-align: center;
    border: 1px solid rgba(256, 256, 256, .3);
    border-radius: 60px;
    transition: .3s;
    background: #00ba24;
}

.footer .footer-social a i {
    font-size: 15px;
    color: #ffffff;
}

.footer .footer-social a:hover {
    background: #00bf50;
    border-color: #00bf50;
}

.footer .footer-social a:hover i {
    color: #fff;
}

.footer .newsletter .form {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.footer .newsletter input {
    height: 50px;
    border: 2px solid #121518;
    border-radius: 0;
}

.footer .newsletter .btn {
    position: absolute;
    top: 5px;
    right: 5px;
    height: 40px;
    padding: 8px 10px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: #000;
    background: #121518;
    border-radius: 0;
    border: 2px solid #000;
    transition: .3s;
}

.footer .newsletter .btn:hover {
    color: #121518;
    background: #000;
}

.footer .footer-menu .f-menu {
    position: relative;
    padding: 15px 0;
    font-size: 0;
    text-align: center;
    border-top: 1px solid rgba(256, 256, 256, .1);
    border-bottom: 1px solid rgba(256, 256, 256, .1);
}

.footer .footer-menu .f-menu a {
    color: #ffffff;
    font-size: 16px;
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu .f-menu a:hover {
    color: rgb(187 255 79);
}

.footer .footer-menu .f-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}


.footer .copyright {
    padding: 20px 15px;
}

.footer .copyright p {
    margin: 0;
    color: #fff;
}

.footer .copyright .col-md-6:last-child p {
    text-align: right;
}

.footer .copyright p a {
    color: #000;
    font-weight: 500;
    letter-spacing: 1px;
}

.footer .copyright p a:hover {
    color: #ffffff;
}

@media (max-width: 768px) {

    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
        margin: 5px 0;
        text-align: center;
    }

    .img_social_media {
        width: 300px
    }

    .pattern-layer-one,
    .pattern-layer-two {
        visibility: hidden;
    }
}


/********Section Project MAVEN*********/
figure.snip1033 {
    color: #fff;
    position: relative;
    overflow: hidden;
    /* margin: 10px;
  min-width: 220px;
  max-width: 310px;
  max-height: 220px;*/
    width: 100%;
    background: #000000;
}

figure.snip1033 img {
    opacity: 1;
    width: 100%;
    position: relative;
    -webkit-transition: opacity 0.35s;
    transition: opacity 0.35s;
}

figure.snip1033 .center {
    border-radius: 5px;
    display: block;
    content: '';
    position: absolute;
    background-color: #00bf51;
    top: 50%;
    left: 50%;
    height: 70px;
    width: 70px;
    box-shadow: 0 0 0px 5px rgb(255 255 255);
    opacity: 0;
    text-align: center;
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

figure.snip1033 .center i {
    font-size: 38px;
    padding: 6px;
    color: #ffffff;
    line-height: 80px;
}

figure.snip1033 figcaption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: left;
}

figure.snip1033 figcaption>div {
    float: left;
    height: 100%;
    overflow: hidden;
    width: 50%;
    position: relative;
}

figure.snip1033 figcaption a {
    opacity: 0.7;
}

figure.snip1033 figcaption a:hover {
    opacity: 1;
}

figure.snip1033 figcaption h3 {
    background-color: #222;
    word-spacing: -0.1em;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1em;
    opacity: 0;
    position: absolute;
    -webkit-transition: opacity 0.45s, -webkit-transform 0.45s;
    transition: opacity 0.45s, -webkit-transform 0.45s, -moz-transform 0.45s, -o-transform 0.45s, transform 0.45s;
}

figure.snip1033 a {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
}

figure.snip1033:hover img,
figure.snip1033.hover img {
    opacity: 0.5;
}

figure.snip1033:hover .center,
figure.snip1033.hover .center {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}

figure.snip1033:hover .center i,
figure.snip1033.hover .center i {
    -webkit-transform: translate(0%, -10px);
    transform: translate(0%, -10px);
}


/*Seccion bg2*/
.bg2 {
    position: relative;
    /*    margin: 45px 0;*/
    height: 100%;
    background: linear-gradient(rgb(5 26 49 / 66%), rgb(0 0 0 / 77%)), url(../img/slider/carousel-6.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.videogallery {
    width: 100%;
    background: #000;
    height: 450px;
}

.about_style_4_details p {
    font-size: 20px;
    line-height: 40px;
    margin-bottom: 55px;
    color: #ffffff;
    font-weight: 300;
    text-align: center;
}

.bg4 {
    text-shadow: -3px -5px 5px black;
}

.img-thumbnail2 {
    display: inline-block;
    max-width: 107%;
    height: auto;
    padding: 4px;
    line-height: 1.42857143;
    background-color: #cacac803;
    border: 1px solid #ddd;
    border-radius: 16px;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.img-thumbnail1 {
    padding: 0.25rem;
    border-radius: 0.25rem;
    max-width: 100%;
    height: auto;
}

.btn_form {
    padding: 16px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: #e2b462;
    border: none;
    border-radius: 0;
    transition: .3s;
}

.btn_form:hover {
    color: #131501;
    background: #ffffff;
}

.icon-bg2 {
    background: -webkit-linear-gradient(0deg, rgb(25, 41, 25) 0%, rgb(42, 185, 57) 100%);
    padding: 30px 0;
    border-radius: 2px;
    box-shadow: 0 0 1px 4px #ffffff;
}

.bg3 {
    position: relative;
    /*    margin: 45px 0;*/
    height: 100%;
    background: linear-gradient(rgb(1 36 85 / 76%), rgb(0 0 0 / 77%)), url(../img/slider/carousel-5.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


/*------------------------------------
# New seccion-services2
------------------------------------*/
figure.snip0051 {
    position: relative;
    overflow: hidden;
    background: #000000;
    box-shadow: 0 0 0px 1px #da0a1d;
    border-style: double;
    color: #b7b7b7;
}

figure.snip0051>img {
    margin-left: 50%;
    opacity: 1;
    width: 70%;
    filter: blur(0px);
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
}

figure.snip0051 figcaption {
    left: 0;
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background: #000;
}

figure.snip0051 figcaption h2,
figure.snip0051 figcaption p {
    margin: 0;
    color: #000000;
    text-align: right;
    position: absolute;
    padding: 10px 0 10px 4px;
    margin: 0 40px 0 20px;
}

figure.snip0051 figcaption h2 {
    font-size: 2em;
    bottom: 66%;
    right: 0;
    font-weight: 500;
    text-transform: capitalize;
    border-bottom: 1px solid rgb(218 9 28);
    color: #fff;
}

figure.snip0051 figcaption p {
    top: 36%;
}

figure figcaption span a {
    padding-left: 10%;
    margin-top: 90%;
    position: absolute;
    background: #ff000f;
    padding-top: 4%;
    height: 17%;
    width: 60%;
}

figure.snip0051 .icons {
    padding: 5px;
    position: absolute;
    left: 50%;
    top: 50%;
    padding-left: 30px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

figure.snip0051 .icons i {
    font-size: 32px;
    padding: 10px;
    color: #ffffff;
    opacity: 0;
    top: 50%;
    display: inline-block;
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
}

figure.snip0051 .icons a:first-child i {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

figure.snip0051 .icons a:nth-child(2) i {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

figure.snip0051 .icons a:nth-child(3) i {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

figure.snip0051:after {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 35px;
    width: 35px;
    background-color: #da081b;
    content: '';
    -webkit-transform: rotate(45deg) translate(-50%, -50%);
    transform: rotate(45deg) translate(-50%, -50%);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
}

figure.snip0051:hover>img,
figure.snip0051.hover>img {
    opacity: 0.5;
    filter: blur(5px);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

figure.snip0051:hover i,
figure.snip0051.hover i {
    opacity: 0.8;
    -webkit-transform: translate(0);
    transform: translate(0);
}

figure.snip0051:hover a:first-child i,
figure.snip0051.hover a:first-child i {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

figure.snip0051:hover a:nth-child(2) i,
figure.snip0051.hover a:nth-child(2) i {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

figure.snip0051:hover a:nth-child(3) i,
figure.snip0051.hover a:nth-child(3) i {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

/*------------------------------------
# New seccion-services2
------------------------------------*/
.btn-servi {
    background: #000;
    padding: 20px;
    color: #fff !important;
}

figure.snip0042 {
    font-family: 'Josefin Sans', sans-serif;
    position: relative;
    overflow: hidden;
    /*  margin: 10px;*/
    min-width: 220px;
    /*  max-width:435px;*/
    width: 100%;
    background: #000;
    color: #ffffff;
}

figure.snip0042>img {
    max-width: 100%;
}

figure.snip0042 figcaption {
    padding: 16px 16px 19px 16px;
    position: relative;
    background: #00be4e;
}

figure.snip0042 figcaption h2,
figure.snip0042 figcaption p {
    margin: 0;
    text-align: right;
    padding: 10px 0;
    right: 0;
    width: 100%;
}

figure.snip0042 figcaption h2 {
    font-size: 1.7em;
    font-weight: 400;
    text-transform: uppercase;
    border-bottom: 1px dashed #000;
}

figure.snip0042 figcaption .icons {
    width: 68%;
    text-align: center;
    background: linear-gradient(45deg, #a59d9d, #525050);
    padding: 11px;
    float: right;
    margin-bottom: 20px;
}

figure.snip0042 figcaption .icons i {
    font-size: 26px;
    padding: 5px;
    color: #ffffff;
    top: 50%;
}

figure.snip0042 .position {
    width: 100%;
    text-align: right;
    padding: 8px 30px 13px;
    font-size: 0.8em;
    opacity: 0.8;
    font-style: italic;
}

/*------------------------------------
# .0 Testimonial maven
------------------------------------*/
.t-gold {
    color: #e5b200;
}

.pad_testi {
    padding: 10px 0px 10px;
}

.pad_tes {
    padding: 0 0 75px 0;
}

.pad_te {
    padding: 72px 0 14px 0;
}

.pad_t {
    padding: 0 0 14px 0;
}

.smallbnt {
    width: 36%;
}

.pagination>li {
    display: contents !important;
}

.well2 {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background: #4d5052;
    border-radius: 9px;
    max-height: 600px;
}

.pagination>li>a,
.pagination>li>span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #337ab7;
    text-decoration: none;
    background-color: #e2b462;
    border: 1px solid #e2b462;
}

.pagination>li>a:focus,
.pagination>li>span:focus,
.pagination>li>span:hover {
    z-index: 2;
    color: #23527c;
    background-color: #5d5d5d;
    border-color: #5d5d5d;
}

.pagination>li>a:hover {
    background-color: rgb(0, 42, 82);
    border-color: rgb(0, 42, 82);
}

.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: #000;
    border-color: #000;
}

.well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
}

.btn-primary,
.btn-primary:hover,
.btn-primary:active {
    color: #fff;
    background-color: #00ba24 !important;
    border-color: #00ba24 !important;
    box-shadow: none !important;
}

/*hover bottom*/
.boton {
    color: #000 !important;
    font-size: 20px;
    font-weight: 500;
    padding: 0.5em 1.2em;
    background: #e2b462;
    border: 2px solid;
    border-color: #e2b462;
    position: relative;
}

.boton2 {
    color: #000 !important;
    font-size: 20px;
    font-weight: 500;
    padding: 0.5em 1.2em;
    background: #e2b462;
    border: 2px solid;
    border-color: #e2b462;
    position: relative;
}

.boton:before,
.boton2:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 0px;
    height: 100%;
    background: rgb(32 43 113 / 25%);
    transition: all 1s ease;
}

.boton:hover:before,
.boton2:hover:before {
    width: 100%;
}

/*SECTION SERVICES1*/
.leaf {
    background: #e2b462;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    font-size: 60px;
    color: #fff;
    line-height: 100px;
    text-align: center;
    display: inline-block;
}

.leaf::before {
    content: "";
    background-color: rgb(139 139 139 / 15%);
    position: absolute;
    left: 0;
    top: 0;
    width: 108px;
    height: 107px;
    border-radius: 50%;
    z-index: 1;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}

.leaf1 {
    background: #e2b462;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    font-size: 60px;
    color: #fff;
    line-height: 139px;
    text-align: center;
    display: inline-block;
}

.leaf1::before {
    content: "";
    background-color: rgb(139 139 139 / 15%);
    position: absolute;
    left: 0;
    top: 0;
    width: 164px;
    height: 164px;
    border-radius: 50%;
    z-index: 1;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}

.linea_services {
    position: relative;
}

.linea_services::before {
    content: "";
    background-color: #000;
    position: absolute;
    left: 0;
    top: 74px;
    width: 5px;
    height: 93px;
    z-index: 1;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}

.linea_services:hover::before {
    top: 0;
    height: 100%;
}

.linea_services::after {
    content: "";
    position: absolute;
    background: url(../img/icon-services/leaf.png) no-repeat right;
    bottom: 0;
    right: 50px;
    width: 100px;
    height: 150px;
}
.linea_services .leaf1 img{
    height: 80%;
    object-fit: cover;
    border-radius: 50%;
}
.services__icon::before {
    content: "";
    background-color: rgba(106, 150, 31, 0.149);
    position: absolute;
    left: 0;
    top: 0;
    width: 108px;
    height: 124px;
    border-radius: 0 59px 50px 54px;
    z-index: 1;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}

.style-service {
    padding-right: 60px;
    padding-left: 70px;
    padding-bottom: 50px;
    padding-top: 40px;
}

.style-service {
    padding-right: 40px;
    padding-left: 40px;
}

.color-btn {
    color: #e2b462;
}

.color-btn:hover {
    color: #e2b462;
}

.bg-white {
    background: #e7e7e7 !important
}

.description-services {
    text-align: justify;
}

.pb-services {
    padding-bottom: 20px;
}

/*Section Gallery*/
.overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgb(0 0 0 / 50%);
    overflow: hidden;
    width: 100%;
    height: 100%;
    transition: .5s ease;
}

.item {
    position: relative;
    overflow: hidden;
    margin: 20px 0;
}

.item:hover .overlay {
    bottom: 0;
    height: 100%;
    width: 100%;
}

.top-overlay {
    bottom: 100%;
    height: 0;
}

.text {
    color: white;
    text-shadow: 1px 1px 2px black;
    font-size: 18px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

.navbar-dark .navbar-toggler-icon {
    background-image: url();
    background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-linecap=' round' stroke-miterlimit=' 10' stroke-width=' 2' d=' M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e);

}

.bg-top-header {
    padding-top: 7px;
    margin-bottom: -9px;
    background: #e2b462;
}

.icon-header-top,
.icon-header-top:hover {
    background: rgb(0 0 0);
    padding: 0px 6px;
    border-radius: 20px;
}

.icon-i {
    color: #e2b462
}

.img-responsive {
    width: auto;
}

/******************************************************MEDIA QUERYS*****************************************************************************/
@media (max-width:2560px) {
    .top-bar .logo img {
        max-width: 106%;
        height: auto;
        right: 130px;
        /* margin-top: -20px; */
        position: absolute;
        z-index: 99;
    }
}

@media (max-width:1440px) {
    .top-bar .logo img {
        max-width: 106%;
        height: auto;
        right: 60px;
        /* margin-top: -20px; */
        position: absolute;
        z-index: 99;
        width: 50%;
    }
}

@media only screen and (min-width: 994px) and (max-width: 1250px) {
    .nav-bar {
        padding: 0 0 0 35%;
        background: linear-gradient(120deg, #121b3b 37%, #e2b462 24%);
    }
}

@media (max-width:1024px) {
    .pad4 {
        padding: 10px 0px 0 0px !important;
    }

    .top-bar .logo img {
        max-width: 106%;
        height: auto;
        right: 36px;
        margin-top: -30px;
        position: absolute;
        z-index: 99;
    }

    .pad5 {
        padding: 10px 0px 0 0px !important
    }

    .description-services {
        font-size: 14px
    }

    .style-service {
        padding-bottom: 40px;
    }

    .font-size3 {
        font-size: 30px;
    }

    .btn1 {
        font-size: 15px
    }

    .comment,
    .fact-text {
        visibility: hidden;
    }

    .nav-bar {
        padding: 0 0 0 28%;
        background: linear-gradient(120deg, #121b3b 37%, #e2b462 24%);
    }

    .pattern-layer-one,
    .pattern-layer-two {
        height: 511px;
    }

    .img_social_media {
        width: 100%;
    }

    .img-services {
        margin-left: -13px;
        border: 3px solid #fff;
        width: 150px;
    }
}

@media only screen and (min-width: 600px) and (max-width: 767px) {
    .nav-bar {
        background: linear-gradient(120deg, rgb(255, 255, 255) 22%, rgb(0, 183, 0) 15%);
    }

    .img-border--blue::after,
    .img-border--yellow::after {
        display: none;
    }
}

@media(max-width:768px) {
    .nav-bar {
        padding: 0px 0px 0px 51%;
        background: linear-gradient(120deg, #121b3b 37%, #e2b462 24%);
        /* margin-top: 10px;*/
    }

    .top-bar .logo img {
        margin-top: -10px;
        right: 175px;
    }

    .top-bar {
        height: 160px;
    }

    .img-border--blue::after,
    .img-border--yellow::after {
        top: 15px;
        left: -15px;
        bottom: -15px;
    }

    .img-border--blue::after,
    .img-border--yellow::after {
        display: none;
    }
}

@media (max-width:520px) {
    .service1 {
        padding-top: 21px;
    }

    .nav-bar {
        background: linear-gradient(120deg, #121b3b 37%, #e2b462 24%);
        /* margin-top: 50px; */
    }

    .top-bar {
        height: 120px;
    }

    .top-bar .logo img {
        right: 76px;
        width: 100px;
        top: 24px;
    }

    .dimenvideo {
        width: 100%;
        height: 350px;
        background: #000
    }

    .img_social_media {
        width: 80%;
    }

    .img-services {
        margin-left: -13px;
        border: 3px solid #fff;
        width: 390px;
    }
}

@media (max-width:425px) {
    .service1 {
        padding-top: 21px;
    }

    .about-img2 {
        visibility: hidden;
    }

    .img-movil {
        width: 100%;
        border-radius: 50%;
        border: 10px solid #fff;
        box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
    }

    .about {
        margin-bottom: 0;
    }

    .top-bar {
        height: 110px;
    }

    .nav-bar {
        background: linear-gradient(120deg, #121b3b 37%, #e2b462 24%);
        /* margin-top: 53px; */
    }

    .bg-top-header {
        padding-bottom: 21px;
    }

    .top-bar .logo img {
        margin-top: -11px;
        right: 17px;
        max-width: 87%;
    }

    .dimenvideo {
        width: 100%;
        height: 350px;
        background: #000
    }

    .pattern-layer-one,
    .pattern-layer-two {
        visibility: hidden;
        width: 100%
    }

    .img-services {
        margin-left: -13px;
        border: 3px solid #fff;
        width: 350px;
    }
}

@media (max-width: 375px) {
    .img-services {
        margin-left: -13px;
        border: 3px solid #fff;
        width: 290px;
    }

    .contact .contact-item {
        padding: 30px 6px 30px 8px;
    }

    .contact .contact-text p {
        font-size: 13px;
    }
}

@media (max-width:320px) {
    .contact .contact-text p {
        font-size: 11px;
    }

    .contact .contact-item {
        padding: 5px;
    }

    .description-services {
        font-size: 15px
    }

    .top-bar .logo img {
        margin-top: -12px;
        max-width: 146%;
        width: 108%;
    }

    .nav-bar .navbar {
        padding: 7px;
    }

    .nav-bar {
        background: linear-gradient(120deg, #121b3b 37%, #e2b462 24%);
    }

    .img-border:after,
    .img-border--yellow::after {
        top: 15px;
        left: -15px;
        bottom: -15px;
    }

    .img-services {
        margin-left: -13px;
        border: 3px solid #fff;
        width: 240px;
    }

    .contact .contact-text {
        padding-left: 7px;
    }
}


.why-us {
    position: relative;
    width: 100%;
    padding: 130px 0px 130px 0px;
    /*margin-bottom: 130px;*/
    background: #fff;
}

.img-border {
    position: relative;
}

.img-border .img-border-inner {
    overflow: hidden;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    position: relative;
    z-index: 9;
}

.img-border--blue::after,
.img-border--yellow::after {
    top: 33px;
    left: -33px;
    bottom: -33px;
}

.img-border:after {
    content: '';
    width: 100%;
    position: absolute;
    border: 4px solid #e2b462;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.p-l-70 {
    padding-left: 70px;
}

.why-us-icon {
    float: left;
    margin-right: 15px;
    margin-top: 6px;
}

.socialmedia {
    position: relative;
    width: 100%;
    padding: 106px 0 70px 0;
    background-image: linear-gradient(rgb(0 0 0 / 50%), rgb(0 0 0 / 77%)), url(../img/slider/carousel-7.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.img-services {
    margin-left: -13px;
    border: 3px solid #fff;
}

.svg {
    z-index: 3 !important;
}
.top-bar{
    background-color: #121b3b;
}



.bg-top-header {
    padding: 10px 0;
}
.header-info-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.header-lang a {
    margin-left: 10px;
}
.mlanguage {
    width: 37px;
    cursor: pointer;
}