/*
 * blue: #ffffff
 * red:  #80cde9
 */
body,
html {
  width: 100%;
  height: 100%;
}

body {
  font-family: 'Roboto', sans-serif;
}

hr {
  max-width: 50px;
  border-width: 3px;
  border-color: #80cde9;
  margin: auto;
}

hr.light {
  border-color: white;
}

a {
  color: #80cde9;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}

a:hover {
  color: #80cde9;
}



p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.bg-primary {
  background-color: #80cde9 !important;
}

.bg-red {
  background-color: #f5b7b7 !important;
}

.bg-main {
  background-color: #80cde9 !important;
}

.bg-dark {
  color: white;
  background-color: #222222 !important;
}

a.bg-primary:focus,
a.bg-primary:hover {

  background-color: #e6e6e6 !important;
}

.text-faded {
  color: rgba(255, 255, 255, 0.7);
}

section {
  padding: 100px 0;
}

.section-heading {
  margin-top: 0;
}

::-moz-selection {
  color: white;
  background: #222222;
  text-shadow: none;
}

::selection {
  color: white;
  background: #222222;
  text-shadow: none;
}

img::selection {
  color: white;
  background: transparent;
}

img::-moz-selection {
  color: white;
  background: transparent;
}

/* body {
  -webkit-tap-highlight-color: #222222;
} */


.blue {
  color: #ffffff;
}

.red {
  color: #80cde9;
}

#mainNav {
  background-color: transparent !important;
  border-color: rgba(34, 34, 34, 0.05);
  font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
  box-shadow: 1px 1px 2px #999;
}

#mainNav .navbar-brand {
  font-weight: 700;
  /*text-transform: uppercase;*/
  color: #80cde9;
  font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
}

#mainNav .navbar-brand:focus,
#mainNav .navbar-brand:hover {
  color: #80cde9;
}

#mainNav .navbar-toggle {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #222222;
}

#mainNav .navbar-nav>li.nav-item>a.nav-link:focus,
#mainNav .navbar-nav>li.nav-item>a.nav-link {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #222222;
}

#mainNav .navbar-nav>li.nav-item>a.nav-link:focus:hover,
#mainNav .navbar-nav>li.nav-item>a.nav-link:hover {
  color: #80cde9;
}

#mainNav .navbar-nav>li.nav-item>a.nav-link:focus.active,
#mainNav .navbar-nav>li.nav-item>a.nav-link.active {
  color: #80cde9 !important;
  background-color: transparent;
}

#mainNav .navbar-nav>li.nav-item>a.nav-link:focus.active:hover,
#mainNav .navbar-nav>li.nav-item>a.nav-link.active:hover {
  background-color: transparent;
}



@media (min-width: 992px) {
  #mainNav {
    border-color: rgba(255, 255, 255, 0.3);
    background-color: transparent;
  }

  #mainNav .navbar-brand {
    color: rgba(255, 255, 255, 0.7);
  }

  #mainNav .navbar-brand:focus,
  #mainNav .navbar-brand:hover {
    color: white;
  }

  #mainNav .navbar-nav>li.nav-item>a.nav-link,
  #mainNav .navbar-nav>li.nav-item>a.nav-link:focus {
    color: #222222;
  }

  #mainNav .navbar-nav>li.nav-item>a.nav-link:hover,
  #mainNav .navbar-nav>li.nav-item>a.nav-link:focus:hover {
    color: #80cde9;
  }

  #mainNav.navbar-shrink {
    border-color: rgba(34, 34, 34, 0.05);
    background-color: white;
  }

  #mainNav.navbar-shrink .navbar-brand {
    font-size: 16px;
    color: #80cde9;
  }

  #mainNav.navbar-shrink .navbar-brand:focus,
  #mainNav.navbar-shrink .navbar-brand:hover {
    color: #80cde9;
  }

  #mainNav.navbar-shrink .navbar-nav>li.nav-item>a.nav-link,
  #mainNav.navbar-shrink .navbar-nav>li.nav-item>a.nav-link:focus {
    color: #222222;
  }

  #mainNav.navbar-shrink .navbar-nav>li.nav-item>a.nav-link:hover,
  #mainNav.navbar-shrink .navbar-nav>li.nav-item>a.nav-link:focus:hover {
    color: #80cde9;
  }
}

header.masthead {
  position: relative;
  width: 100%;
  min-height: auto;
  text-align: center;
  color: white;

  background-position: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

header.masthead .header-content {
  position: relative;
  width: 100%;
  padding: 40px 15px 0px;
  text-align: center;
}

header.masthead .header-content .header-content-inner h1 {
  color: #80cde9;
  font-size: 7vw;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0;
  text-transform: uppercase;
  text-shadow: 2px 2px #000;
}

header.masthead .header-content .header-content-inner hr {
  margin: 30px auto;
}

header.masthead .header-content .header-content-inner p {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 50px;
  color: rgba(255, 255, 255, 0.7);
  text-shadow: 1px 1px #000;
}



@media (min-width: 768px) {


  header.masthead .header-content {
    /* position: absolute; */
    top: 50%;
    padding: 0 50px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  header.masthead .header-content .header-content-inner {
    max-width: 1000px;
    margin-right: auto;
    margin-left: auto;
  }

  header.masthead .header-content .header-content-inner h1 {
    font-size: 50px;
  }

  header.masthead .header-content .header-content-inner p {
    font-size: 18px;
    max-width: 80%;
    margin-right: auto;
    margin-left: auto;
  }
}

.service-box {
  max-width: 400px;
  margin: 50px auto 0;
}

@media (min-width: 992px) {
  .service-box {
    margin: 20px auto 0;
  }
}

.service-box p {
  margin-bottom: 0;
}

.service-box h3 {
  font-weight: 300;
  font-size: 2rem;
  margin-top: 1rem;
}

.portfolio-box {
  position: relative;
  display: block;
  max-width: 650px;
  margin: 0 auto;
}

.portfolio-box .portfolio-box-caption {
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  opacity: 0;
  color: white;
  background: rgba(240, 95, 64, 0.9);
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}

.portfolio-box .portfolio-box-caption .portfolio-box-caption-content {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  text-align: center;
}

.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-category,
.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-name {
  padding: 0 15px;
  font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
}

.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-category {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-name {
  font-size: 18px;
}

.portfolio-box:hover .portfolio-box-caption {
  opacity: 1;
}

.portfolio-box:focus {
  outline: none;
}

@media (min-width: 768px) {
  .portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-category {
    font-size: 16px;
  }

  .portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-name {
    font-size: 22px;
  }
}

.call-to-action {
  padding: 50px 0;
}

.call-to-action h2 {
  margin: 0 auto 20px;
}

.text-white {
  color: #fff !important;
}

.text-primary {
  color: #80cde9 !important;
}

.no-gutter>[class*='col-'] {
  padding-right: 0;
  padding-left: 0;
}

.btn-default {
  color: #222222;
  border-color: white;
  background-color: white;
}

.btn-default.focus,
.btn-default:focus {
  color: #222222;
  border-color: #bfbfbf;
  background-color: #e6e6e6;
}

.btn-default:hover {
  color: #222222;
  border-color: #e0e0e0;
  background-color: #e6e6e6;
}

.btn-default.active,
.btn-default:active,
.open>.btn-default.dropdown-toggle {
  color: #222222;
  border-color: #e0e0e0;
  background-color: #e6e6e6;
}

.btn-default.active.focus,
.btn-default.active:focus,
.btn-default.active:hover,
.btn-default:active.focus,
.btn-default:active:focus,
.btn-default:active:hover,
.open>.btn-default.dropdown-toggle.focus,
.open>.btn-default.dropdown-toggle:focus,
.open>.btn-default.dropdown-toggle:hover {
  color: #222222;
  border-color: #bfbfbf;
  background-color: #d4d4d4;
}

.btn-default.active,
.btn-default:active,
.open>.btn-default.dropdown-toggle {
  background-image: none;
}

.btn-default.disabled.focus,
.btn-default.disabled:focus,
.btn-default.disabled:hover,
.btn-default[disabled].focus,
.btn-default[disabled]:focus,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default.focus,
fieldset[disabled] .btn-default:focus,
fieldset[disabled] .btn-default:hover {
  border-color: white;
  background-color: white;
}

.btn-default .badge {
  color: white;
  background-color: #222222;
}

.btn-primary {
  color: white;
  border-color: #f5b7b7;
  background-color: #f5b7b7;
}

.btn-primary:hover {
  color: white;
  border-color: #ffffff;
  background-color: #ffffff;
}

.btn-primary.active,
.btn-primary:active,
.open>.btn-primary.dropdown-toggle {
  color: white;
  border-color: #e13612;
  background-color: #eb3812;
}

.btn-primary.active.focus,
.btn-primary.active:focus,
.btn-primary.active:hover,
.btn-primary:active.focus,
.btn-primary:active:focus,
.btn-primary:active:hover,
.open>.btn-primary.dropdown-toggle.focus,
.open>.btn-primary.dropdown-toggle:focus,
.open>.btn-primary.dropdown-toggle:hover {
  color: white;
  border-color: #a4270d;
  background-color: #c93110;
}

.btn-primary.active,
.btn-primary:active,
.open>.btn-primary.dropdown-toggle {
  background-image: none;
}

.btn-primary.disabled.focus,
.btn-primary.disabled:focus,
.btn-primary.disabled:hover,
.btn-primary[disabled].focus,
.btn-primary[disabled]:focus,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary.focus,
fieldset[disabled] .btn-primary:focus,
fieldset[disabled] .btn-primary:hover {
  border-color: #80cde9;
  background-color: #80cde9;
}

.btn-primary .badge {
  color: #80cde9;
  background-color: white;
}

.btn {
  font-weight: 700;
  /*text-transform: uppercase;*/
  border: none;
  border-radius: 300px;
  font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
}

.btn-xl {
  padding: 15px 30px;
}

.timi-petreleou {
  font-size: 3em;
  font-weight: bold;
  color: #fff;
}

#map {
  min-height: 480px;
}

.fa-one:before {
  content: "1";
}

.fa-two:before {
  content: "2";
}

.fa-three:before {
  content: "3";
}

.fa-four:before {
  content: "4";
}

.main-title-container {
  font-size: 5vw;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  z-index: 2;
  color: #eefbfb;
  opacity: 0.75
}

.main-title-container .title-name {
  font-size: 7vw;
  font-weight: bolder;
  text-shadow: 0px 0px 10px rgb(38, 42, 42);
  line-height: 1;
}

.main-title-container .title-beach {
  font-size: 5vw;
  font-weight: 100;
  text-shadow: 0px 0px 10px rgb(38, 42, 42);
  line-height: 1;
}

figure {
  position: relative;
  display: block;
}

figure::after {
  content: '';
  display: block;
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgb(0 0 255 / 15%)
}

#slide {
  position: relative;
  width: calc(100vw -17px);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;

}




/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */



/* Carousel base class */
.carousel {
  margin-top: 100px;
}

/* Since positioning the image, we need to help out the caption */
.carousel-caption {
  bottom: 3rem;
  z-index: 10;
}

/* Declare heights because of positioning of img element */
.carousel-item {
  min-height: 600px;
}

.carousel-item>img {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  /*height: 32rem;*/
}

@media (max-width: 768px) {
  .slogan {
    display: inline-block !important;
    width: auto !important;
    clear: none !important;
    margin-right: 20px;
  }

  .navbar-brand img {
    max-width: 50px;
  }
}




@media (max-width: 30000px) {
  header.masthead {
    height: 100%;
    min-height: 45vw;

  }

  header.masthead .header-content .header-content-inner h1 {
    font-size: 2.4vw;
  }
}

@media (max-width:1900px) {
  header.masthead .header-content .header-content-inner h1 {
    font-size: 3.1vw;
  }
}

@media (max-width:1600px) {
  header.masthead .header-content .header-content-inner h1 {
    font-size: 3.7vw;
  }
}

@media (max-width: 1200px) {
  header.masthead {
    height: 100%;
    min-height: 30vw;

  }

  header.masthead .header-content .header-content-inner h1 {
    font-size: 5vw;
  }
}

@media (max-width: 768px) {
  header.masthead {
    height: 100%;
    min-height: 20vw;

  }

  header.masthead .header-content .header-content-inner h1 {
    font-size: 7vw;
  }
}

/**
Photos
*/

.photo-box img {
  cursor: pointer;
}