body{
    padding: 0;
    margin: 0;
}


@keyframes fade-in {
    from {
        opacity: 0;
    }
  
    to {
        opacity: 1;
    }
}

@keyframes fade-in-left {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
  
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes fade-in-right {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
  
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
  
    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes fade-in-down {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }
  
    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

.fade-in{
    animation-duration: 3s;
    animation-name: fade-in;
}

.fade-in-left{
    animation-duration: 3s;
    animation-name: fade-in-left;
}

.fade-in-right{
    animation-duration: 3s;
    animation-name: fade-in-right;
}

.fade-in-up{
    animation-duration: 3s;
    animation-name: fade-in-up;
}

.fade-in-down{
    animation-duration: 3s;
    animation-name: fade-in-down;
}


@font-face {
    font-family: "Foco-Regular";
    src: url(../fonts/Foco-Regular.ttf);
}

@font-face {
    font-family: "Foco-Bold";
    src: url(../fonts/Foco-Bold.ttf);
}

.box-a{
    width: 100%;
    min-height: 700px;
    background: url(../img/Hilatura-BN-1.png);
    background-size: cover;
}

.box-a>nav{
    display: flex;
    justify-content: space-between;
    padding: 0% 4%;
    padding-top: 20px;
    margin-bottom: 20px;
}

.nav-active{
    border-bottom: 3px solid #729a42;
}

.box-a>nav>div:nth-child(1){
    width: 20%;
}

.box-a>nav>div:nth-child(2){
    width: 80%;
}

.box-a>nav>div:nth-child(1)>img{
    width: 50%;
    object-fit: contain;
}

.box-a>nav>div:nth-child(2)>ul{
    display: flex;
    list-style: none;
    width: 100%;
    justify-content: space-around;
    font-size: 1.4em;
    align-items: center;
    align-content: center;
    font-family: "Foco-Regular";
    color:#44403F;
}

.box-a>nav>div:nth-child(2)>ul>li{
    cursor: pointer;
    padding: 10px;
    border-radius: 10px;
    position: relative;
    font-size: 18px;
}

.box-a>nav>div:nth-child(2)>ul>li:hover{
    border-bottom: 3px solid #729a42;
    background: #A6CD45;
    color: #fff;
    padding: 10px;
    border-radius: 10px;
}

.box-a>nav>div:nth-child(2)>ul>li>ul{
    position: absolute;
    left: 0px;
    list-style: none;
    padding: 0;
    font-size: 16px;
    display: none;
}

.box-a>nav>div:nth-child(2)>ul>li:hover>ul{
    position: absolute;
    
    left: 0px;
    list-style: none;
    padding: 0;
    font-size: 16px;
    display: block !important;
    margin-top: 11px;
}

.box-a>nav>div:nth-child(2)>ul>li:hover>ul>li{
    background: #a6cd44;
    padding: 10px;
    border-bottom: 1px solid #729a42;
    border-radius: 10px;
}

.box-a>div{
    display: flex;
    padding: 0 4%;
}

.box-a>div>p{
    font-family: "Foco-Regular";
    color:#44403F;
    font-size: 1.4em;
    padding: 0 4%;
    animation-duration: 3s;
    animation-name: fade-in-down;
}

.box-a>div>p>b{
    text-align: center;
    display: block;
    font-size: 1.6em;
    animation-duration: 3s;
    animation-name: fade-in-left;
}

.box-a>div>section:nth-child(1){
    width: 46%;
    padding: 2%;
    padding-top: 90px;
}

.box-a>div>section:nth-child(1)>img{
    width: 100%;
    object-fit: contain;
}

.box-a>div>section:nth-child(1)>h1{
    font-family: "Foco-Bold";
    color: #44403F;
    font-size: 100px;
    margin: 0;
    letter-spacing: 2px;
}

.box-a>div>section:nth-child(1)>p{
    font-family: 'Foco-Regular';
    font-size: 44px;
    color: #44403F;
    letter-spacing: 6px;
    line-height: 1.6em;
}

.box-a>div>section:nth-child(1)>button{
    font-family: 'Foco-Regular';
    font-size: 26px;
    color: #707070;
    background: transparent;
    border: none;
    cursor: pointer;
}

.box-a>div>section:nth-child(1)>button>b{
    background: #a5ce39;
    padding: 8px 12px;
    border-radius: 20px;
    margin-right: 10px;
    color: #fff;
}

.box-a>div>section:nth-child(2){
    width: 46%;
    font-family: 'Foco-Regular';
    padding: 2%;
    /*background: url(../img/bg-tech-a-2.png) no-repeat;*/
    background-size: contain;
    
}

.bg-box-2-about{
    background: url(../img/bg-box-b-about.png) no-repeat;
    background-size: 1140px;
    background-position: center 144px;
}

.box-a>div>section:nth-child(2)>h4{
    color: #ACCF53;
    text-transform: uppercase;
    font-size: 40px;
    font-weight: 100;
    width: 460px;
}

.box-a>div>section:nth-child(2)>p{
    color: #2b2c2a;
    font-size: 26px;
    font-weight: 100;
    width: 460px;
}

.box-a>div>section:nth-child(2)>img{
    width: 100%;
    object-fit: contain;
}

.box-b{
    display: flex;
    justify-content: space-between;
    padding: 8% 8%;
    /*background: url(../img/bg-tech-2-b.png);*/
    background-color: #dddddd;
    flex-wrap: wrap;
    font-family: 'Foco-Regular';
    color: #707070;
    font-weight: 100;
    position: relative;
}

.box-b>h1{
    font-weight: 100;
    font-size: 60px;
    position: absolute;
    left: 45%;
    top: 36%;
}

.box-b>h2{
    font-weight: 100;
    font-size: 45px;
    position: absolute;
    left: 45%;
    top: 48%;
    text-transform: uppercase;
}

.box-c{
    display: flex;
    justify-content: space-between;
    padding: 8% 8%;
    /*background: url(../img/bg-tech-2-b.png);*/
    background-color: #dddddd;
    flex-wrap: wrap;
    font-family: 'Foco-Regular';
    color: #707070;
    font-weight: 100;
    position: relative;
}

.box-c>div{
    width: 40%;
    position: relative;
    background: url(../img/bg-box-content-mv.png) no-repeat;
    background-size: cover;
    padding: 4%;
    min-height: 340px;
}

.box-c>div>h1{
    color:#80B126;
    font-weight: 100;
    font-size: 40px;
}

.box-c>div>p{
    font-size: 25px;
}

.box-b>div{
    width: 48%;
    position: relative;
    font-family: 'Foco-Regular';
}

.flex{
    display: flex;
}

.flex>img{
    box-shadow: 8px 8px 16px #7fb127;
}

.box-b>div>h1{
    color:#80B126;
    font-weight: 100;
    text-transform: uppercase;
    font-size: 30px;
}

.box-b>div>p{
    color:#636262;
    font-weight: 100;
    text-transform: uppercase;
    font-size: 18px;
}

.box-b>div>p>b{
    color: #80B126;
}

.box-b>div>ul{
    color:#636262;
    font-size: 18px;
    list-style: none;
}

.box-b>div>ul>li{
    position: relative;
}

.box-b>div>ul>li::after{
    content: "\2022";
    color: #80B126;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    position: absolute;
    left: -18px;
    top: 0px;
}

.box-b>section{
    padding: 4% 4%;
    width: 100%;
}

.box-b>section>img{
    margin-left: 10%;
}

.box-b>div>img{
    width: 100%;
    object-fit: cover;
}

.box-b div h6{
    font-family: 'Foco-Regular';
    color: #A6CE39;
    font-size: 24px;
    position: absolute;
    bottom: 20px;
    margin: 0;
    left: 20px;
    text-transform: uppercase;
    margin-bottom: 0px;
    line-height: 1em;
    text-align: left;
}

.img-item-process{
    position: absolute !important;
    width: 150px !important;
    left: 26px;
    top: -42px;
}

.h6-back{
    color: #A0BE52 !important;
    position: relative !important;
    bottom: 0;
    top: 50px;
    font-size: 0.6em;
}

.p-back{
    line-height: 1em;
    text-align: left;
    font-size: 20px;
    padding: 20px;
    margin-top: 44px;
    font-family: 'Foco-Regular';
    color: #6E6E6E !important;
}

.bg-box-b-1{
    background: url("../img/item-1.png") no-repeat;
    background-size: cover;
}

.bg-box-b-2{
    background: url("../img/item-2.png") no-repeat;
    background-size: cover;
}

.bg-box-b-3{
    background: url("../img/item-2.png") no-repeat;
    background-size: cover;
}

/*.box-b>div:nth-child(1){
    background: url("../img/item-1.png") no-repeat;
    background-size: cover;
}

.box-b>div:nth-child(2){
    background: url("../img/item-2.png") no-repeat;
    background-size: cover;
}

.box-b>div:nth-child(3){
    background: url("../img/item-2.png") no-repeat;
    background-size: cover;
}*/

/*.box-c{
    padding: 4% 4%;
    background: #dddddd;
}

.box-c>div{
    width: 92%;
    height: 760px;
    background: url(../img/bg-box-3.png) no-repeat;
    background-size: contain;
    background-position: top center;
    padding: 4%;
}

.box-c>div>h1{
    color: #A0BE52;
    font-size: 50px;
    font-family: 'Foco-Regular';
    text-transform: uppercase;
    font-weight: 100;
}

.box-c>div>p{
    color: #B4B4B4;
    font-family: 'Foco-Regular';
    font-size: 32px;
    font-weight: 100;
    width: 50%;
}

.box-c>div>div{
    margin-bottom: 60px;
}

.box-c>div>div>button{
    margin-bottom: 40px;
    width: 40px;
    height: 40px;
    border: 2px solid #a5ce39;
    border-radius: 100%;
    background: transparent;
    margin-top: 20px;
    margin-right: 108px;
    cursor:pointer;
}

.bg-btn-c-active{
    background: #a5ce39 !important;
}

.box-c>div>h4{
    color: #A6CE39;
    font-family: 'Foco-Regular';
    font-size: 32px;
}
*/
.box-c>div>img{
    width: 60px;
    position: absolute;
    right: 20px;
    top: 20px;
}

.btn-vm{
    background: #A6CE39;
    color: #fff;
    border: 0;
    padding: 12px;
    border-radius: 10px;
    font-family: 'Foco-Regular';
    font-size: 22px;
    display: block;
    cursor: pointer;
}

.logo-box-g{
    width: 50px !important;
    position: absolute;
    right: 120px;
    transform: translateY(-38px);
}

.box-d{
    display: flex;
    justify-content: space-between;
    background: #dddddd;
    padding: 4% 8%;
    padding-top: 0%;
    padding-bottom: 0%;
    flex-wrap: wrap;
}

.box-d>h1{
    width: 100%;
    font-family: 'Foco-Regular';
    padding-left: 22px;
    font-size: 50px;
    color: #43403f;
}

.box-d>div{
    width:30%;
    min-height: 500px;
    position: relative;
    /*background-color: #a9c957;*/
}

.box-d div h5{
    font-family: 'Foco-Regular';
    font-size: 26px;
    letter-spacing: 10px;
    line-height: 1;
    position: absolute;
    bottom: -10px;
    left: 32px;
    color: #fff;
}

.box-d>div>img{
    position: absolute;
    width: 40px;
    right: 20px;
    bottom: 22px;
}

.box-d .back{
    background: #717171 !important;
}

.bg-box-d-1{
    background: url("../img/item-5.png") no-repeat;
    background-size: cover;
}

.bg-box-d-2{
    background: url("../img/item-6.png") no-repeat;
    background-size: cover;
}

.bg-box-d-3{
    background: url("../img/item-6.png") no-repeat;
    background-size: cover;
}

.p-back-d{
    color:#C2C2C2 !important;
}

.h6-back-p{
    line-height: 1em;
    text-transform: uppercase;
    font-size: 24px;
    text-align: left;
    left: 20px;
}

.img-reload-d{
    position: absolute !important;
    bottom: 20px !important;
    right: 20px !important;
}


/*.box-d>div:nth-child(1){
    background: url("../img/item-5.png") no-repeat;
    background-size: cover;
}

.box-d>div:nth-child(2){
    background: url("../img/item-6.png") no-repeat;
    background-size: cover;
}

.box-d>div:nth-child(3){
    background: url("../img/item-6.png") no-repeat;
    background-size: cover;
}*/

.box-e{
    display: flex;
    justify-content: space-between;
    padding: 8% 8%;
    background: url(../img/bg-box-4.png) no-repeat;
    background-size: cover;
    background-color: #dddddd;
    background-position: center;
}

.box-e>div:nth-child(1){
    width: 68%;
}

.box-e>div:nth-child(1)>iframe{
    width: 100%;
}

.box-e>div:nth-child(1)>img{
    width: 100%;
    object-fit: contain;
}

.box-e>div:nth-child(2){
    width: 30%;
}

.box-e>div:nth-child(2)>h4{
    color: #A0BE52;
    font-size: 50px;
    font-family: 'Foco-Regular';
    font-weight: 100;
}

.box-e>div:nth-child(2)>p{
    color: #707070;
    font-family: 'Foco-Regular';
    font-size: 32px;
    font-weight: 100;
}

.box-f{
    padding: 8% 8%;
    /*background: url(../img/bg-box-5.png) no-repeat;*/
    background-size: cover;
    background-color: #dddddd;
    background-position: center center;
    position: relative;
}

.box-f>h4{
    color: #A0BE52;
    font-size: 50px;
    font-family: 'Foco-Regular';
    font-weight: 100;
    text-transform: uppercase;
}

.box-f>p{
    color: #6E6E6E;
    font-family: 'Foco-Regular';
    font-size: 32px;
    font-weight: 100;
    width: 600px;
}

.box-f>div{
    width:700px;
}

.box-f>div>button{
    background: #A6CE39;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 22px;
    cursor: pointer;
    margin-right: 6px;
    margin-bottom: 6px;
    font-size: 18px;
    padding-left: 20px;
    padding-right: 20px;
}

.box-f>img{
    position: absolute;
    right: 142px;
    top: 40px;
}

.box-g{
    padding: 8% 8%;
    background-size: cover;
    background-color: #EDEDED;
}

.box-g>h4{
    color: #A0BE52;
    font-size: 50px;
    font-family: 'Foco-Regular';
    font-weight: 100;
    text-transform: uppercase;
}

.box-g>p{
    color: #6E6E6E;
    font-family: 'Foco-Regular';
    font-size: 32px;
    font-weight: 100;
    width: 600px;
}

.box-g>div>img{
    height: 246px;
    object-fit: contain;
    margin-right: 20px;
}

.box-h{
    background-color: #d1d1d182;
    padding: 8% 8%;
    background-size: cover;
}

.box-h>h4{
    text-align: center;
    color: #A0BE52;
    font-family: 'Foco-Regular';
    font-size: 50px;
    font-weight: 100;
    text-transform: uppercase;
}

.box-h>h5{
    text-align: center;
    color: #757575;
    font-family: 'Foco-Regular';
    font-size: 32px;
    font-weight: 100;
    margin-top: -32px;
}

.box-h>div{
    width: 600px;
    margin: auto;
    display: flex;
    justify-content: space-around;
}

.box-h>div>img{
    height: 100px;
}

.box-i{
    background-color: #A6CE39;
    padding: 8% 8%;
    background-size: cover;
    font-family: 'Foco-Regular';
}

.box-i>h1{
    font-size: 50px;
    color: #fff;
    text-align: center;
}

.box-i>div{
    width: 800px;
    margin: auto;
}

.box-i>div>input,.box-i>div>textarea{
    width: 100%;
    background: #424242;
    border: none;
    color: #fff;
    padding: 14px;
    border-radius: 12px;
    font-size: 26px;
    margin-bottom: 20px;
    font-family: 'Foco-Regular';
}

.box-i>div>input::placeholder,.box-i>div>textarea::placeholder{
    color: #fff;
}

.box-i>button{
    font-size: 24px;
    padding: 10px 44px;
    border-radius: 10px;
    border: none;
    margin: auto;
    display: block;
}

/* entire container, keeps perspective */
.flip-container {
	perspective: 1000;
}
	/* flip the pane when hovered */
	.flip-container:hover .flipper, .flip-container.hover .flipper {
		transform: rotateY(180deg);
	}

.flip-container, .front, .back {
	width: 32%;
    min-height: 539px;
    margin: auto;
}

/* flip speed goes here */
.flipper {
	transition: 0.6s;
	transform-style: preserve-3d;

	position: relative;
}

/* hide back of pane during swap */
.front, .back {
	backface-visibility: hidden;
    width: 100%;
	position: absolute;
	top: 0;
	left: 0;
   color: cornSilk;
   text-align: center;
   font: 3em/240px 'Helvetica Neue', Helvetica, sans-serif;
   box-shadow: -5px 5px 5px #aaa;
}

/* front pane, placed above back */
.front {
	z-index: 2;
	/* for firefox 31 */
	transform: rotateY(0deg);
  /*background: cornflowerBlue;*/
}

/* back, initially hidden pane */
.back {
	transform: rotateY(180deg);
    background: #393939;
}

footer{
    background: #A8CF45;
    font-family: 'Foco-Regular';
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4%;
}

footer>div:nth-child(1){
    width:25%;
    color: #484A43;
}

footer>div:nth-child(2){
    width:50%;
    text-align: center;
}

footer>div:nth-child(3){
    width:25%;
}

footer>div:nth-child(3)>button{
    display: block;
    background: #454742;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 16px;
    text-transform: uppercase;
    margin-bottom: 6px;
    cursor: pointer;
    float: right;
    clear: both;
}

footer>div:nth-child(3)>section{
    background: url(../img/bg-redes-cofaco.png) no-repeat;
    background-size: 100%;
    display: flex;
    justify-content: end;
    padding: 10px;
    align-content: center;
    clear: both;
}

footer>div:nth-child(3)>section>img{
    
    object-fit: contain;
    margin-right: 20px;
    height: 20px;
    cursor: pointer;
}

@media(max-width:1680px){
    .box-b>div{
        min-height: 424px; 
    }

    .flip-container, .front, .back {
        min-height: 424px;
    }

    .box-a>div>section:nth-child(1)>p {
        font-size: 40px;
    }

    .box-c>div>div {
        margin-bottom: 0px;
    }

    .box-c>div{
        background-size: cover;
    }
}

@media(max-width:1440px){
    .box-b>div{
        min-height: 362px; 
    }

    .flip-container, .front, .back {
        min-height: 362px;
    }

    /*.box-c>div {
        height: 600px;
    }*/

    /*.box-c>div>img {
        width: 660px;
    }*/

    .box-f>img {
        right: 40px;
        top: 100px;
        width: 500px;
    }

    .box-c>div>h1 {
        font-size: 40px;
    }

    .box-c>div>p {
        font-size: 22px;
    }

    .box-c>div>div>button {
        margin-right: 66px;
    }

    .box-a>div>section:nth-child(1)>p {
        font-size: 32px;
    }

    .box-a>div>section:nth-child(1)>button {
        font-size: 22px;
    }

    .box-d div h5 {
        font-size: 20px;
    }

    .img-reload-d {
        width: 28px;
    }

    .box-e>div:nth-child(2)>h4 {
        font-size: 40px;
    }

    .box-e>div:nth-child(2)>p {
        font-size: 22px;
    }

    .box-f>h4{
        font-size: 40px;
    }

    .box-f>p {
        font-size: 22px;
    }

    .box-f>div>button {
        font-size: 14px;
    }

    .box-g>h4{
        font-size: 40px;
    }

    .box-g>p{
        font-size: 22px;
    }

    .box-h>h4{
        font-size: 40px;
    }

    .box-h>h5{
        font-size: 22px;
    }

    .box-i>h1{
        font-size: 40px;
    }

    .box-i>div>input, .box-i>div>textarea{
        font-size: 20px;
    }

    .box-i>button {
        font-size: 18px;
    }

    .box-d>h1 {
        font-size: 40px;
    }
}

@media(max-width:1366px){
    .box-b>div{
        min-height: 344px; 
    }

    .flip-container, .front, .back {
        min-height: 344px;
    }

    .box-a>div>section:nth-child(1)>p {
        font-size: 28px;
    }

    .box-c>div>div>button {
        margin-bottom: 24px;
    }

    .btn-vm {
        font-size: 18px;
    }
} 

@media(max-width:1280px){
    .box-b>div{
        min-height: 322px; 
    }

    .flip-container, .front, .back {
        min-height: 322px;
    }

    .box-f>div>button {
        font-size: 12px;
    }

    .box-f>img {
        right: 40px;
        top: 100px;
        width: 460px;
    }

    .box-c>div>div>button {
        margin-bottom: 24px;
        width: 20px;
        height: 20px;
        margin-top: 8px;
    }

    .box-a>div>section:nth-child(1)>p {
        font-size: 26px;
    }

    .box-a>div>section:nth-child(1)>h1 {
        font-size: 80px;
    }

    .box-a>nav>div:nth-child(2)>ul{
        font-size: 1.1em;
    }

    /*.box-c>div>img {
        width: 530px;
    } */   
} 

@media(max-width:580px){
    body{
        overflow-x: hidden;
    }

    .box-a>nav>div:nth-child(2)>ul{
        display: none;
    }

    .box-a>nav>div:nth-child(1)>img {
        width: 100%;
        object-fit: contain;
    }

    .box-a {
        width: 100%;
        min-height: 300px;
    }

    .box-a>div {
        flex-wrap: wrap;
    }

    .box-a>div>p {
        font-size: 1.2em;
    }

    .box-a>div>p>b {
        font-size: 1.4em;
    }

    .img-item-process {
        position: absolute !important;
        width: 80px !important;
        left: 26px;
        top: -14px;
    }

    

    .box-a>div>section:nth-child(1){
        width: 100%;
        padding-top: 30px;
    }

    .box-a>div>section:nth-child(2){
        width: 92%;
        background-size: 100%;
    }

    .box-a>div>section:nth-child(2)>h4 {
        text-align: center;
        font-size: 20px;
        width: 100%;
    }

    .box-a>div>section:nth-child(2)>p {
        font-size: 16px;
        width: 100%;
        text-align: center;
    }

    .box-a>div>section:nth-child(1)>h1 {
        font-size: 20px;
    }

    .box-a>div>section:nth-child(1)>p {
        font-size: 14px;
        line-height: 18px;
    }

    .box-a>div>section:nth-child(1)>button {
        font-size: 14px;
        margin-top: 10px;
        padding: 0;
    }

    .box-a>div>section:nth-child(1)>button>b {
        background: #a5ce39;
        padding: 8px 10px;
        border-radius: 20px;
        margin-right: 6px;
        color: #fff;
    }

    .box-b {
        flex-wrap: wrap;
    }

    .box-b>section {
        padding: 12% 4%;
    }

    .box-b>div>h1 {
        font-size: 20px;
    }

    .box-b>div>p {
        font-size: 16px;
    }

    .box-b>div>ul {
        font-size: 16px;
    }

    .box-b>div {
        min-height: 378px;
        width: 100%;
        margin-bottom: 20px;
    }

    .flip-container, .front, .back {
        min-height: 378px;
    }

    .box-c>div {
        background-size: cover;
        max-height: 338px;
    }

    .box-c>div>h1 {
        font-size: 20px;
        text-align: center;
    }

    .box-c>div>p {
        font-size: 16px;
        width: 100%;
    }

    .box-c>div>h4 {
        font-size: 16px;
    }

    /*.box-c>div>img {
        width: 100%;
    }*/

    .box-c>div>div {
        margin-bottom: 0px;
        display: flex;
        justify-content: space-between;
    }
    
    .box-c>div>div>button {
        height: 16px;
    }

    .btn-vm {
        font-size: 16px;
    }

    /*.box-c>div>img {
        right: 42px;
    }*/

    .box-d>h1 {
        font-size: 20px;
        text-align: center;
    }

    .box-d>div {
        width: 100%;
        min-height: 400px;
    }

    .box-e {
        flex-wrap: wrap;
    }

    .box-e>div:nth-child(1) {
        width: 100%;
    }

    .box-e>div:nth-child(1)>iframe {
        width: 100%;
        height: 300px;
    }

    .box-e>div:nth-child(2) {
        width: 100%;
    }

    .box-e>div:nth-child(2)>h4 {
        font-size: 20px;
        text-align: center;
    }

    .box-e>div:nth-child(2)>p {
        font-size: 16px;
        text-align: center;
    }

    .box-f{
        min-height: 900px;
    }

    .box-f>h4 {
        font-size: 20px;
        text-align: center;
    }

    .box-f>p {
        font-size: 16px;
        text-align: center;
        width: 100%;
    }

    .box-f>div {
        width: 100%;
    }

    .box-f>img {
        left: 0px;
        top: 480px;
        width: 100%;
        right: 0px;
    }

    .box-g>h4 {
        font-size: 20px;
        text-align: center;
    }

    .box-g>p {
        font-size: 16px;
        text-align: center;
        width: 100%;
    }

    .box-g>div>img {
        height: auto;
        object-fit: contain;
        margin-right: 20px;
        width: 100px;
        margin: auto;
        display: block;
    }

    .box-h>h4 {
        font-size: 20px;
        text-align: center;
    }

    .box-h>h5 {
        font-size: 16px;
        margin-top: -10px;
    }

    .box-h>div {
        width: 100%;
        margin: auto;
        display: block;
    }

    .box-h>div>img {
        height: auto;
        display: block;
        width: 80px;
        margin: auto;
        margin-bottom: 50px;
        object-fit: contain;
    }

    .box-i>h1 {
        font-size: 20px;
    }

    .box-i>div {
        width: 100%;
    }

    .box-i>div>input, .box-i>div>textarea {
        font-size: 16px;
        width: 96%;
        padding: 20px 2%;
    }

    .box-i>button {
        font-size: 14px;
    }

    footer{
        flex-wrap: wrap;
        text-align: center;
    }

    footer>div{
        width:100% !important;
    }

    footer>div>button{
        float: none !important;
        margin: auto;
        margin-top: 20px;
    }

    footer>div:nth-child(2) {
        min-height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    footer>div:nth-child(3)>section {
        justify-content: center;
        padding: 16px;
    }
}