@import "bootstrap.css";

@font-face {
    font-family: "Montserrat";
    src: url(../fonts/Montserrat/Montserrat-Regular.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "Chakra Petch";
    src: url(../fonts/Chakra_Petch/ChakraPetch-Regular.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Monserrat Extra Bold";
    src: url(../fonts/Montserrat/Montserrat-ExtraBold.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --navy1: #191f2a;
    --navy2: #252f42;
    --navy3: #364257;
    --blue1: #4178f1;
    --blue2: #355cb2;
    --blue3: #23448b;
    --blue4: #e3e9f4;
    --black: #000000;
    --white: #ffffff;
    --textBody: #fbfbfb;
    --someKindaBlue: #8FA7D4;
    --platformSection1: rgba(143, 167, 212, .25);
    --platformSection1_dos: rgba(53, 92, 178, 0.8);
    --platformTextBody: #070707;
    --inputBorder: #3F414B;
}

body {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
    font-family: Montserrat, Arial, sans-serif;
    font-size: 14px;
    color: var(--white);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
a {
    color: var(--white);
    text-decoration: none;
}
a:hover {
    color: var(--white);
}
a:visited {
    color: var(--white);
}
.snNavBar {
    height: 72px;
    background-color: var(--navy2);
}
.snNavItem {
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
}
.hamburgerNav {
    color: transparent;
}
.hamburgerNav::after {
    content: none;
}
.snButton {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px 10px 20px;
    border-radius: 30px;
    background: var(--blue2);
    box-shadow: 0 8px 10px 0 #0000001F;
}
.snButton:hover {
    background: var(--blue1);
    color: var(--white);
}
.footerContainer {
    overflow: auto;
    position: relative;
    height: 562px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.footerContact {
    height: 258px;
    margin-top: 100px;
    background: var(--navy3);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;

}
.textBody {
    font-family: Montserrat, Arial, sans-serif;
    color: var(--textBody);
    font-size: 18px;
    line-height: 27px;
    font-weight: 500;
}
.textHeader {
    font-family: Montserrat, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 26px;
    line-height: 130%;

    letter-spacing: 0.01em;
}
.textTitle {
    font-family: Montserrat, Arial, sans-serif;
    color: var(--white);
    font-size: 50px;
    line-height: 115%;
    font-weight: 600;
}
.contactField {
    background: var(--navy2);
    padding: 10px;
    border: 1px var(--inputBorder);
    color: var(--white);
}
.contactFieldSmall {
    background: var(--navy1);
    padding: 10px;
    border: 1px var(--inputBorder);
    color: var(--white);
}
.dropdownLink {
    color: var(--white);
}
.dropdownLink:hover {
    color: var(--navy2);
}

.textBodyMobile {
    font-family: Montserrat, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
}
.textHeaderMobile {
    font-family: Montserrat, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 120.6%;
}
.textTitleMobile {
    font-family: Montserrat, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 36px;
    line-height: 115%;

    letter-spacing: 0.01em;
}

.disabledBtn {
    background: var(--navy3);
    color: var(--platformTextBody);
}
.disabledBtn:hover {
    background: var(--navy3);
    color: var(--platformTextBody);
}

.caseStudyHover:hover {
    filter: drop-shadow(0 0 10px #ffffff);
}

/* 
"ribbits" kinda sounds like "robots", so this class is asking "no robots please".
inputs marked with this class are meant to be invisible so that bots trawling our page fill it out
but users wont even know its there. this technique is called a 'honeypot' field.
I made the class name specifically obscure so that smarter bots dont see the word 'robots' in the dom and
avoid it, or whatever. articles suggested making your honeypots as innoccuous as possible.
*/
.noRibbitsPlz {
    background: red;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}