/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
button,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
* {
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
}
html,
body {
  font-family: Avenir, "Adobe Blank", sans-serif;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: Avenir, "Adobe Blank", sans-serif;
}
h2 {
  font-size: 3.2rem;
}
h3 {
  font-size: 2.8rem;
}
p {
  font-size: 1.6rem;
  line-height: 1.4;
}
.container {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}
header,
footer {
  width: 100%;
  height: 85px;
  display: flex;
  justify-content: center;
  background-color: #233a4f;
}
@media (max-width: 960px) {
  header,
  footer {
    height: 200px;
  }
}
header .content,
footer .content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 32px;
  padding-right: 32px;
}
@media (max-width: 960px) {
  header .content,
  footer .content {
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 960px) {
  header .content .messariLogo,
  footer .content .messariLogo {
    display: none;
  }
}
header .content .homeLogo,
footer .content .homeLogo {
  display: none;
}
@media (max-width: 960px) {
  header .content .homeLogo,
  footer .content .homeLogo {
    display: flex;
  }
  header .content .homeLogo img,
  footer .content .homeLogo img {
    width: 188.8px;
    height: 20.8px;
    margin: 30px 0px;
  }
}
header nav,
footer nav {
  width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-right: auto;
}
header nav a,
footer nav a {
  color: #54a2ff;
  padding: 5px 6px;
  font-size: 1.5rem;
  text-align: center;
  font-weight: 700;
  text-decoration: none;
}
header nav .active,
footer nav .active {
  border-bottom: 2px solid #ffffff;
}
header nav .hov:hover,
footer nav .hov:hover {
  color: white;
  cursor: pointer;
  background-color: #4A90E2;
}
header .searchCont,
footer .searchCont {
  width: 55%;
  display: flex;
  display: none;
}
@media (max-width: 960px) {
  header .searchCont,
  footer .searchCont {
    display: none;
  }
}
header .searchCont .inputCont,
footer .searchCont .inputCont {
  width: 100%;
}
header .searchCont .inputCont input[type=search],
footer .searchCont .inputCont input[type=search] {
  width: 100%;
  height: 44px;
  box-sizing: border-box;
  border: 2px solid #ccc;
  font-size: 1.5rem -0.25;
  background-color: white;
  background-image: url('../images/searchIcon.png');
  background-position: 10px 10px;
  background-repeat: no-repeat;
  padding: 12px 20px 12px 40px;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
header .searchCont .inputCont input[type=search]:focus,
footer .searchCont .inputCont input[type=search]:focus {
  background-color: #D5DBE3;
}
header .searchCont .inputCont ::placeholder,
footer .searchCont .inputCont ::placeholder {
  color: #233a4f;
  opacity: 1;
  font-weight: 700;
}
header .searchCont .searchBtn,
footer .searchCont .searchBtn {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  border: none;
  border-radius: 0;
  box-shadow: none;
  height: 44px;
  padding: 8px 32px;
  background-color: #4a90e2;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, border 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}
header .searchCont .searchBtn:hover,
footer .searchCont .searchBtn:hover {
  cursor: pointer;
  background-color: #01579b;
}
header .loginSignUp,
footer .loginSignUp {
  display: flex;
}
@media (max-width: 960px) {
  header .loginSignUp,
  footer .loginSignUp {
    margin: 30px;
  }
}
header .loginSignUp .loginBtn,
footer .loginSignUp .loginBtn {
  border: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background-color: transparent;
  font-size: 1.5rem;
  min-width: 64px;
  padding: 10px 12px;
  color: #ff9400;
  font-weight: 700;
  margin-left: 8px;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, border 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}
header .loginSignUp .loginBtn:active,
footer .loginSignUp .loginBtn:active {
  background-color: rgba(255, 148, 0, 0.25);
}
header .loginSignUp .loginBtn:focus,
footer .loginSignUp .loginBtn:focus {
  outline: 0;
}
header .loginSignUp .loginBtn:hover,
footer .loginSignUp .loginBtn:hover {
  cursor: pointer;
}
@media (max-width: 960px) {
  header .loginSignUp .loginBtn,
  footer .loginSignUp .loginBtn {
    padding: 10px 26px;
  }
}
header .loginSignUp .signUpBtn,
footer .loginSignUp .signUpBtn {
  border: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 26px;
  font-size: 1.5rem;
  min-width: 64px;
  color: white;
  font-weight: 700;
  white-space: nowrap;
  background-color: #ff9400;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, border 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}
header .loginSignUp .signUpBtn:hover,
footer .loginSignUp .signUpBtn:hover {
  cursor: pointer;
  background-color: #01579b;
}
header-krish {
  text-align: center;
  font-size: 3rem;
  padding: 5% 0 5% 0;
}
header-krish h1 {
  font-size: 3.5rem;
  color: #233a4f;
  padding: 5% 20% 2% 1%;
}
@media (max-width: 960px) {
  header-krish h1 {
    padding: 5% 37% 2% 1%;
    font-size: 3rem;
  }
}
@media (max-width: 717px) {
  header-krish h1 {
    display: none;
  }
}
header-krish .top-button-text {
  padding: 1%;
  font-size: 2.3rem;
  text-decoration: none;
  font-family: DroidSerifBold;
  border-radius: 6px;
  color: white;
  background-color: #4a90e2;
  border: none;
  box-shadow: none;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, border 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}
header-krish .top-button-text:hover {
  background-color: #01579b;
  color: white;
  cursor: pointer;
}
@media (max-width: 717px) {
  header-krish .top-button-text {
    margin-top: 10%;
  }
}
@media (max-width: 400px) {
  header-krish .top-button-text {
    font-size: 1.3rem;
  }
}
.words {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  color: #ff9400;
}
.word-animate span {
  position: absolute;
  overflow: hidden;
  opacity: 0;
  display: inline-block;
  animation: rotateWord 7s linear infinite 0s;
  text-decoration: none;
}
.word-animate span:nth-child(2) {
  animation-delay: 3s;
}
.word-animate span:nth-child(3) {
  animation-delay: 5s;
}
@keyframes rotateWord {
  0% {
    opacity: 0;
  }
  2% {
    opacity: 0;
    -webkit-transform: translateY(-30px);
  }
  5% {
    opacity: 1;
    -webkit-transform: translateY(-27px);
  }
  17% {
    opacity: 1;
    -webkit-transform: translateY(-27px);
  }
  20% {
    opacity: 0;
    -webkit-transform: translateY(30px);
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 960px) {
  footer {
    height: 160px;
  }
}
footer .content {
  margin-top: 2%;
}
footer .copyright {
  width: 25%;
  margin: 0;
}
footer .copyright p {
  text-align: center;
}
@font-face {
  font-family: 'Exo';
  font-style: normal;
  font-weight: 400;
  src: local('Exo Regular'), local('Exo-Regular'), url(https://fonts.gstatic.com/s/exo/v9/4UaOrEtFpBISc36m.ttf) format('truetype');
}
@font-face {
  font-family: 'Exo';
  font-style: normal;
  font-weight: 700;
  src: local('Exo Bold'), local('Exo-Bold'), url(https://fonts.gstatic.com/s/exo/v9/4UaDrEtFpBIayFu29xLm.ttf) format('truetype');
}
.all-logo {
  position: relative;
  width: 40%;
  display: flex;
  margin: 8% 30%;
  margin-top: 2%;
  transition: transform 0.5s ease;
}
.all-logo:hover {
  transform: scale(1.1);
}
@media (max-width: 960px) {
  .all-logo {
    width: 60%;
    margin: 4% 20%;
  }
}
.second-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 2%;
}
@media (max-width: 960px) {
  .second-content {
    display: flex;
    flex-direction: column;
    margin: 0;
  }
}
.second-content .messari-img {
  width: 54%;
  height: auto;
  transition: transform 0.5s ease;
  overflow: hidden;
}
.second-content .messari-img:hover {
  transform: scale(1.05);
}
@media (max-width: 960px) {
  .second-content .messari-img {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    display: none;
  }
}
@media (max-width: 720px) {
  .second-content .messari-img {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    display: none;
  }
}
.second-content .messari-content {
  text-align: justify;
  width: 45%;
  padding: 1%;
  background-color: #233A4F;
  color: white;
  border-radius: 6px;
}
@media (max-width: 960px) {
  .second-content .messari-content {
    width: 100%;
    overflow: hidden;
    border-radius: 0;
    padding: 5%;
    padding-bottom: 0;
  }
}
.second-content .messari-content h2 {
  color: white;
  font-weight: 700;
  padding: 5%;
}
@media (max-width: 960px) {
  .second-content .messari-content h2 {
    padding: 0;
    padding-bottom: 2%;
  }
}
@media (max-width: 960px) {
  .second-content .messari-content p {
    padding-bottom: 2%;
  }
}
.heading {
  color: #233A4F;
  background-color: #e3edf4;
  padding: 5%;
  padding-bottom: 2%;
  font-weight: 700;
}
@media (max-width: 960px) {
  .heading {
    margin: 0;
  }
}
.third-content {
  display: flex;
  flex-wrap: wrap;
  background-color: #e3edf4;
}
@media (max-width: 550px) {
  .third-content {
    width: 100%;
    flex-direction: column;
  }
}
.third-content .para {
  color: #233A4F;
  font-weight: 700;
  margin: 0 2% 2%;
  padding: 0 0 2% ;
  display: flex;
  flex-direction: row;
  width: 45%;
  text-align: justify;
  border-bottom: 2px dashed #ff9400;
}
@media (max-width: 550px) {
  .third-content .para {
    width: 100%;
    margin: 0;
    padding: 0;
  }
}
@media (max-width: 550px) {
  .third-content .last {
    border: none;
  }
}
.third-content p {
  padding: 2%;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, border 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}
.third-content p:hover {
  background-color: #233a4f;
  color: white;
  border-radius: 6px;
}
@media (max-width: 960px) {
  .third-content p {
    padding: 5%;
    padding-top: 2%;
  }
}
.third-content ul {
  list-style-type: disc;
  margin: 2%;
}
.copyright {
  width: 15%;
  margin-top: auto;
}
.copyright p {
  color: white;
  font-size: 0.8rem;
  padding: 2%;
}
.about-wrapper {
  background-color: #e3edf4;
}
.about-wrapper h2,
.about-wrapper h3,
.about-wrapper p {
  color: #233a4f;
  margin: 0 2%;
  padding: 1% 0;
}
.about-wrapper h2,
.about-wrapper h3 {
  font-weight: 700;
}
@media (max-width: 960px) {
  .about-wrapper h2,
  .about-wrapper h3 {
    padding-top: 2%;
  }
}
.about-wrapper .top-content {
  width: 90%;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}
.about-wrapper .top-content p {
  text-align: justify;
  padding: 2% 0;
  width: 90%;
}
.about-wrapper .messari-graph {
  width: 100%;
}
.about-wrapper .content-section {
  margin: 30px auto 0 auto;
  display: flex;
  justify-content: space-between;
  width: 90%;
}
.about-wrapper .content-section h2 {
  background-color: #ff9400;
  width: auto;
  border-radius: 10px;
  padding: 1% 2%;
}
@media (max-width: 550px) {
  .about-wrapper .content-section {
    width: 100%;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
  }
}
.about-wrapper .content-section .text-content {
  width: 60%;
  margin-left: 10%;
}
@media (max-width: 960px) {
  .about-wrapper .content-section .text-content {
    margin: 0;
    width: 90%;
  }
}
@media (max-width: 550px) {
  .about-wrapper .content-section .text-content {
    width: 90%;
  }
}
.about-wrapper .content-section .text-content .hideMobile {
  padding: 1.5%;
}
@media (max-width: 550px) {
  .about-wrapper .content-section .text-content .hideMobile {
    display: none;
  }
}
.about-wrapper .content-section .img-content {
  margin-right: 15%;
}
@media (max-width: 960px) {
  .about-wrapper .content-section .img-content {
    margin-right: 0;
    width: 50%;
  }
}
@media (max-width: 550px) {
  .about-wrapper .content-section .img-content {
    display: flex;
    width: 50%;
    padding-top: 2%;
    margin: 0;
  }
}
.about-wrapper .content-section .img-content img {
  border-radius: 10px;
}
@media (max-width: 960px) {
  .about-wrapper .content-section .img-content img {
    width: 80%;
  }
}
@media (max-width: 550px) {
  .about-wrapper .content-section .img-content img {
    width: 80%;
  }
}
.about-wrapper .content-section .img-content .hideDesktop {
  align-self: flex-end;
}
@media (min-width: 551px) {
  .about-wrapper .content-section .img-content .hideDesktop {
    display: none;
  }
}
.about-wrapper .inverse-content {
  padding-bottom: 10px;
}
@media (max-width: 550px) {
  .about-wrapper .inverse-content {
    flex-direction: column-reverse;
    padding-bottom: 0;
  }
}
.about-wrapper .inverse-content .text-content {
  margin-left: 0;
  margin-right: 3%;
}
@media (max-width: 960px) {
  .about-wrapper .inverse-content .text-content {
    margin-right: 0%;
  }
}
.about-wrapper .inverse-content .img-content {
  margin-left: 15%;
  margin-right: 0;
}
@media (max-width: 960px) {
  .about-wrapper .inverse-content .img-content {
    margin-left: 0%;
  }
}
@media (max-width: 550px) {
  .about-wrapper .inverse-content .img-content {
    margin: 0;
    margin-left: 0;
  }
}
.about-wrapper .disclaimer p {
  padding: 2%;
  font-style: italic;
  text-align: justify;
}
/*about-page wrapper */
/* animation of top landing page */
.first-container {
  background-color: #e3edf4;
  height: 75vh;
}
@media (max-width: 820px) {
  .first-container {
    height: 75vh;
  }
}
@media (max-width: 660px) {
  .first-container {
    height: 60vh;
  }
}
@media (max-width: 550px) {
  .first-container {
    height: 50vh;
  }
}
