-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
740 lines (644 loc) · 16.6 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
*{
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
min-height: 100vh;
background: rgba(240,242,244,255);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
font-family: "Manrope", Arial, Helvetica, sans-serif;
--color1: #fff;
--color2: #181818;
background-color: white;
}
.highlight {
color: #3180f8;
}
/* Animacion titulos*/
.titulo-container {
overflow: hidden;
border: solid 2px black;
padding-top: 2rem;
}
/* Navigation menu */
.nav-bar {
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
list-style: none;
position: relative;
background-color: var(--color2);
padding: 12px 20px;
font-family: "Sora", Arial, Helvetica, sans-serif;
}
.logo img {width: 40px;}
.menu {display: flex;}
.menu li {padding-left: 30px;}
.menu li a {
display: inline-block;
text-decoration: none;
color: var(--color1);
text-align: center;
transition: 0.15s ease-in-out;
position: relative;
}
.menu li a::after {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 1px;
background-color: var(--color1);
transition: 0.15s ease-in-out;
}
.menu li a:hover::after {width: 100%;}
.open-menu, .close-menu {
position: absolute;
color: var(--color1);
cursor: pointer;
font-size: 1.5rem;
display: none;
}
.open-menu {
top: 50%;
right: 20px;
transform: translateY(-50%);
}
.close-menu {
top: 20px;
right: 20px;
}
#check {display: none;}
@media(max-width: 610px) {
.menu {
flex-direction: column;
align-items: center;
justify-content: center;
width: 80%;
height: 100vh;
position: fixed;
top: 0;
right: 0;
z-index: 100;
background-color: var(--color2);
transition: all 0.2s ease-in-out;
}
.menu li {margin-top: 40px;}
.menu li a {padding: 10px;}
.open-menu, .close-menu {display: block;}
#checked:checked ~ .menu {right: 0;}
}
/* Seccion 1 */
.seccion1 {
display: flex;
justify-content: center;
align-items: center;
gap: 20px; /* Espacio entre los divs */
background-color: #cfcece44;
padding-top: 4cm;
padding-bottom: 3cm;
max-width: 100%; /* Asegura que no exceda el ancho de la pantalla */
margin: 0 auto; /* Centra el contenedor en la pantalla */
padding-left: 1cm;
padding-right: 1cm;
}
.seccion1 div {
flex: 1; /* Asegura que ambos divs tomen el mismo ancho */
max-width: 560px;
margin: 0 10px;
}
.titulo {
font-size: 2.5rem; /* Tamaño por defecto */
font-weight: bold; /* Aplica negrita al texto */
}
/* Media query para cuando la ventana tenga un ancho mayor a 28cm */
@media (min-width: 28cm) {
.titulo {
font-size: 4rem; /* Tamaño más grande para ventanas mayores a 28cm */
}
}
.btn {
height: 40px;
width: 140px;
padding: 5px 20px;
position: relative;
color: white;
background-color: #257aff;
font-size: 18px;
border-radius: 30px;
border: none;
cursor: pointer;
outline: none;
box-shadow: 1px 1px 6px #257aff;
overflow: hidden;
transition: 400ms;
margin-top: 0.5cm;
}
.btn:hover {
background-color: #6fa0fc;
width: 160px;
padding-right: 40px;
box-shadow: 1px 1px 6px #6fa0fc;
}
.btn .fas {
position: absolute;
top: 28%;
margin-left: 10px;
color: white;
transform: translateX(-50%);
opacity: 0;
}
.btn:hover .fas {
opacity: 1;
transform: translateX(0);
}
.btn::before {
content: '';
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, .2);
transform: scaleX(0);
transition: 100ms ease-in-out transform;
}
.btn:active::before {
transform: scaleX(1);
}
/* Seccion 2*/
.seccion2 {
display: flex;
justify-content: center;
align-items: center;
gap: 20px; /* Espacio entre los divs */
padding-top: 4cm;
padding-bottom: 3cm;
max-width: 100%; /* Asegura que no exceda el ancho de la pantalla */
margin: 0 auto; /* Centra el contenedor en la pantalla */
}
/* Logos carousel */
@keyframes slide {
from {
transform: translateX(0);
}
to {
transform: translateX(-100%);
}
}
.logos {
overflow: hidden;
padding: 60px 0;
background: white;
white-space: nowrap;
position: relative;
}
.logos:before,
.logos:after {
position: absolute;
top: 0;
width: 250px;
height: 100%;
content: "";
z-index: 2;
}
.logos:before {
left: 0;
background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}
.logos:after {
right: 0;
background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}
.logos:hover .logos-slide {
animation-play-state: paused;
}
.logos-slide {
display: inline-block;
animation: 35s slide infinite linear;
}
.logos-slide img {
height: 50px;
margin: 0 40px;
}
h2 {
font-size: 2.5rem; /* Tamaño por defecto */
font-weight: bold; /* Aplica negrita al texto */
margin: 0;
line-height: 0.9;
}
/* Estilos para el contenedor de la sección 3 */
#seccion3 {
display: flex; /* Utiliza Flexbox */
flex-direction: column; /* Organiza los elementos en una columna */
align-items: center; /* Centra el contenido horizontalmente */
min-height: 100vh; /* Asegura que el contenedor tenga al menos el alto de la ventana */
}
/* Estilo para el primer div que no está centrado */
#seccion3 > div:first-of-type {
width: 80%; /* Ajusta el ancho según sea necesario */
max-width: 600px; /* Ajusta el ancho máximo según sea necesario */
text-align: left; /* Justifica el texto a la izquierda */
margin-bottom: 20px; /* Espacio inferior para separar de los elementos abajo */
}
/* Estilo base para el div estilizado */
.styled-div {
background-color: #f0f2f4; /* Fondo del div */
border: 1px solid transparent; /* Sin borde inicialmente, borde transparente */
border-radius: 10px; /* Bordes redondeados */
padding: 20px; /* Espaciado interno */
transition: background-color 0.4s, border-color 0.4s; /* Transiciones suaves para el cambio de fondo y borde */
width: 80%; /* Ajusta el ancho según sea necesario */
max-width: 600px; /* Ajusta el ancho máximo según sea necesario */
box-sizing: border-box; /* Incluye el borde en el cálculo del ancho total */
text-align: justify; /* Justifica el texto dentro del contenedor */
margin-bottom: 20px;
}
/* Estilo al pasar el ratón por encima (hover) */
.styled-div:hover {
background-color: white; /* Cambia el fondo a blanco al hacer hover */
}
/* Estilo para justificar el texto dentro del div */
#seccion3 > div:first-of-type h1,
#seccion3 > div:first-of-type p {
margin: 0; /* Quita márgenes para el texto */
padding: 0; /* Quita relleno para el texto */
}
/* Estilos base para los iconos y el contenido */
#icono {
display: flex; /* Utiliza Flexbox para centrar el contenido */
justify-content: center; /* Centra horizontalmente */
align-items: center; /* Centra verticalmente */
width: 2cm; /* Establece el ancho del contenedor */
height: 2cm; /* Establece la altura del contenedor */
border-radius: 20%; /* Bordes redondeados */
background-color: #f0f2f4; /* Color de fondo opcional */
border: 1px solid #ddd; /* Borde opcional */
padding: 0.2cm; /* Espacio interno para el ícono */
font-size: 1cm; /* Tamaño del ícono (ajustar según sea necesario) */
color: #181818; /* Color del ícono opcional */
margin: 10px; /* Espacio opcional entre íconos */
transition: border-color 0.3s; /* Transición suave para el borde */
}
/* Estilo para el borde al hacer hover */
#icono:hover {
border-color: #257aff; /* Añade un borde negro al hacer hover */
}
/* Estilos para la sección 4 */
#seccion4 {
display: flex; /* Utiliza Flexbox para organizar los divs */
flex-direction: column; /* Organiza los elementos en una columna */
align-items: center; /* Centra horizontalmente el contenido */
gap: 20px; /* Espacio entre los divs */
}
/* Título centrado encima de los divs */
#seccion4 h2 {
font-size: 2.5rem; /* Tamaño del título */
font-weight: bold; /* Aplica negrita al texto */
text-align: center; /* Centra el texto */
margin-bottom: 20px; /* Espacio inferior para separar del contenido */
}
/* Estilo para cada div dentro de la sección 4 */
#seccion4 > div {
flex: 1 1 calc(100% - 20px); /* Toma el 100% del ancho menos el espacio de gap */
max-width: 560px; /* Ajusta el ancho máximo según sea necesario */
box-sizing: border-box; /* Incluye el borde en el cálculo del ancho total */
background-color: #fff; /* Fondo blanco opcional */
border-radius: 10px; /* Bordes redondeados opcionales */
padding: 20px; /* Espaciado interno */
transition: border-color 0.3s ease; /* Transición suave para el borde */
}
/* Media query para pantallas medianas (2 divs en una fila) */
@media (min-width: 600px) {
#seccion4 {
flex-direction: row; /* Organiza los divs en una fila */
flex-wrap: wrap; /* Permite que los divs se envuelvan a la siguiente fila si no caben */
gap: 20px; /* Espacio entre los divs */
justify-content: center; /* Centra los divs horizontalmente */
}
#seccion4 > div {
flex: 1 1 calc(50% - 20px); /* Toma el 50% del ancho menos el espacio de gap */
max-width: calc(50% - 20px); /* Ajusta el ancho máximo según el ancho calculado */
}
}
/* Media query para pantallas grandes (3 divs en una fila) */
@media (min-width: 768px) {
#seccion4 > div {
flex: 1 1 calc(33.333% - 20px); /* Toma un tercio del ancho menos el espacio de gap */
max-width: calc(33.333% - 20px); /* Ajusta el ancho máximo según el ancho calculado */
}
}
/* Media query para pantallas muy grandes (4 divs en una fila) */
@media (min-width: 1200px) {
#seccion4 > div {
flex: 1 1 calc(25% - 20px); /* Toma un cuarto del ancho menos el espacio de gap */
max-width: calc(25% - 20px); /* Ajusta el ancho máximo según el ancho calculado */
}
}
/* Testimonial vertical slider */
#testimonial-slider {
position: relative;
margin-top: 2cm;
margin-left: 4cm;
margin-right: 4cm;
}
.slider-container {
background-color: #cfcece44; /* Fondo semitransparente */
border-radius: 15px; /* Bordes redondeados */
padding: 0.5rem; /* Espaciado interno opcional */
overflow: hidden; /* Asegura que las tarjetas no sobresalgan del contenedor */
height: 25cm;
margin-top: 0;
}
.cards {
display: grid;
place-items: center;
min-height: 100vh;
}
.outer {
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
}
.cards .card1 {
background: #fff;
padding: 1.5rem;
max-width: 30rem;
border-radius: .5rem;
position: absolute;
pointer-events: none;
opacity: 0;
animation: animate 15s infinite linear;
animation-delay: calc(3s * var(--delay));
}
.profile, .header {
display: flex;
align-items: center;
}
.header {
justify-content: space-between;
}
.profile .img {
height: 50px;
width: 50px;
border-radius: 50%;
padding: 5px;
background-color: #fff;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.178);
}
.profile .img img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 50%;
}
.profile .details {
margin-left: 10px;
}
.op-star {
color: #dfe1c8;
font-size: 1.1rem;
}
.outer:hover .card1 {
animation-play-state: paused;
}
.cards .card1:last-child {
animation-delay: calc(-3s * var(--delay));
}
@keyframes animate {
0% {
opacity: 0;
transform: translateY(100%) scale(0.5);
}
5%,20% {
opacity: 0.4;
transform: translateY(100%) scale(0.7);
}
25%,40% {
opacity: 1;
pointer-events: all;
transform: translateY(0%) scale(1);
}
45%,60% {
opacity: 0.4;
transform: translateY(-100%) scale(0.7);
}
65%,100% {
opacity: 0;
transform: translateY(-100%) scale(0.5);
}
}
@media (max-width:467px) {
.card1 {
font-size: 10px;
padding: .25rem!important;
margin: .5rem;
}
}
/* Marquee infinito */
.marquee-w {
position: relative;
display: block;
width: 100%;
height: 140px;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
overflow: hidden;
}
.marquee {
position: absolute;
display: block;
margin: auto auto;
white-space: nowrap;
overflow: hidden;
min-width: 100%;
height: 100%;
}
.marquee span {
display: inline-block;
padding-left: 100%;
font-family: "Manrope", Arial, Helvetica, sans-serif;
text-align: center;
-webkit-text-stroke: 1px #000;
white-space: nowrap;
min-width: 100%;
height: 100%;
line-height: 140px;
font: 85px;
animation: marquee 10s linear infinite;
font-size: 4rem;
font-weight: bold;
}
.marquee2 span {
animation-delay: 5s;
}
@keyframes marquee {
0% {
transform: translate(0, 0);
}
100% {
transform: translate(-100%, 0);
}
}
/* accordion */
#seccion7 {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
width: 100%;
}
.accordion {
width: 80%;
margin: 0 auto;
}
.accordion li {
list-style: none;
width: 100%;
margin: 20px 0;
padding: 10px;
border-radius: 8px;
background: #f0f2f4;
}
.accordion li label {
display: flex;
align-items: center;
padding: 10px;
font-size: 18px;
font-weight: 500;
cursor: pointer;
}
.label-accordion::before {
content: '+';
margin-right: 10px;
font-size: 24px;
font-weight: 600;
}
input[type="radio"] {
display: none;
}
.accordion .content {
color: #555;
padding: 0 10px;
line-height: 26px;
max-height: 0;
overflow: hidden;
transition: max-height 0.7s, padding 0.5s;
}
.accordion input[type="radio"]:checked + label + .content {
max-height: 400px;
padding: 10px 10px 20px;
}
.accordion input[type="radio"]:checked + label::before {
content: '-';
}
#seccion8 {
display: flex;
justify-content: center;
align-items: center;
height: 80vh; /* Ajusta la altura según necesites */
background-color: white; /* Color de fondo de la sección */
}
.seccion8 {
width: 80%;
height: 100%;
background-color: #222225;
border-radius: 20px;
padding: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
padding-bottom: 2cm;
}
.contact-container {
max-width: 700px;
margin: auto;
width: 100%;
background: #f3f3f3;
padding: 25px 30px;
border-radius: 20px;
}
.contact-container .contact-title {
font-size: 25px;
font-weight: 500;
position: relative;
}
.contact-container .contact-title::before {
content: '';
position: absolute;
left: 0;
bottom: 0;
height: 3px;
width: 146px;
background: linear-gradient(135deg, #71b7e6, #9b59b6);
}
.contact-container form .user-details {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 20px 0 12px 0;
}
form .user-details .input-box {
margin-bottom: 15px;
width: calc(100% / 2 - 20px);
}
.user-details .input-box .contact-details {
display: block;
font-weight: 500;
margin-bottom: 5px;
}
.user-details .input-box input {
height: 45px;
width: 100%;
outline: none;
border-radius: 5px;
border: 1px solid #ccc;
padding-left: 15px;
font-size: 16px;
border-bottom-width: 2px;
transition: all 0.3s ease;
}
.user-details .input-box input:focus,
.user-details .input-box input:valid {
border-color: #9b59b6;
}
form .contact-button {
height: 45px;
margin: 45px 0;
}
form .contact-button input {
height: 100%;
width: 100%;
outline: none;
color: #fff;
border: none;
font-size: 18px;
font-weight: 500;
border-radius: 5px;
letter-spacing: 1px;
background: linear-gradient(135deg, #71b7e6, #9b59b6);
/* Asegúrate de incluir una transición suave para la sombra */
transition: box-shadow 0.3s ease;
}
form .contact-button input:hover {
/* Añadir sombra en la parte inferior al hacer hover */
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
@media (max-width: 584px) {
.contact-container {
max-width: 100%;
}
form .user-details .input-box {
margin-bottom: 15px;
width: 100%;
}
.contact-container form .user-details {
max-height: 300px;
overflow-y: scroll;
}
}