/* CSS Index
-----------------------------------
1. Theme default css
2. header
3. slider
4. about
5. features
6. services
7. video
8. choose
9. brand
10. work-process
11. team
12. counter
13. cta
14. testimonial
15. blog
16. pagination
17. f-cta
18. pricing
19. contact
20. footer

*/
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&display=swap');

/* 1. Theme default css */
body {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: normal;
    color: #777;
    font-style: normal;
    line-height: 26px;
}
.text-black{
    color: #000;
}
.text-color{
background: #aff484;
font-weight: bold!important;
transition: all .2s ease;
}

.text-color:hover{
    color:  #000;
    background: var(--primary-color);
}

.img {
    max-width: 100%;
    transition: all 0.3s ease-out 0s;
}

.fix {
    overflow: hidden
}

a,
.button {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

a:focus,
.button:focus {
    text-decoration: none;
    outline: none;
}

a:focus,
a:hover {
    text-decoration: none;
}


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

a,
button {
    color: #20304F;
    outline: medium none;
}

a:hover {
    color: var(--primary-color);
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
    outline: none;
    box-shadow: none;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Space Grotesk', sans-serif;
    color: #000;
    margin-top: 0px;
    font-style: normal;
    text-transform: normal;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a {
    color: inherit;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 35px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 18px;
}

ul {
    margin: 0px;
    padding: 0px;
}

li {
    list-style: none
}

p {


    margin-bottom: 15px;
}

hr {
    border-bottom: 1px solid #eceff8;
    border-top: 0 none;
    margin: 30px 0;
    padding: 0;
}

label {
    color: #7e7e7e;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
}

*::-moz-selection {
    background: #d6b161;
    color: #fff;
    text-shadow: none;
}

::-moz-selection {
    background: var(--primary-color);
    color: #fff;
    text-shadow: none;
}

::selection {
    background: var(--primary-color);
    color: #000;
    text-shadow: none;
}

*::-moz-placeholder {
    color: #555555;
    font-size: 14px;
    opacity: 1;
}

*::placeholder {
    color: #555555;
    font-size: 14px;
    opacity: 1;
}

/*root Variables*/

:root {
    --primary-color: #86E54A;
    --primary-color-rgb: 134, 229, 74;
}

/* button style */

.btn {
    border-radius: 0 !important;
    color: #000;
    display: inline-block;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: 0;
    padding: 20px 30px;
    text-align: center;
    text-transform: unset;
    touch-action: manipulation;
    transition: all 0.3s ease 0s;
    vertical-align: middle;
    white-space: nowrap;
    position: relative;
    z-index: 1;
    border: 1px solid #D9D9D9;

    font-weight: 500;
}
.btn.primary{
    background-color: var(--primary-color);
     border: none;
}
.btn i {
    margin-left: 10px;
    font-size: 18px;
}

.btn::before {
    width: 40px;
    height: 40px;
    position: absolute;
    border-radius: 50%;
    content: "";
    background: var(--primary-color);
    top: 10PX;
    left: 10px;
    z-index: -1;
    transition: all 0.3s ease 0s;
    display: none;
}

.btn:hover {
    background: var(--primary-color);
    color: #000;
}

.btn:hover::before {
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 4px;
    content: "";
    background: var(--primary-color);
    top: 0;
    left: 0;
    z-index: -1;
}

.btn i {
    margin-left: -5px;
    opacity: 0;
    transition: all 0.3s ease-out 0s;
}

.btn:hover i,
.slider-btn .btn.ss-btn.active i {
    margin-left: 0px;
    margin-right: 5px;
    opacity: 1;
}

.slider-btn .btn {
    background: none;
    border: 1px solid;
}

.slider-btn .btn.ss-btn.active {
    background: none;
    color: #000000;
    border-color: var(--primary-color);
    background: var(--primary-color);
}
.btn-fill{
   
    color: #000000;
    border-color: var(--primary-color)!important;
    background: var(--primary-color)!important;
}



/* scrollUp */
#scrollUp {
    background: var(--primary-color);
    height: 45px;
    width: 45px;
    right: 50px;
    bottom: 77px;
    color: #000;
    font-size: 20px;
    text-align: center;

    font-size: 22px;
    line-height: 45px;
    transition: .3s;
}

#scrollUp:hover {
    background: var(--primary-color);
}

/* 2. header */
.header-area.header .menu-area {
    margin-top: -20px;
    z-index: 1;
    background: #FCF6F0;
    border-radius: 10px;
    padding-top: 20px;
}

.header-top {
    padding-top: 40px;
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 30px;
}

.menu-area {
    position: relative;
}

.main-menu {
    position: relative;
    z-index: 9;
}

.main-menu ul li {
    display: inline-block;
    margin-left: 40px;
    position: relative;
}

.main-menu ul li.active a {
    color: var(--primary-color);
}

.main-menu ul li a {
    display: block;
    color: #20304F;
    padding: 20px 0;
    font-weight: 700;
    position: relative;
    font-size: 14px;
}

.main-menu ul li a::after {
    content: "+";
    margin-left: 10px;
    color: var(--primary-color);
    display: none;
}

.main-menu ul li:last-child a::after,
.main-menu .has-sub ul li a::after {
    display: none;
}

.main-menu ul li:first-child {
    margin-left: 0;
}

.main-menu ul li:hover>a {
    color: #2969E6;
}

.main-menu ul li:hover>a::before {
    width: 100%;
}

.responsive {
    display: none;
}

#mobile-menu {
    display: block;
}

.slider-content {
    position: relative;
    z-index: 2;

}

.slider-btn {
    display: inline-block;
    position: relative;
}

.second-header {
    border: none;
    padding-bottom: 0;
    background: #20304Fc4;
    padding-top: 0;
    color: #fff;
    position: relative;
    z-index: 2;
}

.second-header a,
.second-header span {
    color: #fff;
}

.second-header a:hover {
    color: var(--primary-color);
}

.second-menu {
    position: relative;
    z-index: 9;
    padding: 20px 40px;
    background: #fff;
}

.second-menu .main-menu ul li {
    margin-left: 40px;
}

.second-menu .main-menu ul li:first-child {
    margin-left: 0;
}

.second-menu .main-menu ul li a::before {
    content: none;
}

.offcanvas-menu {
    position: fixed;
    right: 0;
    height: 100%;
    width: 300px;
    z-index: 999;
    background: #1b1b1b;
    top: 0;
    padding: 30px;
    transition: .5s;
    transform: translateX(100%);
}

.offcanvas-menu.active {
    transform: translateX(0)
}

.menu-close i {
    font-size: 18px;
    color: #fff;
    transition: .3s;
    cursor: pointer;
}

.menu-close:hover i {
    color: var(--primary-color);
}

.offcanvas-menu ul {
    margin-top: 30px;
}

.offcanvas-menu ul li {
    border-bottom: 1px solid #101c38;
}

.offcanvas-menu ul li a {
    color: #fff;
    font-size: 18px;
    text-transform: capitalize;
    padding: 6px 0;
    display: block;
}

.offcanvas-menu ul li:hover a {
    color: var(--primary-color);
}

.offcanvas-menu form {
    position: relative;
    margin-top: 30px;
}

.offcanvas-menu form input {
    width: 100%;
    background: none;
    border: 1px solid #2d3547;
    padding: 7px 10px;
    color: #fff;
}

.offcanvas-menu form button {
    position: absolute;
    border: none;
    right: 0;
    background: var(--primary-color);
    padding: 8px 14px;
    top: 0;
    cursor: pointer;
}

.offcanvas-menu form button i {
    color: #fff;
}

.offcanvas-overly {
    position: fixed;
    background: #000;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.offcanvas-overly.active {
    opacity: .5;
    visibility: visible;
}

.header-three {}

.header-three .second-header {
    background: none;
}

.header-three .menu-area::before {
    display: none;
}

.header-three .menu-area {
    margin-bottom: -168px;
    position: relative;
    z-index: 9;
    background: no-repeat;
}

.header-three .main-menu ul li a {
    color: #000;
}

.header-three .btn.ss-btn {
    float: right;
}
#contact-form{
    position: relative;
}
.contact-form .btn::before {
    display: none;
}

.contact-form.fcontact input,
.contact-form.fcontact textarea {
    background: no-repeat;
    border: none;
    border-bottom-color: currentcolor;
    border-bottom-style: none;
    border-bottom-width: medium;
    border-bottom: 1px solid #777;
    padding-left: 0;
}
/*Spinner Send Form*/
.msg-submit{
color: var(--primary-color);
}
.msg-error{
 color: red;   
}
.spinner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    background: rgba(255,255,255, .3);
    z-index: 200;
    top: 0;
  }
  
  .cube1, .cube2 {
    background-color: var(--primary-color);
    width: 10px;
    height: 10px;
    position: absolute;
    bottom: 48px;
    left: 160px;
    z-index: 22;
    -webkit-animation: sk-cubemove 1.8s infinite ease-in-out;
    animation: sk-cubemove 1.8s infinite ease-in-out;
  }
  
  .cube2 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
  }
  
  @-webkit-keyframes sk-cubemove {
    25% { -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5) }
    50% { -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg) }
    75% { -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5) }
    100% { -webkit-transform: rotate(-360deg) }
  }
  
  @keyframes sk-cubemove {
    25% { 
      transform: translateX(42px) rotate(-90deg) scale(0.5);
      -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
    } 50% { 
      transform: translateX(42px) translateY(42px) rotate(-179deg);
      -webkit-transform: translateX(42px) translateY(42px) rotate(-179deg);
    } 50.1% { 
      transform: translateX(42px) translateY(42px) rotate(-180deg);
      -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
    } 75% { 
      transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
      -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
    } 100% { 
      transform: rotate(-360deg);
      -webkit-transform: rotate(-360deg);
    }
  }

  /**/

/* breadcrumb */
.breadcrumb-area {
    background-size: cover;
    position: relative;
    min-height: 400px;
    background-repeat: no-repeat;
    background-color: #000;
}
.breadcrumb-product-serv{
    background:linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),url('../../img/bg/breadcrumb-bg.webp');
     background-size: cover;
}
.breadcrumb-nosotros{
    background:linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),url('../../img/bg/breadcrumb-bg-nosotros.webp');
     background-size: cover;
}
.breadcrumb-work{
    background:linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),url('../../img/bg/breadcrumb-bg-work.webp');
     background-size: cover;
}
.breadcrumb-contacto{
    background:linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),url('../../img/bg/breadcrumb-bg-contacto.webp');
     background-size: cover;
}
.breadcrumb-area hr {
    border-bottom: 2px solid var(--primary-color);
}

.breadcrumb-area::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background: #000;
    opacity: 0.5;
    display: none;
}

.breadcrumb-wrap {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: inline-block;
    -ms-flex-wrap: wrap;
    flex-wrap: unset;
    padding: 0;
    margin-bottom: 0;
    list-style: none;
    background-color: unset;
    border-radius: 0;
}

.breadcrumb li {
    display: inline-block;
}

.breadcrumb li a {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}

.breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: 15px;
    padding-left: 10px;
    color: #ddd;
    content: "|";
}

.breadcrumb-title h2 {
    font-size: 60px;
    line-height: 1;
    color: #fff;
    letter-spacing: 1px;
}

.breadcrumb-title p {
    margin-bottom: 0;
    color: #777;
    font-size: 16px;
}

.breadcrumb>.active {
    color: #fffc !important;
    font-weight: 500;
}

/* 3. slider */
.slider-bg{
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../../img/slider/slider-img-04.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center; 
}
.slider-bg {
    min-height: 970px !important;
    background-position: center bottom;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.slider-content>span {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 6px;
    display: block;
    margin-bottom: 20px;
}

.slider-content h2 {
    font-size: 80px;
    line-height: 1.2;
    margin-bottom: 40px;
    color: #fff;
    font-weight: 700;
}

.slider-content h2 span {
    color: var(--primary-color);
}

.slider-content h5 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 22px;
    line-height: 18px;
}

.slider-content p span {
    display: inline-block;
    height: 2px;
    width: 40px;
    background: var(--primary-color);
    margin-right: 20px;
    position: relative;
    top: -4px;
}

.slider-content p {
    color: #fff;
    font-size: 18px;
    margin-bottom: 0;
    width: 90%;
}

.p-relative {
    position: relative;
}

.s-slider-content h2 {
    margin-bottom: 10px;
}

.btn.ss-btn.active {
    background: #fff;
    color: var(--primary-color);
    box-shadow: none;
}

@keyframes movedelement {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }

    25% {
        -webkit-transform: translate(10px, 10px);
        transform: translate(10px, 10px);
    }

    50% {
        -webkit-transform: translate(5px, 5px);
        transform: translate(5px, 5px);
    }

    75% {
        -webkit-transform: translate(10px, -5px);
        transform: translate(10px, -5px);
    }

    to {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}

/* 4. about */

.about-p .work-with-us-img img {
    max-height: 360px;
    width: auto;
}

.about-box {
    padding: 0 20px;
}

.about-box ul li {
    display: inline flow-root list-item;
    text-align: right;
    padding: 0 15px 0 0;
    border-right: 2px solid var(--primary-color);
}

.about-box ul li:last-child {
    padding-right: 0;
    padding-left: 15px;
    border-right: none;
    text-align: left;
    margin-right: 15px;
}

.about-box ul li p {
    text-transform: uppercase;
}

.about-box ul li a {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.mission-box {
    position: relative;

    max-height: 300px;
    overflow: hidden;
    transition: all .3s ease;

}


@media(max-width:426px) {
    .mission-box {
        max-height: 500px;
    }

}

.mission-box img {
    width: 100%;
    object-fit: cover; /* Asegura que la imagen cubra el contenedor sin deformarse */

}
@media (max-width: 425px) {
    .mission-box img {
        height: 350px; /* Ajusta la altura deseada */
    }
}
.mission-box .text {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 50px;
    background: linear-gradient(135deg, #000000ea 0%, rgba(0, 0, 0, 0.00) 100%);
    top: 0;
    user-select: none;
}
@media(max-width:375px){
    .mission-box .text {
        padding: 10px;
    }
}
.mission-box .text .btn {
    padding: 0;
    color: #fff;
    border: none;
}

.mission-box .text .btn:hover {
    color: var(--primary-color);
    background: none;
}

.mission-box .text .title {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    text-align: center;
}

.mission-box .text .title h3 {
    color: #fff;
    margin-bottom: 15px;
}
.mission-box .text .title .fs-1 {
    font-size: 55px!important;
}
.mission-box .text .title p {
    color: #e6e0e0;
}

.service-box {
    position: relative;
    border-radius: 0px;
    padding: 70px 50px;
    overflow: hidden;
    max-height: fit-content;
    transition: all .3s ease;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

}
.service-box:hover {
    border-radius: 0px!important;
}

.service-box .service-content {
    z-index: 30;
}


.service-box .service-content .title h3 {
    color: #fff;
    margin-bottom: 20px;
}
.service-box .service-content ul{
    margin-bottom: 30px;
}
.service-box .service-content ul li{
    color: #fff;
}

@media(max-width:768px){
.service-box{
    padding: 60px 30px;
}
}
@media(max-width:425px){
    .service-box{
        padding: 60px 15px;
    }
    }
.venta-bg {
    background: linear-gradient(135deg, #000000f6 0%, rgba(0, 0, 0, 0.00) 100%), url('../../img/gallery/venta-de-equipamiento.webp') no-repeat center center;
    background-size: cover;
}
.soporte-bg {
    background: linear-gradient(135deg, #000000f6 0%, rgba(0, 0, 0, 0.00) 100%), url('../../img/gallery/soporte-tecnico.webp') no-repeat center center;
    background-size: cover;
}
.monitoreo-bg {
    background: linear-gradient(135deg, #000000f6 0%, rgba(0, 0, 0, 0.00) 100%), url('../../img/gallery/monitoreo.webp') no-repeat center center;
    background-size: cover;
}
.op-asist-bg{
    background: linear-gradient(135deg, #000000f6 0%, rgba(0, 0, 0, 0.00) 100%), url('../../img/gallery/operacion-asistida.webp') no-repeat center center;
    background-size: cover;
}
.help-desk-bg{
    background: linear-gradient(135deg, #000000f6 0%, rgba(0, 0, 0, 0.00) 100%), url('../../img/gallery/mesa-de-ayuda.webp') no-repeat center center;
    background-size: cover;
}
.special-serv-bg{
    background: linear-gradient(135deg, #000000f6 0%, rgba(0, 0, 0, 0.00) 100%), url('../../img/gallery/servicios-especiales.webp') no-repeat center center;
    background-size: cover;
}
.venta-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.service-box:hover {
    border-radius: 20px;
}

.mission-area{
    background: #FFF;
}

.bdr {}

.bdr .col-lg-4.col-md-12.col-sm-12 {
    border-right: 1px solid #D9D9D9;
}

.bdr .col-lg-4.col-md-12.col-sm-12:last-child {
    border-right: none;
}

.about-box h3,
.about-box span {
    font-size: 80px;
    font-weight: 700;
    -webkit-text-stroke: 1px black;
    -webkit-text-fill-color: transparent;
}

.about-box h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
}

.about-box p {
    margin-bottom: 0;
}

.arrow-btn {
    border: 1px solid #D9D9D9;
    color: #000;
    text-align: center;
    display: inline-block;
    margin-top: 50px;
    width: 60px;
    height: 60px;
    line-height: 55px;
    font-size: 18px;
}
.about-area{
    background: #fff;
}
.about-area .arrow-btn:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* 5. features */

.section-title h5 {
    color: #999;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 10px;
}

.section-title h5 div {
    display: inline-block;
    margin: 0 10px;
}

.section-title h2,
.section-title .h2 {
    font-size: 40px;
    padding-bottom: 0;
    margin-bottom: 0px !important;
    position: relative;
    font-weight: 700;
}

@media (max-width:1024px){
    .section-title .h2 {
        font-size: 30px;
    }
}
@media (max-width:768px){
    .section-title .h2 {
        font-size: 25px;
    }
}
.section-title h2::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    width: 60px;
    background: var(--primary-color);
    margin: auto;
    transition: .3s;
    display: none;
}

.section-title p {
    margin-top: 10px;
    width: 60%;
    display: inline-block;
}

section:hover .section-title h2::before {
    width: 100px;
}

/* 6. services */

.service-details2 .section-title h5 {
    color: var(--primary-color);
}

.service-details2 .section-title h2 {
    color: #fff;
}

.service-details2 .btn {
    border-color: #ffffff2e;
    color: #fff;
}

.service-details2 .btn:hover {
    color: #000;
}

,
{
-webkit-transition: .5s;
transition: .5s;
}

.animations-01 {
    position: absolute;
    left: 0;
    top: 240px;
    animation: alltuchtopdown 3s infinite;
    -webkit-animation: alltuchtopdown 3s infinite;
    animation-delay: 0s;
    -webkit-animation-delay: 1s;
}

.animations-02 {
    position: absolute;
    right: 0;
    bottom: 45%;
    animation: alltuchtopdown 5s infinite;
    -webkit-animation: alltuchtopdown 5s infinite;
    animation-delay: 0s;
    -webkit-animation-delay: 3s;
}

.animations-04 {
    position: absolute;
    left: 235px;
    bottom: 195px;
    animation: alltuchtopdown 3s infinite;
    -webkit-animation: alltuchtopdown 3s infinite;
    animation-delay: 0s;
    -webkit-animation-delay: 1s;
}

@keyframes alltuchtopdown {
    0% {
        -webkit-transform: rotateX(0deg) translateY(0px);
        -moz-transform: rotateX(0deg) translateY(0px);
        -ms-transform: rotateX(0deg) translateY(0px);
        -o-transform: rotateX(0deg) translateY(0px);
        transform: rotateX(0deg) translateY(0px);
    }

    50% {
        -webkit-transform: rotateX(0deg) translateY(-20px);
        -moz-transform: rotateX(0deg) translateY(-20px);
        -ms-transform: rotateX(0deg) translateY(-20px);
        -o-transform: rotateX(0deg) translateY(-20px);
        transform: rotateX(0deg) translateY(-20px);
    }

    100% {
        -webkit-transform: rotateX(0deg) translateY(0px);
        -moz-transform: rotateX(0deg) translateY(0px);
        -ms-transform: rotateX(0deg) translateY(0px);
        -o-transform: rotateX(0deg) translateY(0px);
        transform: rotateX(0deg) translateY(0px);
    }
}

@-webkit-keyframes alltuchtopdown {
    0% {
        -webkit-transform: rotateX(0deg) translateY(0px);
        -moz-transform: rotateX(0deg) translateY(0px);
        -ms-transform: rotateX(0deg) translateY(0px);
        -o-transform: rotateX(0deg) translateY(0px);
        transform: rotateX(0deg) translateY(0px);
    }

    50% {
        -webkit-transform: rotateX(0deg) translateY(-20px);
        -moz-transform: rotateX(0deg) translateY(-20px);
        -ms-transform: rotateX(0deg) translateY(-20px);
        -o-transform: rotateX(0deg) translateY(-20px);
        transform: rotateX(0deg) translateY(-20px);
    }

    100% {
        -webkit-transform: rotateX(0deg) translateY(0px);
        -moz-transform: rotateX(0deg) translateY(0px);
        -ms-transform: rotateX(0deg) translateY(0px);
        -o-transform: rotateX(0deg) translateY(0px);
        transform: rotateX(0deg) translateY(0px);
    }
}

/* steps area */

/* 7. video */

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

/* 8. choose */

.why-choose::before {
    background: #F8F8F8;
}

.why-choose .section-title {
    width: 70%;
}

.why-choose .section-title h2 {
    color: #20304F;
}

.why-choose .section-title h5 {
    color: #2969E6;
    border-left: 3px solid #2969E6;
    padding-left: 10px;
    margin-bottom: 15px;
}

.why-choose ul {
    margin-top: 30px;
    margin-bottom: 50px;
}

.why-choose li {
    margin-bottom: 15px;
    color: #20304F;
    font-size: 18px;
}

.why-choose li i {
    color: #2969E6;
    margin-right: 5px;
}

/* 9. brand */

/* work-process */

/* 10. work-process */

@keyframes alltuchtopdown {
    0% {
        -webkit-transform: rotateX(0deg) translateY(0px);
        -moz-transform: rotateX(0deg) translateY(0px);
        -ms-transform: rotateX(0deg) translateY(0px);
        -o-transform: rotateX(0deg) translateY(0px);
        transform: rotateX(0deg) translateY(0px);
    }

    50% {
        -webkit-transform: rotateX(0deg) translateY(-10px);
        -moz-transform: rotateX(0deg) translateY(-10px);
        -ms-transform: rotateX(0deg) translateY(-10px);
        -o-transform: rotateX(0deg) translateY(-10px);
        transform: rotateX(0deg) translateY(-10px);
    }

    100% {
        -webkit-transform: rotateX(0deg) translateY(0px);
        -moz-transform: rotateX(0deg) translateY(0px);
        -ms-transform: rotateX(0deg) translateY(0px);
        -o-transform: rotateX(0deg) translateY(0px);
        transform: rotateX(0deg) translateY(0px);
    }
}

@-webkit-keyframes alltuchtopdown {
    0% {
        -webkit-transform: rotateX(0deg) translateY(0px);
        -moz-transform: rotateX(0deg) translateY(0px);
        -ms-transform: rotateX(0deg) translateY(0px);
        -o-transform: rotateX(0deg) translateY(0px);
        transform: rotateX(0deg) translateY(0px);
    }

    50% {
        -webkit-transform: rotateX(0deg) translateY(-10px);
        -moz-transform: rotateX(0deg) translateY(-10px);
        -ms-transform: rotateX(0deg) translateY(-10px);
        -o-transform: rotateX(0deg) translateY(-10px);
        transform: rotateX(0deg) translateY(-10px);
    }

    100% {
        -webkit-transform: rotateX(0deg) translateY(0px);
        -moz-transform: rotateX(0deg) translateY(0px);
        -ms-transform: rotateX(0deg) translateY(0px);
        -o-transform: rotateX(0deg) translateY(0px);
        transform: rotateX(0deg) translateY(0px);
    }
}

/* 11. team */

.team-area .container {
    z-index: 1;
    position: relative;
}

.team-thumb {
    text-align: center;
    display: block;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.team-thumb img {
    display: inline-block !important;
}

.team-area .section-title h5 {
    color: #2969E6;
    display: inline-block;
    border-left: 3px solid #2969E6;
    border-right: 3px solid #2969E6;
    padding: 0 10px;
}

.single-team-content-single .section-title h5 {
    color: #20304F;
}

.single-team-content-single .section-title p {
    width: 100%;
}

.team-single-info li {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid #E6E6E6;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.team-single-info li .icon {
    width: 40px;
}

.team-single-info li:last-child {
    border: none;
}

.team-single-info li p {
    margin-bottom: 0;
}

/* 12. project */

/* 12. counter */

/* Classes */

/* 13. cta */
.work .slider-btn {
    display: inline-block;
    position: relative;
    width: 100%;
}

.work .animations-01 {
    left: 10%;
    top: 120px;
}

.work .animations-02 {
    right: 10%;
    top: 34%;
}

.work .animations-04 {
    width: 100%;
    text-align: center;
    left: 0;
}

.work .section-title h2 a {
    font-weight: 400;
}

.cta-bg {
    position: relative;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.cta-title h2 {
    padding-bottom: 0;
    font-size: 40px;
    color: #000;
}

.cta-title h3 {
    padding-bottom: 0;
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
}

.cta-title p {
    font-size: 15px;
}

.cta-title h2::before {
    content: none;
}

/* 14. intregrations */

.intregrations-area::before {
    content: "";
    height: 50%;
    width: 100%;
    left: 0;
    top: 0;

    position: absolute;
}

.intregrations-area h5 {
    color: #000;
}

/* 14. client */

/* 14. testimonial */

/* faq */
.faq-area .section-title h2 {
    color: #fff;
}

.faq-btn {
    font-size: 17px;
    font-weight: 700;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 20px 30px;
    width: 100%;
    text-align: left;
    padding-right: 75px;
    background: none;
    border-radius: 0;
}

.card .collapse.show {
    display: block;
}

.faq-btn.collapsed {
    background: no-repeat;
    color: #190a32;
}

.faq-wrap .card-header:first-child {
    border-radius: 0;
}

.faq-wrap .card-header {
    padding: 0;
    margin-bottom: 0;
    background-color: unset;
    border-bottom: none;
}

.faq-wrap .card-body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: unset;
    padding: 0px 30px 25px;
}

.faq-wrap .card-header h2 {
    font-size: unset;
}

.faq-wrap .card {
    border: none;
    border-radius: 0 !important;
    margin-bottom: 15px;
    border: 1px solid #000;
    overflow: hidden;
}

.faq-wrap .card:last-child {}

.faq-wrap .card-header h2 button::after {
    position: absolute;
    content: "\f068";
    top: 0;
    right: 0;
    font-size: 18px;
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    width: 61px;
    height: 61px;
    text-align: center;
    line-height: 60px;
    color: #000;
}

.faq-wrap .card-header h2 button.collapsed::after {
    content: "\f067";
    color: #00;
    box-shadow: none;
    font-size: 18px;
}

.faq-contact-info {
    background: var(--primary-color);
    color: #000;
    padding: 40px;
    font-weight: 500;
    text-align: center;
}

.faq-contact-info h4 {
    margin-bottom: 20px;
    font-weight: 700;
    color: #000;
    font-size: 20px;
}

.faq-contact-info li {
    display: flex;
    gap: 15px;
    margin: 15px 0;
}

.faq-contact-info li i {
    line-height: 26px;
}

.faq-contact-info li a {
    color: #000;
}

.faq-link {
    background: #000;
    padding: 40px;
    text-align: center;
}

.faq-link h4 {
    margin-bottom: 20px;
    font-weight: 700;
    color: #fff;
    font-size: 20px;
}

.faq-link li {
    display: list-item;
    margin-bottom: 15px;
}

.faq-link li:last-child {
    margin-bottom: 0;
}

.faq-link li a {
    color: #B9B9B9;
    position: relative;
}

.faq-link li a:hover {
    color: var(--primary-color);
}

.faq-link li a i {
    margin-left: -15px;
    transition: all 0.3s ease 0s;
    opacity: 0;
}

.faq-link li a:hover i {
    position: relative;
    margin-left: 0px;
    margin-right: 5px;
    opacity: 1;
}

/* 15. blog */


/* 18. pricing */

/* 19. contact */
.contact-bg2::before {
    content: '';
    width: 100%;
    position: absolute;
    height: 65%;
    background: #2969E6;
    z-index: -1;
    top: 0;
    left: 0;
}

.contact-bg2 .section-title h5 {
    color: #fff;
    display: inline-block;
    border-left: 3px solid #fff;
    border-right: 3px solid #fff;
    padding: 0 10px;
}

.contact-bg2 .section-title h2 {
    color: #fff;
}

.contact-bg02 {
    background: #fff;
    padding: 50px;
    box-shadow: 0px 30px 60px rgba(0, 0, 0, 0.06);
}

.contact-bg02 .contact-field label {
    display: block;
    font-size: 14px;
    text-transform: capitalize;
    color: #20304F;
    margin-bottom: 20px;
    cursor: unset;
}

.contact-bg02 h2 {
    font-size: 48px;
}

.contact-area {
    background-repeat: no-repeat;
    background-position: center center;
}

.contact-field label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    color: #20304F;
    margin-bottom: 20px;
    cursor: unset;
}

.contact-field {
    padding-right: 0;

}

.contact-field input {
    width: 100%;
    border: none;
    padding-left: 15px;
    transition: .3s;
    border-radius: 0;
    border: 1px solid #777;
    height: calc(3.0em + .75rem + 2px);

}

.contact-field.c-name::after {
    content: "\f007";
}

.contact-field::after {
    position: absolute;
    font-family: "Font Awesome 5 Pro";
    display: inline-block;
    font-size: 14px;
    text-align: center;
    right: 25px;
    color: var(--primary-color);
    bottom: 22px;
    display: none;
}

.contact-field.c-subject::after {
    content: "\f249";
}

.contact-field.c-message::after {
    content: "\f303";
    font-weight: 600;
    top: 20px;
    bottom: unset;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #9e9e9e;
}

.contact-field textarea {
    width: 100%;
    padding: 15px;
    transition: .3s;
    height: 115px;
    border: 1px solid #777;
}


.contact-bg {
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.contact-img {
    position: absolute;
    bottom: 0;
    right: 170px;
    z-index: -1;
}

.contact-bg3::before {
    background: #FCF6F0;
}

.contact-bg3 .section-title h5 {
    color: #000;
    border: none;
    padding: 0 10px;
}

.contact-bg3 .section-title h2 {
    color: #000;
}

.contact-bg3 .contact-bg02 .btn.ss-btn.active {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: #000000;
}

/* booking */

/* meal */

/* 20. footer */

.footer-top {
    position: relative;
}

.footer-top::before {
    position: absolute;
    width: 47%;
    background: #111;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
}

.footer-bg {
    color: #777;
    background-position: -180px center !important;
    background-size: cover;
}

.footer-link ul li i {
    color: var(--primary-color);
    margin-right: 5px;
}

.footer-link ul li a {
    color: #fffc;
    display: inline-block;
}

.footer-link ul li a::before {
    content: "+";
    margin-right: 8px;
    color: var(--primary-color);
    font-size: 18px;
    display: none;
}

.footer-link ul li a:hover {
    color: #fff;
}

.footer-link ul li {
    margin-bottom: 10px;
}

.footer-link ul li:last-child {
    margin-bottom: 0;
}

.footer-link2 ul li {
    margin-bottom: 30px;
}

.footer-link2 ul li a {
    font-size: 30px;
    font-weight: 700;
    color: #BEBEBE;
}

.footer-link2 ul li i {
    margin-left: -30px;
    opacity: 0;
    transition: all 0.3s ease 0s;
}

.footer-link2 ul li:hover i {
    margin-left: 0px;
    opacity: 1;
}
.f-info{
    position:relative;
}
.f-info img{
width: 50%;
max-width: 130px;
height: auto;
margin-bottom: 20px;
}

.f-info::before {
    width: 100px;
    height: 2px;
    background: var(--primary-color);
    content: "";
    top: -30px;
    left: 0;
    position: absolute;
}

.f-info p {
    margin-bottom: 30px;
}

.copyright-wrap {
    background: #000;
    color: #BEBEBE;
    font-size: 15px;
}

.copyright-wrap a {
    color: var(--primary-color);
}

.copyright-wrap a:hover {
    color: #BEBEBE;
}

.copyright-wrap .container {
    padding: 30px 0;
}

.copyright-wrap li {
    display: inline;
    padding-left: 15px;
    margin-left: 40px;
    position: relative;
}

.copyright-wrap li::before {
    background-color: #20304F;
    width: 8px;
    height: 8px;
    content: "";
    position: absolute;
    left: -4px;
    top: 5px;
    border-radius: 50px;
}

.copyright-wrap li a {
    color: #fff;
}

/* Fillter css */

.gallery-image {
    overflow: hidden;
    position: relative;
    margin: 0;
}

.gallery-image figcaption {
    width: 100%;
    padding: 30px 0 10px 0;
    position: relative;

}

.gallery-image figcaption span {
    position: absolute;
    top: -45px;
    padding: 10px;
    background: var(--primary-color);

}

.gallery-image::before {
    content: "\e035";
    font-family: "dripicons-v2" !important;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: #fff;
    transition: .3s;
    opacity: 0;
    z-index: 1;
    background: #1b1b1b;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    display: none;
}

.gallery-image:hover::before {
    top: 50%;
    opacity: 1;
}

.gallery-image::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: var(--primary-color);
    opacity: 0;
    transition: .3s;
    display: none;
}

.gallery-image:hover::after {

    opacity: .85;

}

.grid-item {
    margin: 15px;
}

.grid-item ul {
    color: #000;
}

.home-blog-active {
    margin-right: -450px;
    margin-left: -15px;
}
.home-blog-active .slick-dots {
    text-align: center;
    position: absolute;
    right: 340px;
    top: -57px;
}
.home-blog-active .slick-dots li {
    display: inline-block;
    margin: 0 5px;
}

.home-blog-active .slick-dots li button {
    text-indent: -99999px;
    border: none;
    padding: 0;
    margin-left: 10px;
    border-radius: 50px;
    z-index: 1;
    cursor: pointer;
    background: no-repeat;
    transition: .3s;
    position: relative;
}

.home-blog-active .slick-dots li.slick-active button {}

.home-blog-active .slick-dots li.slick-active button::before {
    background: #fff;
    opacity: 1;
    border: 1px solid #000;
    width: 15px;
    height: 15px;
    margin-top: -12px;
    margin-left: -2px;
}

.home-blog-active .slick-dots li.slick-active button::after {
    background: #000;
    opacity: 1;
    width: 5px;
    height: 5px;
    border-radius: 10px;
    content: "";
    position: absolute;
    left: -16px;
    top: -7px;
}

.home-blog-active .slick-dots li button::before {
    content: "";
    width: 10px;
    height: 10px;
    background: #dbdbdb;
    float: left;
    position: relative;
    margin-top: -9px;
    left: -19px;
    border-radius: 10px;
}


.home-blog-active .slick-arrow,
.home-blog-active2 .slick-arrow {
    position: absolute;
    top: -98px;
    transform: translateY(-50%);
    left: inherit;
    right: 80px;
    border: none;
    background: none;
    padding: 0;
    color: #f6fbff;
    z-index: 1;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    cursor: pointer;
    width: 60px;
    height: 60px;
    text-align: center;
    color: #000;
    box-shadow: none;
    font-size: 30px;
    border: 1px solid rgba(32, 48, 79, 0.20);
}

.home-blog-active .slick-prev {}

.home-blog-active .slick-arrow.slick-next,
.home-blog-active2 .slick-arrow.slick-next {
    right: 15px;
    left: auto;
}

.home-blog-active .slick-arrow:hover,
.home-blog-active2 .slick-arrow:hover {
    background: #2969E6;
    color: #fff;
}
.gallery-image figcaption h4 {
    font-weight: 500;
    font-size: 26px;
}

.gallery-image figcaption h4 i {
    margin-left: -30px;
    opacity: 0;
    transition: all 0.3s ease-out 0s;
    margin-right: 10px;
}

.gallery-image:hover figcaption h4 {
    text-decoration: underline;
}

.gallery-image:hover figcaption h4 i {
    margin-left: 0px;
    opacity: 1;
}

.gallery-image figcaption .span {
    color: #b68c5a;
    font-size: 14px;
    position: relative;
    padding-left: 40px;
    display: inline-block;
    margin-bottom: 0;
}

.gallery-image figcaption .span::before {
    content: "";
    width: 30px;
    position: absolute;
    height: 2px;
    background: #b68c5a;
    top: 50%;
    left: 0;
}

.gallery-image figcaption .span p {
    margin-bottom: 0;

}

.gallery-image figcaption .icon {
    position: absolute;
    right: 0;
    background: #3763eb;
    width: 45px;
    height: 45px;
    line-height: 45px;
    top: 0;
    color: #fff;
    text-align: center;
    font-size: 40px;
}

.gallery-image img {
    width: 100%;
    margin-bottom: 0;
}

/* 21. Menu Theme dropdown default css */

.main-menu .has-sub>ul {
    visibility: hidden;
    position: absolute;
    background-color: #ffff;
    min-width: 250px;
    z-index: 1;
    transition: all 0.1s ease-in-out;
    margin-top: 5px;
    /*border-top: 4px solid #2969E6;*/
    box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
    -webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
    opacity: 0;
}

.main-menu .has-sub li a {
    padding: 15px;

}

.main-menu .has-sub li {
    margin-left: 0 !important;
    float: left;
    border-bottom: 1px solid #ddd;
    width: 100%;
    text-align: left;

}

.main-menu .has-sub a:hover {}

.main-menu .has-sub:hover>ul {
    visibility: visible;
    margin-top: 0px;
    opacity: 1;
}

.main-menu .has-sub>ul>.has-sub>ul {
    display: none;
    position: absolute;
    background-color: #ffff;
    width: 250px;
    z-index: 1;
    padding: 0;
    margin-left: -255px;
    margin-top: 0;
    top: -3px;
}

.main-menu .has-sub>ul>.has-sub:hover>ul {
    display: block;
}

.main-menu .has-sub>ul>.has-sub>ul>.has-sub>ul {
    display: none;
    position: absolute;
    background-color: #ffff;
    width: 250px;
    z-index: 1;
    padding: 0;
    margin-left: 255px;
    margin-top: 0;
    top: -3px;
}

.main-menu .has-sub>ul>.has-sub>ul>.has-sub:hover>ul {
    display: block;
}

.main-menu .has-sub ul li a {
    color: #4f4f4f;
}

.main-menu .has-sub ul li a:hover {
    color: #777;
}

/* 23. mega menu */

/* 22. Theme sidebar widge css */

,
{
padding-bottom: 0;
}

.page #comments {
    float: left;
    width: 100%;
    margin-top: 50px;
}

#comments {
    float: left;
    width: 100%;
}

a,
h1,
h2,
h3,
h4,
h5,
p,
span {
    overflow-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5 {
    overflow-wrap: break-word;
}


li>ol,
li>ol {
    padding-left: 1.5em;
}

ol {
    padding-left: 15px;
}

/* Here's the new CSS to add... */


/* 24. call */


/* Shop */

.img,
img {
    max-width: 100%;
    transition: all 0.3s ease-out 0s;
}

/* Cart */

/*Checkout */

.card-header:first-child {
    border-radius: 0;
}

/* 24. Login */

/*Services Category*/


/*=== Services Contact Box ===*/

/*=== Brochures Box ===*/

/*Help Box*/


/*** 

====================================================================
		Service Detail
====================================================================

***/

/*** 

====================================================================
		Project Detail
====================================================================

***/


/* Lower Content */

/* Load More Option */

/* 8. newslater-area */

/* 8. search-popup */

/* 24. process-area */

/* 24. skills-area */

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

    100% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
}

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

    100% {
        -webkit-transform: rotate(144deg);
        transform: rotate(144deg);
    }
}

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

    100% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
}

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

    100% {
        -webkit-transform: rotate(36deg);
        transform: rotate(36deg);
    }
}

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

    100% {
        -webkit-transform: rotate(126deg);
        transform: rotate(126deg);
    }
}

/* 27. map-area */


.contact-area .container {
    position: relative;
    z-index: 1;
}

.contact-bg02 .slider-btn {
    width: 100%;
}

.contact-bg02 .slider-btn .btn:hover {
    color: #2969E6;
}

.contact-bg02 .btn.ss-btn.active {
    background: #2969E6;
    border: 2px solid #2969E6;
    color: #fff;
}

.contact-field select {
    width: 100%;
    border: none;
    background-color: rgb(255, 255, 255);
    transition: .3s;
    border-radius: 0;
    border: 1px solid rgb(183, 183, 183);
    height: calc(2.5em + .75rem + 2px);
}

.contact-bg-an-01 {
    position: absolute;
    left: 9.8%;
    top: 25%;
    animation: alltuchtopdown 3s infinite;
    -webkit-animation: alltuchtopdown 3s infinite;
    animation-delay: 0s;
    -webkit-animation-delay: 1s;
}


@keyframes alltuchtopdown {
    0% {
        -webkit-transform: rotateX(0deg) translateY(0px);
        -moz-transform: rotateX(0deg) translateY(0px);
        -ms-transform: rotateX(0deg) translateY(0px);
        -o-transform: rotateX(0deg) translateY(0px);
        transform: rotateX(0deg) translateY(0px);
    }

    50% {
        -webkit-transform: rotateX(0deg) translateY(-20px);
        -moz-transform: rotateX(0deg) translateY(-20px);
        -ms-transform: rotateX(0deg) translateY(-20px);
        -o-transform: rotateX(0deg) translateY(-20px);
        transform: rotateX(0deg) translateY(-20px);
    }

    100% {
        -webkit-transform: rotateX(0deg) translateY(0px);
        -moz-transform: rotateX(0deg) translateY(0px);
        -ms-transform: rotateX(0deg) translateY(0px);
        -o-transform: rotateX(0deg) translateY(0px);
        transform: rotateX(0deg) translateY(0px);
    }
}

@-webkit-keyframes alltuchtopdown {
    0% {
        -webkit-transform: rotateX(0deg) translateY(0px);
        -moz-transform: rotateX(0deg) translateY(0px);
        -ms-transform: rotateX(0deg) translateY(0px);
        -o-transform: rotateX(0deg) translateY(0px);
        transform: rotateX(0deg) translateY(0px);
    }

    50% {
        -webkit-transform: rotateX(0deg) translateY(-20px);
        -moz-transform: rotateX(0deg) translateY(-20px);
        -ms-transform: rotateX(0deg) translateY(-20px);
        -o-transform: rotateX(0deg) translateY(-20px);
        transform: rotateX(0deg) translateY(-20px);
    }

    100% {
        -webkit-transform: rotateX(0deg) translateY(0px);
        -moz-transform: rotateX(0deg) translateY(0px);
        -ms-transform: rotateX(0deg) translateY(0px);
        -o-transform: rotateX(0deg) translateY(0px);
        transform: rotateX(0deg) translateY(0px);
    }
}


/* Here's the new blog dtl to add... */

figcaption {
    font-weight: 600;
    color: #202020;

}

figure img {
    display: inline-block;
    margin-bottom: 15px;
}


.footer-widget select {
    width: 100%;
    padding: 3px 0;
    border: 2px solid #e4e4e4;
}


.footer-widget a {
    color: #99A3AC;
}


.footer-widget a:hover {}

/* 16. pagination */

/* 17. f-cta */

.s-cta-btn .btn {
    color: #000;
    margin-top: 10px;
    border: none;
    background: #fff;
}

/* --- blog new css ----*/


.footer-widget p {
    color: #fffc;
}

.logo {
    width: 110px;
    height: fit-content;
}
.logo img{
    width: 100%;
    height: auto;
}

.logo a {
    color: #fff;
}


@-webkit-keyframes no-transform {
    100% {
        transform: none;
    }
}

@keyframes no-transform {
    100% {
        transform: none;
    }
}