@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary: #342F7F;
    --secondary: #38AC4B;
    --white: #ffffff;
    --black: #333;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    color: #222222;
}

a,
a:hover {
    text-decoration: none;
}

/* font */
h1,
h2,
h3,
h4 {
    font-family: "Montserrat", sans-serif;
    text-transform: capitalize;
}

h1 {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 48px;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 36px;
}

h3 {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 17px;
}

.f-18 {
    font-size: 18px;
    line-height: 23px;
}

.f-20 {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 5px !important;
}

.uk-text-primary {
    color: var(--primary) !important;
}

.uk-text-secondary {
    color: var(--secondary) !important;
}

.uk-text-white {
    color: #ffffff !important;
}

/* border */
.uk-border-white {
    border-left: 2px solid white;
    padding-left: 10px;
}

.uk-border-secondary {
    border-left: 2px solid var(--secondary);
    padding-left: 10px;
}

.border-rounded {
    border-radius: 15px;
}

.border-full {
    border: 1px solid #c5c5c5;
}

.border-left {
    border-left: 1px solid #c5c5c5;
}

.border-right {
    border-right: 1px solid #c5c5c5;
}

.uk-border-bottom {
    border-bottom-right-radius: 17px;
    border-bottom-left-radius: 17px;
}

/* background */
.uk-bg-primary {
    background-color: var(--primary);
}

.uk-bg-secondary {
    background-color: var(--secondary);
}

.uk-bg-light {
    background-color: #efeef5;
}

.uk-bg-dark {
    background-color: #2A2929;
}

/* padding */
.p-26 {
    padding: 26px
}

/* button */
.uk-primary-btn {
    background-color: var(--secondary);
    color: white;
    padding: 0px 7px 0px 16px;
    border-radius: 25px;
    border: 2px solid var(--secondary);
    transition: 0.3s ease-in;
}

.uk-white-btn {
    background-color: white;
    color: var(--secondary);
    padding: 0px 7px 0px 16px;
    border-radius: 25px;
    border: 2px solid var(--secondary);
    transition: 0.3s ease-in;
}

.uk-btn-text {
    font-size: 14px;
}

.uk-btn-icon {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: var(--secondary) !important;
    font-size: 17px;
    border-radius: 100%;
    border: 2px solid var(--secondary);
}

.uk-primary-btn:hover {
    background-color: white;
    color: var(--secondary);
}

.uk-white-btn:hover {
    background-color: var(--secondary);
    color: white;
}

.uk-know-btn {
    color: var(--secondary);
}

.uk-know-btn:hover {
    color: var(--primary);
}

/* height */
.uk-270 {
    height: 270px;
    width: 100%;
}

.uk-270 img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.uk-img-cover {
    object-fit: cover;
}

.uk-input,
.uk-select,
.uk-textarea {
    background: #e6e6e6;
    border-color: #e6e6e6 !important;
}

/* responsive */
@media (max-width: 650px) {
    h1 {
        font-size: 1.6rem;
        line-height: 34px;
    }

    h2 {
        font-size: 1.5rem;
        line-height: 28px;
    }


    h3 {
        font-size: 15px;
    }

    .timeline-content {
        font-size: 18px;
    }
}

@media (max-width: 639px) {
    .uk-blog-small-img {
        height: 200px;
        border-top-right-radius: 15px;
        border-bottom-right-radius: 15px;
    }
    .uk-blog-small-text{
        padding: 20px;
    }

}

@media (min-width: 651px) and (max-width: 780px) {
    h1 {
        font-size: 2.1rem;
        line-height: 43px;
    }
}