/* 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;
}

body {
  background-color: #221e20;
  margin: 0;
  padding: 0;
  max-height: 100vh;
  font-family: "Open Sans", sans-serif;
}

.container-top {
  background-image: url(../img/hero-image.jpg);
  background-size: cover;
  height: 50vh;
  display: flex;
  align-items: center;
}

.container-top h1 {
  font-size: 64px;
  line-height: 72px;
  font-style: italic;
}

.container-top h1 span {
  font-weight: 600;
}

.container-top-inner {
  width: 80%;
  margin: 0 auto;
}

.container-contact {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: -24px;
}

.call-us {
  display: flex;
  width: fit-content;
  gap: 8px;
  align-items: center;
  text-decoration: none;
  padding: 8px 16px;
  background-color: #24d124;
  border-radius: 24px;
  color: white;
  font-weight: 600;
  transition: all 0.4s ease-in-out;
}

.call-us:hover {
  background-color: #178617;
}

.call-us img {
  width: auto;
  height: 16px;
}

.mail-us {
  display: flex;
  width: fit-content;
  gap: 8px;
  align-items: center;
  text-decoration: none;
  padding: 16px 24px;
  background-color: #fff;
  border-radius: 24px;
  color: black;
  font-weight: 600;
  transition: all 0.4s ease-in-out;
}

.mail-us:hover {
  background-color: #e5e5e5;
}

.mail-us img {
  width: auto;
  height: 16px;
}

.container-bottom-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 40vh;
}

.container-bottom-inner img {
  width: 30%;
  height: auto;
}

.container-bottom-inner h2 {
  color: white;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 24px;
  margin-top: 54px;
}

.container-bottom-inner h2 span {
  color: #e62336;
}

@media only screen and (max-width: 960px) {
  .container-top h1 {
    font-size: 32px;
    line-height: 40px;
  }
  .container-bottom-inner img {
    width: 70%;
  }
  .container-bottom-inner h2 {
    font-size: 16px;
    width: 70%;
    line-height: 20px;
  }
}
