/*------------------------------------*\
    RESETS
\*------------------------------------*/

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, 
p, blockquote, pre, a, abbr, address, cite, code, del, dfn, em, 
img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, 
dl, dt, dd, ol, ul, li, fieldset, form, label, legend, 
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figure, figcaption, hgroup, 
menu, footer, header, nav, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
}

article, aside, canvas, figure, figure img, figcaption, hgroup,
footer, header, nav, section, audio, video {
    display: block;
}

a img {border: 0;}

figure {position: relative;}
figure img {width: 100%;}

html, body {
    height:100%
}

/*------------------------------------*\
    FONTS
\*------------------------------------*/


/*------------------------------------*\
    SITE WIDE STYLING
\*------------------------------------*/

body {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    background-color:#1c2731; 
}

h1 {
    font-family: 'Montserrat-Bold';
    font-size: 40px;
    color: #FFFFFF;
    text-align: center;
    font-weight: normal;
}

h2 {
    font-family: 'Montserrat-SemiBold';
    font-size: 35px;
    color: #FFFFFF;
    text-align: center;
    font-weight: normal;
    margin: 40px 0;
}

h3 {
    font-family: 'Montserrat-Italic';
    font-size: 30px;
    color: #FFFFFF;
    text-align: center;
    font-weight: normal;
    margin: 0 0 25px 0;
}

a {
    text-decoration: none;
    color: #EBC078;
}

a:hover {
    text-decoration: underline;
}

p {
    margin:6px 0;   
}

/* Button Design */

.pushable {
    position: relative;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    outline-offset: 4px;
    transition: filter 250ms;
    width: 100%;
    margin-bottom: 25px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 21px;
}

.pushable.hightlighted {
    
}

.shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: hsl(0deg 0% 0% / 0.25);
    will-change: transform;
    transform: translateY(2px);
    transition:
      transform
      600ms
      cubic-bezier(.3, .7, .4, 1);
}

.edge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(
      to left,
      hsl(0deg 0% 38%) 0%,
      hsl(0deg 0% 80%) 12%,
      hsl(0deg 0% 80%) 58%,
      hsl(0deg 0% 38%) 100%
    );
}

.front {
    display: block;
    position: relative;
    padding: 12px 42px;
    border-radius: 12px;
    font-size: 1.25rem;
    color: #1c2731;
    background: hsl(0deg 0% 92%);
    will-change: transform;
    transform: translateY(-4px);
    transition:
      transform
      600ms
      cubic-bezier(.3, .7, .4, 1);
}

span.front.hightlighted {
    background: hsl(52deg 100% 48%) !important;
}

span.edge.hightlighted {
    background: linear-gradient(
      to left,
      hsl(42deg 96% 40%) 0%,
      hsl(42deg 96% 62%) 8%,
      hsl(42deg 96% 62%) 92%,
      hsl(42deg 96% 40%) 100%
    );
}

.pushable:hover {
    
}

.pushable:hover .front {
    transform: translateY(-6px);
    transition:
      transform
      250ms
      cubic-bezier(.3, .7, .4, 1.5);
}

.pushable:active .front {
    transform: translateY(-2px);
    transition: transform 34ms;
}

.pushable:hover .shadow {
    transform: translateY(4px);
    transition:
      transform
      250ms
      cubic-bezier(.3, .7, .4, 1.5);
}

.pushable:active .shadow {
    transform: translateY(1px);
    transition: transform 34ms;
}

.pushable:focus:not(:focus-visible) {
    outline: none;
}

/*------------------------------------*\
    LANDING PAGE STYLING
\*------------------------------------*/

.main_content_wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main_content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3%;
}

.tog_wrapper {
    float: left;
    display: inline-block;
    width: 40%;
}

.body_wrapper {
    float: left;
    display: inline-block;
    width: 60%;
}

.tog_wrapper_mobile {
    display: none;
}

.title {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.title img {
    max-width: 500px;
}

.intro_text {
    float: left;
    width: 92%;
    display: inline-block;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    color: #FFFFFF;
    font-size: 15px;
    background-color: rgba(0,0,0,0.12);
    padding: 4%;
    margin-bottom: 25px;
}

.social_wrapper {
    float: left;
    width: 100%;
    display: inline-block;
}

.buttons {
    float: left;
    width: 100%;
    display: inline-block;
}

ul.socials {
    float: left;
    width: 100%;
    display: inline-block;
    list-style-type: none;
    text-align: center;
    background: url('../image/follow.svg') top center no-repeat;
    padding-top: 10%;
    background-size: 30%;
}

li.socials {
    display: inline-block;
    margin-right: 10px;
}

li.socials:last-child {
    margin-right: 0;
}

li.socials img {
    width: 80px;
}

li.socials img:not(:hover) {
  transition: 2s;
  filter: brightness(1);
  -webkit-filter: brightness(1);
  }

li.socials img:hover {
  transition: 1s;
  filter: brightness(2);
  -webkit-filter: brightness(2);
}

/*------------------------------------*\
    MOBILE STYLING
\*------------------------------------*/

@media only screen and (max-width : 800px) {

.main_content,
.main_content_wrapper {
    display: block;
}

.main_content_wrapper {
    margin-top: 80px;
    width: 90%;
    padding: 0 5%;
}

.tog_wrapper {
    display: none;
}

.body_wrapper {
    float: right;
    width: 100% !important;
    margin-bottom: 30px;
}

.tog_wrapper_mobile {
    display: block;
}

}

@media only screen and (max-width : 430px) {

ul.socials {
  text-align: center;  
  padding-top: 12%;
  background-size: 45%;
}

li.socials img {
    width: 100%;
}

li.socials {
    float: left;
    width: 22%;
    padding: 0;
    margin: 0 4% 0 0;
}

li.socials:last-child {
    margin-right: 0;   
}
    
}



