/* GENERIC STYLES */
/* When changing, remember to update the theme version */
body,
html {
    font-size: 17px;
}

@media (max-width: 980px) {

    body,
    html {
        font-size: 15px;
    }
}

body,
button,
input,
select,
optgroup,
textarea {
    color: #3e4548cc;
    font-family: "Clarity City", sans-serif;
    letter-spacing: -0.1px;
    line-height: 1.5;
}

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

*,
*:before,
*:after {
    /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
    box-sizing: inherit;
}

body {
    background: #fff;
    padding-top: 0;
}

p {
    margin-top: 0;
    margin-bottom: 20px;
}

b,
strong {
    font-weight: 700;
}

a {
    outline: 0;
    transition-duration: 0.3s;
    transition-timing-function: ease;
    transition-property: background, background-color, background-position, border, box-shadow, color, opacity, transform,
        visibility;
}

a,
a:visited,
a:focus,
a:active {
    color: #698998;
    border-bottom: 1px dashed #546e7a;
    text-decoration: none;
    transition: all 0.3s linear;
}

a:hover {
    color: #546e7a99;
    border-bottom-color: #546e7a99;
}

h1,
.h1-style,
h2,
.h2-style,
h3,
.h3-style,
h4,
.h4-style,
h5,
.h5-style,
h6,
.h6-style {
    margin-top: 0;
    clear: both;
    line-height: 1.5;
}

h1,
.h1-style,
h2,
.h2-style,
h3,
.h3-style,
h4,
.h4-style {
    font-style: normal;
    letter-spacing: -0.035em;
}

h1,
.h1-style {
    color: #103b41;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0;
    margin-top: 10px;
}

h2,
.h2-style {
    color: #3e4548;
    font-size: 2.5rem;
    font-weight: 200;
    margin: 0 auto 45px;
    max-width: 700px;
    text-align: center;
}

h2.left,
.h2-style.left {
    text-align: left;
}

h3,
.h3-style {
    font-weight: 300;
    font-size: 1.4rem;
    margin: 0 auto 40px;
    max-width: 700px;
    text-align: center;
}

h4,
.h4-style {
    font-weight: 300;
    font-size: 1.25rem;
    margin: 0 0 10px 0;
    text-align: left;
}

h5,
.h5-style {
    color: #333;
    font-size: 1rem;
    margin-bottom: 10px;
    margin-top: 10px;
}

hr {
    background-color: #dadada;
    border: 0;
    height: 1px;
    margin: 1.5em 0;
    max-width: 1170px;
}

ul,
ol {
    margin: 0 0 1.5em 0;
    padding-left: 1rem;
}

ul {
    list-style: disc;
}

ol {
    list-style: decimal;
}

li {
    padding-left: 0.5rem;
}

li>ul,
li>ol {
    margin-bottom: 0;
    margin-left: 1.5rem;
}

dt {
    font-weight: 500;
}

dd {
    margin: 0 1.5em 1.5rem;
}

img {
    height: auto;
    /* Make sure images are scaled correctly. */
    max-width: 100%;
    /* Adhere to container width. */
}

blockquote {
    margin-left: 0;
    border-left: #f3f3f3 6px solid;
    padding: 0 0 0 1.5rem;
}

code {
    background: #f3f3f3;
    border-radius: 4px;
    padding-left: 5px;
    padding-right: 5px;
    color: #595959;
}

.nowrap {
    text-wrap: nowrap;
}

.aqua {
    color: #068DB3;
}

.navy {
    color: #103b41;
}

@media (max-width: 640px) {
    .nowrap {
        text-wrap: wrap;
    }
}

button,
button:active,
button:focus,
button:visited,
.button,
.button:active,
.button:focus,
.button:visited,
input[type="button"],
input[type="button"]:active,
input[type="button"]:focus,
input[type="button"]:visited,
input[type="reset"],
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="reset"]:visited,
input[type="submit"],
input[type="submit"]:active,
input[type="submit"]:focus,
input[type="submit"]:visited {
    background: #068DB3;
    border: 1px solid #068DB3;
    border-radius: 4px;
    box-shadow: none;
    color: #ffffff;
    font-weight: 500;
    cursor: pointer;
    display: inline-block;
    opacity: 1;
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 20px;
    text-transform: capitalize;
    transition: all 0.3s ease;
}

button.s3t,
.button.s3t,
input[type="button"].s3t,
input[type="reset"].s3t,
input[type="submit"].s3t {
    background: #17af66 !important;
    border: 1px solid #17af66 !important;
    color: #fff !important;
}

button.s3t:hover,
.button.s3t:hover,
input[type="button"].s3t:hover,
input[type="reset"].s3t:hover,
input[type="submit"].s3t:hover {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25) !important;
}

button:hover,
.button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    color: #ffffff;
}

.main-container {
    border-bottom: solid 1px #f0f0f0;
    padding: 100px 0;
}

.main-container.first {
    padding-top: 150px;
}

@media (max-width: 640px) {
    .main-container {
        padding: 70px 0;
    }

    .main-container.first {
        padding-top: 70px;
    }
}

.main-container.grey {
    background-color: #fdfdfd;
}

.main-container.whirlscenter {
    background-image: url(/https/robomongo.org/images/background-whirls.png);
    background-position-y: 250px;
    background-size: 2000px 496px;
}

.content-container,
.site-header {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    width: 100%;
}

.content-container.narrow {
    max-width: 700px;
}

@media (max-width: 1440px) {
    .content-container {
        padding: 0 45px;
    }
}

@media (max-width: 640px) {
    .content-container {
        padding: 0 30px;
    }
}

.hidden {
    display: none;
}

.overlay-bg {
    background-color: rgba(255, 255, 255, 0.7);
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

/* HEADER */
.site-header {
    align-content: stretch;
    left: 0;
    right: 0;
    position: absolute;
    top: 40px;
    z-index: 10;
}

@media (max-width: 640px) {
    .site-header {
        margin-top: 20px;
        margin-bottom: 20px;
        position: static;
    }
}

.site-header a {
    border-bottom: 0;
}

.main-container,
.site-header {
    display: block;
    width: 100%;
}

.site-header .content-container,
.site-header .site-header-right {
    align-items: center;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    height: 80px;
    justify-content: space-between;
}

@media (max-width: 640px) {
    .site-header .content-container {
        flex-direction: column;
        gap: 30px;
    }

    .site-header .content-container,
    .site-header .site-header-right {
        height: auto;
    }
}

.main-navigation a.button {
    background: transparent;
    border-color: transparent;
    color: #3e4548cc;
    padding: 10px;
    margin: 0 10px 0 0;
}

@media (max-width: 640px) {
    .main-navigation a.button {
        padding: 10px;
        margin-right: 5px;
    }
}

.main-navigation a.button:hover {
    box-shadow: none;
}

.main-navigation a:last-of-type {
    margin-left: 0;
}

.main-navigation a:last-of-type {
    margin-right: 0;
}

.main-navigation a:hover {
    color: #3e454899;
}

.main-logo a,
.main-logo img {
    display: block;
    height: auto;
    width: 100px;
}

.site-header .site-header-right {
    flex-grow: 2;
    justify-content: flex-end;
}

/* POP UP */
/* WHEN CHANGING THIS, PLEASE ALSO UPDATE THE RELATED STYLES ON COOKIES.CSS */
body.popupopen {
    overflow: hidden;
}

body.popupopen .overlay-bg {
    display: block;
    z-index: 10;
}

.popup-container:not(.hidden) {
    background-color: rgba(255, 255, 255, 1);
    border-radius: 4px;
    box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.3);
    font-size: 0.9em;
    left: 50%;
    max-height: 80vh;
    max-width: 560px;
    overflow-y: auto;
    padding: 20px 30px;
    position: fixed;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 95vw;
    z-index: 90;
}

.popup-container .popup-close {
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    line-height: 15px;
    padding: 15px;
    position: absolute;
    right: 0px;
    top: 0px;
}

.popup-container .popup-button {
    margin-left: 0;
}

/* FOOTER */
footer.footer-info {
    background-color: #343945;
    font-size: 0.9em;
    padding: 30px 0 10px;
}

footer.footer-info .content-container {
    display: flex;
    justify-content: space-between;
    color: #9da0a7;
}

@media (max-width: 800px) {
    footer.footer-info .content-container {
        flex-direction: column;
        text-align: center;
    }
}

footer.footer-info .content-container p {
    margin-bottom: 0;
}

footer #footer-links {
    list-style: none;
    margin: 0;
    padding: 0
}

footer #footer-links li {
    display: inline-block;
    padding: 0;
    margin-right: 20px;
}

footer #footer-links li:last-of-type {
    padding-right: 0;
}

footer #footer-links li a {
    color: #9da0a7;
    display: inline-block;
    margin-bottom: 20px;
}

footer #footer-links li a:hover {
    color: #fff;
}