@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

*{
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

h1{
  font-size: 3rem;
  font-family: 'Lobster', cursive;
  font-weight: normal;
  color: #4e373d;
  text-align: center;
  margin: 2rem 0;
}

.wrapper{
  width: 90%;
  margin: 0 auto;
  max-width: 80rem;

}

.cols{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.col{
  width: calc(25% - 2rem);
  margin: 1rem;
  cursor: pointer;
}

.container{

  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-perspective: 1000px;
          perspective: 1000px;
}

.front,
.back{
  background-size: cover;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.25);
  border-radius: 10px;
  background-position: center;
  -webkit-transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -o-transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;

  text-align: center;
  min-height: 280px;
  height: auto;
  border-radius: 10px;
  border-style:ridge;
  border-color: rgb(121,137,111);


  color: #fff;
  font-size: 1.5rem;
}

.back{
  background:  rgb(121,137,111);
  background: -webkit-linear-gradient(121deg, rgba(121,137,111,1) 16%, rgba(247,238,231,1) 100%, rgba(15,1,1,1) 100%);
  background: -o-linear-gradient(121deg, rgba(121,137,111,1) 16%, rgba(247,238,231,1) 100%, rgba(15,1,1,1) 100%);
  background: linear-gradient(121deg, rgba(121,137,111,1) 16%, rgba(247,238,231,1) 100%, rgba(15,1,1,1) 100%);
}

.backb{
  background:  rgb(121,137,111);
  background: -webkit-radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%),
                radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);
  background: -o-radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%),
                radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);
  background: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%),
                radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);
}

.front:after{
  position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    content: '';
    display: block;
    opacity: .6;
    background-color: #000;

    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    border-radius: 10px;
}
.container:hover .front,
.container:hover .back{
    -webkit-transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    -o-transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.back{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.inner{
    -webkit-transform: translateY(-50%) translateZ(60px) scale(0.94);
            transform: translateY(-50%) translateZ(60px) scale(0.94);
    top: 50%;
    position: absolute;
    left: 0;
    width: 100%;
    padding: 1rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    outline: 1px solid transparent;
    -webkit-perspective: inherit;
            perspective: inherit;
    z-index: 2;
}

.container .back{
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;



}

.container .front{
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
}

.container:hover .back{
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}


.container:hover .front{
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.front .inner p{
  font-family: 'Lobster', cursive;
  font-size: 2rem;
  margin-bottom: 2rem;
  position: relative;

}



.front .inner p:after{
  content: '';
  width: 4rem;
  height: 2px;
  position: absolute;
  background: #C6D4DF;
  display: block;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -.75rem;
}

.front .inner span{
  color: rgba(255,255,255,0.7);
  font-family: 'Lobster', cursive;
  font-weight: 300;

}

@media screen and (max-width: 64rem){
  .col{
    width: calc(33.333333% - 2rem);
  }
}

@media screen and (max-width: 48rem){
  .col{
    width: calc(50% - 2rem);
  }
}

@media screen and (max-width: 32rem){
  .col{
    width: 100%;
    margin: 0 0 2rem 0;
  }
}


.two{   display: inline-block;
  align-items: center;
        width: 200px;
        height: 50px;
        background: #757a2a;
        border-radius:15px;
        border:0;
        color:#fff;
        font-family: 'Lobster', cursive;
        font-size: 32px;
        font-weight: semibold;
        cursor:pointer;
background: -moz-linear-gradient(-45deg,  #757a2a 0%, #757a2a 40%, #ffffff 50%, #757a2a 60%, #757a2a 100%);
background: -webkit-linear-gradient(-45deg,  #757a2a 0%, #757a2a 40%, #ffffff 50%, #757a2a 60%, #757a2a 100%);
background: -o-linear-gradient(-45deg,  #757a2a 0%, #757a2a 40%, #ffffff 50%, #757a2a 60%, #757a2a 100%);
background: -ms-linear-gradient(-45deg,  #757a2a 0%, #757a2a 40%, #ffffff 50%, #757a2a 60%, #757a2a 100%);
background: linear-gradient(135deg, #757a2a 0%,#757a2a 40%,#ffffff 50%,#757a2a 60%,#757a2a 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#757a2a', endColorstr='#757a2a',GradientType=1 );
background-repeat: no-repeat;
background-position:0px;
background-size:300%;


}


.twob{ display: inline-block;
  align-items: center;
        width: 200px;
        height: 50px;
        background: #757a2a;
        border-radius:15px;
        border:0;
        color:#fff;
        font-family: 'Lobster', cursive;
        font-size: 32px;
        font-weight: semibold;
        cursor:pointer;
background: -moz-radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%),
              radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);
background: -webkit-radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%),
              radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);
background: -o-radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%),
              radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);
background: -ms-radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%),
              radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);
background: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%),
              radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);

              filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#757a2a', endColorstr='#757a2a',GradientType=1 );
              background-repeat: no-repeat;
              background-position:0px;
              background-size:300%;


}

.twob:hover{
  animation:light 1s;
    -webkit-animation:light 1s;
  box-shadow: -6px -6px 10px rgba(255, 255, 255, 0.8), 6px 6px 10px rgba(0, 0, 0, 0.2);

}

.two:hover{
  animation:light 1s;
    -webkit-animation:light 1s;
  box-shadow: -6px -6px 10px rgba(255, 255, 255, 0.8), 6px 6px 10px rgba(0, 0, 0, 0.2);

}

@keyframes light {
  0% {
        background-position:-600px;
  }
  100% {
        background-position:0px;
  }
}

@-webkit-keyframes light {
  0% {
        background-position:-600px;
  }
  100% {
        background-position:0px;
  }
}

body{

  /* Image is centered vertically and horizontally at all times */
  background-position: center center;

  /* Image doesn't repeat */
  background-repeat: no-repeat;

  /* Makes the image fixed in the viewport so that it doesn't move when
     the content height is greater than the image height */
  background-attachment: fixed;

  /* This is what makes the background image rescale based on its container's size */
  background-size: cover;

}


@media (min-width: 1025px) {
  body {
	    background-image: url("../images/bgDeskstop.jpg");
   }
}

@media  (max-width: 1024px) {
body {
        background-image: url("../images/bgTablet.jpg");
    }
}

/* For width 400px and larger: */
@media (min-width: 400px) and (max-width: 1024px) {
body {
    background-image: url("../images/bgMobile.jpg");
    font-size: 25px;

  }
}
.footer{
    padding-top: 3vh;
    height: 50px;
    background-color: rgba(121,137,111,0.5);
    font-size: 16px;
    text-align: center;
    font-weight: normal;
    color: #131313;
    position: relative;
    text-transform:uppercase;
    font-family: 'Bebas Neue', cursive;

    }

    .footerb{
        padding-top: 3vh;
        height: 50px;
      opacity:70%;
        font-size: 16px;
        text-align: center;
        font-weight: normal;
        color: #131313;
        position: relative;
        text-transform:uppercase;
        font-family: 'Bebas Neue', cursive;

      background: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%),
               radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);
  }


    #myVideo {
      position: fixed;
      right: 0;
      bottom: 0;
      min-width: 100%;
      min-height: 100%;
      z-index: -1

    }
.hwhite{
  color: #ffff;
}

.omcolor{
  font-family: 'Bebas Neue', cursive;
color: #131313;
      text-decoration: none !important;
  		text-transform: uppercase;

  		-webkit-transform: scale(.95);
  				-ms-transform: scale(.95);
  						transform: scale(.95);

      -webkit-transition: all .25s linear;
              transition: all .25s linear; }

  .omcolor:hover, .omcolor:focus {
  		color: #fff;
font-size: 20px;
  		-webkit-transform: scale(1);
  				-ms-transform: scale(1);
  						transform: scale(1); }

}
