@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

.light {
--mainColor: #64bcf4;
--hoverColor: #5bacdf;
--backgroundColor: #f1f8fc;
--darkOne: #312f3a;
--darkTwo: #45424b;
--lightOne: #919191;
--lightTwo: #aaa;
}

*,
*::before,
*::after {
padding: 0;
margin: 0;
box-sizing: border-box;
}

body {
font-family: "Poppins", sans-serif;
}

img {
width: 100%;
}

a.buton {
text-decoration: none;
}

.big-wrapper {
position: relative;
padding: 1.7rem 0 2rem;
width: 100%;
/* min-height: 100vh; */
overflow: hidden;
background-color: #fff;
scroll-snap-align: start;
display: flex;
flex-direction: column;
justify-content: center;
}
.main-mandatory{
-ms-scroll-snap-type: y mandatory;
scroll-snap-type: y mandatory;
}
.cont-info{
position: relative;
max-width: 81rem;
width: 100%;
margin: 0 auto;
padding: 0 3rem;
z-index: 10;
}

header {
position: relative;
z-index: 70;
}

header .cont-info {
display: flex;
justify-content: space-between;
align-items: center;
}

.overlay {
display: none;
}

.logo {
display: flex;
align-items: center;
cursor: pointer;
}

.logo img {
width: 40px;
margin-right: 0.6rem;
margin-top: -0.6rem;
}

.logo h3 {
color: var(--darkTwo);
font-size: 1.55rem;
line-height: 1.2;
font-weight: 700;
}

.links ul {
display: flex;
list-style: none;
align-items: center;
}

.links a {
color: var(--lightTwo);
margin-left: 4.5rem;
display: inline-block;
transition: 0.3s;
text-decoration: none;
}

.links a:hover {
color: var(--hoverColor);
transform: scale(1.05);
text-decoration: none;
}

.btun {
display: inline-block;
padding: 0.5rem 8rem;
text-decoration: none;
color: #fff !important;
background-color: #005e85;
border-radius: 16px;
text-transform: capitalize;
transition: 0.3s ease-in-out;
}

.btun:hover {
background-color: var(--hoverColor);
transform: scale(1) !important;
}

.bar::before,
.bar::after {
content: "";
position: absolute;
width: 100%;
height: 100%;
background-color: var(--darkTwo);
border-radius: 3px;
transition: 0.5s;
}
.title-principal{
font-size: 4rem;
color: #272525;
letter-spacing: -.05em;
line-height: 1;
margin-bottom: 0.5rem;
margin-left: -0.25rem;
}
.bar::before {
transform: translateY(-8px);
}

.bar::after {
transform: translateY(8px);
}

.big-wrapper.active .hamburger-menu .bar {
background-color: transparent;
}

.big-wrapper.active .bar::before {
transform: translateY(0) rotate(-45deg);
}

.big-wrapper.active .bar::after {
transform: translateY(0) rotate(45deg);
}

.showcase-area .cont-info {
display: grid;
grid-template-columns: repeat(2, 1fr);
align-items: center;
justify-content: center;
}

.big-title {
font-size: 1.2rem;
color: var(--darkOne);
text-transform: none;
line-height: 1.2;
}
ul.list {
color: #777;
align-items: center;
justify-content: center;
padding: 0 2vmin;
}
ul.list li{
color: var(--lightOne);
font-size: 1.1rem;
margin: 1.9rem 0 2.5rem;
max-width: 600px;
line-height: 1.4;
}
.cont-info-2{
display: flex;
align-items: center;
justify-content: center;
}
.text {
color: var(--lightOne);
font-size: 1.1rem;
margin: 1.9rem 0 2.5rem;
max-width: 600px;
line-height: 2.3;
}

.showcase-area .btun {
box-shadow: 0 0 40px 2px rgba(0, 0, 0, 0.05);
}
.showcase-area2{
padding: 0 250px;
}
.person {
width: 100%;
transform: translate(15%, 25px);
}
.title-list{
margin-left: 1rem;
font-weight: 900;
font-size: 1.618rem;
text-transform: uppercase;
letter-spacing: 0.1ch;
line-height: 1;
padding-bottom: 0.5em;
color: #272525;
margin-bottom: 1rem;
position: relative;
}
.first-container{
display: flex;
justify-content: center;
align-items: center;
/* min-height: 85vh; */
min-height: 95vh;
background: #fff;
flex-direction: column;
}
.center-container{
position: relative;
display: flex;
flex-direction: column;
gap: 30px;
}
.center-container .box-list{
position: relative;
width: 550px;
height: 100px;
background: #fff;
transition: 0.5s ease-in-out;
/* cursor: pointer; */
box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.25);
user-select: none;
}
.center-container .box-list:nth-child(1){
transform: translate(-70px);
}
.center-container .box-list:nth-child(3){
transform: translate(70px);
}
.center-container .box-list:nth-child(4){
transform: translate(150px);
}
.center-container:hover .box-list:nth-child(1){
transform: translate(0px);
}
.center-container:hover .box-list:nth-child(3){
transform: translate(0px);
}
.center-container:hover .box-list:nth-child(4){
transform: translate(0px);
}
.center-container .box-list::before{
content:'';
position: absolute;
width: 6px;
height: 100%;
background: var(--clr);
transition: 0.5s ease-in-out;
}
.center-container .box-list:hover::before{
width: 100%;
}
.center-container .box-list .content-list{
position: relative;
display: flex;
align-items: center;
height: 100%;
}
.center-container .box-list .content-list .icon{
position: relative;
min-width: 100px;
display: flex;
justify-content: center;
align-items: center;
}
.center-container .box-list .content-list .icon i{
font-size: 2.5em;
color: var(--clr);
transition: 0.5s ease-in-out;
}
.center-container .box-list:hover .content-list .icon i{
color: #fff;
}
.center-container .box-list:hover .content-list .text-list  h3.list-h{
font-weight: 500;
color: var(--clr);
}
.center-container .box-list:hover .content-list .text-list p{
font-size: 0.9em;
color: #919191;
transition: 0.5s ease-in-out;
}
.center-container .box-list:hover .content-list .text-list p,
.center-container .box-list:hover .content-list .text-list  h3.list-h{
color: #fff;
}

@keyframes appear {
0% {
clip-path: circle(30% at -25% -25%);
}
100% {
clip-path: circle(150% at 0 0);
}
}
@media screen and (min-width:1444px) and (max-width:2920px) {
.center-container .box-list {
width: 700px;
}
}
@media screen and (max-width: 870px) {
.hamburger-menu {
display: flex;
}
.right{
grid-row: 1;
}
.links {
position: fixed;
top: 0;
right: 0;
max-width: 450px;
width: 100%;
height: 100%;
background-color: var(--mainColor);
z-index: 95;
display: flex;
align-items: center;
justify-content: center;
transform: translateX(100%);
transition: 0.5s;
}

.links ul {
flex-direction: column;
}

.links a {
color: #fff;
margin-left: 0;
padding: 2rem 0;
}

.links .btn {
background: none;
}

.overlay {
display: block;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.7);
opacity: 0;
pointer-events: none;
transition: 0.5s;
}

.big-wrapper.active .links {
transform: translateX(0);
box-shadow: 0 0 50px 2px rgba(0, 0, 0, 0.4);
}

.big-wrapper.active .overlay {
pointer-events: all;
opacity: 1;
}

.showcase-area {
padding: 2.5rem 0;
max-width: 700px;
margin: 0 auto;
}

.showcase-area .cont-info {
grid-template-columns: 1fr;
justify-content: center;
grid-gap: 2rem;
}

.big-title {
font-size: 1rem;
}

.text {
font-size: 0.95rem;
margin: 1.4rem 0 1.5rem;
}

.person {
width: 100%;
transform: none;
}

.logo h3 {
font-size: 1.25rem;
}

.shape {
bottom: -180px;
left: -150px;
}
.showcase-area2{
padding: 0 50px;
}
.cta{
display: flex;
justify-content: center;
}
.center-container .box-list{
width: 100%;
}
.center-container .box-list:nth-child(1){
transform: translate(0px);
}
.center-container .box-list:nth-child(3){
transform: translate(0px);
}
.center-container .box-list:nth-child(4){
transform: translate(0px);
}
.center-container{
padding: 20px;
}
}

@media screen and (max-width: 470px) {
.cta{
display: flex;
justify-content: center;
}
.right{
grid-row: 1;
}
.cont-info {
padding: 0 1.5rem;
}

.big-title {
font-size: 0.9rem;
}

.text {
margin: 1.1rem 0 1.5rem;
}

.showcase-area .btn {
font-size: 0.8rem;
}
.showcase-area2{
padding: 0 50px;
}
.center-container{
padding: 20px;
}
.center-container .box-list{
width: 100%;
}
.center-container .box-list:nth-child(1){
transform: translate(0px);
}
.center-container .box-list:nth-child(3){
transform: translate(0px);
}
.center-container .box-list:nth-child(4){
transform: translate(0px);
}
.center-container .box-list .content-list .text-list h3.list-h{
font-size: 17px;

}
.btun {
padding: 0.5rem 4rem;
}
.title-principal {
font-size: 2rem;
}
}
