@font-face {
  font-family: BeautifulPeople;
  src: url(../fonts/beautiful-people-font/BeautifulPeoplePersonalUse-dE0g.ttf);
}

@font-face {
  font-family: CountrySideTwo;
  src: url(../fonts/countryside-font/CountrysideTwo-r9WO.ttf);
}

@font-face {
  font-family: CountrySide;
  src: url(../fonts/countryside-font/Countryside-YdKj.ttf);
}

@font-face {
  font-family: Vegan;
  src: url(../fonts/vegan-style-font/VeganStylePersonalUse-5Y58.ttf);
}

@font-face {
  font-family: CenturySchoolbook;
  src: url(../fonts/century-schoolbook/CenturySchoolbookRegular.ttf);
}

@font-face {
  font-family: 'BebasNeueRegular';
  src: url('../fonts/BebasNeue-webfont.eot');
  src: url('../fonts/BebasNeue-webfont.eot?#iefix') format('embedded-opentype'),
       url('../fonts/BebasNeue-webfont.woff') format('woff'),
       url('../fonts/BebasNeue-webfont.ttf') format('truetype'),
       url('../fonts/BebasNeue-webfont.svg#BebasNeueRegular') format('svg');
  font-weight: normal;
  font-style: normal;
}

* {
  font-family: CenturySchoolbook;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.section {
  background: linear-gradient(
    90deg,
    #1996d4 0%,
    #3bc1d3 30%,
    #e7905b 67%,
    #4e8147 100%
  );
  background-size: 1000%;
  animation: background 10s linear alternate infinite;
}

@-webkit-keyframes background {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100% 0;
  }
}

@keyframes background {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100% 0;
  }
}

li.nav-item {
  margin: 0% 1.5% 0% 1.5%;
}

li > a.nav-btn {
  background: #43c3b2;
  padding: 10px 15px;
  border-radius: 25px;
  font-size: 12px;
  width: 100%;
  font-weight: 600;
  /* box-shadow: 0px 0px 20px 0px #8a8a8a; */
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  border: none;
  color: #fff;
  text-transform: uppercase;
}

li > a.nav-btn:hover {
  background: rgba(64, 167, 153, 1);
  background: -moz-linear-gradient(
    left,
    rgba(64, 167, 153, 1) 0%,
    rgba(74, 206, 188, 1) 100%
  );
  background: -webkit-gradient(
    left top,
    right top,
    color-stop(0%, rgba(64, 167, 153, 1)),
    color-stop(100%, rgba(74, 206, 188, 1))
  );
  background: -webkit-linear-gradient(
    left,
    rgba(64, 167, 153, 1) 0%,
    rgba(74, 206, 188, 1) 100%
  );
  background: -o-linear-gradient(
    left,
    rgba(64, 167, 153, 1) 0%,
    rgba(74, 206, 188, 1) 100%
  );
  background: -ms-linear-gradient(
    left,
    rgba(64, 167, 153, 1) 0%,
    rgba(74, 206, 188, 1) 100%
  );
  background: linear-gradient(
    to right,
    rgba(64, 167, 153, 1) 0%,
    rgba(74, 206, 188, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#40a799', endColorstr='#4acebc', GradientType=1);
  color: #fff;
  transition: all 0.5s ease-in;
  -moz-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  box-shadow: 0 1px 30px 3px #d6d6d6;
}

li > a.nav-btn.active {
  background: rgb(41, 112, 103);
  text-decoration: underline;
}

section {
  margin-top: 5%;
  padding-top: 2%;
  padding-bottom: 2%;
}

.div-arrow {
  position: relative;
  margin-top: -10%;
  margin-bottom: 5%;
}

.arrow {
  position: absolute;
  top: -150%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
}

.arrow span {
  display: block;
  width: 30px;
  height: 30px;
  border-bottom: 5px solid black;
  border-right: 5px solid black;
  transform: rotate(45deg);
  margin: -10px;
  animation: animate 2s infinite;
}

.arrow span:nth-child(2) {
  animation-delay: -0.2s;
}

.arrow span:nth-child(3) {
  animation-delay: -0.4s;
}

@keyframes animate {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-20px, -20px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(20px, 20px);
  }
}

.title {
  text-align: center;
  /* font-family: Great Wishes;*/
  font-family: CountrySide;
  font-size: 40px;
  font-weight: bolder;
}

.footer-title {
  text-align: center;
  font-size: 30px;
  font-weight: bolder;
}

p.about {
  font-family: CenturySchoolbook;
  font-size: 20px;
  text-align: center;
}

p.service {
  font-family: CenturySchoolbook;
  font-size: 14px;
  line-height: 20px;
  font-weight: 800;
}

.awesome-projects-area {
  text-align: center;
  position: relative;
  overflow: hidden;
  float: left;
  width: 50%;
  height: auto;
}
.awesome-projects-area:after,
.awesome-projects-area:before {
  content: "";
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(225, 225, 225, 0.35);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
.awesome-projects-area:hover:after,
.awesome-projects-area:hover:before {
  -webkit-transform: scale(800);
  -moz-transform: scale(800);
  -ms-transform: scale(800);
  -o-transform: scale(800);
  transform: scale(800);
}
.awesome-projects-area:before {
  -o-transition: all 0.5s linear 0.3s;
  -moz-transition: all 0.5s linear 0.3s;
  -ms-transition: all 0.5s linear 0.3s;
  -webkit-transition: all 0.5s linear 0.3s;
  transition: all 0.5s linear 0.3s;
}
.awesome-projects-area:hover:before {
  -moz-transition-delay: 0s;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  -ms-transition-delay: 0s;
  transition-delay: 0s;
}
.awesome-projects-area:after {
  -o-transition: all 0.5s linear 0.6s;
  -moz-transition: all 0.5s linear 0.6s;
  -ms-transition: all 0.5s linear 0.6s;
  -webkit-transition: all 0.5s linear 0.6s;
  transition: all 0.5s linear 0.6s;
}
.awesome-projects-area:hover:after {
  -moz-transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  -ms-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.awesome-projects-area img {
  width: 100%;
  height: 500px;
}
.awesome-projects-area .box-content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: 0 0;
  color: #fff;
  padding-top: 40px;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  z-index: 1;
}
.awesome-projects-area:hover .box-content {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -moz-transition-delay: 0.4s;
  -webkit-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  -ms-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.awesome-projects-area .title {
  font-size: 21px;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px solid #fff;
  padding-bottom: 20px;
  margin-top: 75px;
  color: #000;
  font-family: "Titillium Web", sans-serif;
}
.awesome-projects-area .description {
  font-size: 16px;
  padding: 0 10px;
  font-weight: 700;
  margin: 15px 0;
  font-family: "Montserrat", sans-serif;
  color: #000;
}
.awesome-projects-area .read-more {
  display: block;
  width: 120px;
  background: #178993;
  border-radius: 5px;
  font-size: 14px;
  color: #fff;
  text-transform: capitalize;
  padding: 10px 0;
  margin: 0 auto;
}
.awesome-projects-area.explore:before,
.awesome-projects-area.explore:after {
  background-color: none;
}

.item-box {
  position: relative;
  overflow: hidden;
  display: block;
  cursor: pointer;
}

.link-zoom {
  transition: all 0.2s linear 0s;
  -webkit-transition: all 0.2s linear 0s;
  height: 40px;
  position: absolute;
  top: 55%;
  left: 50%;
  color: #fff;
  z-index: 1;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  opacity: 0;
}
.item-box img {
  width: 100%;
}
.item-box:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s linear 0s;
  -webkit-transition: all 0.3s linear 0s;
}
.item-box:hover:after {
  transition: all 0.3s linear 0s;
  -webkit-transition: all 0.3s linear 0s;
  opacity: 1;
}

.item-box .gallery-heading {
  bottom: 0;
  transition: all 0.3s linear 0.1s;
  -webkit-transition: all 0.3s linear 0.1s;
}

.item-box:hover .link-zoom {
  top: 50%;
  opacity: 1;
  transition: all 0.2s ease-out 0s;
  -webkit-transition: all 0.2s ease-out 0s;
}

.item-box a {
  display: inline-block;
}
.item-box a:hover i {
  color: #fff;
}
.item-box > a {
  display: block;
}

.item-box:hover .item-mask {
  opacity: 1;
  visibility: visible;
}

.item-box:hover .item-mask .item-caption,
.item-box:hover .item-mask .link {
  bottom: 30px;
  opacity: 1;
}
.item-box:hover .item-mask .link {
  bottom: 107px;
}
.item-box:hover .item-container {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transition: all 2s cubic-bezier(0.23, 1, 0.32, 1) 0s;
  width: 100%;
}

.item-box img {
  width: 100%;
  height: 300px;
}

ul.contact-footer-info li {
  list-style-type: none;
  padding: 0 0 10px;
}
ul.contact-footer-info li a {
  border-bottom: 1px dotted #000;
  font-weight: 400;
}
ul.contact-footer-info li a:hover {
  color: #da0e2b;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
/* social icon */
ul.footer-social li {
  display: inline-block;
  padding: 0 5px 0 0;
}
ul.footer-social li a i {
  border: 2px solid #000;
  width: 40px;
  height: 40px;
  display: block;
  text-align: center;
  font-size: 16px;
  border-radius: 50%;
  font-weight: 700;
  line-height: 35px;
}
ul.footer-social li a i:hover.fa.fa-facebook {
  background: #3b579d;
  transform: rotate(360deg);
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  border: 2px solid #3b579d;
  color: #fff;
}
ul.footer-social li a i img {
  width: 30px;
  height: 30px;
}
ul.footer-social li a i:hover.fa.fa-youtube1 {
  background: #ffffff;
  transform: rotate(360deg);
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  border: 2px solid #1ea1f3;
  color: #fff;
}
ul.footer-social li a i:hover.fa.fa-linkedin {
  background: #0270ad;
  transform: rotate(360deg);
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  border: 2px solid #0270ad;
  color: #fff;
}
ul.footer-social li a i:hover.fa.fa-instagram {
  background: #c9379d;
  transform: rotate(360deg);
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  border: 2px solid #c9379d;
  color: #fff;
}
ul.footer-social li a i:hover.fa.fa-flickr1 {
  background: ghostwhite;
  transform: rotate(360deg);
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  border: 2px solid black;
  color: #000;
}
ul.footer-social li a i:hover.fa.fa-imdb1 {
  background: ghostwhite;
  transform: rotate(360deg);
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  border: 2px solid black;
  color: #000;
}
.footer-middle-nav {
  margin-top: 4%;
  margin-left: 42%;
}

.footer-middle-nav p {
  padding: 1%;
}

.hideme {
  opacity: 0;
}

.achievements {
  width: 80%;
  padding-top: 1%;
}

.films-container {
  width: 90%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@keyframes implode {
  100% {
    transform: scale(0);
  }
}

.frame-gif {
  padding: 2px;
  border: 3px solid #efefef;
  border-style: groove;
  width: 100%;
  background-color: #eaeaea;
  position: relative;
  transition: 0.3s ease;
  box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.3), 1px 1px 2px rgba(0, 0, 0, 0.2), 40px 35px 70px -10px rgba(0, 0, 0, 0.5);
}

/* Media Queries CSS */
/* Desktop */
@media only screen and (max-width: 1200px) {
  .awesome-projects-area .box-content {
    padding-top: 0;
  }
}

/* Tab */
@media only screen and (max-width: 777px) {
  .awesome-projects-area {
    width: 50%;
  }
  .awesome-projects-area .title {
    font-size: 16px;
    margin-top: 50px;
  }
  .awesome-projects-area .description {
    font-size: 12px;
    margin: 15px 0 0 0;
  }
  .awesome-projects-area img {
    width: 100%;
    height: 400px;
  }

  .circle {
    top: 100px;
    left: 80px;
  }

  .content {
    top: 25%;
    width: 100%;
    font-size: 35px;
  }

  .services:last-child > .circle > .content {
    top: 8%;
    font-size: 28px;
  }

  .content p.title {
    font-size: 22px;
  }
  .content p.para {
    font-size: 16px;
  }

  .services {
    left: 140px;
  }

  .services.services-right {
    top: 0px;
  }
}

@media only screen and (max-width: 650px) {
  .awesome-projects-area {
    width: 100%;
  }
  .awesome-projects-area img {
    width: 100%;
    height: 300px;
  }
  .services {
    left: 80px;
  }
}

/* Mobile */
@media only screen and (max-width: 480px) {
  .div-arrow {
    position: relative;
    margin-top: 10%;
    margin-bottom: 20%;
    height: 200px;
  }
  .awesome-projects-area {
    width: 100%;
    height: auto;
  }
  .awesome-projects-area img {
    width: 100%;
    height: 260px;
    padding-bottom: 5%;
  }
  .services {
    left: 10px;
  }
  .circle {
    top: 75px;
    left: 70px;
    width: 190px;
  }
  .content {
    top: 15%;
  }
  .services:last-child > .circle > .content {
    font-size: 16px !important;
  }
  .content p.title {
    font-size: 16px;
  }
  .content p.para {
    font-size: 12px;
  }
}

@media only screen and (min-width: 320px) and (max-width: 439px) {
  .item-box img {
    height: auto;
  }
}

@media only screen and (max-width: 980px) {
  li.nav-item {
    margin: 2% 0% 2% 0%;
    text-align: center;
  }
  .arrow {
    top: 60%;
  }
  .title {
    padding-top: 4%;
    font-size: 24px;
  }

  .footer-title {
    font-size: 20px;
  }
  p.service {
    font-size: 18px;
    line-height: 20px;
    font-weight: 800;
  }
  .footer-middle-nav {
    margin-top: 1%;
    margin-left: 40%;
  }
  .achievements {
    width: 100%;
  }
  .films-container {
    width: 100%;
    padding-right: 3px;
    padding-left: 3px;
    margin-right: auto;
    margin-left: auto;
  }
}
