/*  import google fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}
html{
    scroll-behavior: smooth;
}

/* custom scroll bar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* all similar content styling codes */
section{
    padding: 100px 0;
}

.max-width{
    max-width: 1300px;
    padding: 0 60px;
    margin: auto;
}
.about, .services, .skills, .teams, .contact, footer{
    font-family: 'Poppins', sans-serif;
}
.about .about-content,
.services .serv-content,
.skills .skills-content,
.contact .contact-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.text-v{
    color: #111;
    position: relative;
    text-align: center;
    margin-bottom: 5%;
    font-size: 1.2em;
}
#read-more{
    cursor: pointer;
    text-decoration: none;
    outline: none;
    color: rgb(39, 65, 124);
    font-weight: bold;
    border: none;
    background: none;
    padding: 0 2%;
    font-size: 17px;
    margin: 0;
}
section .title{
    position: relative;
    text-align: center;
    font-size: 45px;
    font-weight: 800;
    margin-bottom: 60px;
    padding-bottom: 20px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}
section .title::before{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 70px;
    height: 4px;
    background: #541c31;
    transform: translateX(-50%);
    border-radius: 10px;
}
section .title::after{
    position: absolute;
    bottom: -8px;
    left: 50%;
    font-size: 20px;
    color: #ff6500;
    padding: 0 5px;
    background: #fff;
    transform: translateX(-50%);
}
.head-0{
    padding: 10px 100px;
    margin: 0;
    position: relative;
    width: 100%;
    top: 0;
    z-index: 2;
    background: #282828;
    display: flex;
}
.head-0 ul{
    display: flex;
    width: 50%;
    padding: 0;
    margin: 0;
    justify-content: flex-end;
}
.head-0 ul>li{
    position: relative;
    list-style: none;
    margin: auto 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.95em;
    cursor: pointer;
    color: #ddd;
}
.head-0 ul>li>i{
    color: #fff;
}

#about-0{
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
    width: 425px;
    height: 100%;
}
#about-0 img{
    width: 50%;
}
#about-0 li{
        position: relative;
    border: 2px solid #eee;
    width: 100%;
    text-align: center;
    background: #fff;
    border-radius: 5px;
    padding: 10%;
    box-shadow: 0 0.15rem 1.75rem 0 rgb(31 45 65 / 15%);
    transition: 0.2s;
}
/* navbar styling */
.navbar{
    position: fixed;
    width: 100%;
    z-index: 999;
    padding: 10px 0;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
    /*
    background: #ff6500e0;
    
    box-shadow: 0 5px 30px rgb(0 0 0 / 20%);
    */
}
.navbar.sticky{
    padding: 5px 0;
    background: #282828;
    top: 0;
    box-shadow: 0 5px 30px rgb(0 0 0 / 20%);
}
.navbar .max-width{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar .logo a{
    color: #fff;
    font-size: 35px;
    font-weight: 600;
}
.logo{
    width: 150px;
    height: 100px;
    object-fit: cover; 
}
.navbar .logo img{
    width: 150PX;
    height: 100px;
    object-fit: cover;
}
.navbar .logo::after{
    content: '';
    position: absolute;
    left: -5%;
    background: #fff;
    width: 35%;
    height: 100%;
    top: 0;
    z-index: -1;
    transform: skew(-50deg, 0deg);
    transition: all 0.3s ease;
}
.navbar.sticky .logo::after{
    transition: all 0.3s ease;
    transform: skew(0deg, 0deg)!important;
}
.navbar .logo a span{
    color: #ff6500;
    transition: all 0.3s ease;
}
.navbar.sticky .logo a span{
    color: #fff;
}
.navbar .menu li{
    list-style: none;
    display: inline-block;
}
.navbar .menu li a{
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: normal;
    margin: 0 7px;
    transition: color 0.3s ease;
    position: relative;
}
.cancel-i:before{
    font-family: "Font Awesome 5 Brands";
    content: "\f067"!important;
}   

.navbar .menu li>a>button{
    padding: 6% 0;
    color: #fff;
    background: #541c31;
    font-size: 17px;
    width: 185px;
    border: 1px solid #541c31;
    border-radius: 50px;
    cursor: pointer;
}
.navbar .menu li a:hover{
    color: #fff;
}
.navbar.sticky .menu li a:hover{
    color: #fff;
}

.pulsingButton {
    text-align: center;
    white-space: nowrap;
    display: block;
    box-shadow: 0 0 0 0 rgb(84 28 49);
    border-radius: 10px;
    background-color: #111;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-weight: normal;
    font-family: sans-serif;
    text-decoration: none !important;
    color: #ffffff;
    transition: all 300ms ease-in-out;
    margin: 0!important;
    width: 190px;
    letter-spacing: 0.5px;
}

/* Hover animated */
button.pulsingButton:hover {
      -webkit-animation: none;
      -moz-animation: none;
      -ms-animation: none;
      animation: none;
      color: #ffffff;
}

    /* Animation */
@-webkit-keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
}

@-moz-keyframes pulsing {
    to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
}

@-ms-keyframes pulsing {
    to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
}

@keyframes pulsing {
    to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
}

/*** DROPDOWN MENU ****/
        .dropdown-w-one{
            position: relative;
        }

        .dropdown-w-one div{
            position: absolute;
            width: 210px;
            top: 50px;
            padding: 0% 0% 0% 0%;
            margin: 0% 0% 0% 0%;
            background-color: #fff;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease 0s;
            transform: translateY(15px);
            border-radius: 3px 3px 3px 3px;
            box-shadow: 0 0 5px rgba(0,0,0,0.5);
        }
        .dropdown-w-one div:after{
            position: absolute;
            left: 17%;
            margin-left: -8px;
            top: -8px;
            height: 16px;
            width: 16px;
            background-color: #541c31;
            box-shadow: -2px -2px 2px 0 rgba(0,0,0,0.2);
            content: "\00a0";
            -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            transform: rotate(45deg);
            transition: 150ms ease color,150ms ease background-color;
            z-index: 0;
            border-radius: 100%;
        }

        .dropdown-w-one:hover div{
            opacity: 1;
            visibility: visible;
            padding: 0% 0% 0% 0%;
            transition: all 0.3s ease 0s;
            transform: translateY(0px);
        }

        .dropdown-w-one ul{
            display: block;
            margin: 0% 0% 0% 0%;
            padding: 5% 0%;
            width: 100%;
            background-color: #ffffffe3;
            border-radius: 5px;
            border: none;
        }

        .dropdown-w-one li{
            font-family: 'Roboto Condensed', sans-serif;
            width: 100%;
            padding: 5% 10%;
            margin: 0% 0% 0% 0%;
            color: #111;
            text-align: left;
            border-radius: 0px;
            cursor: pointer;
        }
        .dropdown-w-one .menu-btn i{
            transition: 0.3s;
            transform: rotate(0deg);
            font-size: 0.8em;
        }
        .dropdown-w-one .menu-btn:hover i{
            transition: 0.3s;
            transform: rotate(180deg);
        }

        .active-dropdown li:hover{
            color: #fff;
            background: #541c31;
        }
        .active-dropdown li{
                position: relative;
        }
        .active-dropdown li>i{
            position: absolute;
            right: 10%;
            color: #ddd;
            transition: 0.3s;
            transform: rotate(0deg);
        }
        .active-dropdown li:hover i{
            transition: 0.3s;
            transform: rotate(-90deg);
        }

        .active-dropdown{
            text-align: center;
        }

        .active-dropdown p{
            font-family: 'Roboto Condensed', sans-serif;
            font-size: 18px;
            font-weight: bold;
            letter-spacing: 1.5px;
            color: #333;
            width: fit-content;
            background-color: #0000;
            text-align: center;
            margin: auto;
            margin-bottom: 15px;
            padding: 0% 10%;
            border-radius: 5px;
            border: 1.5px solid #cfa54bab;
        }

/****WHATS ***/
.button-whatsapp{
        margin: 0;
        padding: 0;
        border:none;
        outline: none!important;
        position: fixed;
        z-index: 5;
        bottom: 50px;
        left: 20px;
        border-radius: 50px;
        display: flex;
        justify-content: flex-start;
        background-color: #0000;
        cursor: pointer;
    }

    .button-whatsapp p{
        width: 60px;
        height: 60px;
        margin: 0px;
        padding: 0px;
        display: flex;
        background-color: #28a745;
        border-radius: 50px;
    }

    .button-whatsapp p>i{
        margin: auto;
        font-size: 30px;
        color: #fff;
    }

    .button-whatsapp h2{
        background-color: #28a745;
        color: #fff;
        font-size: 19px;
        width: 0px;
        height: 40px;
        border-radius: 15px;
        margin: 10px 0px 10px 10px;
        padding: 5px 0px;
        visibility: hidden;
        opacity: 0;
        transition: 0.2s;
        transform: translateX(-30px);
        display: flex;
        font-weight: normal;
        align-items: center;
        align-self: center;
        align-content: center;
        justify-content: center;
        letter-spacing: 1px;
    }

    .button-whatsapp-ative h2{
        background-color: #28a745;
        color: #fff;
        font-size: 19px;
        width: 180px;
        height: 40px;
        border-radius: 50px;
        margin: 10px 0px 10px 10px;
        padding: 5px 0px;
        visibility: visible;
        opacity:1;
        transition: 0.2s;
        transform: translateX(0px);
        display: flex;
        font-weight: normal;
        align-items: center;
        align-self: center;
        align-content: center;
        justify-content: center;
        letter-spacing: 1px;
    }

.slide-1{
    background-image: url(../images/slide/LIDERESMEXICO.jpg);
}
.slide-2{
    background-image: url(../images/slide/CONVERTIMOS%20ARCHIVOS.jpg);
}
.slide-3{
    background-image: url(../images/slide/BURSA-03.jpg);
}
.slide-4{
    background-image: url(../images/slide/CONVERTIMOS%20ARCHIVOS.jpg);
}
.slide-5{
   background-image: url(../images/slide/BURSA-03.jpg);
}
.banner-m{
    background-image: url(../images/slide/LIDERESMEXICO.jpg);
}

.socios{
       box-shadow: 0 0.15rem 1.75rem 0 rgb(31 45 65 / 7%);
       padding: 2% 0;
}

/***sections ***/

.other-sections{
    height: 50vh!important;
    min-height: 300px!important;
    background-position: top!important;
    padding: 100px 0 0;
}
.other-sections h2 {
    font-size: 45px!important;
}
.other-sections h3 {
    font-weight: normal;
    margin-top: 5%;
    font-size: 1.5em;
    color: #fff;
    letter-spacing: 0;
    font-family: 'Roboto';
}
.other-sections h3>small{
    cursor: pointer;
}
.other-sections h3>small:hover{

}
.other-sections h3>i{
    font-size: 15px;
    color: #541c31;
}

/* menu btn styling */
.menu-btn{
    color: #fff;
    font-size: 23px;
    cursor: pointer;
    display: none;
}
.scroll-up-btn{
    position: fixed;
    height: 45px;
    width: 42px;
    background: #ff6500;
    right: 30px;
    bottom: 10px;
    text-align: center;
    line-height: 45px;
    color: #fff;
    z-index: 9999;
    font-size: 30px;
    border-radius: 6px;
    border-bottom-width: 2px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}
.scroll-up-btn.show{
    bottom: 30px;
    opacity: 1;
    pointer-events: auto;
}
.scroll-up-btn:hover{
    filter: brightness(90%);
}

.profile{
    width: 400px;
    height: 400px;
    border-radius: 100%;
    margin: 0 5%;
    position: relative;
}

.profile img{
    width: 400px;
    height: 400px;
    border-radius: 100%;
    object-fit: cover;
}
.profile::after{
    content: "";
    width: 50px;
    height: 50px;
    background: #ff6500;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 100%;
}
.fondo-0{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0;
    height: 100%;
    background: #000000;
    background: -webkit-linear-gradient(to bottom, #434343, #000000);
    background: linear-gradient(to left, #43434300,#111111b8,  #000000);

}
/* home section styling */
.home{
    display: flex;
    height: 100vh;
    background-size: cover!important;
    background-position: right;
    color: #fff;
    min-height: 500px;
    font-family: 'Ubuntu', sans-serif;
    position: relative;
    z-index: 1;

}

@keyframes zoomin {
    0% { transform: scale(1.5, 1.5) }
    50% { transform: scale(1, 1) }
    100% { transform: scale(1.5, 1.5) }
}

.medium{
    height: 100%!important;
    padding: 25px 0!important;
    min-height: 460px;
}
.medium .home-content .text-2{
    font-size: 60px!important;
        padding-right: 10%;
}
.medium .home-content .text-2 strong{
    color: #ff6500;
}
.medium .home-content a{
    color: #ff781f!important;
    border: 2px solid #ff6500!important;
}
.medium .home-content a:hover{
    background: #ff6500;
    color: #fff!important;
    border: 2px solid #ff6500;
    transition: all 0.3s ease;
}
.home-content{
    position: relative;
    font-family: 'Oswald', sans-serif;
    padding: 60px 0;
    line-height: 1.4;
    width: 75%;
}
.home .max-width{
  width: 100%;
  display: flex;
}
.home .max-width .row{
  margin-right: 0;
}
.home .home-content .text-1{
    font-size: 27px;
    color: #eee;
}
.home .home-content .text-2{
    font-size: 60px;
    font-weight: 600;
    margin-left: -3px;
    text-transform: uppercase;
    color: #fff;
}
.home .home-content .text-3{
    font-size: 30px;
    margin: 5px 0;
    color: #eee;
}
.home .home-content .text-3 span{
    color: #ff6500;
    font-weight: 500;
}
.home .home-content a{
    display: inline-block;
    font-size: 25px;
    padding: 12px 36px;
    margin-top: 20px;
    font-weight: 400;
    border-radius: 6px;
    color: #fffe;
    border: 2px solid #fffe;
    background: none;
    transition: all 0.3s ease;
}
.home .home-content a:hover{

    background: #541c31;
    color: #fff;
    border: 2px solid #541c31;
    transition: all 0.3s ease;
}
/*** BUTTON TO WHATS ***/
.active-c{
    bottom: 10%!important;
    transition: all 0.3s ease!important;
    display: block!important;
    opacity: 1!important;
    transform: translateY(15px)!important;
}
.button-to-whats{
    position: fixed;
    bottom: 5%;
    z-index: 100;
    right: 5%;
    width: 55px;
    height: 55px;
    background: #25D366;
    border-radius: 100%;
    transition: all 0.3s ease;
}
.button-to-whats button{
    width: 100%;
    height: 100%;
    border-radius: 100%;
    border: none;
    background: #0000;
    cursor: pointer;
}
.button-to-whats button>i{
    color: #fff;
    font-size: 2em;
}
.contact-to{
    position: fixed;
    width: 350px;
    height: 240px;
    right: 6%;
    background: #fff;
    bottom: 0;
    z-index: 99;
    border-radius: 10px;
    padding: 1%;
    overflow-y: hidden;
    transition: all 0.3s ease;
    display: none;
    opacity: 0;
    transform: translateY(0px);
    box-shadow: 0 0.15rem 1.75rem 0 rgb(31 45 65 / 50%);
}
.contact-to ul{
    width: 100%;
    list-style: none;
    /* padding: 5%; */
    /* height: 100%; */
    display: grid;
    grid-template-columns: 28% 68%;
    border-left: 5px solid #25d366;
    background: #fff;
    grid-gap: 10px;
    box-shadow: 0 0.15rem 1.75rem 0 rgb(31 45 65 / 15%);
    margin: 5% 0;
}
.contact-to ul>li{
    display: flex;
    align-items: center;
    cursor: pointer;
}
.contact-to ul>li>img{
    width: 100%;
    height: 100%;
    border-radius: 100%;
    padding: 10%;
}
.contact-to ul>li>h2{
    font-weight: normal;
    font-size: 1em;
}
/*** BOTONS TO CAROUSEL ******/
    .desc {

   }

   .hero-img{
        position: relative;
        width: 100%;
        height: 100vh;   
    }

   .hero-img img{
        width: 100%;
        height: 100vh;
        object-fit: cover;
        object-position: center;
   }


   .hero-img:before {
       background: rgba(0, 0, 0, 0.38);
       content: '';
       position: absolute;
       width: 100%;
       height: 100%;
       top: 0;
       left: 0;
   }

   .btn-gradient-bg {
       color: #fff;
       display: inline-block;
       padding: 11px 33px;
       background: linear-gradient(to right, #f05874 0%, #fc6a2a 100%);
       border-radius: 30px;
   }
   .delay-1 {
        animation-delay: .2s;
   }
   .delay-2 {
        animation-delay: .4s;
   }    
   .delay-3 {
        animation-delay: .6s;
   }    
   .delay-4 {
        animation-delay: .8s;
   }

   .slider-counter {
        z-index: 99;
        bottom: 5%;
        position: absolute;
        text-align: center;
        right: 5%;
        color: #eeeeee54;
        font-weight: normal;
        font-size: 1.1em;
   }
   @media (max-width: 767px){
       .slider-counter {
        font-weight: 600;
        bottom: 0;

       }
   }
   @media (max-width: 576px){
       .slider-counter {
        font-weight: 500;
        bottom: 0;

       }
   }

   .hero_carosel .owl-nav button.owl-prev,.hero_carosel .owl-nav button.owl-next{
      position: absolute;
      bottom: 50%;
      right: 50%;
      color: #000;
   }

   .hero_carosel .owl-nav button.owl-prev{
      left: 5%;
   }

   .hero_carosel .owl-nav button.owl-next{
      right: 5%;
   }

  .hero_carosel i.owl-direction {
       margin: 0 13px;
       font-size: 1.5em;
       padding: 0;
       color: #eeeeee54;
       transition: 0.3s;
   }

    .hero_carosel i.owl-direction:hover{
        color: #eee;
        transition: 0.3s;
    }

   .hero_carosel .owl-nav button.owl-next,.hero_carosel .owl-nav button.owl-prev{
       outline: 0;
       background: none;
       }

    .tag{
    }

    @keyframes fadeInUp{
        0%{
            opacity:0;
            transform:translate3d(0,100%,0)
        }to
        {
            opacity:1;
            transform:translateZ(0)
        }
    }
    .fadeInUp{
        animation-name:fadeInUp
    }
/* about section styling */
.about .title::after{
    content: "";
}
.about .about-content ul{
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px;
    width: 100%;
}
.about .about-content ul>li{
    list-style: none;
    background: #fff;
    box-shadow: 0 0.15rem 1.75rem 0 rgb(31 45 65 / 15%);
    position: relative;
    text-align: center;
}
.about .about-content ul>li>h2{
    color: #fff;
    background: #ff6500;
    font-size: 1.2em;
    position: relative;
    top: -1.5em;
    margin: 0;
    padding: 0 5%;
    font-weight: normal;
}
.about .about-content ul>li>p{
    padding: 0 5%;
    text-align: left;
    font-size: 1em;
}
.about .about-content ul>li>button {
    padding: 2% 10%;
    color: #ff6500;
    background: none;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    margin: 4% 0;
    border: 2px solid #ff6500;
    font-weight: bold;
}
.about .about-content ul>li>img{
    width: 100%;
    border-radius: .25rem;
}
.about .about-content ul>li>img:hover{
    transform: scale(1.0);
}
.about .about-content .left{
    width: 40%;
    position: relative;
    z-index: 2;
}
.icon-i{
    background: #51152c;
    color: #fff;
    position: absolute;
    right: -4%;
    top: 2%;
    padding: 1% 3.5%;
    border-radius: 20px 0px 2px 20px;
    font-size: 1em;
    box-shadow: 0 0.15rem 1.75rem 0 rgb(81 21 44 / 40%);
    display: flex;
    align-items: center;
    grid-gap: 12px;
}
.icon-i div{
    display: flex;
    flex-direction: column;
}
.icon-i div>small{
    font-size: 10px;
}
.icon-i i{
    margin: 0 5px;
}
.icon-i::before{
    position: absolute;
    content: '';
    right: 4%;
    width: 25px;
    height: 25px;
    background: #421526;
    bottom: -25%;
    transform: rotate(45deg);
    z-index: -1;
}
.bell{
  display:block;
    -webkit-animation: ring 4s .7s ease-in-out infinite;
  -webkit-transform-origin: 50% 4px;
  -moz-animation: ring 4s .7s ease-in-out infinite;
  -moz-transform-origin: 50% 4px;
  animation: ring 4s .7s ease-in-out infinite;
  transform-origin: 50% 4px;
}

@-webkit-keyframes ring {
  0% { -webkit-transform: rotateZ(0); }
  1% { -webkit-transform: rotateZ(30deg); }
  3% { -webkit-transform: rotateZ(-28deg); }
  5% { -webkit-transform: rotateZ(34deg); }
  7% { -webkit-transform: rotateZ(-32deg); }
  9% { -webkit-transform: rotateZ(30deg); }
  11% { -webkit-transform: rotateZ(-28deg); }
  13% { -webkit-transform: rotateZ(26deg); }
  15% { -webkit-transform: rotateZ(-24deg); }
  17% { -webkit-transform: rotateZ(22deg); }
  19% { -webkit-transform: rotateZ(-20deg); }
  21% { -webkit-transform: rotateZ(18deg); }
  23% { -webkit-transform: rotateZ(-16deg); }
  25% { -webkit-transform: rotateZ(14deg); }
  27% { -webkit-transform: rotateZ(-12deg); }
  29% { -webkit-transform: rotateZ(10deg); }
  31% { -webkit-transform: rotateZ(-8deg); }
  33% { -webkit-transform: rotateZ(6deg); }
  35% { -webkit-transform: rotateZ(-4deg); }
  37% { -webkit-transform: rotateZ(2deg); }
  39% { -webkit-transform: rotateZ(-1deg); }
  41% { -webkit-transform: rotateZ(1deg); }

  43% { -webkit-transform: rotateZ(0); }
  100% { -webkit-transform: rotateZ(0); }
}

@-moz-keyframes ring {
  0% { -moz-transform: rotate(0); }
  1% { -moz-transform: rotate(30deg); }
  3% { -moz-transform: rotate(-28deg); }
  5% { -moz-transform: rotate(34deg); }
  7% { -moz-transform: rotate(-32deg); }
  9% { -moz-transform: rotate(30deg); }
  11% { -moz-transform: rotate(-28deg); }
  13% { -moz-transform: rotate(26deg); }
  15% { -moz-transform: rotate(-24deg); }
  17% { -moz-transform: rotate(22deg); }
  19% { -moz-transform: rotate(-20deg); }
  21% { -moz-transform: rotate(18deg); }
  23% { -moz-transform: rotate(-16deg); }
  25% { -moz-transform: rotate(14deg); }
  27% { -moz-transform: rotate(-12deg); }
  29% { -moz-transform: rotate(10deg); }
  31% { -moz-transform: rotate(-8deg); }
  33% { -moz-transform: rotate(6deg); }
  35% { -moz-transform: rotate(-4deg); }
  37% { -moz-transform: rotate(2deg); }
  39% { -moz-transform: rotate(-1deg); }
  41% { -moz-transform: rotate(1deg); }

  43% { -moz-transform: rotate(0); }
  100% { -moz-transform: rotate(0); }
}

@keyframes ring {
  0% { transform: rotate(0); }
  1% { transform: rotate(30deg); }
  3% { transform: rotate(-28deg); }
  5% { transform: rotate(34deg); }
  7% { transform: rotate(-32deg); }
  9% { transform: rotate(30deg); }
  11% { transform: rotate(-28deg); }
  13% { transform: rotate(26deg); }
  15% { transform: rotate(-24deg); }
  17% { transform: rotate(22deg); }
  19% { transform: rotate(-20deg); }
  21% { transform: rotate(18deg); }
  23% { transform: rotate(-16deg); }
  25% { transform: rotate(14deg); }
  27% { transform: rotate(-12deg); }
  29% { transform: rotate(10deg); }
  31% { transform: rotate(-8deg); }
  33% { transform: rotate(6deg); }
  35% { transform: rotate(-4deg); }
  37% { transform: rotate(2deg); }
  39% { transform: rotate(-1deg); }
  41% { transform: rotate(1deg); }

  43% { transform: rotate(0); }
  100% { transform: rotate(0); }
}

.about .about-content .left img{
    height: 500px;
    width: 450px;
    object-fit: cover;
    object-position: left;
    border-radius: 5px;
    position: relative;
    margin: 0 auto;
}
.about .about-content .left::after{
    content: '';
    position: absolute;
    left: 2.5%;
    bottom: -4%;
    width: 350px;
    height: 350px;
    background: #00225a;
    z-index: -1;
    border-radius: 5px;
}
#left-none::after{
    content: '';
    position: absolute;
    left: -3.5%;
    bottom: -2.5%;
    width: 350px;
    height: 350px;
    background: #53152d;
    z-index: -1;
    border-radius: 5px;
}

.about .about-content .right{
    width: 55%;
}
.about .about-content .right .text{
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 20px;
}
.about .about-content .right .text span{
    color: #541c31;
}
.about .about-content .right p{
    text-align: left!important;
    margin: 2% 0;
}
.about .about-content .right p>img{
    width: 30%;
    background: #fff;
    padding: 2%;
    box-shadow: 0 0.15rem 1.75rem 0 rgb(31 45 65 / 15%);
    border-radius: 5px;
    object-fit: cover;
    height: 100%;
}
.about .about-content .right p>i{
    color: #541c31;
    font-size: 13px;
    margin: 0 1%;
}
.about .about-content .right a{
    display: flex;
    color: #111;
    font-size: 30px;
    font-weight: 500;
    padding: 0;
    margin-top: 20px;
    border-radius: 100%;
    border: 2px solid #ddd;
    transition: all 0.3s ease;
    width: 55px;
    height: 55px;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0 0.15rem 1.75rem 0 rgb(31 45 65 / 15%);
    position: relative;
}
.about .about-content .right a>i{
    transform: rotate(-45deg);
}
.about .about-content .right a::after{
    content: '(56) 1083 5906 ';
    position: absolute;
    right: -210px;
    width: 190px;
    font-size: 1.5rem;


}
.about .about-content .right a:hover{
    color: #4f152d;
    border: 2px solid #51152d;
    background: none;
}

/*** GALLERY REST ******/
.gallery-rest{
    width: 100%;
    margin: 0%;
    padding: 0%;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.gallery-rest div{
    width: 100%;
    margin: 0%;
    padding: 0%;
    position: relative;
    cursor: pointer;
}

.gallery-rest div>img{
    width: 100%;
    cursor: pointer;
}

.gallery-rest div>span{
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    background-color: #0000005e;
    transition: 0.3s;
    color: #ffffff94;
}

.gallery-rest div>span>p{
    font-family: 'Raleway', sans-serif;
    margin: auto;
    padding: 0% 10%;
    font-size: 30px;
    text-align: center;
    letter-spacing:0.5px;
    color: #fff;
}

.gallery-rest div>span:hover {
    background-color: #0000;
    transition: 0.3s;
    color: #fff;
}
.opacity{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #ffffffd1,#ffffffb8, #ffffffd9);
    left: 0;
}

/* services section styling */
.services, .teams{
    color: #111;
    background: url("../images/fond.jpg") no-repeat center;
    background-size: cover;
    background-position: center;
    position: relative;
}
.services .title::before,
.teams .title::before{
    background: #fff;
}
.services .title::after,
.teams .title::after{
    background: #111;
    content: "";
}
.menu-options{
    width: 100%;
    display: flex;

}
.menu-options .side-left{
    width: 40%;
}
.menu-options .side-left ul{
    display: grid;
    padding: 0;
    list-style: none;
    grid-template-columns: repeat(1, 1fr);
    width: 90%;
    height: 100%;
}
.menu-options .side-left ul>li{
    background: #fff;
    margin: 2% 0;
    display: flex;
    align-items: center;
    padding: 0 9%;
    color: #999;
    cursor: pointer;
    position: relative;
    border-left: 5px solid #fff;
    transition: 0.3s;
}
.menu-options .side-left ul>li:hover{
    transition: 0.3s;
    border-left: 5px solid #ff6500;
}

.menu-options .side-left ul>li::after{
    content: '';
    width: 30px;
    height: 30px;
    background: #fff;
    right: 3%;
    position: absolute;
    transform: rotate(45deg);
    top: 0;
    bottom: 0;
    margin: auto 0;
    transition: 0.3s;
}
.enable-options{
    color: #222!important;
    position: relative;
    border-left: 7px solid #ff6500!important;
    transition: 0.3s;
}
.enable-options::after{
    right: -3%!important;
    transition: 0.3s;
}
.menu-opc{
    display: none;
}
.enable-s{
    width: 100%!important;
    border-radius: 0!important;
    top: 0!important;
    height: 100%!important;
    margin: auto!important;
    bottom: 0!important;
}

.menu-options .side-left ul>li:hover:after{
    transition: 0.3s;
    right: -3%;
}
.menu-options .side-left ul>li>h3{
    text-transform: uppercase;
    font-size: 1.5em;
    letter-spacing: -1px;
}
.menu-options .side-right{
    width: 60%;
    position: relative;
}
.menu-options .side-right .elements img{
    width: 100%;
    height: 490px;
    object-fit: cover;
    object-position: bottom;
}
.menu-options .side-right .elements ul{
    position: relative;
    padding: 0;
    list-style: none;
    color: #fff;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
    padding-top: 5%;
    /* display: none; */
}
.menu-options .side-right .elements ul>li{
    color: #fff;
    border: 2px solid #fff;
    padding: 2.5% 5%;
    margin: 0 5%;
    text-align: center;
    cursor: pointer;
}


.menu-options .side-right .elements span{
    position: absolute;
    bottom: 15%;
    width: 75%;
    background: #000000c7;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 5%;
    border-radius: 5px;
}
.menu-options .side-right .elements span>h4{
    color: #fff;
    font-size: 2em;
    margin: 2% 0;
}
.menu-options .side-right .elements span>p{
    color: #fff;
    font-size: 17px;
    margin: 2% 0;
}
.menu-options .side-right .elements span>a{
    color: #fff;
    border: 2px solid #fff;
    padding: 2% 5%;
    margin: 0 0;
    cursor: pointer;
    margin: 0 2.5%;
    width: 35%;
}
.menu-options .side-right .elements span>a>i{
    margin-left: 10px;
}
.services .serv-content .card{
    width: calc(25% - 20px);
    background: #fff;
    color: #222;
    text-align: center;
    border-radius: 6px;
    padding: 50px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.services .serv-content .card img{
    width: 100%;
}
.services .serv-content .card:hover{
    background: #fff;
}
.services .serv-content .card .box{
    transition: all 0.3s ease;
}
.services .serv-content .card:hover .box{
    transform: scale(1.05);
}
.services .serv-content .card i{
    font-size: 50px;
    color: #666;
    transition: color 0.3s ease;
}
.services .serv-content .card:hover i{
    color: #00225a;
}
.services .serv-content .card .text{
    font-size: 25px;
    font-weight: 500;
    margin: 10px 0 7px 0;
}
.services .serv-content .card p{
    display: none;
}
/* skills section styling */

.skills .title::after{
    content: "";
}
.skills .skills-content .column{
    width: calc(50% - 30px);
}
.skills .skills-content .left .text{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.skills .skills-content .left p{
    text-align: justify;
}
.skills .skills-content .left a{
    display: inline-block;
    background: #ff6500;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 8px 16px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid #ff6500;
    transition: all 0.3s ease;
}
.skills .skills-content .left a:hover{
    color: #ff6500;
    background: none;
}
.skills .skills-content .right .bars{
    margin-bottom: 15px;
}
.skills .skills-content .right .info{
    display: flex;
    margin-bottom: 5px;
    align-items: center;
    justify-content: space-between;
}
.skills .skills-content .right span{
    font-weight: 500;
    font-size: 18px;
}
.skills .skills-content .right .line{
    height: 5px;
    width: 100%;
    background: lightgrey;
    position: relative;
}
.skills .skills-content .right .line::before{
    content: "";
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    background: #ff6500;
}
.skills-content .right .html::before{
    width: 90%;
}
.skills-content .right .css::before{
    width: 60%;
}
.skills-content .right .js::before{
    width: 80%;
}
.skills-content .right .php::before{
    width: 50%;
}
.skills-content .right .mysql::before{
    width: 70%;
}

/* teams section styling */
.init-i{
    text-align: center;
    margin: auto!important;
    transition: all 0.3s ease;
}
.init-i p{
    font-size: 14px;
    display: none;
}
.init-i:hover p{
    display: block;
    transition: all 0.3s ease;
}
.init-i:hover img{
    display: none!important;
    transition: all 0.3s ease;
}

.init-i img{

}

.teams .title::after{
    content: "";
}
.teams .carousel .card{
    position: relative;
    background: #fff;
    color: #222;
    border-radius: 6px;
    padding: 25px 35px;
    text-align: center;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 290px;
    align-items: center;
    align-content: center;
    align-self: center;
    display: flex;
    border: 2px solid #ddd;
}
.teams .carousel .card:hover{
    box-shadow: 0 0.15rem 1.75rem 0 rgb(31 45 65 / 15%);
}
.teams .carousel .card::before{
    content: '';
    position: absolute;
    width: 0%;
    height: 5px;
    background: #541c31;
    bottom: 0;
    left: 0;
    border-radius: 0px 0px 5px 5px;
    transition: 0.2s;
    margin: 0 auto;
    right: 0;
}
.teams .carousel .card:hover:before{
    transition: 0.2s;
    width: 100%;
}
.teams .carousel .card:hover{
    border: 1px solid #eee;
    transition: 0.2s;
    box-shadow: 0 0.15rem 1.75rem 0 rgb(31 45 65 / 15%);
}
.teams .carousel .card .box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin: auto 0;
    width: 100%;
}
.teams .carousel .card .box{
    padding: 0;
}
.teams .carousel .card:hover .box{
    transform: scale(1.05);
}
.teams .carousel .card .text{
    font-size: 18px;
    font-weight: 500;
    margin: 25px 0 10px 0;
}
.teams .carousel .card img{
    height: 90px;
    width: 90px;
    object-fit: contain;
    transition: all 0.3s ease;
}
.teams .carousel .card:hover img{
    border-color: #fff;
}
.owl-dots{
    text-align: center;
    margin-top: 20px;
    position: absolute;
    bottom: 10%;
    left: 0;
    right: 0;
}
.owl-dot{
    height: 13px;
    width: 13px;
    margin: 0 5px;
    outline: none!important;
    border-radius: 50%;
    border: 2px solid #eee!important;
    transition: all 0.3s ease;
}
.owl-dot.active{
    width: 35px;
    border-radius: 14px;
}
.owl-dot.active,
.owl-dot:hover{
    background: #eee!important;
}
#ajust-title::after{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 70px;
    height: 4px;
    background: #541c31;
    transform: translateX(-50%);
    border-radius: 10px;
}



/* contact section styling */
.contact{
    color: #111;
    background: #f5f5f6cc;
    position: relative;
}
.contact .contact-content{
    position: relative;
    z-index: 1;
}
.opacity-end {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0.82;
    left: 0;
}
.contact .title::after{
    content: "";
}
.contact .contact-content .column{
    width: calc(50% - 30px);
}
.contact .contact-content .text{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -1px;
    color: #541c31;
}
.contact .contact-content .left p{
    text-align: justify;
}
.contact .contact-content .left .icons{
    margin: 10px 0;
}
.contact .contact-content .row{
    display: flex;
    height: 65px;
    align-items: center;
}
.contact .contact-content .row .info{
    margin-left: 30px;
}
.contact .contact-content .row i{
    font-size: 25px;
    color: #541c31;
}
.contact .contact-content .info .head{
    font-weight: 500;
}
.contact .contact-content .info .sub-title{
    color: #333;
    cursor: pointer;
}
.right form .fields{
    display: flex;
    grid-gap: 17px;
}
.right form .field,
.right form .fields .field{
    height: 100%;
    width: 100%;
    margin-bottom: 15px;
    margin-top: 0;
}
.right form .textarea{
    height: 120px;
    width: 100%;
}
.contact .right form .name{
    margin-right: 10px;
}
.textarea textarea{
height: 90px!important;
}
.right form .field input,
.right form .textarea textarea{
    height: 45px;
    width: 100%;
    border: 1px solid lightgrey;
    border-radius: 6px;
    outline: none;
    padding: 0 15px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    margin: 1% 0;
}
.right form .field select{
    height: 45px;
    width: 100%;
    border: 1px solid lightgrey;
    border-radius: 6px;
    outline: none;
    padding: 0 15px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    margin: 1% 0;

}

.right form .field input:focus,
.right form .textarea textarea:focus{
    border-color: #b3b3b3;
}
.right form .textarea textarea{
  padding-top: 10px;
  resize: none;
}
.right form .button-area{
  display: flex;
  align-items: center;
}
.right form .button-area button{
  color: #111;
  display: block;
  width: 160px!important;
  height: 50px;
  outline: none;
  font-size: 20px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  flex-wrap: nowrap;
  background: none;
  border: 2px solid #111;
  transition: all 0.3s ease;
}
.right form .button-area button:hover{
  color: #092655;
  background: none;
}
#sha{
    background: #fff;
    padding: 6%;
    box-shadow: 0 0.15rem 1.75rem 0 rgb(31 45 65 / 15%);
}
.shadow-end{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    /* background-color: #000000de; */
    left: 0;
    z-index: 0;
    background: linear-gradient(to bottom, #0000003b,#000000cc, #000000);
}
/* footer section styling */
footer{
    padding: 30px 23px 5px;
    color: #fff;
    text-align: center;
    z-index: 5;
    background: url(../images/banner-2-1.jpg) no-repeat center;
    background-size: cover;
    background-position: center;
    position: relative;
}
footer span {
    font-size: 13px;
}
footer span a{
    color: crimson;
    text-decoration: none;
}
footer span a:hover{
    text-decoration: underline;
}
.end{
    display: flex;
    width: 100%;
    padding: 1% 0;
}
.end-col{
    width: 33.3%;

}
.end-col img{
    width: 180px;
    height: 130px;
    margin: 5% 0;
    object-fit: cover;
    border-radius: 10px;
}
.end-col h5{
    font-size: 1.5em;
    text-align: left;
    border-left: 4px solid #e9ae10;
    padding-left: 10px;
    margin: 5% 0;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 10%;
}
.end-col ul{
    padding: 0 10% 0 4%;
    width: 100%;
    margin: 0;
    text-align: left;
    list-style: none;
    padding-bottom: 5%;
}
.end-col ul>li{
    margin: 5% 0;
    position: relative;
    padding-left: 4%;
    font-size: 15px;
    color: #ddd;
    cursor: pointer;
}
.end-col ul>li>i{
    position: absolute;
    left: -5%;
    top: 10%;
    color: #e9ae10;
}
#boton-resp{

}
    .desktop{
        display: block;

    }
    .mobil{
        display: none;
    }


/* responsive media query start */
@media (max-width: 1440px) {
    .other-sections{
    min-height: 350px!important;
}
}
@media (max-width: 1104px) {
    .head-0 {
        padding: 10px 20px;
    }
    .about .about-content .left img{
        height: 350px;
        width: 350px;
    }
    .navbar .logo::after{
        width: 35%;
    }
    .navbar .menu li a {
        font-size: 14px;

    }
    .navbar .menu li>a>button{
        width: 150px;
        font-size: 14px;
    }

}

.menu-btn .active{
    color: #fff!important;
}

@media (max-width: 991px) {
    .max-width{
        padding: 0 50px;
    }
    .navbar .logo::after{
        width: 50%;
    }
    .about .about-content ul{
        grid-template-columns: repeat(2, 1fr);
    }
    .navbar .menu li a{
        color: #fff;
        width: 100%;
        position: relative;
    }
    .navbar .menu li a i{
        position: absolute;
        right: 5.5%;
        top: 5%;
        transition: all 0.3s ease;
        color: #fff;
    }
    .rotate-i{
        transition: all 0.3s ease;
        transform: rotate(180deg)!important;
    }

    .rotate-i-0{
        transition: all 0.3s ease;
        transform: rotate(180deg)!important;
    }


    .dropdown-w-one .menu-btn i {
        position: absolute;
        right: 7.5%;
    }
    .about .about-content .left img {
        height: 668px;
        width: 100%;
    }
    .about .about-content .left::after{
        display: none;
    }
    .pulsingButton{
        display: none;
    }
    .desktop{
        display: none;

    }
    .mobil{
        display: block;
    }
    .enabled-sub{
        display: block!important;
        transition: all 0.3s ease;
    }
    .submenu-m{
        transition: all 0.3s ease;
        display: none;
        position: relative;
        color: #fff;
    }
    .submenu-m ol{
        padding: 0;
        padding-left: 5%;
    }
    .submenu-m ol>li{
        font-size: 18px;
        margin: 3.5% 0;
    }
    .submenu-m ol>li>i{
        font-size: 17px;
        position: absolute;
        right: 5.5%;
        color: #fff;
    }
    .slide-1{
       background-image: url(../images/slide/mobil-01.jpg);
    }
    .slide-2{
        background-image: url(../images/slide/mobil-03.jpg);
    }
    .slide-3{
        background-image: url(../images/slide/mobil-02.jpg);
    }
    .slide-4{
      background-image: url(../images/slide/mobil-01.jpg);
    }
    .slide-5{
       background-image: url(../images/slide/mobil-03.jpg);
    }
    .banner-m{
        background-image: url(../images/slide/LIDERESMEXICO.jpg);
    }
    footer{
        background-image: url(../images/end.jpg);
    }
    .fondo-0{
        background: linear-gradient(to top, #43434300,#111111b8,  #000000);        
    }

}
@media (max-width: 947px){
    .add-title{
        margin-top: 5%;
        margin-bottom: auto;
    }
    .home-content{
        width: 100%;
    }
    .menu-btn{
        display: block;
        z-index: 999;
    }
    .dropdown-w-one .menu-btn i.active:before{
        content: "\f107";
    }
    .menu-btn i.active:before{
        content: "\f00d";
    }
    .navbar .menu{
        position: absolute;
        height: 100vh;
        width: 100%;
        left: -100%;
        top: -1px;
        background: #000e;
        text-align: left;
        padding-top: 60px;
        transition: all 0.3s ease;
        padding-left: 10%;
    }
    .head-0{
        padding: 0.8rem 1.5rem;
    }
    .navbar .menu.active{
        left: 0;
    }
    .navbar .menu li{
        display: block;
    }
    .navbar .menu li a{
        display: inline-block;
        margin: 15px 0;
        font-size: 25px;
    }
    .home .home-content .text-2{
        font-size: 70px;
    }
    .home .home-content .text-3{
        font-size: 35px;
    }
    .home .home-content a{
        font-size: 23px;
        padding: 10px 30px;
    }
    .max-width{
        max-width: 930px;
    }
    .about .about-content .column{
        width: 100%;
    }
    .about .about-content .left{
        display: flex;
        justify-content: center;
        margin: 0 auto 60px;
    }
    .about .about-content .right{
        flex: 100%;
    }
    .services .serv-content .card{
        width: calc(50% - 10px);
        margin-bottom: 20px;
    }
    .skills .skills-content .column,
    .contact .contact-content .column{
        width: 100%;
        margin-bottom: 35px;
    }
    .home{
        background-position: right;
    }
    .menu-options .side-left {
        width: 100%;
    }
    .menu-options .side-right {
        width: 100%;
    }
    .menu-options{
        flex-wrap: wrap;
    }
    .menu-options .side-left ul {
        width: 100%;
    }
    .menu-options .side-left ul>li::after{
        display: none;
    }
    .menu-options .side-left ul>li {
        width: 100%;
        height: 70px;
    }
    .teams .carousel .card{
        border: 2px solid #eee;
    }
    .medium .home-content .text-2 {
        font-size: 45px!important;
        padding-right: 15%;
    }
    .end-col{
        width: 100%;
    }
    .end{
        flex-wrap: wrap;
    }
    .end-col h5{
        margin: 2% 0;
        margin-bottom: 2%;
    }
    .end-col ul{
        padding-bottom: 2%;
    }
    .end-col img {
        width: 50%;
        margin: 0;
        height: 100%;
    }
    #ajust-call{
        background: #541c31;
        border-radius: 0;
        padding: 0;
        position: absolute;
        left: 0;
        top: 0;
        width: 40%;
        height: 100%;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #ajust-call i{
        margin: 0 5px;
    }
    .navbar{
        background: #fffe;
        padding: 0;
    }
    .navbar i{
        color: #111;
    }
    .navbar.sticky i{
        color: #fff;
    }
}

@media (max-width: 690px) {
    .max-width{
        padding: 0 23px;
    }
    .opacity{
        opacity: 0.96;
    }
    .home .home-content .text-2{
        font-size: 60px;
    }
    .home .home-content .text-3{
        font-size: 32px;
    }
    .home .home-content a{
        font-size: 20px;
    }
    .services .serv-content .card{
        width: 100%;
    }
    .about .about-content ul{
        grid-template-columns: repeat(1, 1fr);
    }
    .navbar .logo img {
        width: 125px;
    }
    .column{
        width: 50%!important;
    }
    .navbar .menu li a{
        font-size: 17px;
    }
    .navbar .sticky{
        padding: 0;
    }
}

@media (max-width: 500px) {
    section{
        padding: 70px 0;
    }
    .head-0 ul>li{
        margin: auto 15px;
    }
    .column{
        width: 100%!important;
    }
    .home .home-content .text-2{
        font-size: 30px;
    }
    .home .home-content .text-3{
        font-size: 27px;
    }
    .about .about-content .right .text,
    .skills .skills-content .left .text{
        font-size: 19px;
    }
    .contact .right form .fields{
        flex-direction: column;
    }
    .contact .right form .name,
    .contact .right form .email{
        margin: 0;
    }
    .services, .teams {
        background: url(../images/fond-m.jpg) no-repeat center;
    }
    .right form .error-box{
       width: 150px;
    }
    .scroll-up-btn{
        right: 15px;
        bottom: 15px;
        height: 38px;
        width: 35px;
        font-size: 23px;
        line-height: 38px;
    }
    .menu-options .side-left ul>li {
        height: 75px;
    }
    section .title{
        font-size: 35px;
    }
    .menu-options .side-right .elements span {
        width: 95%;
    }
    .menu-options .side-right .elements span>a {
        width: 45%;
    }
    .menu-options .side-right .elements ul>li {
        font-size: 14px;
    }
    .end{
        padding-top: 7%;
    }
    .end-col ul>li {
        font-size: 13px;
    }
    .end-col h5{
        font-size: 19px;
        margin-bottom: 7%;
    }
    .navbar .logo::after {
        width: 88%;
        transform: none;
    }
    .about .about-content .right p {
        text-align: justify!important;
        font-size: 15px;
    }
    .about .about-content .left img {
        height: 350px;
        width: 100%;
    }
    .about .about-content .left{
        margin: 0 auto 40px;
    }
    #sha{
        border-radius: 5px;
        padding: 5%;
    }
    .menu-options .side-left ul>li>h3 {
        font-size: 1.3em;
    }
    .contact .contact-content .text {
        padding-bottom: 15px;
        text-align: center;
    }
    .other-sections h2 {
        font-size: 35px!important;
    }
    .other-sections h3 {
        font-size: 1.2em;
    }
    .other-sections{
        min-height: 300px!important;
        height: 35vh!important;
    }
}   
@media (max-width: 360px) {
    .head-0 {
        padding: 0.8rem 0;
    }
}