/* ........................................... */
/* BASIC SETUP */
/* ........................................... */
@font-face {
  font-family: "Apple-Chancery";
  src: url("./converted-files/Apple-Chancery.svg#Apple-Chancery") format("svg"),
    url("./converted-files/Apple-Chancery.ttf") format("truetype"),
    url("./converted-files/Apple-Chancery.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  background-color: #fff;
  color: #555;
  font-display: "Lato", "Ariel", sans-serif;
  font-weight: 300;
  font-size: 20px;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ........................................... */
/* REUSABLE COMPONENTS */
/* ........................................... */
section {
  /* padding: 80px 0; */
}
.box {
  padding: 1%;
}

/* ........................................... */
/* HEADINGS */
/* ........................................... */

h1,
h2,
h3 {
  font-weight: 300;
  text-transform: uppercase;
}
h1 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #fff;
  font-size: 240%;
  word-spacing: 4px;
  letter-spacing: 1px;
}

h2 {
  font-size: 180%;
  word-spacing: 2px;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 1px;
}
h3 {
  font-size: 110%;
  margin-bottom: 15px;
}
h2:after {
  display: block;
  height: 2px;
  background-color: #003b63;
  content: " ";
  width: 100px;
  margin: 0 auto;
  margin-top: 30px;
}
/*-------PARAGRAPHS--------*/
.long-copy {
  line-height: 145%;
  width: 70%;
  margin-left: 15%;
}
.box p {
  font-size: 90%;
  line-height: 145%;
}
/*-------ICONS---------*/
.icon-big {
  font-size: 350%;
  display: block;
  color: #e67e22;
  margin-bottom: 10px;
}
.icon-small {
  display: inline-block;
  width: 30px;
  text-align: center;
  color: #e67e22;
  font-size: 120%;
  line-height: 120%;
  vertical-align: middle;
  margin-top: -5px;
  margin-right: 10px;
}
/*--------------LINKS----------------- */
a:link,
a:visited {
  text-decoration: none;
  padding-bottom: 1px;
  transition: border-botom 0.2s, color;
}
a:hover,
a:active {
  color: #a1ceed;
  border-bottom: 1px solid transparent;
}

/*-------------- BUTTONS----------------- */
.btn:link,
.btn:visited,
input[type="submit"] {
  display: inline-block;
  padding: 10px 30px;
  font-weight: 300;
  text-decoration: none;
  border-radius: 200px;
  transition: background-color 0.2s, border 0.2s, color 0.2s;
}

.btn-full:link,
.btn-full:visited,
input[type="submit"] {
  background-color: #e67e22;
  border: 1px solid #e67e22;
  color: #fff;
  margin-right: 15px;
}

.btn-ghost:link,
.btn-ghost:visited {
  border: 1px solid #003b63;
  color: #003b63;
}
.btn:hover,
.btn:active,
input[type="submit"]:hover,
input[type="submit"]:active {
  background-color: #003b63;
}
.btn-full:hover,
.btn-full:active {
  border: 1px solid white;
}

#floater:hover,
#floater:active {
  font-weight: 1000;
  opacity: 0.7;
}
#floater {
  margin-right: 50px;
}

.btn-ghost:hover,
.btn-ghost:active {
  border: 1px solid #003b63;
  color: #fff;
}
/* ........................................... */
/* HEADER */
/* ........................................... */

header {
  background-color: #888;
}
/* .top-section {
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
    url(img/main-img.jpg);
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
} */

.hero-text-box {
  position: absolute;
  width: 1140px;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.logo {
  height: 100px;
  width: auto;
  float: right;
  margin-top: 20px;
  margin-left: 40px;
}
.main-nav {
  float: right;
  list-style: none;
  margin-top: 55px;
}
.main-nav li {
  display: inline-block;
  margin-left: 40px;
}
.main-nav li a:link,
.main-nav li a:visited {
  padding: 8px 0px;
  color: #003b63;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 90%;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.2s;
}
.main-nav li a:hover,
.main-nav li a:active {
  border-bottom: 2px solid #e67e22;
}
/* ........................................... */
/* FEATURES */
/* ........................................... */
/* ........................................... */
.section-features .long-copy {
  margin-bottom: 30px;
}

/* ........................................... */
/* MEALS */
/* ........................................... */
.section-meals {
  padding: 0;
}
.meals-showcase {
  list-style: none;
  width: 100%;
}
.meals-showcase figure {
  width: 25%;
}

.meal-photo {
  width: 100%;
  margin: 0;
  overflow: hidden;
  position: relative;
  color: white;
  text-align: center;
  font-size: 20px;
}
.meal-photo img {
  transform: scale(1.15);
  transition: transform 0.5s, opacity 0.5s;
}
.meal-photo img:hover {
  opacity: 0.5;
  transform: scale(1.03);
}

.meal-header {
  top: 50%;
  left: 20%;
  position: absolute;
}

/* ........................................... */
/* HOW IT WORKS */
/* ........................................... */

.section-steps {
  background-color: #f4f4f4;
}

.step-box:first-child {
  text-align: right;
  padding-right: 3%;
  margin-top: 30px;
}
.step-box:last-child {
  padding-left: 3%;
  margin-top: 70px;
}
.app-screen {
  width: 40%;
}
.work-step {
  margin-bottom: 50px;
}
.work-step:last-of-type {
  margin-bottom: 80px;
}
.work-step div {
  color: #e67e22;
  border: 2px solid #e67e22;
  display: inline-block;
  border-radius: 50%;
  height: 54px;
  width: 54px;
  text-align: center;
  padding: 5px;
  font-size: 150%;
  margin-right: 25px;
}
.btn-app:link,
.btn-app:visited {
  border: 0;
}
.btn-app img {
  width: auto;
  height: 50px;
  margin-right: 10px;
}

/* ........................................... */
/* FORM */
/* ........................................... */

.contact-form {
  width: 80%;
  margin: 0 auto;
}
input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 7px;
  border-radius: 3px;
  border: 1px solid #ccc;
}
textarea {
  height: 100px;
}
input[type="checkbox"] {
  margin: 10px 5px 10px 0;
}
*:focus {
  outline: none;
}


/* ........................................... */
/* HOME PAGE*/
/* ........................................... */
.home-text-box {
  text-align: center;
}
.home-text1 {
  color: #003b63;
  font-family: "Apple Chancery";
  /* -webkit-text-stroke-width: 0.9px;
  -webkit-text-stroke-color: white; */
  font-size: 90px;
  margin-bottom: 0%;
}

.home-text2 {
  color: #003b63;
  text-align: center;
  font-size: 35px;
}

.home-text3 {
  font-family: "Rockwell";
  margin-top: 25px;
  color: black !important;
  text-align: center;
}
.home-text4 {
  font-family: "Rockwell";
  color: black !important;
  /* border-bottom: solid 1px; */
  text-align: center;
}

.our-services-img-container a {
  color: #555 !important;
  text-align: center;
}

/* ........................................... */
/* FOOTER*/
/* ........................................... */
footer {
  background-color: #333333e8;
  padding: 0px 50px 0px 50px;
  font-size: 70%;
}

#copyright {
  transform: translate(50%);
}

footer p {
  color: #888;
  text-align: center;
  margin-top: 20px;
}

footer div {
  color: white;
  text-align: center;
}

footer .col {
  transform: translate(0%);
}

.bold {
  font-weight: bold;
}


/* ........................................... */
/* CONTACT PAGE*/
/* ........................................... */

.contact-container {
  font-family: "Rufina", serif;
}
.outside-img,
.outside-img2 {
  margin: 2vh 5vh 13vh 5vh;
  border: 1px solid black;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  position: relative;
  top: 0;
  left: 0;
}

.outside-img2 {
  border: 1px solid black;
  height: 500px;
  width: 500px;
  position: absolute;
  top: 60px;
  left: 550px;
}

iframe {
  margin-top: 11vh;
  height: 500px;
}

.contact-title {
  font-weight: bold;
  margin-bottom: 20px;
   color: #c12727;
}

.fas {
  margin-right: 7px !important;
}

td {
  padding-left: 15px;
}

/* ........................................... */
/* Misc*/
/* ........................................... */

#mainimg {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
  /* height: 100vh; */
  width: 100vw;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  object-fit: cover;
}
