::selection {
    background: #f09f47;
    color: white;
    text-shadow: none;
}

body {
    font-family: "Roboto", sans-serif;
    /* font-family: "IBM Plex Sans", sans-serif; */
    background-color: #f9f6f0;
    color: #595143;
}

a {
    color: #ec8618;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

code {
    font-family: "JetBrains Mono", monospace !important;
    padding: 3px 5px;
    letter-spacing: -0.02em;
    border: solid 1px #f2ebde;
    border-radius: 4px;
    background: #fff;
    color: #595143;
}

h2 {
    margin: 40px 0 25px 0;
    color: #3ea377;
    font-weight: 400;
    /* text-transform: uppercase; */
    font-size: 1.5em;
    line-height: 1.25;
    font-family: "Oswald", sans-serif;
}

ul > li {
    padding-bottom: .65em;
}

.header__container {
    background-color: #0a202b;
}

.header {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: "Oswald", sans-serif;
}

.header__logo:hover {
    text-decoration: none;
}

.header__logo-svg {
    width: 50px;
    height: 50px;
    fill: #fff4e1;
}

.header__logo-name {
    font-size: 2.3em;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff4e1;
    margin-left: 0.15em;
}

.header__menu {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: flex-start;
}

.header__menu-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header__menu-list-item {
    margin-left: 30px;
}

.header__menu-list-item-link {
    text-decoration: none;
    color: #fff4e1;
    transition: all 0.15s;
    font-weight: 400;
}

.is-active .header__menu-list-item-link,
.is-current .header__menu-list-item-link,
.header__menu-list-item-link.active,
.header__menu-list-item-link:hover {
    color: #65be97;
    text-decoration: none;
}
.mainbanner__container {
    background: #256d4e;
    background-image: url("../img/backelephpant.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.mainbanner {
    padding: 4em 0;
    display: flex;
    justify-content: flex-end;
}

.mainbanner__text {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    color: #fff4e1;
}

.mainbanner__text h1 {
    font-weight: 400;
    padding-right: 2em;
    font-size: 3.2em;
    text-shadow: 2px 2px 0 #1b543b;
    margin-top: 0;
    padding-top: 0;
    font-family: "Oswald", sans-serif;
}

.mainbanner__text p {
    padding-right: 6em;
    font-size: 1.1em;
    margin-top: 0.5em;
    margin-bottom: 1.2em;
}

.button {
    transition: all 0.15s;
    margin: 0 10px 0 0;
    padding: 10px 30px;
    color: #4cb88a;
    font-weight: 400;
    font-size: 1em;
    text-decoration: none;
    border-radius: 3px;
    background: #174432;
}

.button:hover {
    color: #f9f2e8;
    background: #153d2c;
    text-decoration: none;
}

.content {
    padding-top: 1em;
    font-size: 1.2em;
}

.title {
    background: #256d4e;
    background-image: url("../img/titleback.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.title__container {
}

.title__h1 {
    padding: 1em 0;
    color: #fff4e1;
    font-size: 3em;
    font-family: "Oswald", sans-serif;
    font-weight: 400;
}

.content {
    padding-bottom: 40px;
}

.footer {
}

.footer__top {
    background-color: #1a4c37;
    height: 70px;
    display: flex;
    justify-content: center;
}

.footer__top-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    height: 100%;
    justify-content: center;
}

.footer__top-list-item {
    padding: 0 3em;
    display: flex;
}

.footer__top-list-item-link {
    transition: all 0.15s;
    color: #4cb88a;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.footer__top-list-item-link:hover {
    color: #fff4e1;
}

.footer__top-list-item-link-svg {
    fill: #fff4e1;
    width: 28px;
    height: 28px;
}

.footer__top-list-item-link-text {
    font-size: 1.1em;
    margin-left: 0.5em;
}

.footer__bottom {
    background: #226146;
    color: #4cb88a;
    text-align: center;
    height: 100px;
    display: flex;
    align-items: center;
}

.content__item-container {
    display: flex;
    padding-top: 50px;
}

.content__item:nth-child(even) {
    background-color: #f1ede5;
}

.content__item-text {
    width: 50%;
    position: relative;
    padding-left: 55px;
    padding-right: 40px;
}

.content__item-text-h2::before {
    content: "";
    display: block;
    position: absolute;
    width: 40px;
    height: 40px;
    background-size: cover;
    left: -55px;
    top: 0.2em;
}

.content__item--autoloading .content__item-text-h2::before {
    background-image: url("../img/autoload-icon.png");
}

.content__item--interfaces .content__item-text-h2::before {
    background-image: url("../img/interfaces-icon.png");
}

.content__item--http .content__item-text-h2::before {
    background-image: url("../img/http-icon.png");
}

.content__item--coding .content__item-text-h2::before {
    background-image: url("../img/coding-icon.png");
}

.content__item-text-h2 {
    font-size: 2.8em;
    font-weight: 300;
    opacity: 0.7;
    position: relative;
    color: #a39989;
}

.content__item-text-p {
    font-size: 1.2em;
}

.content__item-text-tag {
    display: inline-block;
    margin: 0 5px 5px 0;
    padding: 5px 8px;
    color: #746a5b;
    font-size: 13px;
    text-decoration: none;
    border-radius: 3px;
    background: #ddd8d0;
    transition: all 0.15s;
}

.content__item-text-tag:hover {
    color: white;
    background: #a39989;
    text-decoration: none;
}

.content__item-code {
    width: 50%;
}

.content__item--autoloading {
}

.home_features__code {
    display: block;
    overflow: hidden;
    padding: 25px;
    min-height: 200px;
    font-family: "JetBrains Mono", monospace !important;
    font-size: 1.1em;
    line-height: 1.3;
    background: white;
}

.home_features__chrome {
    height: 20px;
    border-radius: 3px 3px 0 0;
    background: #d4cfc6;
}

.home_features__chrome_dot:first-child {
    margin-left: 10px;
}

.home_features__chrome_dot {
    float: left;
    margin: 9px 0 0 6px;
    width: 4px;
    height: 4px;
    border-radius: 3px;
    background: #b0a796;
}

.intro {
    padding-top: 40px;
}

.intro h3 {
    font-size: 1.5em;
    font-weight: 600;
}

.intro p {
    font-size: 1.2em;
}

.intro p:last-child {
    margin-bottom: 0;
}

.intro__container {
    border: 1px solid #ddd8d0;
    background-color: #746a5b11;
    padding: 40px 80px 40px 55px;
    border-radius: 5px;
}

.table_title {
    margin: 35px 0 0 0;
    padding: 15px 20px;
    color: white;
    font-weight: 400;
    font-size: 1.3em;
    line-height: 1;
    text-transform: uppercase;
    background: #f09f47;
    border-radius: 7px 7px 0 0;
    font-family: "Oswald", sans-serif;
}

.heading-permalink {
    transition: all 0.15s;
    color: #595143;
    opacity: 0;
    padding: 2px 10px;
    margin-left: 5px;
}

.heading-permalink:hover {
    text-decoration: none;
}

.table_title:hover .heading-permalink {
    opacity: 0.5;
}

.table table {
    width: 100%;
    background: white;
}

.table table tr th {
    padding: 15px 20px;
    color: #6e6a61;
    font-size: 0.9em;
    line-height: 1;
    font-weight: 600;
    text-align: left;
    text-transform: uppercase;
    background: #d4cfc6;
}

.table table tr td:first-child {
    padding-right: 4%;
    padding-left: 0;
    text-align: center;
    width: 12%;
}

.table table tr td:nth-child(2) {
    width: 45%;
}

.table table tr td {
    padding: 20px;
    font-size: 1em;
    border-bottom: solid 1px #e4e1da;
}

.table table tr:last-child td {
    border-bottom: none;
}

.table > :not(caption) > * > * {
    border-bottom: none;
}
