@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;400;600;800&family=Sofia&display=swap');

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
   font-family: 'Inter', sans-serif !important;
}

html {
   scroll-behavior: smooth;
}


/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/* SETUP */

.back-black {
   background-color: #001845;
   
}

.tab-button.back-black {
   background-color: #fff;
   border: solid 1px #001845;
   color: #001845;
}

.tab-button.back-black.active {
   background-color: #001845;
   color: #fff;
}

.tab-button.back-black.active:hover{
   background-color: #142D5B;
}

a {
   text-decoration: none !important;
}

.last-p {
   margin-bottom: 3rem;
}

button {
	background: none;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	outline: inherit;
}

/* START */

.strip {
   width: 100%;
   height: 10px;
   background-color: #FD9B40;
}

.header {
   height: 72px;
   width: 100%;
   display: flex;
   align-items: center;
}

.header a {
   background-color: #FD9B40;
}

.home {
   padding: 0.4rem 1rem;
   margin-left: 2rem;
   border-radius: 1rem;
   color: #fff;
}

.box-discovery {
   width: 100%;
}

.wrap-d1 {
   padding: 1.6rem;
   max-width: 1000px;
   margin: auto;
   margin-bottom: 1rem;
}

.wrap-d1 h4, .wrap-d1 h1 {
 color: #FD9B40;
}

.wrap-d1 h1 {
   font-size: 2.8rem;
   font-weight: 600;
}

.wrap-d1 h2 {
   font-size: 2rem;
}

.back-proto {
   background-color:#E4FFE7;
   padding: 4rem 0;
   display: flex;
   justify-content: center;
}

.img-desk {
   margin: auto;
   box-shadow: 3px 10px 26px rgba(0,0,0,0.4);
   width: 90%;
}

@media screen and (min-width: 1024px) {
   .wrap-d1 {
      padding: 1.6rem;
      max-width: 1000px;
      margin: auto;
      margin-bottom: 5rem;
   }

   .back-proto {
      background-color:#E4FFE7;
      padding: 5rem 0;
      display: flex;
      justify-content: center;
   }

   .wrap-d1 h1 {
      font-size: 4rem;
   }
   
   .wrap-d1 h2 {
      font-size: 3rem;
   }

   .img-desk {
      margin: auto;
      box-shadow: 3px 10px 26px rgba(0,0,0,0.4);
      width: auto;
   }

}

.wp-img {
   width: 100%;
}

.footer {
   padding: 1.6rem;
   background-color: #001845;
   color: #fff;
   margin-top: 5rem;
   display: flex;
   flex-direction: column;
   align-items: flex-start;
   justify-content: flex-start;
}

.txt-footer {
   margin-bottom: 0.5rem;
}

.linkedin img {
   width: 24px;
}

@media screen and (min-width: 1024px) {
   .footer {
      flex-direction: row;
      align-items: center;
      justify-content: flex-start;
   }

   .txt-footer {
      margin-right: 3rem;
      margin-bottom: 0;
   }
}

.whats {
   cursor: pointer;
   position: fixed;
   bottom: 2rem;
   right: 2rem;
   width: 40px;
   height: 40px;
   filter: drop-shadow(1px 2px 2px rgba(0,0,0,0.3));
   transition: all;
}

.whats:hover {
   -webkit-animation: jello-horizontal 0.9s both;
     animation: jello-horizontal 0.9s both;
     filter: drop-shadow(2px 2px 7px rgba(0,0,0,0.3));
}

@-webkit-keyframes jello-horizontal {
   0% {
     -webkit-transform: scale3d(1, 1, 1);
             transform: scale3d(1, 1, 1);
   }
   30% {
     -webkit-transform: scale3d(1.25, 0.75, 1);
             transform: scale3d(1.25, 0.75, 1);
   }
   40% {
     -webkit-transform: scale3d(0.75, 1.25, 1);
             transform: scale3d(0.75, 1.25, 1);
   }
   50% {
     -webkit-transform: scale3d(1.15, 0.85, 1);
             transform: scale3d(1.15, 0.85, 1);
   }
   65% {
     -webkit-transform: scale3d(0.95, 1.05, 1);
             transform: scale3d(0.95, 1.05, 1);
   }
   75% {
     -webkit-transform: scale3d(1.05, 0.95, 1);
             transform: scale3d(1.05, 0.95, 1);
   }
   100% {
     -webkit-transform: scale3d(1, 1, 1);
             transform: scale3d(1, 1, 1);
   }
 }
 @keyframes jello-horizontal {
   0% {
     -webkit-transform: scale3d(1, 1, 1);
             transform: scale3d(1, 1, 1);
   }
   30% {
     -webkit-transform: scale3d(1.25, 0.75, 1);
             transform: scale3d(1.25, 0.75, 1);
   }
   40% {
     -webkit-transform: scale3d(0.75, 1.25, 1);
             transform: scale3d(0.75, 1.25, 1);
   }
   50% {
     -webkit-transform: scale3d(1.15, 0.85, 1);
             transform: scale3d(1.15, 0.85, 1);
   }
   65% {
     -webkit-transform: scale3d(0.95, 1.05, 1);
             transform: scale3d(0.95, 1.05, 1);
   }
   75% {
     -webkit-transform: scale3d(1.05, 0.95, 1);
             transform: scale3d(1.05, 0.95, 1);
   }
   100% {
     -webkit-transform: scale3d(1, 1, 1);
             transform: scale3d(1, 1, 1);
   }
 }