/*---------------------------------------------------------------CSS reset------------------------------------------------------------*/
/* 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,
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;
}
/* --------------------------------------------------Code starts here-------------------------------------------------------- */
html {
  margin: 0;
  height: 100%;
}
body {
  font-family: 'Yantramanav', sans-serif;
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
}
h2 {
  font-size: 2rem;
}
header {
  width: 100%;
  height: 8vh;
  color: white;
  background: #262626;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 990px) {
  header {
    flex-direction: column;
    padding-top: 1vh;
  }
}
@media screen and (max-width: 500px) {
  header {
    height: 20vh;
    padding: 0;
  }
}
header #logo {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 3vw;
}
header #logo img {
  height: 75%;
}
@media screen and (max-width: 990px) {
  header #logo img {
    height: 100%;
  }
}
@media screen and (max-width: 500px) {
  header #logo img {
    height: 65%;
  }
}
header nav {
  margin-right: 10vw;
}
@media screen and (max-width: 990px) {
  header nav {
    margin: 1vh 0;
    width: 90%;
    display: flex;
    justify-content: space-around;
  }
}
@media screen and (max-width: 500px) {
  header nav {
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin: 0;
  }
}
header nav a {
  text-decoration: none;
  font-size: 1.5rem;
  margin: 0 5vw;
  border-bottom: 3px solid transparent;
  color: white;
}
@media screen and (max-width: 990px) {
  header nav a {
    margin: 0;
  }
}
@media screen and (max-width: 500px) {
  header nav a {
    text-align: center;
    width: 100vw;
    border-top: 2px solid black;
    padding: 0.5vh 0;
  }
}
@media screen and (max-width: 500px) {
  header nav #login {
    border-bottom: 2px solid black;
  }
}
header nav a:hover {
  border-bottom: 3px solid white;
}
@media screen and (max-width: 500px) {
  header nav a:hover {
    border-bottom: 3px solid transparent;
  }
}
footer {
  background: #262626;
  width: 100%;
  height: 8vh;
  margin-top: 2vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}
#main-content {
  height: 64vh;
  width: 100%;
  background-image: url(/images/Camera-new.jpg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  color: white;
}
@media screen and (max-width: 1200px) {
  #main-content {
    background-size: auto 75%;
  }
}
@media screen and (max-width: 990px) {
  #main-content {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (max-width: 500px) {
  #main-content {
    height: 50vh;
  }
}
#main-left {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 30%;
  margin: 15vh auto auto 0;
  padding: 2vh 5vw;
  background: rgba(3, 3, 3, 0.5);
}
@media screen and (max-width: 990px) {
  #main-left {
    margin: 0;
    width: 100%;
    height: 30vh;
    align-items: center;
    padding-top: 4vh;
  }
}
#main-left h1 {
  text-align: end;
  margin: 2vh 0;
  font-size: 3rem;
}
@media screen and (max-width: 1050px) {
  #main-left h1 {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 990px) {
  #main-left h1 {
    text-align: center;
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 500px) {
  #main-left h1 {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 375px) {
  #main-left h1 {
    font-size: 2rem;
  }
}
#main-left a {
  color: white;
  text-decoration: none;
  background: #3b60a5;
  width: 45%;
  margin: 2vh 0;
  padding: 2vh;
  border-radius: 5px;
  font-size: 1.3rem;
  text-align: center;
}
@media screen and (max-width: 990px) {
  #main-left a {
    width: 35%;
  }
}
@media screen and (max-width: 375px) {
  #main-left a {
    font-size: 1rem;
  }
}
#main-left a:hover {
  background: #123c70;
}
#main-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 60%;
}
@media screen and (max-width: 990px) {
  #main-right {
    height: 28vh;
    width: 100%;
    align-items: center;
    background: rgba(3, 3, 3, 0.5);
    justify-content: center;
  }
}
@media screen and (max-width: 500px) {
  #main-right {
    height: 32vh;
  }
}
#main-right img {
  margin-left: 10%;
  max-height: 500px;
  width: 40vw;
}
@media screen and (min-width: 1983px) {
  #main-right img {
    width: 30vw;
    margin-left: 20%;
  }
}
@media screen and (max-width: 990px) {
  #main-right img {
    margin: 0 auto;
    width: 50vw;
  }
}
@media screen and (max-width: 500px) {
  #main-right img {
    min-width: 245px;
  }
}
#steps {
  display: flex;
  justify-content: space-around;
  padding-top: 2vh;
  flex-wrap: wrap;
}
#steps div {
  width: 27.5%;
  height: 25vh;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
#steps div img {
  height: 50%;
}
#steps div h1 {
  font-size: 6rem;
  font-family: 'Fira Sans', sans-serif;
  font-weight: 600;
  color: lightgrey;
  height: 50%;
}
#steps div p {
  padding-bottom: 6vh;
  font-size: 1.7rem;
  vertical-align: text-bottom;
}
#steps div #right-text {
  padding-top: 2vh;
}
@media screen and (max-width: 990px) {
  #steps div {
    width: 45%;
  }
}
@media screen and (max-width: 500px) {
  #steps div {
    flex-direction: column;
    width: 85%;
  }
}
#steps #mid-step {
  width: 33%;
  border-left: 2px solid lightgrey;
  border-right: 2px solid lightgrey;
}
@media screen and (max-width: 990px) {
  #steps #mid-step {
    width: 45%;
    border-left: none;
    border-right: none;
  }
}
#steps #right-step img {
  max-width: 119.88px;
  height: auto;
  margin-top: 1vh;
}
@media screen and (max-width: 990px) {
  #steps #right-step img {
    margin: 0;
  }
}
#steps #right-step p {
  padding-bottom: 4vh;
}
#meet {
  width: 90%;
  margin: 3vh auto 2vh;
  text-align: center;
  border-bottom: 3px solid black;
}
#meet h1 {
  font-family: 'Yantramanav', sans-serif;
  font-size: 4rem;
  font-weight: 500;
}
#cards {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
#cards .card-class {
  border: 2px solid lightgray;
  width: 30%;
  display: flex;
  flex-direction: column;
  align-content: center;
  margin: 2vh 0;
  transition: all 0.2s ease-in-out;
  min-width: 270px;
}
@media screen and (max-width: 990px) {
  #cards .card-class {
    width: 40%;
  }
}
@media screen and (max-width: 725px) {
  #cards .card-class {
    width: 70%;
  }
}
#cards .card-class section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#cards .card-class section img {
  height: 30vh;
  margin: 0 auto;
  padding-top: 1vh;
  min-width: 253px;
}
#cards .card-class section h4 {
  width: 90%;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  border-bottom: 2px solid lightgray;
  margin: 0 1vh;
  padding: 0.4vh 0;
}
#cards .card-class p {
  padding: 2vh 0;
  margin: 0 3vh;
  font-family: 'Yantramanav', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
}
#cards div:hover {
  transform: scale(1.1);
}
