
@font-face {
    font-family: 'Poppins', sans-serif;
    src: url("assets/font/Poppins-Regular.ttf");
}

*{
    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 80px;
    margin: auto;
    width: 100%;
}
.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;
}
#carousel-p{
    padding: 0;
}
section .title{
    position: relative;
    text-align: center;
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 60px;
    padding-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    color: #212121;
}
section .title::before{
    content: "";
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 25%;
    height: 1px;
    background: #eee;
    transform: translateX(-50%);
}
section .title::after{
    position: absolute;
    bottom: -8px;
    left: 50%;
    font-size: 17px;
    color: #092655;
    padding: 0 5px;
    background: #fff;
    transform: translateX(-50%);
}
.icon-p{
    position: absolute;
    bottom: -50px;
    right: 0;
    width: 250px;
    height: 200px;
    display: flex;
    align-items: center;
    animation: float-u 6s ease-in-out infinite;
}
@keyframes float-u {
    0% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px)
    }
    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px)
    }
    100% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px)
    }
}

/* navbar styling */
.navbar{
    position: fixed!important;
    width: 100%;
    z-index: 999;
    padding: 0;
    font-family: 'Ubuntu', sans-serif;
    background: #fff;
    transition: all 0.3s ease;
    box-shadow: 0px 15px 10px -15px rgb(0 0 0 / 20%);
    padding: 0!important;
}
.navbar.sticky{
    background: #fffe;
}
.navbar .max-width{
    display: grid;
    align-items: center;
    justify-content: space-between;
    grid-template-columns: 20% 50% 30%;
    padding: 0;
}
.navbar .logo a{
    color: #fff;
    font-size: 35px;
    font-weight: 600;
}
.navbar .logo a span{
    color: #092655;
    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: 18px;
    font-weight: 500;
    margin-left: 25px;
    transition: color 0.3s ease;
}
.navbar .menu li a:hover{
    color: #092655;
}
.navbar.sticky .menu li a:hover{
    color: #fff;
}
.navbar .logo img {
    width: 100px;
    object-fit: contain;
}

.legend{
    text-align: center;
}
.legend p{
    font-family: 'Poppins', sans-serif;
    font-size: 1.1em;
    font-weight: normal;
    letter-spacing: 0;
    color: #212121;
}
.call-to-action{
    width: 100%;
    height: 100%;
    background-color: #092655;
    display: flex;
    align-items: center;
}
.call-to-action ol{
    display: grid;
    grid-template-columns: 30% 70%;
    position: relative;
    list-style: none;
}
.call-to-action ol>li{
    color: #fff;
    display: flex;
    justify-content: start;
    align-items: center;
}
.call-to-action ol>li>img{
    width: 100%;
    padding: 10%;
}

.call-to-action ol>li>h3{
    font-size: 2.2em;
    font-weight: bold;
}
.call-to-action ol>li>h3>small{
    color: #efb404;
    font-size: 0.7em;
}
.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;
}
.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: 20px;
    width: 0;
    height: 40px;
    border-radius: 15px;
    margin: 10px
    0 10px 10px;
    padding: 5px 0;
    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;
}
.button-whatsapp-ative
    h2 {
    background-color: #28a745;
    color: #fff;
    font-size: 20px;
    width: 180px;
    height: 40px;
    border-radius: 50px;
    margin: 10px
    0 10px 10px;
    padding: 5px 0;
    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;
}
.banner-center{
    background: #092655;
    position: relative;
    padding: 50px 0;
}
.banner-center:nth-child(2n){background: #fff;}
.banner-center:nth-child(2n) .fondo-0{

background: none;
}
.banner-center:nth-child(2n) h2{

color: #111;

font-size: 2.8em;
}

.banner-center:nth-child(2n) h2::before {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 8%;
    height: 5px;
    background: crimson;
    transform: translateX(-50%);
    border-radius: 10px;
}
.about{
    padding-top: 50px;
}
.banner-center h2 {
    font-family: 'Ubuntu',sans-serif;
    font-size: 2.5em;
    margin: 0% 0;
    color: #fff;
    position: relative;
    text-align: center;
}

/* menu btn styling */
.menu-btn{
    color: #111;
    font-size: 23px;
    cursor: pointer;
    display: none;
}
.scroll-up-btn{
    position: fixed;
    height: 45px;
    width: 42px;
    background: #092655;
    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%);
}
.fondo-0 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 0;
    left: 0;
    right: 0;
    background: rgb(0 0 0 / 42%)
}
.fondo-01 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 0;
    left: 0;
    right: 0;
    /* background: rgb(0 0 0 / 42%); */
    /* background: linear-gradient(to top, #ffffff00,#11111100,#1111119e,#000000); */
}
.home-content{
    width: 60%;
    padding-right: 10em;
    padding-left: 2em;
}
.container-img{
    width: 40%;
}
    

/* home section styling */
.home{
    display: flex;
   /* background: url("images/banner-03.webp") no-repeat center;*/
    height: 100vh;
    color: #fff;
    min-height: 500px;
    background-size: cover;
    font-family: 'Ubuntu', sans-serif;
    position: relative;
}
.second{
    background: url("images/fondo-d.jpg") no-repeat center;
    background-size: cover;
}
.second .max-width{
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
}
.second .max-width .container-img img{
    width: 100%;
    object-fit: contain;
    height: 100%;
}
.three{
    background: url("images/banner-01.webp") no-repeat center;
    background-size: cover;
}
.home .max-width{
    width: 100%;
    display: flex;
    position: relative;
    z-index: 0;
    padding: 0;
}
.home .max-width .row{
  margin-right: 0;
}
.home .home-content .text-1{
    font-size: 1em;
}
.home .home-content .text-2{
    font-size: 3em;
    font-weight: 600;
    margin-left: -3px;
    /* font-weight: 900; */
    letter-spacing: -1px;
    text-transform: uppercase;
    line-height: 1.2;
    color: #eeeeeecf;
}
.home .home-content .text-2 span{ /* Will override color (regardless of order) */position: relative;opacity: 1;color: #fff;text-transform: uppercase;font-size: 50px;}

.home .home-content .text-2 span::after{
    content: '';
    width: 100%;
    height: 100%;
    background-color: none;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    border-radius: 10px;
    transform: perspective(100px) rotateX(10deg) rotateY(0) rotateZ(0deg);
}

.home .home-content .text-3{
    font-size: 1.95em;
    margin: 10px 0;
    text-transform: uppercase;
    font-weight: bold;
}
.home .home-content .text-3 small{
    font-weight: normal;
    font-size: 0.7em;
    color: #999;
    text-transform: none;
    display: flex;
    grid-gap: 10px;
    align-items: center;
}
.home .home-content .text-3 small>div{
background: #e90a0a;
color: #fff;
font-weight: normal;
padding: 1% 3%;
border-radius: 10px;
}

.home .home-content .text-3 i{
    color: #efb404;
}
.home .home-content .text-3 span{
    color: #092655;
    font-weight: 500;
}
.home .home-content a{
    display: inline-block;
    background: #092655;
    color: #fff;
    font-size: 25px;
    padding: 12px 36px;
    margin-top: 20px;
    font-weight: 400;
    border-radius: 6px;
    border: crimson;
    transition: all 0.3s ease;
}
.home .home-content a:hover{
    color: #fff;
    background: #092655;
    border-color: #092655;
}

/* about section styling */
.about .title::after{
    content: "Lo mejor para tu vehículo";
}
.about .about-content .left{
    position: relative;
    width: 45%;
    text-align: end;
}
.about .about-content .left img{
    height: 450px;
    width: 450px;
    object-fit: cover;
    border-radius: 5px;
}
.about .about-content .right{
    position: relative;
    width: 55%;
    padding: 0 10% 0 5%;
}
.about .about-content .right .text{
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
}
.about .about-content .right .text span{
    color: #092655;
}
.about .about-content .right p{
    text-align: center;
    font-size: 1em;
}
.about .about-content .right a{
    display: inline-block;
    background: #092655;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 30px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid #092655;
    transition: all 0.3s ease;
}
.about .about-content .right a:hover{
    color: #092655;
    background: none;
}
.about .about-content .right ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    list-style: none;
    grid-gap: 20px;
    width: 100%;
    padding: 0;
    height: 100%;
    margin: 0 auto
}
.about .about-content .right ul>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
}
.about .about-content .right ul>li:hover {
    border: 2px solid #092655;
    transform: scale(1.03);
    transition: 0.2s;
    box-shadow: 0 0.15rem 1.75rem 0 rgb(31 45 65 / 20%)
}
.about .about-content .right ul>li>img {
    width: 60%
}
/* services section styling */
.services, .teams {
    position: relative;
    color: #fff;
    background: #092655;
    z-index: 0;
}
.services .title{
    color: #fff;
}
.services .title::before,
.teams .title::before{
    background: #fff;
}
.services .title::after{
       background: #999;
    content: "";
}
.teams .title::after{
    background: #111;
    content: "";
}
.services .serv-content .card {
    width: calc(25% - 20px);
    background: #fff;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 225px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 0.15rem 1.75rem 0 rgb(31 45 65 / 20%);
    z-index: 0;
}
.services .serv-content .card:hover{
    background: #111;
}
.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: #092655;
    transition: color 0.3s ease;
}
.services .serv-content .card:hover i{
    color: #fff;
}
.services .serv-content .card .text {
    font-size: 1.3em;
    font-weight: normal;
    margin: 20px 0 10px 0;
    color: #111;
}
.services .serv-content .card:hover .text{
    color: #fff;
}
/* skills section styling */

.skills .title::after{
    content: "Calidad y eficiencia";
}
.skills .new-products {
    width: 100%;
    text-align: center;
    position: relative;
}
.skills .new-products ul {
    margin: 0;
    padding: 0 5%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    grid-gap: 25px;
    position: relative;
}
.skills .new-products ul>li {
    list-style: none;
    width: 100%;
    padding: 25% 20%;
    background: #eee;
    border-radius: 5px;
    position: relative;
    transition: 0.3s;
    cursor: pointer;
}
.skills .new-products ul>li>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.skills .new-products ul>li>button {
    text-decoration: none;
    outline: none;
    padding: 4% 0;
    border: 1px
    solid #ddd;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0
    auto;
    bottom: 0;
    background: crimson;
    color: #fff;
    width: 100%;
    font-size: 1em;
    letter-spacing: 0.5px;
    font-weight: bold;
}
/* teams section styling */
.teams{
    width: 100%;
    position: relative;
    background-image: url(./images/banner-04.webp);
    background-size: cover;
    padding: 80px 0;
    background-position: center;
}
.teams .title{
    color: #fff;
}
.teams .title::after{
    content: "";
    color: #eee;
}
.teams .carousel .card{
    background: #0000;
    border-radius: 6px;
    padding: 25px 35px;
    text-align: center;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid #333;
}
.teams .carousel .card:hover{
    background: #09265587;
}
.teams .carousel .card .box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.teams .carousel .card:hover .box{
    transform: scale(1.05);
}
.teams .carousel .card .text{
    font-size: 1.2em;
    font-weight: 500;
    margin: 10px 0 10px 0;
}
.teams .carousel .card img{
    height: 200px;
    width: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #666;
    transition: all 0.3s ease;
    margin: 20px 0;
}
.teams .carousel .card:hover img{
    border-color: #fff;
}
.fondo-image {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgb(0 0 0 / 75%);
}
.owl-dots{
    text-align: center;
    margin-top: 20px;
}
.owl-dot{
    height: 13px;
    width: 13px;
    margin: 0 5px;
    outline: none!important;
    border-radius: 50%;
    border: 2px solid #092655!important;
    transition: all 0.3s ease;
}
.owl-dot.active{
    width: 35px;
    border-radius: 14px;
}
.owl-dot.active,
.owl-dot:hover{
    background: #092655!important;
}

.opacity {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0.90;
    left: 0;
}


/* contact section styling */
.contact {
    width: 100%;
    position: relative;
}
.contact .right{
        background: #fff;
    padding: 5%;
    box-shadow: 0 0.15rem 1.75rem 0 rgb(31 45 65 / 15%);
}
.contact-content{
    width: 100%;
    position: relative;
    z-index: 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;
}
.contact .contact-content .left p{
    text-align: justify;
    line-height: 1.6;
    font-size: 1.1em;
}
.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: #092655;
}
.contact .contact-content .info .head{
    font-weight: 500;
}
.contact .contact-content .info .sub-title{
    color: #333;
}
.contact .right form .fields{
    display: flex;
}
.contact .right form .field,
.contact .right form .fields .field{
    height: 45px;
    width: 100%;
    margin-bottom: 15px;
}
.contact .right form .textarea{
    height: 80px;
    width: 100%;
}
.contact .right form .name{
    margin-right: 10px;
}
.contact .right form .field input,
.contact .right form .textarea textarea{
    height: 100%;
    width: 100%;
    border: 1px solid lightgrey;
    border-radius: 6px;
    outline: none;
    padding: 0 15px;
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}
.contact .right form .field input:focus,
.contact .right form .textarea textarea:focus{
    border-color: #b3b3b3;
}
.contact .right form .textarea textarea{
  padding-top: 10px;
  resize: none;
}
.contact .right form .button-area{
  display: flex;
  align-items: center;
}
.right form .button-area button{
  color: #fff;
  display: block;
  width: 160px!important;
  height: 45px;
  outline: none;
  font-size: 18px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  flex-wrap: nowrap;
  background: #092655;
  border: 2px solid #092655;
  transition: all 0.3s ease;
}
.right form .button-area button:hover{
  color: #092655;
  background: none;
}
/* footer section styling */
footer{
    width: 100%;
    position: relative;
    background: #111;
    padding: 15px 23px;
    color: #ddd;
    text-align: center;
    font-size: 15px;
}
footer span a{
    color: crimson;
    text-decoration: none;
    outline: none;
}
.final {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    list-style: none;
    text-align: center;
    width: 100%;
    position: relative;
    color: #ddd;
}
.final li{
    cursor: pointer;
}
.final li>img {
    width: 150px;
    height: 55px;
    object-fit: contain;
}


/* responsive media query start */
@media (max-width: 1104px) {
    .about .about-content .left img{
        height: 350px;
        width: 350px;
    }
}

@media (max-width: 991px) {
    .max-width{
        padding: 0 50px;
    }
    .legend{
        display: none;
    }
    .navbar .max-width{
        grid-template-columns: 30% 55%;
        align-items: normal;
    }
    .call-to-action {
        background-color: #092655;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}
@media (max-width: 947px){
    .menu-btn{
        display: none;
        z-index: 999;
    }
    .menu-btn i.active:before{
        content: "\f00d";
    }
    .navbar .menu{
        position: fixed;
        height: 100vh;
        width: 100%;
        left: -100%;
        top: 0;
        background: #111;
        text-align: center;
        padding-top: 80px;
        transition: all 0.3s ease;
    }
    .navbar .menu.active{
        left: 0;
    }
    .navbar .menu li{
        display: block;
    }
    .navbar .menu li a{
        display: inline-block;
        margin: 20px 0;
        font-size: 25px;
    }
    .home .home-content .text-2{
        font-size: 2.5em;
    }
    .home .home-content .text-3{
        font-size: 1.2em;
    }
    .home .home-content a{
        font-size: 1.1em;
        padding: 10px 30px;
    }
    .banner-center h2
    {
        font-size: 1.7em!important;
    }
    .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%;
        padding: 0;
    }
    .services .serv-content .card{
        width: calc(50% - 10px);
        margin-bottom: 20px;
    }
    .skills .skills-content .column,
    .contact .contact-content .column{
        width: 100%;
        margin-bottom: 35px;
    }
    .about .about-content .left img {
        width: 100%;
        height: 100%;
    }
    section .title {
        font-size: 2em;
        margin-bottom: 40px;
    }
    .about .title::after{
        width: 100%;
    }
    .skills .title::after {
        width: 100%;
    }
    .skills .new-products ul{
        padding: 0;
        grid-template-columns: repeat(2, 1fr);
    }
    .skills .new-products ul>li {
        padding: 30% 5%;
    }
    .final{
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
    }
    .call-to-action ol{
        grid-template-columns: repeat(1, 1fr);
    }
    .call-to-action ol>li{
        justify-content: center;
    }
    .call-to-action ol>li:first-child{
        display: none;
    }
    .call-to-action ol>li>h3{
        font-size: 1.5em;
    }
    section{
        padding: 55px 0;
    }
    .navbar .logo img {
        height: 75px;
    }
    .teams{
        background-image: none;
    }
    .home .max-width {
        z-index: 0;
        padding: 0 40px;
    }
    .icon-p {
        width: 200px;
        height: 150px;
        bottom: -35px;
        left: auto;
        right: 10%;
    }
    .fondo-01 {
         background: rgb(0 0 0 / 42%);
         background: linear-gradient(to top, #ffffff00,#1111118a,#111111d6,#000000);
    }
    .home .home-content .text-3 small{
        font-size: 0.8em;
        grid-gap: 5px;
    }
}

@media (max-width: 690px) {
    .home-content{
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    .container-img{
        width: 100%;
    }
    .home .max-width{
        margin: 30% auto auto;
    }
    .max-width{
        padding: 0 23px;
    }
    .home{
        background: url(images/b1-m.webp) no-repeat center;
        background-size: cover;
    }
    .second{
        background: url(images/fondo-m.jpg) no-repeat center;
        background-size: cover;
    }
    .second .max-width{
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
    }
    .second .max-width .container-img img{
        padding: 10%;
        width: 100%;
        height: 100%;
        margin: auto;
    }
    .three{
        background: url(images/b2-m.webp) no-repeat center;
        background-size: cover;
    }
    .home .home-content .text-2{
        font-size: 2.2em;
    }
    .home .home-content .text-3{
        font-size: 1.1em;
    }
    .home .home-content a{
        font-size: 1em;
    }
    .teams{
       /* background-image: url(./images/ban-mob.webp);*/
    }
    .contact {
        /*background-image: url(./images/contact-mob.webp);*/
    }

    .contact .right{
        margin-bottom: 0!important;
    }
    .contact .contact-content .left .icons {
        margin: 20px 0;
    }
    .contact .contact-content .row .info{
        margin-left: 15px;
    }
    .contact .contact-content .row i {
        font-size: 1.4em;
    }
    .contact .contact-content .left p {
        font-size: 1em;
        margin: 30px 0;
    }
    .contact .right form .name,
    .contact .right form .email{
        margin: 25px 0;
    }
    footer{
        font-size: 12px;
    }
}

@media (max-width: 500px) {
    .home .home-content .text-2{
        font-size: 2em;
    }
    .home .home-content .text-3{
        font-size: 1em;
    }
    .about .about-content .right .text,
    .skills .skills-content .left .text{
        font-size: 1.5em;
    }
    section .title {
        font-size: 1.5em;
    }
    .contact .right form .fields{
        flex-direction: column;
    }
    .contact .right form .name,
    .contact .right form .email{
        margin: 20px 0;
    }
    .right form .error-box{
       width: 150px;
    }
    .scroll-up-btn{
        right: 15px;
        bottom: 15px;
        height: 38px;
        width: 35px;
        font-size: 23px;
        line-height: 38px;
    }
    .final {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 10px;
    }
}

@media (max-width: 380px) {
    .home .home-content .text-2 {
        font-size: 1.5em;
    }
    .home .home-content .text-2 span {
        font-size: 1.5em;
    }
    .icon-p {
        width: 150px;
        height: 100px;
        bottom: 10px;
    }

}
