/*style for body*/
body {
  min-width: 320px;
  margin: 0px;
  padding: 0px;
  font-size: 12px;
  font-family: "Open Sans";
  background-color: #ecf0f1;
  width: 100%;
  height: 100%;
  overflow-x: hidden; }

/*style for ul list*/
ul li {
  list-style-type: none; }

/*style for a tag links*/
a {
  text-decoration: none !important;
  color: #e67e22 !important;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  transition-property: all; }
  a:hover {
    text-decoration: none !important;
    color: #e67e22 !important; }

/*custom style for autofill inputs*/
@-webkit-keyframes autofill {
  to {
    color: #ecf0f1;
    background: transparent; } }
/*Custom style for scrollbar*/
input:-webkit-autofill {
  -webkit-animation-name: autofill;
  -webkit-animation-fill-mode: both; }

::-webkit-scrollbar {
  width: 10px; }

::-webkit-scrollbar-track {
  background: #f1f1f1; }

::-webkit-scrollbar-thumb {
  background: #282828; }

::-webkit-scrollbar-thumb:hover {
  background: #282828; }

::-webkit-scrollbar {
  width: 10px; }

::-webkit-scrollbar-track {
  background: #f1f1f1; }

::-webkit-scrollbar-thumb {
  background: #282828; }

::-webkit-scrollbar-thumb:hover {
  background: #282828; }

/*Custom classes*/
.border-pumpkin-b {
  border-bottom: 3px solid #d35400 !important; }

.left-0 {
  left: 0; }

.right-0 {
  right: 0; }

.centerY {
  position: absolute;
  top: 50%;
  transform: translateY(-50%); }

.centerXY {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }

/*Navigation hamburger icon style*/
#nav-icon {
  width: 40px;
  height: 40px;
  position: absolute;
  margin-top: 20px;
  margin-right: 20px;
  right: 5px;
  top: 0px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  display: none; }

#nav-icon span {
  display: block;
  position: absolute;
  height: 1px;
  width: 100%;
  background: #e67e22;
  border-radius: 20px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out; }

#nav-icon span:nth-child(1) {
  top: 0px; }

#nav-icon span:nth-child(2), #nav-icon span:nth-child(3) {
  top: 13px; }

#nav-icon span:nth-child(4) {
  top: 26px; }

#nav-icon.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%; }

#nav-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg); }

#nav-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg); }

#nav-icon.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%; }

/*contact section a tag link style*/
.contact-link {
  border-bottom: 1px dotted #e67e22;
  word-break: break-all; }

/*Custom buttons styles*/
.customBtn01 {
  position: relative;
  overflow: hidden;
  width: 150px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #e67e22;
  font-size: 20px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  transition-property: all;
  border-radius: 25px;
  cursor: pointer;
  border: 1px solid #e67e22; }
  .customBtn01:before {
    content: "";
    position: absolute;
    top: -20px;
    left: -70px;
    z-index: -1;
    width: 75px;
    height: 150px;
    background-color: #ebebeb;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    transition-property: all;
    -ms-transform: rotate(320deg);
    -moz-transform: rotate(320deg);
    transform: rotate(320deg); }
  .customBtn01:after {
    content: "";
    position: absolute;
    top: -42px;
    z-index: -1;
    width: 75px;
    height: 150px;
    right: -106px;
    background-color: #ebebeb;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    transition-property: all;
    -ms-transform: rotate(320deg);
    -moz-transform: rotate(320deg);
    transform: rotate(320deg); }
  .customBtn01:hover {
    color: #282828; }
  .customBtn01:hover:before {
    left: 13px; }
  .customBtn01:hover:after {
    right: -17px; }

.customBtn02 {
  position: relative;
  overflow: hidden;
  z-index: 2;
  width: 150px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #e67e22;
  font-size: 20px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  transition-property: all;
  border-radius: 25px;
  cursor: pointer;
  border: 1px solid #e67e22;
  background-color: transparent !important; }
  .customBtn02:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    z-index: -1;
    width: 0px;
    height: 50px;
    opacity: 0;
    background-color: #e67e22;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    transition-property: all; }
  .customBtn02:hover {
    color: #282828; }
  .customBtn02:hover:before {
    width: 100%;
    opacity: 1; }

/*Header style*/
.header-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  z-index: 123;
  background-color: rgba(0, 0, 0, 0.8); }
  .header-container .header-logo {
    position: relative;
    left: 10%;
    display: inline-block; }
  .header-container .header-name {
    position: relative;
    left: 11%;
    display: inline-block;
    font-size: 20px; }
  .header-container .nav-hamburger-icon {
    position: fixed;
    width: 30px;
    height: 30px;
    z-index: 124;
    right: 5%;
    top: 20px;
    background: red;
    -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
    -ms-transition: 0.7s;
    -o-transition: 0.7s;
    transition: 0.7s;
    transition-property: all;
    opacity: 0;
    visibility: hidden; }

/*style for hidden header*/
.header-menu-responsive {
  -webkit-transition: 0.7s;
  -moz-transition: 0.7s;
  -ms-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s;
  transition-property: all;
  transform: scale(1) !important;
  top: -100vh; }

/*style for shown header*/
.header-menu-hidden {
  top: 16px;
  -webkit-transition: 0.7s;
  -moz-transition: 0.7s;
  -ms-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s;
  transition-property: all; }

/*header menu style*/
.header-menu {
  position: absolute;
  top: 16px;
  right: 10%;
  z-index: 124;
  transform: scale(0); }
  .header-menu ul {
    vertical-align: middle; }
    .header-menu ul li {
      list-style-type: none;
      display: inline; }
  .header-menu .navBtn-active {
    background: #e67e22; }
  .header-menu .navBtn {
    height: 46px;
    line-height: 35px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    transition-property: all;
    position: relative;
    overflow: hidden;
    margin-left: 5px;
    margin-right: 5px;
    padding: 14px 22px;
    color: #ebebeb !important;
    font-weight: bold;
    border-radius: 23px; }
    .header-menu .navBtn:hover {
      color: #ebebeb !important; }
    .header-menu .navBtn:before {
      content: "";
      position: absolute;
      z-index: -1;
      background: #e67e22;
      opacity: 0;
      width: 0px;
      top: 0;
      left: 0;
      height: 46px;
      -webkit-transition: 0.2s;
      -moz-transition: 0.2s;
      -ms-transition: 0.2s;
      -o-transition: 0.2s;
      transition: 0.2s;
      transition-property: all;
      border-top-left-radius: 23px;
      border-bottom-left-radius: 23px; }
    .header-menu .navBtn:hover:before {
      width: 50%;
      opacity: 1; }
    .header-menu .navBtn:after {
      content: "";
      position: absolute;
      z-index: -1;
      background: #e67e22;
      opacity: 0;
      width: 0px;
      top: 0;
      right: 0;
      height: 46px;
      -webkit-transition: 0.2s;
      -moz-transition: 0.2s;
      -ms-transition: 0.2s;
      -o-transition: 0.2s;
      transition: 0.2s;
      transition-property: all;
      border-top-right-radius: 23px;
      border-bottom-right-radius: 23px; }
    .header-menu .navBtn:hover:after {
      width: 50%;
      opacity: 1; }

/*style for main container*/
.main-container {
  width: 100vw;
  height: 100vh;
  background-color: #ecf0f1;
  overflow: hidden;
  min-height: 320px;
  min-width: 320px;
  /*style for background video*/ }
  .main-container #backgroundVideo {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%; }
  .main-container .section-toggle {
    display: none; }
  .main-container .section-container {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 100%;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    padding-bottom: 70px; }
  .main-container .overlay-black {
    background-color: rgba(0, 0, 0, 0.6); }
    .main-container .overlay-black .outNow-box {
      width: 50%; }

/*style for contact form*/
.contact-form .form-group {
  position: relative; }
  .contact-form .form-group .text-box {
    position: relative;
    border: 0;
    outline: 0;
    padding-left: 10px;
    padding-right: 10px;
    color: white;
    font-size: 20px;
    width: 100%;
    border-bottom: 1px solid #ebebeb;
    background-color: rgba(255, 0, 0, 0);
    text-align: center;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    transition-property: all; }
    .contact-form .form-group .text-box:focus {
      color: #e67e22; }
  .contact-form .form-group .text-area {
    position: relative;
    border: 0;
    outline: 0;
    padding-left: 10px;
    padding-right: 10px;
    color: white;
    font-size: 20px;
    width: 100%;
    border-bottom: 1px solid white;
    background-color: rgba(255, 0, 0, 0);
    text-align: center;
    border: 1px solid #ebebeb;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    transition-property: all; }
  .contact-form .form-group:before {
    content: "";
    position: absolute;
    z-index: 2;
    width: 0;
    height: 3px;
    background: #e67e22;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    transition-property: all;
    opacity: 0;
    bottom: 0; }
  .contact-form .form-group:focus-within:before {
    width: 100%;
    opacity: 1; }

/*rules for responsivity from 0px to 978px*/
@media only screen and (max-width: 978px) {
  #nav-icon {
    display: inherit; }

  .overlay-black .outNow-box {
    width: 80% !important; }

  .header-menu {
    width: 0;
    opacity: 0; }

  .header-menu-hidden {
    left: 0px !important;
    width: 100vw !important;
    opacity: 1 !important; }

  .header-menu-responsive {
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    right: 0;
    left: -100vh;
    top: 70px;
    padding-bottom: 80px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 122; }
    .header-menu-responsive ul {
      padding: 0; }
      .header-menu-responsive ul li {
        list-style-type: none;
        display: block;
        margin-top: 20px;
        margin-bottom: 20px; }

  .header-container .nav-hamburger-icon {
    opacity: 1;
    visibility: visible; } }
/*rules for responsivity from 0px to 446px*/
@media only screen and (max-height: 446px) {
  .album-descripton {
    display: none; }

  .album-buy-cover {
    display: none !important; }

  .img-small-size {
    width: 60%;
    float: right; } }

/*# sourceMappingURL=style.css.map */
