/*
1. Posicionamiento
2. Modelo caja (box model)
3. tipografia
4. Visuales
5. otros
*/
/********* GLOBAL STYLES *********/
:root{
    /*Colors*/
    --dark-blue:#00306A;
    --soft-blue:rgba(45, 87, 139, 0.626);
    --bright-blue: #008BFF;
    --shadow-blue: 0px 0px 30px 10px var(--bright-blue);
    --dark-purple:  #562873;
    --soft-purple:  #b259e5;
    --shadow-purple: 0px 0px 30px 10px var(--soft-purple);
    --dark-gray:#232323;
    --middle-gray: #37373F;
    --soft-gray: rgb(204, 204, 204);
    --text-white: #F4F5FC;
    --shadow-white: 0px 0px 8px var(--text-white);
    --blur-gray: rgba(38, 38, 38, 0.9);
    --font-share-tech: 'share tech', sans-serif;
    --font-audiowide: 'Audiowide', cursive;
    --size-xxl: 3rem;
    --size-xl: 2.8rem;
    --size-l: 2rem;
    --size-md: 1.6rem;
    --size-sm: 1.4rem;
    --size-xs: 1.2rem;
    --max-width: 1440px;
    --max-width-md: 1000px;
    --max-width-sm: 400px;
}
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--font-share-tech);
}
html{
    font-size: 62.5%;
}
html, body{
    margin: 0;
    width: 100%;
    overflow-x: hidden;
    background-color: var(--dark-gray);
}
main{
    max-width: 4400px;
    min-width: 320px;
    margin: 0 auto; 
}
section{
    width: 100%;
    margin: auto;
    background-color: var(--dark-gray);
}
h1, h2, h3,h4,h5{
    font-family: var(--font-audiowide);
    color: var(--text-white);
    margin: 15px 0 15px 0;
    text-align: start;
}
h1{
    font-size: var(--size-xl);
}
h2{
    font-size: var(--size-xl);
}
h3{
    font-size: var(--size-l);
}
h4{
    font-size: var(--size-l);
}
h5{
    font-size: var(--size-md);
}
h5:hover{
    color: var(--text-white) !important;
}
h1 span, h2 span, h3 span{
    font-size: var(--size-xl);
    font-family: var(--font-audiowide);
    animation: flash 1s linear infinite;
}
h3 span{
    font-size: var(--size-l);
}
a{
    position: relative;
    color: var(--text-white);
    font-weight: bold;
    font-size: var(--size-md);
    text-decoration: none;
}
p{
    font-size: var(--size-md);
    line-height:var(--size-l);
    color: var(--text-white);
    font-weight: lighter;
}

.alert p{
    color: var(--dark-blue);
}
ul{
   display: flex;
   justify-content: flex-end;
   font-size: var(--size-xs);
}
ul li{
    list-style:none;
    align-items: center;
    margin-left: 2rem;
}
header{
    position: relative;
    width: 100%;
    min-width: 280px;
    height: 90vh;
    background-color: #242324;
}
input, textarea{
    background-color: var(--middle-gray);
    border: solid 1px var(--soft-gray);
    border-radius: 2px;
    font-size: var(--size-md);
    padding: 4px;
    color: var(--text-white);
}
input:active{
    border: none;
}
label{
    color: var(--middle-gray);
    font-size: var(--size-md);
}
/***GENERAL CLASS***/
.row>*{
    padding: 0;
}
.h-50vh{
    height: 50vh !important;
}
.btn{
    width: 200px;
    height:50px;
    display:flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--text-white);
    font-size:var(--size-md);
    font-weight: 500;
    letter-spacing: 0.5rem;
    margin-top: 1.5rem;
 
}
.btn-main{
    background-color: var(--dark-blue);
}
.btn-main:hover, .footer-icons i:hover{
    background-color: var(--bright-blue);
    color: var(--text-white);
    font-weight: 800;
    box-shadow: var(--shadow-blue);
}
.icon{
    font-size: var(--size-md);
}
.icon-border{
    color: var(--bright-blue);
    padding: 8px 10px;
    border: 1px solid var(--bright-blue);
    border-radius: 10px;
}
.icon--active{
    color: var(--text-white) !important;
    background-color: var(--bright-blue) !important;
    box-shadow: var(--shadow-blue);
    
}
.hidde{
    display: none;
}
.section-container{
    margin-top: 0;
    padding: 0;
    padding-bottom: 40px;
    position:relative;
}
/***********ANIMACIONES****************/
@keyframes ZoomIn   { 
    0%  { 
        transform:scale(0);
    }
     100%{
        transform:scale(1);
    } 
    }
.zoom-in{
    animation: ZoomIn;
    animation-duration: 2s;
    animation-timing-function: ease-in;
}
@keyframes FadeIn   { 
    0%  { opacity: 0;
    } 
    100%{
        opacity: 1;
    }  
}
.fade-in{
    animation: FadeIn;
    animation-duration: 4s;
    animation-delay: 0.5s;
}
@keyframes SlideLeft {
    0%{
        transform: translateX(-100%); 
    }
    100%{
        transform: translateX(0%); 
    }
}
@keyframes SlideRight {
    
}
@keyframes flash {
    0% {
      opacity: 1;
    }
  
    50% {
      opacity: 0;
    }
    
    
    100% {
      opacity: 1;
    }
  }
  /*NAV MOBILE*/
@keyframes show-down {
    0%{
        transform: scaleY(0);
        top: -120px;
    }
    100%{
        transform: scaleY(1);
        top:50px;
    }
}
@keyframes openBarOne {
    100%{
        transform: rotate(0deg);
        margin-top: 0px;
    }
    50%{
        transform: rotate(25deg);
        margin-top: 4px;
    }
    0%{
        transform: rotate(45deg);
        margin-top: 8px;
    }
}
@keyframes openBarThree {
    100%{
        transform: rotate(0deg);
        top: 22px;
    }
    50%{
        transform: rotate(-25deg);
        top: 15px;
    }
    0%{
        transform: rotate(-45deg);
        top: 10px;
    }
}
@keyframes closeBarOne {
    0%{
        transform: rotate(0deg);
        margin-top: 0px;
    }
    50%{
        transform: rotate(25deg);
        margin-top: 4px;
    }
    100%{
        transform: rotate(45deg);
        margin-top: 8px;
    }
}
@keyframes closeBarThree {
    0%{
        transform: rotate(0deg);
        top: 22px;
    }
    50%{
        transform: rotate(-25deg);
        top: 15px;
    }
    100%{
        transform: rotate(-45deg);
        top: 10px;
    }
}
@keyframes FadeLeft   { 0%  { transform:translateX(-100%);} 100%{ transform:translateX(0%);}  }
.fade-left{
    animation: FadeLeft;
    animation-duration: 2s;
}
@keyframes FadeRight  { 0%  { transform:translateX(100%);} 100%{ transform:translateX(0%);}  }
.fade-right{
    animation: FadeRight;
    animation-duration: 2s;
}


/***********HEADER****************/
.header-container{
    position: absolute;
    width: 100%;
    min-width: 320px;
    height: 90vh;
    left: 0px;
    top: 0px;
    display: flex;
    flex-direction: row;
}
.header-video{
    display: none;
}
.header-content{
    width: 90%;
    height: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.header-content h1, .header-content h2{
    text-align: left;
    font-size: var(--size-xl);
    color: var(--text-white);
}
.header-content h2{
    font-size: var(--size-l);
}
.page .header-content{
    height: 30vh;
}
.header-content .btn{
    align-self: flex-start;
}

/*******NAV**********/
.header-nav{
    /* padding-right: 35px; */
    position: fixed;
    top:0;
    width: 100%;
    height: 70px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--blur-gray);
    box-shadow: var(--shadow-blue);
    z-index: 100;
}
.header-nav__container{
    display: none;
}
.header-nav__container .active{
    font-weight: bold;
}
.header-nav__brand{ 
    width: 150px;
    height: 30px;
    object-fit: contain;
    margin-left: 10px;
}
.nav-mobile{
    position: absolute;
    width: 100%;
    top: 50px;
    right: 0;
    padding-right: 20px;
    height: auto;
    background-color: var(--dark-gray);
    overflow: hidden;
    animation-name: show-down;
    animation-duration: 1s;
    animation-iteration-count: initial;
    animation-timing-function: ease-in-out;
}
.nav-mobile ul{
    width: 100%;
    display: flex;
    flex-direction: column;
    line-height: var(--size-xxl);
    padding: 20px;
    padding-right: 20px;
    font-size: var(--size-md);
    color: var(--text-white);
}
.nav-mobile li{
    position: relative;
    width: auto;
    list-style: none;
    margin-right: 20px;
    cursor:pointer;
}
.nav-mobile li a{
    color: var(--text-white);
    font-weight: 400;
    position: relative;
    display: block;
    padding: 2px;
    
}
.nav-mobile .active::before{
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--text-white);
    box-shadow: var(--shadow-white);
    color: var(--text-white);
    z-index: 2;
}
.nav-mobile .active::after{
    content: '';
    position: absolute;
    bottom: -21px;
    left: 98%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    color: var(--text-white);
    text-shadow: var(--shadow-white);
}
.nav-mobile li a:hover::before {
    transform: scaleX(1);
}
.nav-mobile ul a{
    text-decoration: none;
    color: var(--text-white);
}
.nav-close-icon .bar_one{
    animation: closeBarOne 1s forwards;
}
.nav-close-icon .bar_three{
    animation: closeBarThree 1s forwards;
}
.nav_button_collapse{
    position: relative; 
    width: 30px;
    height: 30px;
    cursor: pointer;
}
.burger_bar{
    width: 80%;
    height: 2px;
    border-radius: 1px;
    background-color: var(--text-white);
    box-shadow: var(--shadow-white);
}
.donut {
    position: absolute;
    left: 23px;
    top: -2px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #ffffff00; 
    border: 2px solid var(--text-white);
    box-shadow: var(--shadow-white);
}
.bar_two{
    position: absolute;
    left: 0px;
    top: 11px;  
}
.donut_two{
    left: 23px;
    top: -2px;
}
.bar_three{
    position: absolute;
    left: 0px;
    top: 22px;  
}
.donut_three{
    left: 23px;
    top: -2px;
}
.nav-close-icon .donut_two, .nav-close-icon .bar_two{
    /* background: url(../../assets/icons/ico_navbar_close.png) no-repeat transparent;
    background-size: 30px; */
    display: none;
}
.nav-show-icon .bar_one{
    animation: openBarOne 1s forwards;
}
.nav-show-icon .bar_three{
    animation: openBarThree 1s forwards;
}
.submenu-nav__container{
    position: absolute;
    width: auto;
    top: 80px;
    padding-right: 20px;
    height: auto;
    background-color: var(--dark-gray);
    animation-name: show-down;
    animation-duration: 1s;
    animation-iteration-count: initial;
    animation-timing-function: ease-in-out;
}
.submenu-nav__container ul{
    display: flex;
    flex-direction: column;
}

/***********ABOUT US***********/
.about-us{
    margin: 0;
    width: 100%;
    margin: 0 auto;
}
.about-us-carousel{
    /* width: 90%; */
    margin-top: 15px;
    margin:0 auto;
    float: left;
    display: flex;
    justify-items: center;
    align-items: center;
}
.about-us-carousel__item {
    padding: 0;
}
.about-us-carousel__item img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.about-us__icons{
    display: grid;
    grid-template-columns: repeat(4,minmax(20px,220px));
    gap: 5px;
    text-align: start;
    place-content: center;
}
.about-us-icons__item{
    font-size: 1rem;
    font-weight: bold;
    color: var(--dark-blue);
    font-family: 'share tech',sans-serif;
    
}
/* .bi-cpu{animation-delay: 0.5s;}
.bi-code-slash{animation-delay: 0.7s;}
.bi-phone{animation-delay: 1s;}
.bi-controller{animation-delay: 1.2s;} */
.about-us__content{
    text-align:left;
    margin-top: 10px;
    /* width: 100%; */
    /* min-width: 280px; */
    padding: 0 25px;
    display: flex;
    flex-direction: column;
}
.about-us__text{
    width: 100%;
    margin-top: 10px;
}
.about-us__icon-text{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.about-us__icon-text i{
    color: var(--bright-blue);
    text-shadow: var(--shadow-blue);
}
.about-us__icon-text span{
    color: var(--text-white);
    font-size: var(--size-md);
}

/**********SERVICES***************/
#services{
    padding: 20px 25px;
}
.services-description{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.cards{
    width: 100%;
    margin: 40px auto;
}
.card{
    height: 280px;
    border-radius: 10px;
    background-color: var(--middle-gray);
    transition: .5s ease-out;
    padding: 20px;
    margin: 20px auto;
}
.card:hover{
    background-color: var(--dark-blue);

}
.card:hover h2, .card:hover p, .card:hover i{
    color: var(--text-white);
}
.card:hover h2::after{
    background-color: var(--text-white);
}
.card-text{
    width: 100%;
}
.services-card{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.services-card h2{
    color: var(--bright-blue);
    margin: 20px 0;
    text-align: start;
    justify-self: flex-end;
    font-size: var(--size-l);
}
.services-card i{
    color: var(--bright-blue);
    font-size: 4rem;
    font-weight: bold;
    display: flex;
    justify-content: end;
    margin-bottom: 10px;
}
.services-card h2::after{
    content: " ";
    display: block;
    width: 20px;
    height: 2px;
    margin-top: 10px;
    background-color: var(--bright-blue);
    box-shadow: var(--shadow-blue);
}

/************GOALS************/
.goals-section{
    width: 100%;
    height: 100%;
}
.goals-container{
    position: relative;
    width: 100%;
    padding: 20px 25px;
}
.goals-container .goals-grid .col-sm-12{
   text-align: center;
   margin-top: 20px;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
} 
.goals-grid span{
    font-family: var(--font-audiowide);
    font-weight: lighter;
    font-size: var(--size-xxl);
}
.goals-grid span:nth-child(2){
    font-size: var(--size-xxl);
}
.projects span, .certifications span{
    color: var(--bright-blue);
    text-shadow: var(--shadow-blue);
}
.clients span, .time span, .codes span{
    color: var(--soft-purple);
    text-shadow: 0px 0px 8px var(--soft-purple);
}
.goals-container h4{
    position: relative;
    font-size: var(--size-md);
    color: var(--text-white);
    text-align: center;
}
.goals-container h4::after{
    content: "";
    position: absolute;
    bottom: -15px;
    left: 30%;
    width: 40%;
    height: 2px;
    background-color: var(--text-white);
    box-shadow: var(--shadow-white);
}
.goals-container p{
    margin-top: 10px;
    color: var(--soft-gray);
}

/**********HABILITIES********/
#skills {
    background-color: var(--dark-gray);
    width: 100%;
    margin-top: 50px;
    padding: 0px 25px 0px 15px;
}
.skills-description__container{
    width: 100%;
}
.skill-picture__container{
    display: none;
}
#skill { 
	width: 90%;
	margin: 5px auto 0;
	position: relative;
	padding: 5px 0;
}
.skill-info__container{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.skill-info__container div{
    display: flex;
    flex-direction: column;
    width: 80%;
}
.skill-info__container p:first-child{
    font-size: var(--size-md);
}
.skill-info__container span{
    font-size: var(--size-l);
    font-family: var(--font-audiowide);
    color: var(--text-white);
}
.bar__container { 
    position: relative;
	margin-bottom:50px; 
	background:#e9e5e2;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#e1ddd9), to(#e9e5e2));
	background-image: -webkit-linear-gradient(top, #e1ddd9, #e9e5e2);
	background-image: -moz-linear-gradient(top, #e1ddd9, #e9e5e2);
	background-image: -ms-linear-gradient(top, #e1ddd9, #e9e5e2);
	background-image: -o-linear-gradient(top, #e1ddd9, #e9e5e2);
	background-image: linear-gradient(top, #e1ddd9, #e9e5e2);  
	height:5px; 
    border-radius: 50px;
}
.bar { 
	height:100%;  
	position:absolute;	 
}
.inner-bar{
    width: 0;
	background-color: var(--dark-blue);
	background-image: -webkit-gradient(linear, left top, left bottom, from(var(--dark-blue)), to(#21738f));
	background-image: -webkit-linear-gradient(top, var(--dark-blue), #21738f);
	background-image: -moz-linear-gradient(top, var(--dark-blue), #21738f);
	background-image: -ms-linear-gradient(top, var(--dark-blue), #21738f);
	background-image: -o-linear-gradient(top, var(--dark-blue), #21738f);
	background-image: linear-gradient(top, var(--dark-blue), #21738f);
	box-shadow: 0px 0px 20px var(--bright-blue);	
    transition: width 2s;	
}
#skill__img{
    opacity: 0;
}
/*********WORK PROCESS*******/
.work-process{
    width: 100%;
    height: auto;
    padding-bottom: 40px;
}
.work-process__container{
    width: 100%;
    height: auto;
    background-color: var(--dark-gray);
    padding: 80px 20px;
   
}
.work-process__container h2, .work-process__container p{
    width: 100%;
    margin: 20px 0;
    text-align: start;
    color: var(--text-white);
}
.carousel{
    width: 100%;
    margin-top: 50px;
    display: flex;
    gap: 20px;
    overflow-x: hidden;
}
.step-process__container{
    width: 100%;
}
.step-process__header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
.step-process__header span, .step-process__header p, .step-process__header i{
    color: var(--text-white);
    text-align: center;
}
.step-process__header span, .step-process__header p{
    font-family: var(--font-audiowide);
    font-size: var(--size-l);
}
.step-process-icon__container{
    width: 100%;
    position: relative; 
    display: flex;
    justify-content: center;
    margin: 20px 0;
}
.step-process-icon__container i{
    width: 70px;
    height: 70px;
    background-color: var(--middle-gray);
    padding: 15px 20px 20px 20px;
    border-radius: 50%;
    font-size: var(--size-xl);
    z-index: 2;
}
.time-line{
    position: absolute;
    width: 120%;
    height: 1px;
    top: 50%;
    background-color: var(--soft-gray);
}
.step-process__content::before{
    position: absolute;
    content:"\A";
    border-style: solid;
    border-width: 0 100px 200px 100px;
    border-color: var(--middle-gray) transparent;
    left: calc(50% - 100px);
    top: -20px;
}
.step-process__content{
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 400px;
    background-color: var(--middle-gray);
    padding: 40px 20px;
    border-radius: 10px;
    
}
.step-process__img{
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden;
    z-index: 2;
    
}
.step-process__content img{
    position: absolute;
    /* top: -90px; */
    width: 100%;
    object-fit: contain;

}
.step-process__info{
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 10px auto;
    z-index: 2;
}
.step-process__info h4, .step-process__info p{
    text-align: center;
    margin-bottom: 0;
}
.owl-item:not(.active){
    opacity: 0.1;
}

 /**********EQUIPO************/
#team .container{
    padding: 10px 25px;
    position: relative;
    display: flex;
    flex-direction: column;
}
.team-description__container{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-value {
    display: flex;
    align-items: center;
}
.team__icon{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}
.team__icon i{
    position: relative;
    background-color: var(--middle-gray);
    border-radius: 50%;
    padding: 10px 14px;
    color: var(--text-white);
    font-size: var(--size-md);
}
.team-value:nth-child(1) .team__icon i::after, .team-value:nth-child(2) .team__icon i::after{
    position: absolute;
    content:"\A";
    width: 1px;
    height: 370%;
    background-color: var(--soft-gray);
    left: 50%;
    top: calc(22px * 2);
}
.team-container {
    width: 100%;
    margin: 0;
    justify-content: center;
}
.team-item{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--middle-gray);
    border-radius: 10px;
    padding: 20px;
    margin: 10px 0;
    
}
.team-item__header{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.team-item__header h3, .team-item__header h4{
    margin: 5px 0;
    text-align: center;
}
.team-item__header h3{
    color: var(--text-white);
}
.team-item__header h4{
    color: var(--bright-blue);
    font-weight: lighter;
    font-size: var(--size-sm);
    
}
.team-item__header img{
    width: 70%;
    border-radius: 20px;
    object-fit: contain;
    margin-bottom: 10px;
}
.team-media__container{
    width: 80%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 20px auto;
}
.team-media__container i{
    font-size: var(--size-l);
    color: var(--bright-blue);
    border: 1px solid var(--bright-blue);
    border-radius: 10px;
    padding: 10px 15px;
}
.team-media__container i:hover{
    background-color: var(--bright-blue);
    box-shadow: var(--shadow-blue);
    color: var(--text-white);
}

/**********COMMENTS************/
#comments{
    margin-top:20px;
    padding: 20px 25px;
    position: relative;
    display: flex;
    flex-direction: column;
}
.comments-description__container h2, .comments-description__container p{
    text-align: center;
}
.comments-description__container{
    position: relative;
}
.comments-description__container::after{
    content: '';
    position: absolute;
    bottom: -25px;
    left: 30%;
    width: 40%;
    height: 2px;
    background: var(--text-white);
    box-shadow: var(--shadow-white);
    color: var(--text-white);
    z-index: 2;
}
.comment__container{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 20px;
    background-color: var(--middle-gray);
    padding: 40px 20px;
    color: var(--text-white);
    margin-top: 20px;
}
.comment-header__container{
    margin-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.comment__img{
    width: 40%;
    overflow: hidden;
}
.comment__img img{
    width: 40%;
    border-radius: 10px;
    object-fit: contain;
    margin-bottom: 10px;
}
.comment-header__container span{
    font-family: var(--font-audiowide);
    font-size: var(--size-md);
    text-align: center;
}
.comment__content p{
    font-style: italic;
    font-size: var(--size-sm);
}
.comment__content a::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--text-white);
    box-shadow: var(--shadow-white);
    color: var(--text-white);
    z-index: 2;
}
.comment-stars{
    margin-top: 10px;
}
.comment-stars i{
    margin-right: 5px;
    font-size: var(--size-md);
    color: var(--bright-blue);
    text-shadow: var(--shadow-blue);
}
.comment-tags{
    display: flex;
    margin-top: 10px;
}
.tag{
    background-color: var(--dark-blue);
    padding: 5px 10px;
    border-radius: 5px;
    margin-right: 10px;
}
/**********CONTACT************/
#contact{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.contact-banner__container{
    position: relative;
}
.contact-banner__container h2{
    text-align: center;
}
.back-draw{
    position: absolute;
    width: 100%;
}
.back-draw .line{
    position: absolute;
    top: 50px;
    right: 0px;
    width: 50px;
    height: 300px;
    background-color: var(--middle-gray);
    border-radius: 40px;
    transform: rotate(35deg);
    
}
.back-draw .circle{
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    background-color: var(--middle-gray);
    border-radius: 50%;
}
.contact-banner__content{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    z-index: 2;
}
.contact-banner__content h3, .contact-banner__content p, .contact-banner__content a{
    text-align: center;
    align-self: center;
}
.contact-form{
    width: 100%;
    position: relative;
    padding: 40px 25px;
    z-index: 2;
    animation-name: SlideLeft;
    animation-duration: 1s;
    animation-iteration-count: initial;
    animation-timing-function: ease-in;
}
.form__input{
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}
.contact-item__container{
    margin-top: 40px;
}
.contact-form button{
    width: 100%;
    border-radius: 2px;
}
.contact-info__container{
    width: 90%;
    margin-left: 10%;
    background-color: var(--middle-gray);
    border-radius: 20px 0 0 20px;
    padding: 20px;
}
.contact-ways__item{
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}
.contact-ways__item span{
    color: var(--text-white);
    font-size: var(--size-md);
    font-family: var(--font-audiowide);
}
/**********FOOTER************/
footer{
    width: 100%;
    margin: 40px 0;
}
.footer-logo{
    margin: 0 auto;
    text-align: center;
    margin-bottom: 10px;
}
.footer-logo img{
    width: 70%;
    object-fit: contain;
}
.footer-icons{
    position: relative;
    display: flex;
    justify-content: center;
    padding: 20px;
    padding-bottom: 40px;
}
.footer-icons i{
    margin-right: 10px;
}
.footer-copyright{
    text-align: center;
    width: 90%;
    margin: 0 auto;
}
.footer-copyright a::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--text-white);
    box-shadow: var(--shadow-white);
    color: var(--text-white);
    z-index: 2;
}

/*********TECHNICAL SERVICES**************/
.technical-service-container{
    display: flex;
    flex-direction: column;
}
.technical-service-card {
    margin: 20px 20px;
    transform-style: preserve-3d;
    transition: all 0.5s linear;
    height: 170px;
    display: flex;
}
.technical-service-card-box:hover .technical-service-card{
    transform: rotateY(180deg);
}
.face{
    position: absolute;
    backface-visibility: hidden;
}
.face.back {
    transform: rotateY(180deg);
  }
.technical-service-card .technical-service-header{
    /* background: rgba(33, 33, 33, 0.6); */
    position: relative;
    height: 170px;
}
.technical-service-card .technical-service-header .technical-service-background{
    background: rgba(33, 33, 33, 0.8);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.technical-service-card .technical-service-header .technical-service-background img{
    position: absolute;
    width: 40%;
    height:  100%;
    top: 0;
    right: 0;
    overflow-x: hidden;
    opacity: 0.7;
    mix-blend-mode: overlay;
}
.technical-service-card .technical-service-header .technical-service-title{
    color: rgba(255, 255, 255, 0.387);
    width: 200px;
    position: absolute;
    text-align: center;
    margin-top: 35px;
    z-index: 2;
    left: 0;
    margin-bottom: 0;
    font-size: 4.5rem;
}
/* .technical-service-title .smaller_title{
    font-size: 3rem;
} */
.technical-service-card .technical-service-header .technical-service-subtitle{
    color: var(--text-white);
    width: 135px;
    position: absolute;
    text-align: center;
    margin-top: 35px;
    z-index: 2;
    left: 25px;
    bottom: 50px;
    font-size: 1.4rem;
}
.technical-service-card .technical-service-header .technical-service-price{
    color: #008BFF;
    position: absolute;
    z-index: 2;
    left: 5px;
    font-size: 1.4rem;
}
.technical-service-card .technical-service-header .technical-service-time{
    color: var(--text-white);
    position: absolute;
    z-index: 2;
    left: 5px;
    bottom: 0;
    margin-bottom: 0;
    font-size: 1.1rem;
}
.technical-service-card .technical-service-body{
    padding: 15px;
    padding-bottom: 0;
    height: 170px;
    background-color: #C4C4C4;
    top:0;
    /* display: none; */
}
.technical-service-card .technical-service-body .technical-service-title{
    color: var(--dark-blue);
    text-align: center;
}
.technical-service-card .technical-service-body .technical-service-description{
    line-height: 20px;
}
.card-left .technical-service-background img{
    left:0;
}
.card-left .technical-service-header .technical-service-title {
    left: 25px;
}
.card-left .technical-service-header .technical-service-subtitle{
    left: 40%;
}
.card-left .technical-service-header .technical-service-price{
    left: 82%;
}
.card-left .technical-service-header .technical-service-time{
    left: 60%;
}
.service-technical-description-section{
    max-width: 250px;
    margin: auto;
}
.service-technical-description-section p{
    padding: 10px;
    line-height: 20px;
}





