@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');

:root {
    --primary-color: #65b1d5;
    --secondary-color: #29333c;
    --primary-color-faded: rgba(101, 177, 213, 0.5);
    --secondary-color-faded: rgba(41, 51, 60, 0.5);
}

html, body, p, span, li, h1, h2, h3, h4, h5, a, div {
    font-family: "Google Sans", sans-serif!important;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "GRAD" 0;
    font-size: 15px;
}

.header-link-title {
    color: var(--primary-color);
    font-weight: 600;
}

a {
    font-family: "Google Sans", sans-serif;
    color: var(--secondary-color)!important;
    font-size: 1rem;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: var(--secondary-color)!important;
}

.nav-container {
    background-color: var(--secondary-color);
    border-top: 1px solid var(--secondary-color);
    border-bottom: 1px solid var(--secondary-color);
}

.navbar {
    background-color: transparent!important;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white!important;
    padding: 1rem 1.5rem;
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

.uk-container {
    padding: 0 10px;
    margin: 0;
    max-width: 1279px;
}

.uk-navbar-nav {
    gap: 0;
}

.uk-navbar-item, .uk-navbar-nav>li>a, .uk-navbar-toggle {
    font-family: "Google Sans", sans-serif;
    min-height: 70px;
    font-size: 1.1rem;
    color: white!important;
    font-weight: 600;
    padding-left: 15px;
    padding-right: 15px;
    transition: all 0.3s ease-in-out;
}

.uk-navbar-item:hover, .uk-navbar-nav>li>a:hover, .uk-navbar-toggle:hover {
    background-color: white;
    color: var(--secondary-color)!important;
}

.uk-dropdown {
    padding: 15px;
}

.uk-dropdown ul li a {
    padding: 0.5rem 1rem;
}
.uk-dropdown ul li:hover a {
    color: var(--secondary-color);
}

.uk-offcanvas-bar {
    background-color: #FFF;
}

.uk-offcanvas-bar .uk-nav-default li a {
    font-weight: 600;
    color: var(--secondary-color);
}
.uk-offcanvas-bar .uk-nav-default .uk-nav-sub li a {
    font-family: "Google Sans", sans-serif;
    font-weight: 400;
    color: var(--secondary-color)!important;
}

.uk-offcanvas-close {
    color: var(--primary-color)!important;
}
.uk-offcanvas-close:hover {
    color: #c9c9c9;
}

.animated-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: #FFF!important;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: 0.3s;
    padding: 1rem 2rem;
}

.animated-button:hover {
    background-color: var(--secondary-color);
    box-shadow: 0 0 0 5px var(--primary-color-faded);
    color: #fff!important;
}

.animated-button-inv {
    display: inline-block;
    background-color: var(--secondary-color);
    color: #FFF!important;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: 0.3s;
    padding: 1rem 2rem;
    border: 1px solid var(--primary-color-faded);
}

.animated-button-inv:hover {
    background-color: var(--primary-color);
    box-shadow: 0 0 0 5px var(--secondary-color-faded);
    color: #fff;
}

.animated-button-dark {
    display: inline-block;
    background-color: var(--secondary-color);
    color: #FFF!important;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: 0.3s;
    padding: 1rem 2rem;
}

.animated-button-dark:hover {
    background-color: #FFF;
    box-shadow: 0 0 0 5px var(--secondary-color-faded);
    color: var(--secondary-color)!important;
}

.slideshow-cta a.animated-button-inv:nth-child(2) {
    margin-left: 1rem;
}

@media ( max-width: 767px ) {
    .slideshow-cta a.animated-button-inv:nth-child(2) {
        margin-left: 0;
    }
}

.slideshow-cta a.animated-button-inv:first-child {
    opacity: 0;
    animation: fadeInLeft 0.5s ease-in 0.5s forwards;
}

.slideshow-cta a.animated-button-inv:nth-child(2) {
    opacity: 0;
    animation: fadeInRight 0.5s ease-in 1s forwards;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-200px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(200px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

.slideshow-title {
    font-size: 3rem;
}
.slideshow-subtitle {
    font-size: 1.1rem;
}

.about {
    margin-top: 7.5rem;
    margin-bottom: 7.5rem;
}

.about .row .col-lg-6:first-child {
    align-content: center;
}

.about img {
    position: relative;
    border-radius: 10px;
    /* transform: rotate(1deg);
    filter: drop-shadow(-8px -8px 5px var(--secondary-color-faded)); */
}

.about h2 {
    font-size: 1.5rem;
    font-weight: 500;
}

.about h3 {
    font-size: 1.2rem;
}

.departments, .tests, .blog {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
}

.departments h1 span {
    color: var(--secondary-color)!important;
    font-size: 1.8rem!important;
    font-weight: 600!important;
}

.departments h3 {
    color: #FFF;
    font-size: 1.5rem;
    margin-bottom: 0;
}

.testimonials h1 span {
    color: #FFF!important;
    font-size: 1.8rem!important;
    font-weight: 600!important;
}

.departments > .container > .row > .col-12 > p {
    color: var(--secondary-color)!important;
    font-size: 1.2rem!important;
    font-weight: 100!important;
}

.tests h3 {
    color: var(--secondary-color)!important;
    font-size: 1.3rem;
    font-weight: 600;
}

.tests h1 span, .blog h1 span, .blog-sm h1 span {
    color: var(--secondary-color)!important;
    font-size: 1.8rem!important;
    font-weight: 600!important;
}

.tests li, .tests p {
    color: var(--secondary-color);
}
.tests .price {
    font-family: "Google Sans", sans-serif!important;
    background-color: var(--secondary-color);
    color: #FFF;
    padding: 10px;
    font-size: 1.3rem;
    font-weight: bold;
}

.tests .uk-list-divider li {
    border-bottom: 1px solid #EEE;
    padding-bottom: 10px;
    margin-top: 0 !important;
    text-align: center;
}

.testimonials {
    background-color: var(--primary-color);
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
}

.testimonials h3, .testimonials p {
    color: var(--secondary-color);
}
.testimonials h3, .blog h3, .blog-sm h3 {
    font-size: 1.2rem;
    font-weight: 500;
}

.slider-item {
    background-color: #FFF;
    border: 1px solid var(--secondary-color);
    border-radius: 1rem;
}

.mr1px {
    margin-right: 1px;
}

.uk-overlay-secondary {
    background: rgba(41, 51, 60, .9);
    color: #FFF;
}

.uk-overlay-secondary p {
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

.blog h3, .blog-sm h3 {
    color: #FFF;
}

.animated-button-white {
    display: inline-block;
    background-color: #FFF;
    color: var(--secondary-color)!important;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: 0.3s;
    padding: 1rem 2rem;
    border: 1px solid var(--primary-color-faded);
}

.animated-button-white:hover {
    background-color: var(--primary-color);
    box-shadow: 0 0 0 5px var(--primary-color-faded);
    color: #fff!important;
}

.ab-lg {
    font-size: 1.3rem;
    font-weight: 500;
}

footer {
    background-color: var(--secondary-color);
    color: #FFF;
}

footer a {
    font-size: 1rem!important;
    color: #FFF!important;
    text-decoration: none;
    text-transform: capitalize!important;
    transition: all .3s ease-in-out;
}
footer a:hover {
    color: #FFF!important;
    text-decoration: none;
}
footer .sign a::before {
    border-bottom: 1px solid #FFF;
}
footer .sign a img {
    opacity: 1;
    transition: all .3s ease-in-out;
    margin-bottom: 4px;
}
footer .sign a:hover {
    color: #FFF;
    text-decoration: none;
}
footer .sign a:hover img {
    opacity: .8;    
}

a.footer-inv {
    font-size: 1.2rem!important;
    color: var(--secondary-color)!important;
    text-decoration: none;
    text-transform: capitalize!important;
    transition: all .3s ease-in-out;
}
a.footer-inv:hover {
    color: var(--secondary-color)!important;
    text-decoration: none;
}
a.footer-inv::before {
    color: var(--secondary-color)!important;
}

.cta span.bi {
    font-size: 4rem;
}

.cta .header-link-title {
    font-size: 1.4rem;
}

.uk-totop {
    position: fixed;
    border-radius: 50%;
    color: #FFF!important;
    border: 1px solid #FFF;
    background-color: rgba(101, 177, 213, 0.5)!important;
    bottom: 10px;
    left: 10px;
    width: 30px;
    height: 30px;
    display: none;
    justify-content: center;
    align-items: center;
}

.uk-totop:hover {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.uk-slidenav {
    position: fixed;
    border-radius: 50%;
    color: #FFF!important;
    border: 1px solid #FFF;
    background-color: rgba(101, 177, 213, 0.5)!important;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .2s ease-in-out;
}

.uk-slidenav:hover {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.cta:hover .cta-icon {
    animation: shake 0.5s;
    animation-iteration-count: infinite;
}

@keyframes shake {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
}

ul.uk-list.limited li:nth-child(n+11) {
    display: none;
}

.hero-content {
    max-width: 80%;
}
.slideshow-title, .hero-title {
    font-size: 2rem;
}
.slideshow-subtitle {
    font-size: 1rem;
}

@media ( min-width: 768px ) AND ( max-width: 991px ) {
    .hero-content {
        max-width: 70%;
    }
    .slideshow-title, .hero-title {
        font-size: 2.5rem;
    }
    .slideshow-subtitle {
        font-size: 1.1rem;
    }
}
@media ( min-width: 992px ) AND ( max-width: 1200px ) {
    .hero-content {
        max-width: 60%;
    }
    .slideshow-title, .hero-title {
        font-size: 3rem;
    }
    .slideshow-subtitle {
        font-size: 1.2rem;
    }
}
@media ( min-width: 1201px ) {
    .hero-content {
        max-width: 50%;
    }
    .slideshow-title, .hero-title {
        font-size: 3.5rem;
    }
    .slideshow-subtitle {
        font-size: 1.2rem;
    }
}

a.color h3 {
    color: #FFF;
    transition: all .3s ease-in-out;
}
a.color:hover h3 {
    color: var(--primary-color);
}

.signature {
    background-color: var(--primary-color);
}

.uk-text-lead {
    font-size: 1.8rem;
}

.content p,
.content ul li,
.content ol li {
    font-size: 1.3rem;
}

.email {
    text-transform: lowercase!important;
}

.contact-form legend {
    background-color: var(--secondary-color);
    color: #ffffff;
}