/*=============================================
=            Landing page style            =
=============================================*/
/*----------------------------------------*/
/*  01. Theme default CSS
/*----------------------------------------*/
@import url("https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap");
/* Common Style */
*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
.site-wrapper {
  height: 100%;
}

body {
  font-family: sans-serif;
  font-size: 16px;
  font-weight: 300;
  font-style: normal;
  line-height: 1.75;
  position: relative;
  visibility: visible;
  overflow-x: hidden;
  margin: 0;
  color: #696969;
  background-color: #FFFFFF;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin-top: 0;
  color: #333333;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  line-height: inherit;
  margin: 0;
}

p:last-child {
  margin-bottom: 0;
}

a,
button {
  line-height: inherit;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

a,
button,
img,
input {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

*:focus {
  outline: none !important;
}

a:focus {
  text-decoration: none;
  color: inherit;
  outline: none;
}

a:hover {
  text-decoration: none;
  color: #2E86DE;
}

button,
input[type="submit"] {
  cursor: pointer;
}

img {
  max-width: 100%;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  opacity: 1;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 1;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  opacity: 1;
}

ul:last-child {
  margin-bottom: 0;
}

hr {
  border-top-width: 2px;
}

/* Common Classes */
.fix {
  overflow: hidden;
}

.section,
.main-wrapper {
  float: left;
  width: 100%;
}

.section-padding {
  padding-top: 120px;
  padding-bottom: 120px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

/*-- Section Title --*/
.section-title {
  margin-bottom: 60px;
}

.section-title .title {
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
  position: relative;
  z-index: 1;
  display: block;
  margin: 0;
  text-transform: capitalize;
  color: #333333;
}

@media only screen and (max-width: 767px) {
  .section-title .title {
    font-size: 30px;
  }
}

@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

@media only screen and (max-width: 575px) {
  .container {
    max-width: 450px;
  }
}

@media only screen and (max-width: 479px) {
  .container {
    max-width: 350px;
  }
}

/* Background Image */
[data-bg-image] {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

/* Other */
.bg-light {
  background-color: #F7F8F9;
}

.overlay {
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.overlay::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0.25;
  background-color: #000000;
}

/* Scroll Up */
#scrollUp {
  right: 25px;
  bottom: 25px;
  width: 40px;
  height: 40px;
  text-align: center;
  color: #FFFFFF;
  background-color: #2E86DE;
}

#scrollUp i {
  line-height: 40px;
}

.btn {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  display: inline-block;
  padding: 11px 35px;
  text-transform: uppercase;
  color: #FFFFFF;
  border: 2px solid transparent;
  border-radius: 50px;
  background-color: #333333;
}

.btn:hover {
  color: #FFFFFF;
  border-color: #2E86DE;
  background-color: #2E86DE;
}

.btn-light {
  color: #333333;
  background-color: #FFFFFF;
}

.btn-light-outline {
  color: #FFFFFF;
  border-color: #FFFFFF;
  background-color: transparent;
}

.btn-light-outline:hover {
  color: #FFFFFF;
  border-color: #2E86DE;
  background-color: #2E86DE;
}

.btn-primary {
  color: #FFFFFF;
  background-color: #2E86DE;
}

.btn-primary:hover {
  color: #FFFFFF;
  border-color: #2179d1;
  background-color: #2179d1;
}

@media only screen and (max-width: 575px) {
  .btn {
    font-size: 13px;
    padding: 8px 25px;
  }
}

.header-section {
  position: absolute;
  z-index: 99999;
  top: 0;
  right: 0;
  left: 0;
  padding: 20px 0;
  background-color: transparent;
}

.header-section.sticky {
  position: fixed;
  -webkit-animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
          animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
}

.header-section.sticky .logo img {
  opacity: 0;
}

.header-section.sticky .logo img.sticky {
  opacity: 1;
}

.header-section.sticky .header-links li a:not(.btn) {
  color: #333333;
}

.header-section.sticky .header-links li a:not(.btn)::before {
  background-color: #333333;
}

@media only screen and (max-width: 767px) {
  .header-section.sticky .logo {
    display: none;
  }
  .header-section.sticky .header-links li a.btn {
    color: #333333;
  }
  .header-section.sticky .header-links li a.btn::before {
    background-color: #333333;
  }
}

@-webkit-keyframes fadeInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

/*-- Logo --*/
.logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.logo a {
  position: relative;
  display: block;
}

.logo a img.sticky {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
}

@media only screen and (max-width: 767px) {
  .logo {
    margin-bottom: 10px;
  }
}

.header-links {
  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;
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.header-links li + li {
  margin-left: 40px;
}

.header-links li a {
  font-family: "Poppins", sans-serif;
}

.header-links li a:not(.btn) {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  position: relative;
  display: block;
  padding: 15px 0;
  color: #FFFFFF;
}

.header-links li a:not(.btn)::before {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  content: "";
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background-color: #FFFFFF;
}

.header-links li a:not(.btn):hover::before {
  right: auto;
  left: 0;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .header-links {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header-links li + li {
    margin-left: 30px;
  }
  .header-links li a.btn {
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    position: relative;
    display: block;
    padding: 15px 0;
    color: #FFFFFF;
    border: none !important;
    border-radius: 0;
    background-color: transparent;
  }
  .header-links li a.btn::before {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    content: "";
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    background-color: #FFFFFF;
  }
  .header-links li a.btn:hover::before {
    right: auto;
    left: 0;
    width: 100%;
  }
}

@media only screen and (max-width: 479px) {
  .header-links li a {
    font-size: 14px !important;
    padding: 10px 0 !important;
  }
}

.hero-section {
  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;
  min-height: 100vh;
  padding: 120px 0 80px;
}

.hero-content {
  max-width: 750px;
}

.hero-content .title {
  font-size: 60px;
  font-weight: 400;
  font-weight: 300;
  line-height: 1.35;
  display: block;
  margin-bottom: 40px;
  color: #FFFFFF;
}

.hero-content .title span {
  font-weight: 600;
}

.hero-content .btn {
  font-size: 16px;
  padding: 15px 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-content {
    max-width: 650px;
  }
  .hero-content .title {
    font-size: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-content .title {
    font-size: 40px;
  }
  .hero-content .btn {
    font-size: 14px;
    padding: 11px 35px;
  }
}

@media only screen and (max-width: 575px) {
  .hero-content .title {
    font-size: 36px;
    margin-bottom: 30px;
  }
  .hero-content .btn {
    font-size: 13px;
    padding: 8px 25px;
  }
}

@media only screen and (max-width: 479px) {
  .hero-content .title {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .hero-content .btn {
    font-size: 12px;
    padding: 6px 20px;
  }
}

.projects {
  margin-bottom: -40px;
}

.project {
  margin-bottom: 40px;
  text-align: center;
}

.project .inner .image {
  position: relative;
  display: block;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.project .inner .image::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0;
  background-color: #2E86DE;
}

.project .inner .image img {
  width: 100%;
}

.project .inner .image i {
  font-size: 24px;
  line-height: 56px;
  position: absolute;
  z-index: 9;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  margin-left: -30px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  opacity: 0;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  border-radius: 50%;
}

.project .inner .title {
  font-size: 18px;
  font-weight: 500;
  margin: 20px 0 0;
  text-transform: uppercase;
}

.project .inner .title a {
  display: block;
  color: #333333;
}

.project .inner .title a:hover {
  color: #2E86DE;
}

.project .inner:hover .image {
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

.project .inner:hover .image::after {
  opacity: 0.8;
}

.project .inner:hover .image img {
  width: 100%;
}

.project .inner:hover .image i {
  margin-top: -30px;
  opacity: 1;
}

.project .inner:hover .image i:hover {
  color: #2E86DE;
  border: 2px solid #FFFFFF;
  background-color: #FFFFFF;
}

.features {
  margin-bottom: -40px;
}

.feature {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 40px;
}

.feature .icon {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 50px;
      -ms-flex: 1 0 50px;
          flex: 1 0 50px;
  max-width: 50px;
  margin-right: 10px;
  color: #2E86DE;
}

.feature .icon i {
  font-size: 36px;
  display: block;
}

.feature .content {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 calc(100% - 60px);
      -ms-flex: 1 0 calc(100% - 60px);
          flex: 1 0 calc(100% - 60px);
}

.feature .content .title {
  font-size: 18px;
  line-height: 1;
  display: block;
  margin-bottom: 10px;
  text-transform: capitalize;
  color: #333333;
}

.feature .content p {
  max-width: 300px;
}

.cta-section {
  background-color: #F8F9FD;
}

.cta-content {
  max-width: 650px;
  margin: auto;
  text-align: center;
}

.cta-content .title {
  font-size: 50px;
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 40px;
  color: #FFFFFF;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .cta-content .title {
    font-size: 44px;
  }
}

@media only screen and (max-width: 767px) {
  .cta-content .title {
    font-size: 36px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 479px) {
  .cta-content .title {
    font-size: 30px;
    margin-bottom: 20px;
  }
}

/*=====  End of Landing page style  ======*/
