Preview de mixed.css
/* MIXED CSS PACK */
/* Template: fletesylogisticacristian.com.ar/index.html */
/* Template mtime: 2026-05-05 15:09:40 */
/* external link (no embedded): https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@700;800&display=swap */
/* external link (no embedded): https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css */
/* external link (no embedded): https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css */
/* external link (no embedded): https://unpkg.com/[email protected]/dist/aos.css */
/* ===== INLINE <style> BLOCK #1 ===== */
:root {
--primary: #0066ff;
--primary-dark: #0052cc;
--secondary: #00d4ff;
--dark: #0a0a0a;
--light: #ffffff;
--gray: #f8f9fa;
--dark-gray: #6c757d;
--gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
--shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
--transition: all 0.3s ease;
}
body {
font-family: 'Poppins', sans-serif;
color: var(--dark);
background-color: var(--light);
overflow-x: hidden;
line-height: 1.6;
padding-top: 80px;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
}
/* Navbar */
.navbar {
padding: 15px 0;
background-color: rgba(255, 255, 255, 0.95);
box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
transition: var(--transition);
}
.navbar.scrolled {
padding: 10px 0;
background-color: rgba(255, 255, 255, 0.98);
}
.navbar-brand {
font-weight: 800;
font-size: 1.5rem;
color: var(--primary) !important;
display: flex;
align-items: center;
}
.navbar-brand span {
color: var(--dark);
}
.navbar-brand i {
margin-right: 10px;
font-size: 1.5rem;
}
.nav-link {
font-weight: 500;
color: var(--dark) !important;
margin: 0 8px;
position: relative;
transition: var(--transition);
}
.nav-link:hover {
color: var(--primary) !important;
}
.nav-link::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: 0;
left: 0;
background-color: var(--primary);
transition: var(--transition);
}
.nav-link:hover::after {
width: 100%;
}
.navbar-toggler {
border: none;
padding: 0.5rem;
}
.navbar-toggler:focus {
box-shadow: none;
}
.navbar-toggler-icon {
background-image: none;
width: 1.5em;
height: 1.5em;
position: relative;
}
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
content: '';
position: absolute;
width: 100%;
height: 2px;
background-color: var(--primary);
left: 0;
transition: var(--transition);
}
.navbar-toggler-icon::before {
top: 0.25em;
}
.navbar-toggler-icon::after {
bottom: 0.25em;
}
/* Hero Section */
.hero {
position: relative;
height: 100vh;
min-height: 600px;
display: flex;
align-items: center;
background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/herotr.png') no-repeat center center/cover;
color: var(--light);
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: var(--gradient);
opacity: 0.3;
z-index: 1;
}
.hero-content {
position: relative;
z-index: 2;
}
.hero h1 {
font-size: 3.5rem;
font-weight: 800;
margin-bottom: 1.5rem;
line-height: 1.2;
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.hero p {
font-size: 1.25rem;
max-width: 600px;
margin: 0 auto 2rem;
opacity: 0.9;
}
.hero-btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 12px 30px;
border-radius: 50px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
transition: var(--transition);
position: relative;
overflow: hidden;
z-index: 1;
}
.hero-btn-primary {
background: var(--gradient);
color: white;
border: none;
box-shadow: 0 5px 15px rgba(0, 102, 255, 0.4);
}
.hero-btn-primary:hover {
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(0, 102, 255, 0.6);
color: white;
}
.hero-btn-secondary {
background: transparent;
color: white;
border: 2px solid white;
margin-left: 15px;
}
.hero-btn-secondary:hover {
background: white;
color: var(--primary);
transform: translateY(-3px);
}
/* Secciones generales */
.section {
padding: 100px 0;
position: relative;
}
.section-title {
position: relative;
margin-bottom: 60px;
text-align: center;
}
.section-title h2 {
font-size: 2.5rem;
font-weight: 800;
margin-bottom: 1rem;
color: var(--primary);
}
.section-title .title-bg {
position: absolute;
top: -20px;
left: 50%;
transform: translateX(-50%);
font-size: 4.5rem;
font-weight: 900;
color: rgba(0, 102, 255, 0.05);
z-index: -1;
white-space: nowrap;
}
.section-title p {
max-width: 700px;
margin: 0 auto;
color: var(--dark-gray);
}
/* Sección Quiénes Somos */
.about-section {
background-color: var(--gray);
}
.about-content {
display: flex;
align-items: center;
}
.about-img {
position: relative;
border-radius: 10px;
overflow: hidden;
box-shadow: var(--shadow);
background: #fff;
display: flex;
align-items: center;
justify-content: center;
}
.about-img img {
width: 100%;
height: auto;
object-fit: contain;
transition: var(--transition);
}
.about-img:hover img {
transform: scale(1.03);
}
.about-text {
padding-left: 30px;
}
.about-text h3 {
font-size: 1.8rem;
margin-bottom: 20px;
color: var(--primary);
}
.about-features {
margin-top: 30px;
}
.about-feature {
display: flex;
margin-bottom: 15px;
}
.about-feature i {
color: var(--primary);
font-size: 1.2rem;
margin-right: 15px;
margin-top: 3px;
}
/* Sección Servicios */
.services-section {
background-color: var(--light);
}
.service-card {
background: white;
border-radius: 10px;
padding: 30px;
margin-bottom: 30px;
box-shadow: var(--shadow);
transition: var(--transition);
text-align: center;
border-bottom: 3px solid transparent;
}
.service-card:hover {
transform: translateY(-10px);
border-bottom-color: var(--primary);
}
.service-icon {
width: 80px;
height: 80px;
margin: 0 auto 20px;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
border-radius: 50%;
color: var(--primary);
font-size: 2rem;
}
.service-card h3 {
font-size: 1.3rem;
margin-bottom: 15px;
}
/* Sección Por qué elegirnos */
.why-us-section {
background: linear-gradient(135deg, rgba(0, 102, 255, 0.03) 0%, rgba(0, 212, 255, 0.03) 100%);
}
.feature-box {
display: flex;
align-items: flex-start;
margin-bottom: 30px;
background: white;
padding: 25px;
border-radius: 10px;
box-shadow: var(--shadow);
transition: var(--transition);
}
.feature-box:hover {
transform: translateY(-5px);
}
.feature-icon {
flex-shrink: 0;
width: 60px;
height: 60px;
display: flex;
align-items: center;
justify-content: center;
background: var(--gradient);
color: white;
border-radius: 50%;
font-size: 1.5rem;
margin-right: 20px;
}
.feature-content h3 {
font-size: 1.3rem;
margin-bottom: 10px;
}
/* Sección Trabajos */
.portfolio-section {
background-color: var(--gray);
}
.portfolio-filter {
display: flex;
justify-content: center;
margin-bottom: 40px;
flex-wrap: wrap;
}
.filter-btn {
background: none;
border: none;
padding: 8px 20px;
margin: 5px;
font-weight: 500;
color: var(--dark-gray);
cursor: pointer;
transition: var(--transition);
border-radius: 50px;
}
.filter-btn:hover,
.filter-btn.active {
background: var(--gradient);
color: white;
}
.portfolio-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 25px;
}
.portfolio-item {
position: relative;
border-radius: 10px;
overflow: hidden;
box-shadow: var(--shadow);
}
.portfolio-img {
width: 100%;
height: 250px;
object-fit: cover;
transition: var(--transition);
}
.portfolio-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 102, 255, 0.8);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
opacity: 0;
transition: var(--transition);
}
.portfolio-item:hover .portfolio-overlay {
opacity: 1;
}
.portfolio-item:hover .portfolio-img {
transform: scale(1.1);
}
.portfolio-overlay h3 {
color: white;
font-size: 1.3rem;
margin-bottom: 10px;
transform: translateY(20px);
transition: var(--transition);
}
.portfolio-overlay p {
color: rgba(255, 255, 255, 0.8);
transform: translateY(20px);
transition: var(--transition);
}
.portfolio-item:hover .portfolio-overlay h3,
.portfolio-item:hover .portfolio-overlay p {
transform: translateY(0);
}
/* Sección FAQs */
.faq-section {
background-color: var(--light);
}
.accordion-item {
margin-bottom: 15px;
border: none;
border-radius: 10px !important;
overflow: hidden;
box-shadow: var(--shadow);
}
.accordion-button {
font-weight: 600;
padding: 20px;
background-color: white;
color: var(--dark);
}
.accordion-button:not(.collapsed) {
background-color: var(--primary);
color: white;
}
.accordion-button:focus {
box-shadow: none;
}
.accordion-body {
padding: 20px;
}
/* Sección Contacto */
.contact-section {
background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
}
.contact-form {
background: white;
padding: 40px;
border-radius: 10px;
box-shadow: var(--shadow);
}
.form-control {
height: 50px;
border: 1px solid #eee;
border-radius: 5px;
padding: 10px 15px;
margin-bottom: 20px;
transition: var(--transition);
}
.form-control:focus {
border-color: var(--primary);
box-shadow: 0 0 0 0.25rem rgba(0, 102, 255, 0.25);
}
textarea.form-control {
height: auto;
min-height: 150px;
}
.submit-btn {
background: var(--gradient);
color: white;
border: none;
padding: 12px 30px;
border-radius: 50px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
transition: var(--transition);
}
.submit-btn:hover {
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
color: white;
}
.contact-info {
margin-top: 50px;
}
.info-box {
display: flex;
align-items: flex-start;
margin-bottom: 30px;
}
.info-icon {
flex-shrink: 0;
width: 50px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
background: var(--gradient);
color: white;
border-radius: 50%;
font-size: 1.2rem;
margin-right: 20px;
}
.info-content h3 {
font-size: 1.2rem;
margin-bottom: 5px;
}
.info-content a {
color: var(--primary);
text-decoration: none;
transition: var(--transition);
}
.info-content a:hover {
color: var(--primary-dark);
}
/* Footer */
.footer {
background-color: var(--dark);
color: white;
padding: 80px 0 30px;
}
.footer-logo {
font-size: 1.8rem;
font-weight: 800;
color: white;
margin-bottom: 20px;
display: inline-block;
}
.footer-logo span {
color: var(--primary);
}
.footer-about p {
color: rgba(255, 255, 255, 0.7);
margin-bottom: 20px;
}
.social-links {
display: flex;
margin-bottom: 30px;
}
.social-link {
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(255, 255, 255, 0.1);
color: white;
border-radius: 50%;
margin-right: 10px;
transition: var(--transition);
}
.social-link:hover {
background: var(--primary);
transform: translateY(-3px);
}
.footer-links h3 {
font-size: 1.3rem;
margin-bottom: 25px;
position: relative;
padding-bottom: 10px;
}
.footer-links h3::after {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 50px;
height: 2px;
background: var(--gradient);
}
.footer-links ul {
list-style: none;
padding: 0;
}
.footer-links li {
margin-bottom: 10px;
}
.footer-links a {
color: rgba(255, 255, 255, 0.7);
text-decoration: none;
transition: var(--transition);
display: inline-block;
}
.footer-links a:hover {
color: var(--primary);
transform: translateX(5px);
}
.footer-newsletter p {
color: rgba(255, 255, 255, 0.7);
margin-bottom: 20px;
}
.newsletter-form {
display: flex;
margin-bottom: 20px;
}
.newsletter-input {
flex: 1;
height: 45px;
border: none;
border-radius: 5px 0 0 5px;
padding: 0 15px;
}
.newsletter-btn {
width: 45px;
height: 45px;
background: var(--gradient);
color: white;
border: none;
border-radius: 0 5px 5px 0;
cursor: pointer;
transition: var(--transition);
}
.newsletter-btn:hover {
opacity: 0.9;
}
.footer-bottom {
border-top: 1px solid rgba(255, 255, 255, 0.1);
padding-top: 30px;
margin-top: 50px;
text-align: center;
}
.footer-bottom p {
color: rgba(255, 255, 255, 0.5);
margin-bottom: 0;
}
/* Botón WhatsApp */
.whatsapp-btn {
position: fixed;
bottom: 30px;
right: 30px;
width: 60px;
height: 60px;
background: #25D366;
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.8rem;
box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
z-index: 999;
transition: var(--transition);
animation: pulse 2s infinite;
}
.whatsapp-btn:hover {
transform: translateY(-5px);
color: white;
}
@keyframes pulse {
0% {
box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
}
70% {
box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
}
100% {
box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
}
}
/* Efectos y animaciones */
.reveal {
position: relative;
transform: translateY(50px);
opacity: 0;
transition: all 1s ease;
}
.reveal.active {
transform: translateY(0);
opacity: 1;
}
/* Ticker de trabajos */
.ticker-wrapper {
position: relative;
overflow: hidden;
}
.ticker-track {
display: flex;
gap: 1rem;
overflow-x: scroll;
scroll-behavior: smooth;
padding: 1rem 2rem;
scrollbar-width: none; /* Firefox */
}
.ticker-track::-webkit-scrollbar {
display: none; /* Chrome */
}
.ticker-track img {
height: 300px;
width: auto;
max-width: 100%;
object-fit: contain;
border-radius: 12px;
flex-shrink: 0;
transition: transform 0.3s ease;
}
.ticker-track img:hover {
transform: scale(1.03);
}
.btn-ticker {
position: absolute;
top: 50%;
transform: translateY(-50%);
z-index: 10;
background-color: rgba(0, 176, 255, 0.8);
border: none;
color: white;
font-size: 2rem;
padding: 0.5rem 1rem;
cursor: pointer;
border-radius: 50%;
transition: background-color 0.3s;
}
.btn-ticker.left {
left: 0.5rem;
}
.btn-ticker.right {
right: 0.5rem;
}
.btn-ticker:hover {
background-color: rgba(0, 176, 255, 1);
}
/* Botones sociales flotantes */
.social-float-container {
position: fixed;
bottom: 30px;
right: 30px;
z-index: 9999;
display: flex;
flex-direction: column-reverse;
gap: 15px;
align-items: flex-end;
}
.social-float {
position: relative;
transition: all 0.3s ease;
transform-style: preserve-3d;
}
.social-float:hover {
transform: translateY(-5px) rotate(5deg) scale(1.1);
}
.social-button {
display: block;
width: 70px;
height: 70px;
border-radius: 50%;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
position: relative;
transition: all 0.3s ease;
animation: float 3s ease-in-out infinite;
color: white;
text-decoration: none;
}
.social-button:hover {
transform: scale(1.1);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}
.social-icon {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 30px;
}
.social-pulse {
position: absolute;
width: 100%;
height: 100%;
border-radius: 50%;
opacity: 0;
animation: pulse 2s infinite;
}
.social-pulse-delayed {
position: absolute;
width: 100%;
height: 100%;
border-radius: 50%;
opacity: 0;
animation: pulse 2s infinite 0.5s;
}
.social-tooltip {
position: absolute;
right: 90px;
top: 50%;
transform: translateY(-50%);
background: white;
color: #333;
padding: 12px 15px;
border-radius: 10px;
font-size: 14px;
font-weight: 600;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
width: 200px;
text-align: center;
}
.social-tooltip small {
display: block;
font-size: 12px;
color: #666;
font-weight: normal;
margin-top: 3px;
}
.tooltip-arrow {
position: absolute;
right: -10px;
top: 50%;
transform: translateY(-50%);
width: 0;
height: 0;
border-top: 10px solid transparent;
border-bottom: 10px solid transparent;
border-left: 10px solid white;
}
.social-float:hover .social-tooltip {
opacity: 1;
visibility: visible;
right: 80px;
}
/* Estilos específicos para cada botón */
.whatsapp-button {
background: #25D366;
box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}
.whatsapp-button:hover {
background: #128C7E;
box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}
.whatsapp-pulse {
background: rgba(37, 211, 102, 0.6);
}
.whatsapp-pulse-delayed {
background: rgba(37, 211, 102, 0.4);
}
.instagram-button {
background: #E1306C;
box-shadow: 0 10px 25px rgba(225, 48, 108, 0.3);
}
.instagram-button:hover {
background: #C13584;
box-shadow: 0 15px 30px rgba(193, 53, 132, 0.4);
}
.instagram-pulse {
background: rgba(225, 48, 108, 0.6);
}
.instagram-pulse-delayed {
background: rgba(193, 53, 132, 0.4);
}
.facebook-button {
background: #1877F2;
box-shadow: 0 10px 25px rgba(24, 119, 242, 0.3);
}
.facebook-button:hover {
background: #166FE5;
box-shadow: 0 15px 30px rgba(22, 111, 229, 0.4);
}
.facebook-pulse {
background: rgba(24, 119, 242, 0.6);
}
.facebook-pulse-delayed {
background: rgba(22, 111, 229, 0.4);
}
/* Responsive */
@media (max-width: 1199.98px) {
.section-title .title-bg {
font-size: 3.5rem;
}
}
@media (min-width: 992px) {
/* Navbar desktop */
.navbar-expand-lg .navbar-collapse {
display: flex !important;
justify-content: flex-end;
}
/* Ocultar menú móvil en desktop */
.mobile-nav {
display: none !important;
}
}
@media (max-width: 991.98px) {
.section {
padding: 80px 0;
}
.about-content {
flex-direction: column;
}
.about-text {
padding-left: 0;
margin-top: 30px;
}
.hero h1 {
font-size: 2.8rem;
}
.section-title h2 {
font-size: 2.2rem;
}
.section-title .title-bg {
font-size: 3rem;
}
/* Mostrar menú móvil */
.mobile-nav {
display: block;
}
/* Ocultar menú desktop */
.desktop-nav {
display: none !important;
}
}
@media (max-width: 767.98px) {
.section {
padding: 60px 0;
}
.hero h1 {
font-size: 2.2rem;
}
.hero p {
font-size: 1.1rem;
}
.hero-btn {
padding: 10px 20px;
font-size: 0.9rem;
}
.section-title h2 {
font-size: 1.8rem;
}
.section-title .title-bg {
font-size: 2.5rem;
}
.portfolio-grid {
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
.social-button {
width: 60px;
height: 60px;
}
.social-icon {
font-size: 25px;
}
.social-tooltip {
display: none;
}
}
@media (max-width: 575.98px) {
.hero h1 {
font-size: 1.8rem;
}
.section-title h2 {
font-size: 1.6rem;
}
.section-title .title-bg {
font-size: 2rem;
top: -10px;
}
.hero-btn {
display: block;
width: 100%;
margin-bottom: 15px;
}
.hero-btn-secondary {
margin-left: 0;
}
.newsletter-form {
flex-direction: column;
}
.newsletter-input {
border-radius: 5px;
margin-bottom: 10px;
}
.newsletter-btn {
width: 100%;
border-radius: 5px;
}
#servicios .row {
margin-left: 0 !important;
margin-right: 0 !important;
padding-left: 0 !important;
padding-right: 0 !important;
overflow-x: hidden !important;
}
.service-card {
margin-left: auto;
margin-right: auto;
}
}
/* Ajustes de estructura y prolijidad
Importante: NO se toca la lógica visual del hero original. */
html,
body {
overflow-x: hidden;
}
body > section:not(.hero) .container,
.footer .container {
max-width: 1120px;
}
body > section:not(.hero) .row {
--bs-gutter-x: 1.75rem;
--bs-gutter-y: 1.75rem;
}
body > section:not(.hero).section {
padding: 78px 0;
}
.section-title {
max-width: 760px;
margin-left: auto;
margin-right: auto;
margin-bottom: 44px;
}
.section-title h2 {
font-size: clamp(1.9rem, 3vw, 2.35rem);
line-height: 1.1;
}
.section-title .title-bg {
font-size: clamp(2.2rem, 6vw, 4rem);
opacity: 0.85;
max-width: 100%;
overflow: hidden;
text-overflow: ellipsis;
}
.section-title p {
font-size: 1rem;
line-height: 1.7;
}
.about-img {
max-width: 520px;
margin-inline: auto;
border-radius: 22px;
background: #fff;
padding: 14px;
}
.about-img img {
display: block;
width: 100%;
height: auto;
max-height: 420px;
object-fit: contain;
}
.about-text {
padding-left: 10px;
max-width: 560px;
}
.about-text h3 {
font-size: clamp(1.45rem, 2vw, 1.75rem);
line-height: 1.2;
}
.about-feature {
align-items: flex-start;
padding: 16px 18px;
border-radius: 16px;
background: rgba(255, 255, 255, 0.9);
box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}
.about-feature h4,
.feature-content h3,
.info-content h3 {
font-size: 1.05rem;
margin-bottom: 4px;
}
.about-feature p,
.feature-content p,
.service-card p,
.info-content p {
margin-bottom: 0;
color: #5f6670;
}
.service-card {
height: 100%;
padding: 26px 22px;
border-radius: 20px;
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.075);
}
.service-card h3 {
font-size: 1.16rem;
line-height: 1.25;
}
.service-icon {
width: 68px;
height: 68px;
font-size: 1.65rem;
margin-bottom: 18px;
}
.feature-box {
height: 100%;
margin-bottom: 0;
padding: 22px;
border-radius: 20px;
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.075);
}
.feature-icon,
.info-icon {
width: 54px;
height: 54px;
font-size: 1.25rem;
}
#trabajos .container {
max-width: 1120px;
}
.ticker-track {
gap: 0.85rem;
padding: 0.9rem 1rem;
}
.ticker-track img {
height: 230px;
max-width: min(360px, 78vw);
background: #111;
border-radius: 18px;
}
.btn-ticker {
width: 44px;
height: 44px;
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0;
font-size: 1.35rem;
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}
.contact-form,
.contact-info {
height: 100%;
border-radius: 22px;
}
.contact-info {
margin-top: 0;
background: white;
padding: 34px;
box-shadow: var(--shadow);
}
.info-box:last-child {
margin-bottom: 0;
}
.form-control {
border-radius: 12px;
margin-bottom: 0;
}
.footer {
padding: 64px 0 0;
}
.footer-bottom {
margin-top: 42px;
padding: 22px 16px;
}
.social-float-container {
right: 22px;
bottom: 22px;
gap: 12px;
}
.social-button {
width: 58px;
height: 58px;
}
.social-icon {
font-size: 25px;
}
@media (max-width: 991.98px) {
body > section:not(.hero).section {
padding: 66px 0;
}
.about-text {
padding-left: 0;
margin-inline: auto;
}
.about-img img {
max-height: 360px;
}
.contact-info {
margin-top: 22px;
}
}
@media (max-width: 575.98px) {
body {
padding-top: 72px;
}
body > section:not(.hero).section {
padding: 54px 0;
}
body > section:not(.hero) .container {
padding-left: 18px;
padding-right: 18px;
}
.section-title {
margin-bottom: 32px;
}
.about-img img {
max-height: 300px;
}
.service-card,
.feature-box,
.contact-form,
.contact-info {
border-radius: 18px;
}
.contact-form,
.contact-info {
padding: 24px;
}
.ticker-track img {
height: 190px;
}
.social-float-container {
right: 14px;
bottom: 14px;
}
.social-button {
width: 52px;
height: 52px;
}
}