@charset "UTF-8";

/* CSS Document */
body {
  background-color: #C2CFD7;
}

#loader {
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 1;
    overflow: visible;
    background: #C2CFD7 url('/img/preloader-mountains.gif') no-repeat center center;
}

.banner_photo img {
  position: relative;
display: block;
width: 100%;
height: auto;
  background-image: url(/img/kalamalka-lake-vernon-eagira.jpg);
  background-position: center;
}

#navlist {
  background-color: #115D7A;
  top: -60px;
  width: 100%;
  display: inline-block;
  transition: top 0.3s;
  font-family: "ubuntu";
  position: fixed;
  margin: 0 auto;
  clear: left;
  height: auto;
  z-index: 999;
  text-align: center;
}

#navlist a {
  display: inline-flex;
  color: white;
  text-align: center;
  padding: 14px 20px;
  text-decoration: none;
  font-size: 15px;
  overflow: hidden;
}

#navlist a:hover {
  background-color: #849EAE;
  color: white;
}

.page-title h1{
  display: block;
  color: white;
  text-align: center;
  position: relative;
  background-color: #115D7A;
  margin-top:15vh;
}

.ag-format-container {
  width: 1142px;
  margin: 0 auto;
  font-family: "Oxygen";
  margin-top: 10px;
}

.ag-offer-block {
  padding: 50px 0 90px
}

.ag-offer_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start
}

.ag-offer_item {
  width: 50%;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

.ag-offer_item:nth-child(1) .ag-offer_hidden-item {
  background-color: #EE923D;
}

.ag-offer_item:nth-child(2) .ag-offer_hidden-item {
  background-color: #05A8AA;
}

.ag-offer_item:nth-child(3) .ag-offer_hidden-item {
  background-color: #115D7A;
}

.ag-offer_item:nth-child(4) .ag-offer_hidden-item {
  background-color: #F4B67C;
}

.ag-offer_item:nth-child(5) .ag-offer_hidden-item {
  background-color: #EE923D;
}

.ag-offer_item:nth-child(6) .ag-offer_hidden-item {
  background-color: #05A8AA;
}

.ag-offer_item:hover .ag-offer_visible-item {
  opacity: 0;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}

.ag-offer_visible-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  width: 100%;
  padding: 100px 40px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: .4s .3s;
  -moz-transition: .4s .3s;
  -o-transition: .4s .3s;
  transition: .4s .3s;
}

.ag-offer_img {
  height: 64px;
  width: 64px;
  margin: 0 15px 0 0;
}

.ag-offer_title {
  font-size: 22px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.ag-offer_hidden-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 50px;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: rotate(180deg) scale(0);
  -moz-transform: rotate(180deg) scale(0);
  -ms-transform: rotate(180deg) scale(0);
  -o-transform: rotate(180deg) scale(0);
  transform: rotate(180deg) scale(0);
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.ag-offer_item:hover .ag-offer_hidden-item {
  opacity: 1;
  -webkit-transform: rotate(0deg) scale(1);
  -moz-transform: rotate(0deg) scale(1);
  -ms-transform: rotate(0deg) scale(1);
  -o-transform: rotate(0deg) scale(1);
  transform: rotate(0deg) scale(1);
  -webkit-transition-delay: .3s;
  -moz-transition-delay: .3s;
  -o-transition-delay: .3s;
  transition-delay: .3s;
}

.ag-offer_text {
  max-width: 100%;
  height: fit-content;
  opacity: 0;
  font-size: 18px;
  color: #FFF;
  -webkit-transition: .3s .5s;
  -moz-transition: .3s .5s;
  -o-transition: .3s .5s;
  transition: .3s .5s;
}

.ag-offer_item:hover .ag-offer_text {
  opacity: 1;
}

@media only screen and (max-width: 767px) {
  .ag-format-container {
    width: 96%;
  }

  .ag-offer_item {
    width: 100%;
    margin: 0 0 30px;
    border: 0 none !important;
    border-bottom: 1px solid #c1c1c1 !important;
  }

  .ag-offer_visible-item {
    padding: 0 20px 30px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .ag-offer_item:hover .ag-offer_visible-item {
    opacity: 1;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }

  .ag-offer_hidden-item {
    padding: 0 20px 20px;
    opacity: 1;
    position: static;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }

  .ag-offer_item:nth-child(1) .ag-offer_hidden-item,
  .ag-offer_item:nth-child(2) .ag-offer_hidden-item,
  .ag-offer_item:nth-child(3) .ag-offer_hidden-item,
  .ag-offer_item:nth-child(4) .ag-offer_hidden-item,
  .ag-offer_item:nth-child(5) .ag-offer_hidden-item,
  .ag-offer_item:nth-child(6) .ag-offer_hidden-item {
    background-color: transparent;
  }

  .ag-offer_item:hover .ag-offer_text {
    opacity: 1;
  }

  .ag-offer_title {
    font-weight: bold;
  }

  .ag-offer_text {
    opacity: 1;
    font-size: 18px;
    color: #000;
  }
}

@media only screen and (max-width: 767px) {}

@media only screen and (max-width: 479px) {}

@media (min-width: 768px) and (max-width: 979px) {
  .ag-format-container {
    width: 765px;
  }
}

@media (min-width: 980px) and (max-width: 1161px) {
  .ag-format-container {
    width: 960px;
  }
  
  
}
.page-title {
  font-family: "ubuntu";
  margin-top:-100px;
}

.back-button {
  font-size: 20px;
  text-align: left;
  display: block;
  position: relative;
  font-family: 'ubuntu', serif;
  padding-left: 15%;
  padding-bottom: 15px;
}

.back-button a {
  display: inline-block;
  padding: 5px 0;
  position: relative;
  background-clip: text;
  transition: all 0.3s ease-in-out;
  font-family: 'ubuntu', serif;
  text-decoration: none;
  color: white;

}

.back-button a:before {
  content: '';
  background: #849EAE;
  display: block;
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 3px;
  transition: all 0.3s ease-in-out;
  font-family: 'ubuntu', serif;
  text-decoration: none;
}

.back-button a:hover {
  background-position: 0;
  font-family: 'ubuntu', serif;
  text-decoration: none;
  color: #115D7A;
}

.back-button a:hover::before {
  width: 100%;
  font-family: 'ubuntu', serif;
  text-decoration: none;
}

.ag-offer-block {
  padding-top: 15px;
  padding-bottom: 0px;
}

/* Touch styles */
a.touch:hover {
  background-color: #849EAE;
  color: white;
}

footer {
  font-family: "ubuntu";
  display: table;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: -100px;
  text-decoration: none;
}

footer a {
  font-family: "ubuntu";
  display: inline;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 25px;
  text-decoration: none;
  color: black;
}