@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

:root {
  --primary-color: #2ECC71;
  --secondary-color: #1ABC9C;
  --accent-color: #E67E22;
  --light-color: #ECF0F1;
  --dark-color: #2C3E50;
  --gradient-primary: linear-gradient(135deg, #27AE60 0%, #2C3E50 100%);
  --hover-color: #27AE60;
  --background-color: #0F1021;
  --text-color: #BDC3C7;
  --border-color: rgba(46, 204, 113, 0.2);
  --divider-color: rgba(26, 188, 156, 0.1);
  --shadow-color: rgba(0, 0, 0, 0.5);
  --highlight-color: #FFC145;
  --main-font: 'Montserrat', sans-serif;
  --alt-font: 'Lato', serif;
}

html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Utils for dark theme inputs */
input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 5px var(--primary-color);
}

.hover\:text-underline:hover {
    text-decoration: underline;
    text-decoration-color: var(--primary-color);
    text-underline-offset: 4px;
}

/* Timeline Custom Styles */
.wrap {
    padding: 2rem 0;
}
@media (max-width: 767px) {
    .right-timeline, .left-timeline {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    .right-timeline > div:nth-child(1), .left-timeline > div:nth-child(1) {
        display: none;
    }
    .right-timeline > div:nth-child(2), .left-timeline > div:nth-child(2) {
        margin-bottom: 1rem;
    }
    .right-timeline > div:nth-child(3), .left-timeline > div:nth-child(3) {
        width: 100% !important;
    }
    .border-2-2 {
        display: none;
    }
}