/*  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::-webkit-scrollbar {
    width: 1rem;
    background-color: transparent;
  }
  
  html::-webkit-scrollbar-track {
    background: transparent;
  }
 
  
  html::-webkit-scrollbar-thumb {
    background:  #0096EB;
    border-radius: 5rem;
  }
  html{
      scroll-behavior: smooth;
  }



  :root {
    --bg-color: #F0F0F0;
    --txt-color: #221E22;
    --yellow: #0096EB;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Rubik', sans-serif;
}

body,
html {
    position: relative;

    background-color: var(--bg-color);
}

.container-bg {
    height: 100vh;
    display: flex;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.imagemefect{
    width: 50%; 
    margin-left: 30%; 
    margin-bottom: 1%;
    transform: translateY(0px);
    animation: float 5s ease-in-out infinite;
  
  }
  
  @keyframes float {
    0%{
      transform: translateY(0px);
    }
    50%{
      transform: translateY(-30px);
    }
    100%{
      transform: translateY(0px);
    }
  }


[class*="col-"] {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    z-index: 2;
}

.popup-screen{
    z-index: 999999;
    position: fixed;
    background: rgba(255, 255, 255, 0.1);
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    transition: 0.5s ease;
    transition-property: visibility;
  }
  
  .popup-screen.active{
    visibility: visible;
  }
  
  .popup-box{
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    max-width: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 20px;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
    transform: scale(0);
    transition: 0.5s ease;
    transition-property: transform;
  }
  
  .popup-screen.active .popup-box{
    transform: scale(1);
  }
  
  .popup-box h2{
    font-size: 2.1em;
    font-weight: 800;
    margin-bottom: 20px;
  }
  
  .popup-box p{
    font-size: 1em;
    margin-bottom: 30px;
  }
  
  .popup-box .btn{
    color: #fff;
    background: #0096EB;
    font-size: 1.1em;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    padding: 7px 27px;
    border-radius: 3px;
  }
.info {
    color: var(--bg-color);
    text-align: right;
    /* padding: 0 80px; */
    position: relative;
    display: flex;
    overflow: visible;
    width: 100%;
    height: 80%;
    /* justify-content: center; */
    align-items: center;
}

.logoimg{
    width: 17%;
    margin-left: 48.5%;
}
.info h1 {
    font-size: 95px;
    font-weight: 900;
    line-height: 85px;
    text-transform: uppercase;
    transition: .5s ease-in-out;
}

.info p {
    margin: 50px 0;
    text-align: justify;
}

.info button {
    font-size: 30px;
    padding: 10px 50px;
    border-radius: 30px;
    outline: transparent;
    border: 2px solid #fff;
    background-color: transparent;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: background-color .3s ease-in-out;
}

.info button:hover {
    background-color: #fff;
    color: #000;
}

.product-info {
    position: absolute;
    width: 100%;
    height: fit-content;
    /* top: 0; */
    left: 0;
    padding: 0 80px;
    pointer-events: none;
}

.product-info.active {
    pointer-events: visible;
}

.product-info h1,
.product-info>span,
.product-info p,
.product-info button {
    opacity: 0;
    transition: unset;
}

.product-info button {
    transition-delay: .2s;
}

.product-info.active h1,
.product-info.active>span,
.product-info.active p,
.product-info.active button {
    opacity: 1;
    transition: opacity 1s ease-in-out,
        transform 1.2s ease-in-out,
        letter-spacing 1.2s ease-in-out,
        right 1.2s ease-in-out;
}

.product-info h1 {
    text-align: left;
    letter-spacing: 20px;
}

.product-info.active h1 {
    letter-spacing: unset;
}

.product-info>span {
    position: absolute;
    right: 200px;
}

.product-info.active>span {
    right: 80px;
}

.product-info p,
.product-info button {
    transform: translateY(100px);
}

.product-info.active p,
.product-info.active button {
    transform: translateY(0);
}

/* .product-info.active {
    display: block;
} */

.imagemtorquetecentro{
    display: none;
}

.slider {
    display: flex;
    align-items: center;
    position: relative;
    width: 50%;
    height: 80%;
    overflow: visible;
    margin-top: 1.5%;
    margin-left: 1%;
}

.slide {
    position: absolute;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    transition: 1s ease-in-out;
    /* opacity: 0; */
    /* transform: translateY(100%); */
    animation: bottom-up 2s;
}

.slide:nth-child(1) {
    z-index: 4;
}

.slide:nth-child(2) {
    width: 80%;
    height: 80%;
    z-index: 2;
    left: 70%;
}

.slide:nth-child(3) {
    width: 60%;
    z-index: 1;
    left: 120%;
    height: 60%;
}

.slide:nth-child(4) {
    width: 60%;
    z-index: 0;
    left: 120%;
    height: 60%;
    transform: scale(0);
}



.img-holder {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
        rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.nav {
    z-index: 99;
    color: #fff;
    display: flex;
    position: fixed;
    width: 100%;
    height: 80px;
    background-color: #111;
    box-shadow: 0 0 1rem black; 
    justify-content: space-between;
    align-items: center;
    padding: 0 80px;
}
.buttonc {
    margin-top: 0.1rem;
    display: inline-block;
    padding: 1rem 3rem;
    font-size: 0.9rem;
    color:  #0096EB;
    border: 0.2rem solid  #0096EB;
    border-radius: 3rem;
    cursor: pointer;
    background: none;
  }
  
  .buttonc:hover {
    background:  #0096EB;
    color: #111;
  }
  .buttoncH {
 display: none;
  }
  


.logo {
    font-size: 20px;
    font-weight: 900;
    cursor: pointer;
    opacity: 0;
    transform: translateY(-100%);
    animation: top-down 1.5s forwards;
}


.menu {
    height: 30px;
    width: 30px;
    cursor: pointer;
    z-index: 101;
    position: relative;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateX(-100%);
    animation: left-to-right 1.5s forwards;
}

.cart {
    font-size: 30px;
    cursor: pointer;
    opacity: 0;
    transform: translateX(100%);
    animation: right-to-left 1.5s forwards;
}

.sci {
    z-index: 98;
    color: #fff;
    display: flex;
    position: fixed;
    right: 0;
    height: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0 20px;
    opacity: 0;
    transform: translateX(100%);
    animation: right-to-left 1.5s forwards;
}

.sci i {
    font-size: 20px;
    margin-bottom: 10px;
    cursor: pointer;
}

.sci i:hover {
    color: var(--yellow);
}



.copyright {
    z-index: 98;
    color: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 20px;
    font-size: 13px;
}

a {
    color: unset;
}

.slide-control {
    z-index: 98;
    color: #fff;
    position: relative;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #fff;
    cursor: pointer;
}

.slide-control:hover {
    background-color: #fff;
    color: #000;
}

.slide-control:hover i {
     animation: bounce-left 2s ease infinite; 
    color: #000;
}

.nav-overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 101;
    top: 80px;
    left: 0;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
    overflow-x: hidden;
    transition: 0.5s;
}

.nav-overlay.active {
    width: 100%;
}

.nav-overlay-content {
    position: relative;
    top: 25%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.nav-overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 36px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.nav-overlay a:hover,
.nav-overlay a:focus {
    color: #f1f1f1;
}

.nav-overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
}

.hamburger {
    position: relative;
    cursor: pointer;
}

.hamburger-btn {
    cursor: pointer;
    z-index: 1;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    width: 30px;
    height: 3px;
    border-radius: .5rem;
    background-color: white;
    transition: .4s;
}

.hamburger::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;

}

.hamburger::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
}

.hamburger.active {
    background-color: transparent;
}

.hamburger.active::before {
    transform-origin: top left;
    transform: rotate(45deg);
    left: 6px;
}

.hamburger.active::after {
    transform-origin: bottom left;
    transform: rotate(-45deg);
    left: 6px;
}

/* navbar styling */
.navbar{
    position: fixed;
    width: 100%;
    z-index: 999;
    padding: 30px 0;
    font-family: 'Ubuntu', sans-serif;
    transition: all 0.3s ease;
}
.navbar.sticky{
    padding: 15px 0;
    background: #3e4094
;
}
.navbar .max-width{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar .logo a{
    color: white;
    font-size: 35px;
    font-weight: 600;
}
.navbar .logo a span{
    color: #3e4094
;
    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: white;
    font-size: 18px;
    font-weight: 500;
    margin-left: 25px;
    transition: color 0.3s ease;
}
.navbar .menu li a:hover{
    color: #3e4094
;
}
.navbar.sticky .menu li a:hover{
    color: #fff;
}
.scroll-up-btn{
    position: fixed;
    height: 60px;
    width: 58px;
    background: #34af23;
    right: 30px;
    bottom: 10px;
    text-align: center;
    line-height: 60px;
    color: #fff;
    z-index: 9999;
    font-size: 42px;
    border-radius: 50px;
    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%);
}
.iconmobile{
    display: none;
}



/* ANIMATION */

@keyframes bounce-left {
    0% {
        transform: translateX(-10px);
    }

    30% {
        transform: translateX(0);
    }

    60% {
        transform: translateX(10px);
    }

    100% {
        transform: translateX(-10px);
    }
}

@keyframes top-down {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bottom-up {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes left-to-right {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes right-to-left {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoom {
    0% {
        width: 30px;
        height: 30px;
    }

    100% {
        width: 50px;
        height: 50px;
    }
}

/* RESPONSIVE */

.col-5 {
    width: 41.66%;
}

.col-7 {
    width: 58.33%;
}



/* all similar content styling codes */
section{
    padding: 100px 0;
}
.max-width{
    max-width: 1300px;
    padding: 0 80px;
    margin: auto;
}
.about .about-content,
.services .serv-content,
.skills .skills-content,
.contact .contact-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
section .title{
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    font-family: 'Ubuntu', sans-serif;
}
section .title::before{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 180px;
    height: 3px;
    background: #111;
    transform: translateX(-50%);
}
section .title::after{
    position: absolute;
    bottom: -8px;
    left: 50%;
    font-size: 20px;
    color: #0096EB
;
    padding: 0 5px;
    background: #fff;
    transform: translateX(-50%);
}

/* navbar styling */

/* menu btn styling */
.menu-btn{
    color: #fff;
    font-size: 23px;
    cursor: pointer;
    display: none;
}
.scroll-up-btn{
    position: fixed;
    height: 60px;
    width: 58px;
    background: #34af23;
    right: 30px;
    bottom: 10px;
    text-align: center;
    line-height: 60px;
    color: #fff;
    z-index: 9999;
    font-size: 42px;
    border-radius: 50px;
    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%);
}


/* home section styling */
.home{
    display: flex;
    height: 100vh;
    color: white;
    min-height: 500px;
    background-size: cover;
    background-attachment: fixed;
    font-family: 'Ubuntu', sans-serif;
}
.home .max-width{
  width: 100%;
  display: flex;
}
.home .max-width .row{
  margin-right: 0;
}
.home .home-content .text-1{
    font-size: 27px;
}
.home .home-content .text-2{
    font-size: 75px;
    font-weight: 600;
    margin-left: -3px;
    color: #0096EB
    ;
}
.home .home-content .text-3{
    font-size: 65px;
    margin: 5px 0;
}
.home .home-content .text-3 span{
    color: #fff
;
    font-weight: 500;
}
.home .home-content a{
    display: inline-block;
    background: #0096EB
;
    color: #fff;
    font-size: 25px;
    padding: 12px 36px;
    margin-top: 20px;
    font-weight: 400;
    border-radius: 6px;
    border: 2px solid #0096EB
;
    transition: all 0.3s ease;
}
.home .home-content a:hover{
    color: #0096EB
;
    background: none;
}

/* about section styling */

.about .about-content .left{
    width: 45%;
}
.about .about-content .left img{
    height: 300px;
    width: 300px;
    object-fit: cover;
    border-radius: 20px;
}



.about .about-content .right{
    width: 100%;
}
.about .about-content .right .text{
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
}
.about .about-content .right .text span{
    color: #0096EB
;
}
.about .about-content .right p{
    text-align: justify;
    font-size: 20px;
}
.about .about-content .right a{
    display: inline-block;
    background: #0096EB
;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 30px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid #0096EB
;
    transition: all 0.3s ease;
}
.about .about-content .right a:hover{
    color: #0096EB
;
    background: none;
}

/* services section styling */
.services, .teams{
    color:#111;
    background: white;
}
.services .title::before,
.teams .title::before{
    background: #111;
}
.services .title::after,
.teams .title::after{
    background: #111;

}
.services .serv-content .card{
    width: calc(23% - 5px);
    background: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 30px 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 2%;
}
.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: 30px;
    color: #0096EB
;
    transition: color 0.3s ease;
}
.services .serv-content .card:hover i{
    color: #fff;
}
.services .serv-content .card .text{
    font-size: 25px;
    font-weight: 500;
    margin: 10px 0 7px 0;
}

/* skills section styling */

.skills .title::after{
    content: "what i know";
}
.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: #0096EB
;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 8px 16px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid #0096EB
;
    transition: all 0.3s ease;
}
.skills .skills-content .left a:hover{
    color: #0096EB
;
    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: #0096EB
;
}
.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 */


.teams .carousel .card{
    background: #111;
    border-radius: 5px;
    padding: 15px 25px;
    text-align: center;
    overflow: hidden;
    transition: all 0.3s ease;
}
.teams .carousel .card:hover{
    background: #0096EB
;
}
.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: 25px;
    font-weight: 500;
    margin: 10px 0 7px 0;
}
.teams .carousel .card img{
    height: 180px;
    width: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid #0096EB
;
    transition: all 0.3s ease;
}
.teams .carousel .card:hover img{
    border-color: #fff;
}
.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 #0096EB
!important;
    transition: all 0.3s ease;
}
.owl-dot.active{
    width: 35px;
    border-radius: 14px;
}
.owl-dot.active,
.owl-dot:hover{
    background: #0096EB
!important;
}

/* contact section styling */

.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;
}
.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: #0096EB
;
}
.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 .field select,
.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 .field select: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: #0096EB
;
  border: 2px solid #0096EB
;
  transition: all 0.3s ease;
}
.right form .button-area button:hover{
  color: #0096EB
;
  background: none;
}



/* responsive media query start */
@media (max-width: 1104px) {
    .about .about-content .left img{
        height: 350px;
        width: 350px;
    }
    .buttonc{
        display: none;

    }
    .buttoncH{
        display: block;
    }
    .slider {
       display: none;
    }
    .imagemtorquetecentro{
       display: flex;
       width: 100%;
       height: 1000px;
       margin-top: 10%;
       margin-right: 200px;
       justify-content: right;
       align-items: right;
       text-align: right;
       object-position: center;
       position: relative;
       transform: translateY(0px);
       animation: float 5s ease-in-out infinite;
     
     }

     .logoimg{
        width: 25%;
        margin-left: 85%;
    }
.slide-control{
    display: none;
}
    .iconmobile {
        z-index: 98;
        color: #fff;
        position: relative;
        bottom: 140px;
margin-left: 35%;
        transform: translateX(-50%);
        display: grid;

        animation: bounce-down 2s ease infinite; 
    }
    
    @keyframes bounce-down {
        0% {
            transform: translateY(-10px);
        }
    
        30% {
            transform: translateY(0);
        }
    
        60% {
            transform: translateY(10px);
        }
    
        100% {
            transform: translateY(-10px);
        }
    }
     
     @keyframes float {
       0%{
         transform: translateY(0px);
       }
       50%{
         transform: translateY(-30px);
       }
       100%{
         transform: translateY(0px);
       }
     }
       
    .info h1 {
        display: none;
       }
   
       .info p {
           display: none;
       }
   
       .info button {
        display: none;
       }
   
       .product-info {
           padding: 0 10px;
       }
   
       .col-7 {
           display: flex;
           align-items: flex-start;
       }
}

@media (max-width: 991px) {
    .max-width{
        padding: 0 50px;
    }
}
@media (max-width: 947px){
    .menu-btn{
        display: block;
        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: 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;
    }
}

footer{
    width: 100%;
    padding: 5px 0px;
    background-image: url(images/background-footer.svg);
    background-size: cover;
    
    /*background-color: #d0f0f8;
    -webkit-mask-image: url("../Images/background-footer.svg");
    mask-image: url("../Images/background-footer.svg");
    -webkit-mask-size: cover;
    mask-size: cover;*/
}

.container__footer{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    margin-top: 100px;
}

.box__footer{
    display: flex;
    flex-direction: column;
    padding: 12px;
}

.box__footer .logo img{
    width: 300px;
}

.box__footer .terms{
    max-width: 350px;
    font-weight: 500;
    color: #7a7a7a;
    font-size: 13px;
}

.box__footer h2{
    margin-top: 90px;
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
}

.box__footer a{
    margin-top: 10px;
    color: #7a7a7a;
    font-weight: 600;
}

.box__footer a:hover{
    color: #0096EB;
}

.box__footer a .fab{
    font-size: 20px;
}

.box__copyright{
    max-width: 1200px;
    margin: auto;
    text-align: center;
    padding: 0px 40px;
}

.box__copyright p{
    margin-top: 20px;
    color: #7a7a7a;
}

.box__copyright hr{
    border: none;
    height: 1px;
    background-color: #7a7a7a;
}
@media only screen and (max-width: 768px) and (min-width: 200px) {
    body {
        height: 200vh;
        overflow-y: scroll;
        overflow-x: hidden;
    }
    .footer .inner {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .start-learning {
        position: unset;
    }
    .footer-start {
        width: 100%;
        display: block;
        padding: 30px 20px;
        margin: 30px 0;
    }
    .section-title {
        font-size: 30px;
    }
    .section-sub-heading {
        font-size: 18px;
    }
    footer.footer {
        padding-top: 0;
    }
    a.button {
        height: 50px;
        margin-top: 10px;
    }
    .column.is-logo {
        order: 4;
    }
    .info {
        align-items: flex-start;
    }
    .nav {
        z-index: 99;
        color: #fff;
        display: flex;
        position: fixed;
        width: auto;
        height: 80px;
        background-color: #111;
        box-shadow: 0 0 1rem black; 
        justify-content: space-between;
        align-items: center;
        padding: 0 80px;
    }
  
    .info h1 {
     display: none;
    }

    .info p {
        display: none;
    }

    .info button {
     display: none;
    }

    .product-info {
        padding: 0 10px;
    }

    .col-7 {
        display: flex;
        align-items: flex-start;
    }
    .buttonc{
        display: none;

    }
    .buttoncH{
        display: block;
    }
    .slider {
       display: none;
    }
    .imagemtorquetecentro{
       display: flex;
       width: 350px;
       height: 430px;
       margin-top: 60%;
       margin-right: 20px;
       justify-content: right;
       align-items: right;
       text-align: right;
       object-position: center;
       position: relative;
       transform: translateY(0px);
       animation: float 5s ease-in-out infinite;
     
     }
     .logoimg{
        width: 55%;
        margin-left: 85%;
    }
    .bxs-right-arrow {
display: none;
    }
     
     @keyframes float {
       0%{
         transform: translateY(0px);
       }
       50%{
         transform: translateY(-30px);
       }
       100%{
         transform: translateY(0px);
       }
     }
     .imagemefect{
         display: none;
     }
}


  

@media (max-width: 690px) {
    .max-width{
        padding: 0 23px;
    }
    .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%;
    }
}

@media (max-width: 500px) {
    .home .home-content .text-2{
        font-size: 50px;
    }
    .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;
    }
    .right form .error-box{
       width: 150px;
    }
    .scroll-up-btn{
        right: 15px;
        bottom: 15px;
        height: 38px;
        width: 35px;
        font-size: 23px;
        line-height: 38px;
    }
}
