/* Body 
------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #ffffff;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-style: normal;
  position: relative;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

/*body * { border: 1px solid red; }*/

html {
  font-size: 100%;
}

/*---------------------------------------
    Typography              
-----------------------------------------*/

h1,
h2,
h3,
h4 {
  font-weight: 600;
}

h1 {
  font-size: 35px;
  line-height: 3rem;
  letter-spacing: 12px;
  text-transform: uppercase;
  padding-bottom: 8px;
}

h2 {
  color: #e44c65;
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 4px;
  text-transform: uppercase;
}

h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 4px;
}

p {
  color: #888;
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 34px;
}

#home p,
#contact p,
footer p {
  color: #f9f9f9;
}

.btn {
  border: none;
  border-radius: 4px;
  transition: all 0.4s ease-in-out;
}

.btn:focus {
  background: #e44c65;
  border-color: transparent;
}

.btn-success {
  background: #e44c65;
  font-weight: 300;
  letter-spacing: 2px;
  padding: 14px 32px;
  margin-top: 26px;
}

.btn-success:hover {
  background: #222;
}

a {
  color: #e44c65;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none !important;
}
a:hover,
a:active,
a:focus {
  color: #e44c65;
  outline: none;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/*---------------------------------------
    All Section style              
-----------------------------------------*/

.section-title {
  padding-bottom: 62px;
}

#about .section-title {
  padding-top: 82px;
}

#about .section-title h1 {
  margin-bottom: 0px;
  padding-bottom: 0px;
}

#about,
#acts,
#references,
#gallery,
#contact {
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
}

#gallery,
#references,
#contact,
footer {
  text-align: center;
}

.overlay {
  background: #304352;
  opacity: 0.7;
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  right: 0;
}

/*---------------------------------------
       PRE LOADER              
  -----------------------------------------*/

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  max-width: 100%;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  background: none repeat scroll 0 0 #ffffff;
}

.spinner {
  border: 1px solid transparent;
  border-radius: 3px;
  position: relative;
}

.spinner:before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45px;
  height: 45px;
  margin-top: -10px;
  margin-left: -10px;
  border-radius: 50%;
  border: 1px solid #575757;
  border-top-color: #ffffff;
  animation: spinner 0.5s linear infinite;
}

@-webkit-keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}

/*---------------------------------------
    Main Navigation             
-----------------------------------------*/

.navbar-default {
  background: #ffffff;
  box-shadow: 0px 2px 8px 0px rgba(50, 50, 50, 0.04);
  border: none;
  margin-bottom: 0px !important;
}

.navbar-default .navbar-brand {
  color: #304352;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 2px;
  margin: 0;
}

.navbar-default .navbar-nav li a {
  color: #777;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  padding-right: 22px;
  padding-left: 22px;
}

.navbar-default .navbar-nav li a span {
  position: relative;
  display: block;
  padding-bottom: 2px;
}

.navbar-default .navbar-nav li a span:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.5);
  visibility: hidden;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.navbar-default .navbar-nav li a:hover span:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1);
}

.navbar-default .navbar-nav li.active a span:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  background-color: #304352;
}

.navbar-default .navbar-nav > li a:hover {
  color: #304352 !important;
}

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
  color: #777;
  background-color: transparent;
}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  color: #304352;
  background-color: transparent;
}

.navbar-default .navbar-toggle {
  border: none;
  padding-top: 10px;
}

.navbar-default .navbar-toggle .icon-bar {
  border-color: transparent;
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: transparent;
}

@media screen and (max-width: 768px) {
  .navbar-default .navbar-nav li a span:before {
    background: transparent !important;
  }
  .navbar-default .navbar-nav li.active a {
    background: transparent;
    background: none;
    color: #304352 !important;
  }
  .navbar-default .navbar-nav li.active a span:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

/*---------------------------------------
    Home Section              
-----------------------------------------*/

#home {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

#home h1 {
  color: #ffffff;
}

#home .col-md-8 {
  padding-left: 62px;
}

/*---------------------------------------
    About Section              
-----------------------------------------*/

#about {
  background: #f0f0f0;
}

#about .item {
  width: 100%;
  display: block;
}

#about .about-thumb {
  background: #ffffff;
  border-radius: 4px;
  padding: 100px;
  position: relative;
}

#about .about-thumb h1 {
  padding-bottom: 60px;
  text-align: center;
}

#about .about-img img {
  position: absolute;
  width: 300px;
  height: 300px;
  bottom: 30px;
  right: 0;
}

/*---------------------------------------
    Acts Section              
-----------------------------------------*/

#acts {
  position: relative;
  background: #ffffff;
}

#acts .section-title {
  padding-bottom: 0 !important;
}

#acts-items {
  max-width: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

#acts-items > [class*="col-"] {
  display: flex;
  flex-direction: column;
}

#acts .team-thumb img {
  border: 8px solid #ffffff;
  max-width: 300px !important;
  max-height: 300px;
}

#acts .team-thumb {
  position: relative;
  width: 100%;
  margin: 32px 0;
  text-align: center;
  background: #ffffff;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#acts .team-thumb .image-holder {
  position: relative;
  top: 40px;
  display: inline-block;
  margin-bottom: 40px;
  padding: 10px;
}

#acts .team-thumb .heading {
  font-weight: bold;
  font-size: 25px;
  margin-bottom: 30px;
  position: relative;
}

#acts .team-thumb .description {
  font-size: 18px;
  width: 80%;
  margin: 0 auto;
}

#acts .requirements {
  padding-top: 10px;
  color: #bb0c0c;
}

/* full video button */

#acts .video-btn {
  display: block;
  margin: 20px auto 0 auto;
  width: 200px;
  height: 40px;
  line-height: 40px;
  font-size: 18px;
  font-family: sans-serif;
  text-decoration: none;
  /* color: #616060; */
  color: #fff;
  background-color: #e44c65;
  border: 2px solid #888;
  letter-spacing: 2px;
  text-align: center;
  position: relative;
  transition: all 0.35s;
  cursor: pointer;
}

#acts .video-btn span {
  position: relative;
  z-index: 2;
}

#acts .video-btn:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  /* background: #e44c65; */
  background: #fff;
  transition: all 0.35s;
}

#acts .video-btn:hover {
  color: #888;
}

#acts .video-btn:hover:after {
  width: 100%;
}

/*---------------------------------------
    Modal section              
-----------------------------------------*/
#video-btn {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.9);
}
.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 800px;
  animation-name: zoom;
  animation-duration: 0.6s;
}
@keyframes zoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
#video-btn .close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}
#video-btn .close:hover,
#video-btn .close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

@media only screen and (max-width: 800px) {
  .modal-content {
    width: 100%;
  }
}

/*---------------------------------------
    References section              
-----------------------------------------*/

#references {
  background: #f0f0f0;
}

#references .section-title h1 {
  margin-bottom: 0;
  padding-bottom: 0;
}

#references ul {
  list-style-type: none;
  display: table;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 50px;
  padding: 0;
}

#references li {
  font-size: 18px;
  margin-top: 20px;
}

#references img {
  max-width: 600px;
  width: 80%;
}

/*---------------------------------------
    Gallery section              
-----------------------------------------*/

#gallery {
  background: #ffffff;
}

#gallery .gallery-images {
  max-width: 100%;
  width: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}

#gallery .gallery-images > [class*="col-"] {
  display: flex;
  flex-direction: column;
}

#gallery .item {
  margin-bottom: 20px;
}

#gallery .wider-images img {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 3/2;
}

#gallery .long-images img {
  max-width: 300px;
  width: 100%;
  aspect-ratio: 2/3;
}

/*---------------------------------------
    Contact Footer section              
-----------------------------------------*/

#contact,
footer {
  background: #333333;
  color: #ffffff;
}

#contact {
  padding-bottom: 0;
}

#contact h1 {
  margin-bottom: 50px;
}

#contact p {
  font-size: 16px;
}

#contact .contact-name {
  font-size: 25px;
  margin-bottom: 30px;
}

footer a,
#contact a {
  color: #ffffff;
}

#contact a:hover,
a:active,
a:focus {
  color: #e44c65;
  outline: none;
}

footer {
  padding-bottom: 40px;
}

footer p {
  font-size: 15px;
}

/*---------------------------------------
    Social icons style              
-----------------------------------------*/

.social-icon {
  padding: 0;
  margin: 0;
}

.social-icon a {
  border-radius: 4px;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-size: 20px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  margin: 10px 10px 42px 10px;
  padding: 0px;
}

.social-icon a:hover {
  background: #ffffff;
  color: #e44c65;
}

/*---------------------------------------
   Back top         
-----------------------------------------*/

.go-top {
  background-color: #ffffff;
  box-shadow: 1px 1.732px 12px 0px rgba(0, 0, 0, 0.14),
    1px 1.732px 3px 0px rgba(0, 0, 0, 0.12);
  transition: all 1s ease;
  bottom: 2em;
  right: 2em;
  color: #222;
  font-size: 26px;
  display: none;
  position: fixed;
  text-decoration: none;
  width: 40px;
  height: 40px;
  line-height: 35px;
  text-align: center;
  border-radius: 100%;
}

.go-top:hover {
  background: #e44c65;
  color: #ffffff;
}

/*---------------------------------------
   Responsive Mobile         
-----------------------------------------*/
@media (max-width: 1200px) {
  #about .about-img img {
    right: -50px;
    width: 280px;
    height: 280px;
  }
}

@media (max-width: 992px) {
  #about .team-thumb {
    margin-top: 32px;
  }

  #about .about-thumb h1 {
    text-align: left;
    padding-bottom: 30px;
    padding-left: 50px;
  }

  #about .about-img img {
    right: -50px;
  }

  #acts {
    padding-top: 60px;
  }
}

@media (max-width: 767px) {
  #home,
  .overlay {
    height: 100vh;
  }

  #about .about-thumb {
    padding: 32px;
    margin-bottom: 32px;
    text-align: center;
  }

  #about .about-thumb h1 {
    padding-bottom: 70px;
  }

  #about .about-img img {
    right: 0;
    width: 250px;
    height: 250px;
  }

  #acts-items {
    display: block;
    margin: 0 auto;
  }

  #acts-items > [class*="col-"] {
    display: block;
  }

  #gallery .gallery-images {
    display: block;
  }

  #gallery .gallery-images > [class*="col-"] {
    display: block;
  }

  #gallery .mobile-hide {
    display: none !important;
  }
}

@media (max-width: 650px) {
  h1 {
    font-size: 1.6rem;
  }

  p {
    font-size: 18px;
  }

  img {
    width: 100%;
  }

  #about,
  #gallery,
  #contact {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  #about .about-thumb h1 {
    padding: 0;
    text-align: center;
  }

  #about .about-img img {
    display: none;
  }

  #references {
    padding-top: 60px;
    padding-bottom: 30px;
  }

  #gallery .wider-images img {
    max-width: 350px;
  }

  #gallery .long-images img {
    max-width: 250px;
  }
}

@media (max-width: 500px) {
  #references img {
    width: 90%;
  }
}

/*
Arrow down
*/
.down-arrow {
  color: #fff;
  opacity: 0.5;
  position: absolute;
  top: calc(100vh - 100px);
  left: calc(50%);
  animation: jumpInfinite 1.5s infinite;
}

.down-arrow:after {
  content: " ";
  position: absolute;
  left: -15px;
  width: 30px;
  height: 30px;
  border-bottom: 4px solid;
  border-right: 4px solid;
  transform: rotateZ(45deg);
}

@keyframes jumpInfinite {
  0% {
    margin-top: 0;
  }

  50% {
    margin-top: 20px;
  }

  100% {
    margin-top: 0;
  }
}
