/*
Theme Name: LikTravi
Description: 4liktravi
Author: CGPA-Custom Creations
Version: 1.1.1
License: GNU General Public License v3.0
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Tags: one-column, two-columns, three-columns
Text Domain: liktravi

*/




@import url('https://fonts.googleapis.com/css2?family=Raleway&family=Source+Sans+Pro&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Source Sans Pro', sans-serif;
}
body {
    background-color: rgb(250, 250, 250);
}
.menu ul {
    text-decoration: none;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}
.current-menu-item a {
	position: relative;
}
.current-menu-item a::after {
    position: absolute;
    bottom: -5px;
    left: 0;
    content: "";
    background-color: seagreen;
    width: 100%;
    height: 2px;
}
.menu li {
	margin-left: 20px;
}
.menu a {
	text-transform: uppercase;
    text-decoration: none;
	color: black;
}
ul {
	margin-top: 30px;
	padding-left: 20px;
}
h1 {
    margin-top: 50px;
}
header {
    background-color: white;
    height: 50px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
}
.content {
    width: 1200px;
    margin: 0 auto;
}
.header-container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1200px;
    margin: 0 auto;
}
.char-list {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
}
.char-list__item {
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    margin-top: 10px;
    height: 50px;
    width: 50px;
    background-color: seagreen;
    color: white;
    border: 2px solid seagreen;
    cursor: pointer;
}
.char-list__item_disabled {
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    margin-top: 10px;
    height: 50px;
    width: 50px;
    background-color: lightgray;
    color: gray;
    border: 2px solid lightgray;
    cursor: default;
}
.char-list__item:hover {
    background-color: white;
    color: seagreen;
}
.char-list .char-list__item_active {
    background-color: white;
    color: seagreen;
    box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.2);
}
.result-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin-top: 40px;
}
.result-list__item {
    margin-bottom: 10px;
}
.result-list__item a {
    color: black;
    font-size: 20px;
    text-decoration: none;
}
.result-list__item a:hover {
    color: seagreen;
}
.bread {
    margin-top: 30px;
}
.bread a {
    text-decoration: none;
    color: black;
    margin-right: 10px;
    position: relative;
}
.bread .selected::after {
    position: absolute;
    bottom: -5px;
    left: 0;
    content: "";
    background-color: seagreen;
    width: 100%;
    height: 2px;
}
.bread a:hover {
    color: seagreen;
}
.plant-card {
    margin: 50px auto;
    width: 800px;
    background-color: white;
    padding: 30px 20px;
    box-shadow: 0px 0px 6px rgb(0, 0, 0, 0.4);
    border-radius: 10px;
}
.latin {
    text-transform: uppercase;
}
.plant-card h3 {
    margin-top: 50px;
}
.plant-card h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 30px;
}
.plant-card p {
    margin-top: 20px;
} 
.plant-card__top {
    background-size: contain;
    background-repeat: no-repeat;
    min-height: 250px;
    background-position: 100% 0;
}

@media(max-width: 1200px) {
    .header-container {
        width: 100%;
        padding: 0 20px;
    }
    .content {
        width: 100%;
        padding: 0 20px;
    }
    .plant-card {
        width: 100%;
    }
}
@media(max-width: 800px) {
    .result-list {
        grid-template-columns: 1fr 1fr;
    }
}
@media(max-width: 600px) {
    .result-list {
        grid-template-columns: 1fr;
    }
}


