/*-------------------------------------------------------*/
/* General */
/*-------------------------------------------------------*/
html,
body {
  font-family: "Poppins", sans-serif;
}

img {
  max-width: 100%;
}
a:focus,
button:focus {
  outline: none;
  box-shadow: none;
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #fff;
  z-index: 9999999999999;
}

.load-circle {
  margin: 50vh auto;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  text-align: center;
  border-top: 4px solid #000;
  -webkit-animation: rotate 1.6s infinite linear;
  animation: rotate 1.2s infinite linear;
}

.load-circle .one {
  width: 50px;
  height: 50px;
  margin-top: 10px;
  border-radius: 50%;
  border-top: 4px solid #000;
  -webkit-animation: rotate 2.2s infinite linear;
  animation: rotate 2.2s infinite linear;
}

@-webkit-keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*-------------------------------------------------------*/
/* Margin */
/*-------------------------------------------------------*/
.mb-10 {
  margin-bottom: 10px;
}
.mb-15 {
  margin-bottom: 15px;
}
.mb-30 {
  margin-bottom: 30px;
}

.mt-10 {
  margin-top: 10px;
}
.mt-15 {
  margin-top: 15px;
}
.mt-30 {
  margin-top: 30px;
}

/*-------------------------------------------------------*/
/* Padding */
/*-------------------------------------------------------*/
.pb-10 {
  padding-bottom: 10px;
}
.pb-15 {
  padding-bottom: 15px;
}
.pb-30 {
  padding-bottom: 30px;
}

.pt-10 {
  padding-top: 10px;
}
.pt-15 {
  padding-top: 15px;
}
.pt-30 {
  padding-top: 30px;
}

/*-------------------------------------------------------*/
/* section */
/*-------------------------------------------------------*/
.section {
  padding: 100px 0;
}

.grey-bg {
  background-color: #f3f3f3;
}

.container {
  max-width: 100%;
  width: 1170px;
}

@media (max-width: 767px) {
  .section {
    padding: 50px 0;
  }
}

/*-------------------------------------------------------*/
/* Section Title */
/*-------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
}
.section-title.left {
  text-align: left;
}
.section-title.left h2:after {
  right: auto;
}
.section-title.right {
  text-align: right;
}
.section-title.right h2:after {
  left: auto;
}

.section-title h2 {
  font-weight: 600;
  text-transform: uppercase;
  line-height: 45px;
  font-size: 35px;
  position: relative;
  margin: 0;
}
.section-title h2:after {
  width: 60px;
  height: 3px;
  background: #000;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -10px;
}
/*-------------------------------------------------------*/
.section-title-01 {
  text-align: center;
  padding-bottom: 50px;
}
.section-title-01 h2 {
  margin: 0;
  padding: 0 0 15px 0;
  font-weight: 800;
  color: #333;
  font-size: 48px;
}
.section-title-01 p {
  margin: 0;
  width: 600px;
  max-width: 100%;
  display: inline-block;
}

/*-------------------------------------------------------*/
/* social link */
/*-------------------------------------------------------*/
.social-link ul {
  margin: 0;
  padding: 0;
}
.social-link li {
  display: inline-block;
  vertical-align: top;
  margin-right: 5px;
}
.social-link li a {
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  border-radius: 50%;
  display: block;
  color: #fff;
  background: #000;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

/*-------------------------------------------------------*/
/* Buttons */
/*-------------------------------------------------------*/
.m-btn {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  line-height: 50px;
  padding: 0 25px;
  border: none;
  display: inline-block;
  outline: 0;
  border-radius: 100px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.m-btn:hover {
  box-shadow: rgba(0, 0, 0, 0.15) 0 7px 20px;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}
.m-btn.m-btn-white {
  background: #fff;
  color: #000;
}

a.m-btn-01:hover,
a.m-btn-01:focus,
a.m-btn-01:active {
  color: #fff;
  text-decoration: none;
}

.m-btn-01 {
  line-height: 50px;
  padding: 0 25px;
  border: none;
  display: inline-block;
  outline: 0;
  border-radius: 100px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  box-shadow: 0px 0 1px 2px rgba(0, 0, 0, 0.05),
    0px 0px 1px 6px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.m-btn-01:after,
.m-btn-01:before {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #fff;
  content: "";
  opacity: 0;
  transition: transform 0.15s cubic-bezier(0.02, 0.01, 0.47, 1),
    opacity 0.15s cubic-bezier(0.02, 0.01, 0.47, 1);
  transform: translate(100%, -25%) translateZ(0);
}
.m-btn-01:focus:before,
.m-btn-01:hover:before {
  opacity: 0.15;
  transition: transform 0.2s cubic-bezier(0.02, 0.01, 0.47, 1),
    opacity 0.2s cubic-bezier(0.02, 0.01, 0.47, 1);
  transform: translate3d(50%, 0, 0) scale(0.9);
}
.m-btn-01:focus:after,
.m-btn-01:hover:after {
  opacity: 0.25;
  transition: transform 0.2s cubic-bezier(0.02, 0.01, 0.47, 1) 0.05s,
    opacity 0.2s cubic-bezier(0.02, 0.01, 0.47, 1) 0.05s;
  transform: translate(50%) scale(1.1);
}
.m-btn-01.round {
  width: 50px;
  height: 50px;
  font-size: 30px;
  padding: 0;
  text-align: center;
  line-height: 50px;
}

.m-btn-01.m-btn-01-black {
  background: #333;
}

/*-------------------------------------------------------*/
/* Pagination */
/*-------------------------------------------------------*/
.pagination-box {
  margin: 30px 0 0;
  text-align: center;
}
.pagination-box .pagination {
  margin-bottom: 0;
}
.pagination .page-item {
  margin: 0 5px;
  display: inline-block;
}
.pagination .page-link {
  color: #333;
  width: 40px;
  height: 40px;
  line-height: 40px;
  padding: 0;
  border-radius: 5px !important;
  text-align: center;
  box-shadow: rgba(58, 78, 95, 0.2) 0 10px 16px,
    rgba(58, 78, 95, 0.05) 0 -5px 16px;
  border: none;
}

/*-------------------------------------------------------*/
/* Header */
/*-------------------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.header .logo {
  font-size: 25px;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  padding: 6px 0;
  font-weight: 300;
}
.header .logo a {
  color: #fff;
  text-decoration: none;
}
.header .navbar {
  margin: 0;
  padding: 15px 0;
  border: none;
  border-radius: 0;
}
.header .navbar-nav > li {
  padding: 0 5px;
}
.header .navbar-nav > li > a {
  color: #fff;
  text-transform: uppercase;
  padding: 10px 15px;
  border-radius: 30px;
  font-weight: 600;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.header .navbar-nav > li > a:focus,
.header .navbar-nav > li > a:hover {
  background: none;
}
.header .navbar-nav > li.current > a:hover {
  color: #fff;
}

.fixed-header {
  background: #fff;
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.06),
    0 4px 5px 0 rgba(0, 0, 0, 0.06), 0 1px 10px 0 rgba(0, 0, 0, 0.08);
}
.fixed-header .logo {
  color: #000;
}
.fixed-header .navbar-nav > li > a {
  color: #000;
}
.fixed-header .navbar-nav > li.current > a,
.fixed-header .navbar-nav > li.current > a:hover {
  color: #fff;
}

@media (max-width: 991px) {
  .header .navbar-nav > li {
    padding: 0;
  }
  .header .navbar-nav > li > a {
    padding: 10px;
  }
}

@media (max-width: 767px) {
  .header .navbar {
    padding: 0;
  }
  .navbar-collapse {
    background: #fff;
    box-shadow: none;
    border: none;
  }
  .navbar-nav {
    margin-top: 0;
    margin-bottom: 0;
  }
  .header .navbar-nav > li > a {
    color: #000;
  }
  .header .navbar-nav > li.current > a {
    color: #fff;
    border-radius: 0;
  }
  .header .logo {
    margin: 0 0 0 15px;
    padding: 10px 0;
  }
  .navbar-toggle {
    margin: 7px 15px 3px 0;
    border-radius: 0;
  }
  .navbar-toggle .icon-bar {
    background: #fff;
  }
}

/*-------------------------------------------------------*/
/* Home Banner */
/*-------------------------------------------------------*/
.parallax-mirror {
  background: #000;
}
.parallax-mirror .parallax-slider {
  opacity: 0.3;
}
.home-banner {
  position: relative;
}
.home-banner .welcome-text {
  padding: 0;
  text-align: center;
  width: 100%;
  position: absolute;
  display: block;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.home-banner .welcome-text h3 {
  margin: 0;
  padding: 0;
  font-size: 55px;
  color: #fff;
  font-weight: 300;
}
.home-banner .welcome-text h2 {
  margin: 0;
  padding: 20px 0 35px;
  font-size: 90px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 80px;
}
.home-banner .welcome-text p {
  margin: 0;
  padding: 0 0 50px;
  font-size: 15px;
  color: #fff;
  font-weight: 300;
  letter-spacing: 1px;
}

.home-banner .welcome-text .m-btn {
  line-height: 60px;
  padding: 0 45px;
  font-size: 16px;
  letter-spacing: 1px;
}

@media (max-width: 767px) {
  .home-banner .welcome-text h3 {
    font-size: 28px;
  }
  .home-banner .welcome-text h2 {
    padding: 10px 0 15px;
    font-size: 40px;
    line-height: 40px;
  }
  .home-banner .welcome-text p {
    padding: 0 0 15px;
    font-size: 14px;
  }
  .home-banner .welcome-text .m-btn {
    line-height: 40px;
    padding: 0 25px;
    font-size: 13px;
  }
}

.full-screen {
  height: 100vh;
}

/*===================================
  Home Banner 01
====================================== */
.particles-box {
  height: 100vh;
  background-position: left center;
}
.particles-box .container {
  position: relative;
  min-height: 100%;
}
.particles-box .banner-center-text {
  position: absolute;
  top: 50%;
  left: 15px;
  right: 15px;
  z-index: 1;
  -webkit-transform: translatey(-50%);
  -moz-transform: translatey(-50%);
  -o-transform: translatey(-50%);
  transform: translatey(-50%);
}

.particles-box .banner-center-text h1 {
  color: #fff;
  font-size: 65px;
  margin: 0;
  padding: 0 0 20px 0;
  font-weight: 800;
}
.particles-box .banner-center-text p {
  display: inline-block;
  vertical-align: top;
  padding: 8px 15px;
  color: #fff;
}

.particles-box .particles-js-canvas-el {
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

@media (max-width: 991px) {
  .particles-box {
    height: 120vh;
  }

  .fixed-header-body .particles-box {
    height: 100vh;
  }
}

/*-------------------------------------------------------*/
/* ABOUT ME*/
/*-------------------------------------------------------*/
.personal-pic {
  position: relative;
  border-radius: 10px;
  padding: 10px;
  box-shadow: rgba(58, 78, 95, 0.2) 0 10px 16px,
    rgba(58, 78, 95, 0.05) 0 -5px 16px;
  overflow: hidden;
}
.personal-pic img {
  display: block;
  margin: 0 auto;
}
.personal-info .section-title {
  padding-bottom: 10px;
}
.personal-info h2 {
  margin-top: 0px;
}
.personal-info .social-link {
  padding: 10px 0 35px;
}
.personal-info .m-btn {
  line-height: 40px;
  padding: 0 40px;
  margin-right: 10px;
}

@media (max-width: 767px) {
  .personal-info {
    padding-top: 40px;
  }
  .personal-info .m-btn {
    padding: 0 15px;
  }
}

/*===================================
  Skill Bar
====================================== */
.about-me-box {
  background: #fff;
  box-shadow: 0px 0 1px 2px rgba(0, 0, 0, 0.05),
    0px 0px 1px 6px rgba(0, 0, 0, 0.05);
  padding: 40px;
}
.about-me-box .avtar {
  margin-bottom: 15px;
}

.about-me-box h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  padding: 0 0 15px;
  position: relative;
  display: inline-block;
}
.about-me-box h2:after {
  width: 30px;
  height: 4px;
  content: "";
  float: left;
  background: #888;
  position: absolute;
  top: 14px;
  margin-left: 14px;
  right: -40px;
}

.about-me-box .about-me {
  margin: 0;
  padding: 0 0 20px;
  list-style-type: none;
}
.about-me-box .about-me li {
  width: 100%;
  display: inline-block;
  vertical-align: top;
  padding: 5px 0;
}
.about-me-box .about-me strong {
  font-weight: 600;
}

.about-me-box .social-link {
  margin-bottom: 30px;
}

.about-me-box .about-actions {
  margin-bottom: 20px;
}
.about-me-box .m-btn-01 {
  line-height: 35px;
  padding: 0 15px;
  font-size: 12px;
}

/*===================================
  Skill Bar
====================================== */
.skillbar {
  position: relative;
  display: inline-block;
  margin: 35px 0 10px;
  height: 10px;
  width: 100%;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0px 0 1px 2px rgba(0, 0, 0, 0.05),
    0px 0px 1px 4px rgba(0, 0, 0, 0.05);
}
.skillbar-bar {
  height: 10px;
  border-radius: 10px;
  width: 0px;
  background: rgba(0, 0, 0, 0.7);
  display: inline-block;
  position: absolute;
  top: 0;
  margin-bottom: 0px;
}
.skillbar-title {
  top: -22px;
  position: absolute;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
}
.skillbar-white {
  background: rgba(255, 255, 255, 0.25);
}
.skillbar-white .skillbar-bar {
  background: #fff;
}

/*-------------------------------------------------------*/
/* Service Box*/
/*-------------------------------------------------------*/
.service-box {
  text-align: center;
  background: #fff;
  border-radius: 10px;
  padding: 40px 20px;
  box-shadow: rgba(58, 78, 95, 0.2) 0 10px 16px,
    rgba(58, 78, 95, 0.05) 0 -5px 16px;
  width: 100%;
  float: left;
}
.service-box .sb-icon {
  width: 80px;
  height: 80px;
  line-height: 60px;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
}
.service-box .sb-icon i {
  font-size: 40px;
  line-height: 80px;
  color: #fff;
}
.service-box h4 {
  font-size: 22px;
  font-weight: 600;
  margin: 0;
  padding: 25px 0 10px;
}
.service-box p {
  font-size: 15px;
  margin: 0;
  line-height: 26px;
}

@media (max-width: 767px) {
  .service-box {
    margin: 15px 0;
  }
}

.service-box-01 {
  text-align: center;

  width: 100%;
  float: left;
  padding: 0 40px 40px;
  background: #fff;
  box-shadow: 0px 0 1px 2px rgba(0, 0, 0, 0.05),
    0px 0px 1px 6px rgba(0, 0, 0, 0.05);
  margin-top: 100px;
}
.service-box-01 .sb-icon {
  width: 100px;
  height: 100px;
  text-align: center;
  display: inline-block;
  box-shadow: 0px 0px 1px 12px rgba(0, 0, 0, 0.1),
    0px 0px 1px 22px rgba(0, 0, 0, 0.05);
  transform: rotate(45deg);
  margin-top: -50px;
}
.service-box-01 .sb-icon i {
  font-size: 50px;
  color: #fff;
  line-height: 100px;
  transform: rotate(-45deg);
}
.service-box-01 h4 {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  padding: 55px 0 15px;
}
.service-box-01 p {
  font-size: 15px;
  margin: 0;
  line-height: 26px;
}

@media (max-width: 767px) {
  .service-box-01 {
    margin: 15px 0;
  }
}


/*-------------------------------------------------------*/
/* CAT */
/*-------------------------------------------------------*/
.call-to-action {
  background-color: #e6b034;
  text-align: center;
  padding: 60px 0;
}
.call-to-action h2 {
  font-size: 30px;
  color: #fff;
  margin: 0;
  padding: 0 0 30px;
  text-transform: uppercase;
  font-weight: 600;
}

.call-to-action-01 {
  text-align: center;
  padding: 60px 0;
  background-attachment: fixed;
}

.call-to-action-01 h2 {
  font-size: 30px;
  color: #fff;
  margin: 0;
  padding: 0 0 30px;
  text-transform: uppercase;
  font-weight: 600;
}

/*-------------------------------------------------------*/
/* Portfolio */
/*-------------------------------------------------------*/
.portfolio-box .filter {
  text-align: center;
  padding-bottom: 60px;
}
.portfolio-box .filter button {
  padding: 0;
  border: none;
  text-transform: uppercase;
  color: #000;
  background: none;
  font-size: 16px;
  margin: 0 10px;
}
.portfolio-col {
  position: relative;
  margin-bottom: 30px;
  border-radius: 10px;
  padding: 10px;
  box-shadow: rgba(58, 78, 95, 0.2) 0 10px 16px,
    rgba(58, 78, 95, 0.05) 0 -5px 16px;
  overflow: hidden;
}
.portfolio-col .hover {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  padding: 0;
  color: #fff;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.portfolio-col .hover h4 {
  margin: 0;
  padding: 0 0 10px;
  font-size: 20px;
  font-weight: 600;
}
.portfolio-col .hover label {
  margin: 0;
  padding: 0 0 15px;
  font-size: 12px;
  font-weight: 300;
  padding: 5px 20px;
  border-radius: 30px;
}
.portfolio-col:hover .hover {
  opacity: 1;
  padding: 20px;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
}

@media (max-width: 767px) {
  .portfolio-box .filter {
    padding-bottom: 30px;
  }
  .portfolio-box .filter button {
    margin: 0 5px;
  }
  .portfolio-col:hover .hover {
    padding: 10px;
  }
  .portfolio-col .hover h4 {
    font-size: 16px;
  }
}

/*option 2*/
.portfolio-box .filter-01 {
  text-align: center;
  padding-bottom: 60px;
}
.portfolio-box .filter-01 button {
  padding: 0;
  border: none;
  font-weight: 400;
  background: #333;
  color: #fff;
  font-size: 14px;
  margin: 0 10px;
  box-shadow: 0px 0px 1px 3px rgba(0, 0, 0, 0.1),
    0px 0px 1px 8px rgba(0, 0, 0, 0.05);
  padding: 6px 15px;
  border-radius: 30px;
}
.portfolio-col-01 {
  position: relative;
  margin-bottom: 30px;
  padding: 10px;
  box-shadow: 0px 0 1px 2px rgba(0, 0, 0, 0.05),
    0px 0px 1px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.portfolio-col-01 .hover {
  left: 10px;
  background: rgba(0, 0, 0, 0.8);
  right: 10px;
  position: absolute;
  bottom: -100%;
  color: #fff;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.portfolio-col-01 .hover h4 {
  margin: 0;
  padding: 0 0 10px;
  font-size: 20px;
  font-weight: 600;
}
.portfolio-col-01 .hover label {
  margin: 0;
  padding: 0 0 15px;
  font-size: 12px;
  font-weight: 300;
  padding: 5px 20px;
  border-radius: 30px;
}
.portfolio-col-01:hover .hover {
  padding: 20px;
  bottom: 10px;
}

/*-------------------------------------------------------*/
/* Testimonial */
/*-------------------------------------------------------*/
.owl-nav {
  text-align: center;
}
.owl-nav .owl-prev,
.owl-nav .owl-next {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  position: relative;
  width: 40px;
  height: 40px;
  color: transparent;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
  float: none;
  margin: 0 4px;
  border-radius: 10px;
}
.owl-nav .owl-prev:after,
.owl-nav .owl-next:after {
  color: #fff;
  display: inline-block;
  font-family: FontAwesome;
  font-size: 26px;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  line-height: 40px;
}
.owl-nav .owl-prev:after {
  content: "\f104";
}
.owl-nav .owl-next:after {
  content: "\f105";
}

.owl-dots {
  width: 100%;
  text-align: center;
}
.owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  background: #fff;
  display: inline-block;
  vertical-align: top;
  border-radius: 50%;
  margin: 0 5px;
  box-shadow: 0px 0 1px 2px rgba(0, 0, 0, 0.05),
    0px 0px 1px 6px rgba(0, 0, 0, 0.05);
}
.owl-dots .owl-dot.active {
  background: transparent;
  border: 1px solid #fff;
}

.testimonial-area .item {
  width: 600px;
  margin: 0 auto 30px;
  max-width: 100%;
}
.testimonial-area .item .avtar {
  margin-bottom: 20px;
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 50%;
  display: inline-block;
}
.testimonial-area .item h4 {
  font-size: 20px;
}
.testimonial-area .item .desg {
  margin: 0;
  font-size: 14px;
  color: #555;
}

/*testimonial 01*/
.testimonial-area-01 {
  background-attachment: fixed;
}
.testimonial-area-01 .container {
  width: 500px;
  max-width: 100%;
}
.testimonial-area-01 .item {
  width: 400px;
  margin: 0 auto 30px;
  max-width: 100%;
}
.single-testimonial-01 {
  width: 500;
}
.single-testimonial-01 .avtar {
  box-shadow: 0px 0px 1px 12px rgba(255, 255, 255, 0.1),
    0px 0px 1px 22px rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  margin-bottom: 20px;
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 50%;
  display: inline-block;
}

.single-testimonial-01 .avtar-say {
  margin-top: 20px;
  margin-bottom: 30px;
  padding: 10px;
  box-shadow: 0px 0 1px 2px rgba(255, 255, 255, 0.1),
    0px 0px 1px 6px rgba(255, 255, 255, 0.1);
  background: #fff;
}
.single-testimonial-01 .avtar-say h4 {
  font-size: 14px;
  margin: 0;
  padding: 15px 0 5px;
  font-weight: 600;
}
.single-testimonial-01 .avtar-say .desg {
  font-size: 12px;
  margin: 0;
  padding: 0;
  color: #444;
}

/*-------------------------------------------------------*/
/* Blog */
/*-------------------------------------------------------*/
.blog-item {
  background: #fff;
  border-radius: 10px;
  padding: 0;
  box-shadow: rgba(58, 78, 95, 0.2) 0 10px 16px,
    rgba(58, 78, 95, 0.05) 0 -5px 16px;
  overflow: hidden;
  float: left;
  width: 100%;
}
.blog-item .blog-contents {
  padding: 15px;
}
.blog-item h3 {
  margin: 0 0 5px;
  font-weight: 600;
  font-size: 18px;
}
.blog-item h3 a {
  color: #333;
  text-decoration: none;
}
.blog-item .blog-meta {
  padding: 0 0 10px;
}
.blog-item .blog-meta p {
  color: #666;
  font-size: 13px;
  margin: 0;
}
.blog-item p {
  font-size: 15px;
  line-height: 26px;
}
.blog-item .blog-action {
  padding: 10px 0 0;
}
.blog-item .blog-action .m-btn {
  line-height: 40px;
  padding: 0 25px;
}
@media (max-width: 767px) {
  .blog-item {
    margin: 15px 0;
  }
}

/* Blog 01*/
.blog-item-01 {
  background: #fff;
  padding: 0;
  box-shadow: 0px 0 1px 2px rgba(0, 0, 0, 0.05),
    0px 0px 1px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  float: left;
  width: 100%;
}
.blog-item-01 .blog-img {
  position: relative;
}
.blog-item-01 .blog-img .m-btn-01 {
  position: absolute;
  bottom: -25px;
  right: 20px;
}

.blog-item-01 .blog-contents {
  padding: 35px 15px 15px;
}
.blog-item-01 h3 {
  margin: 0 0 5px;
  font-weight: 600;
  font-size: 18px;
}
.blog-item-01 h3 a {
  color: #333;
  text-decoration: none;
}
.blog-item-01 .blog-meta {
  padding: 0 0 10px;
}
.blog-item-01 .blog-meta p {
  color: #666;
  font-size: 13px;
  margin: 0;
}
.blog-item-01 p {
  font-size: 15px;
  line-height: 26px;
}
.blog-item-01 .blog-action {
  padding: 10px 0 0;
}
.blog-item-01 .blog-action .m-btn {
  line-height: 40px;
  padding: 0 25px;
}
@media (max-width: 767px) {
  .blog-item-01 {
    margin: 15px 0;
  }
}

/*-------------------------------------------------------*/
/* Blog Banner*/
/*-------------------------------------------------------*/

.blog-banner {
  padding: 200px 0 100px;
  text-align: center;
}
.blog-banner h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  margin: 0 0 15px;
}
.blog-banner p {
  color: #fff;
  width: 550px;
  max-width: 100%;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .blog-banner {
    padding: 150px 0 100px;
    text-align: center;
  }
}

/*-------------------------------------------------------*/
/* Blog listing*/
/*-------------------------------------------------------*/
.blog-listings {
  padding: 80px 0;
}

.blog-listings .blog-item {
  margin-bottom: 30px;
}

/*-------------------------------------------------------*/
/* Blog Details*/
/*-------------------------------------------------------*/

.blog-single {
  padding: 0px 0;
}

.type-post {
  padding: 15px;
  background: #fff;
  box-shadow: rgba(58, 78, 95, 0.2) 0 10px 16px,
    rgba(58, 78, 95, 0.05) 0 -5px 16px;
  margin-bottom: 30px;
  border-radius: 10px;
}
.type-post p {
  line-height: 1.7;
}
.type-post .title-bar {
  text-align: center;
  padding: 10px 0 20px;
}
.type-post .title-bar label {
  font-style: italic;
  margin: 0;
  padding: 0;
  font-size: 13px;
}
.type-post .title-bar label a {
  display: inline-block;
  padding: 6px 15px;
  margin-bottom: 20px;
  border-radius: 30px;
  color: #fff;
}
.type-post .title-bar h3 {
  font-weight: 800;
  font-size: 26px;
  margin: 0;
  padding: 0 0 5px;
}
.type-post .title-bar h3 a {
  color: #000;
  text-transform: uppercase;
  text-decoration: none;
}
.type-post .title-bar .post-date {
  color: #999;
  font-size: 14px;
}

.type-post .post-image {
  margin-bottom: 20px;
}

.type-post .post-more {
  text-align: center;
  padding: 15px 0;
}

.type-post .post-more a {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #000;
  font-weight: 700;
}
.type-post .post-meta {
  width: 100%;
  display: inline-block;
  vertical-align: top;
  border-top: 1px solid #ddd;
  padding: 15px 0 0;
  margin-top: 15px;
}
.type-post .post-meta .meta-box {
  float: left;
}
.type-post .post-meta .meta-box span {
  font-size: 12px;
  margin-right: 8px;
}
.type-post .post-meta .meta-box span a {
  color: #000;
}
.type-post .post-meta .meta-box span a .fa {
  margin-right: 5px;
}
.type-post .post-meta .post-share {
  float: right;
}
.type-post .post-meta .post-share a {
  width: 28px;
  height: 28px;
  text-align: center;
  line-height: 28px;
  border-radius: 50%;
  display: inline-block;
  color: #888;
  font-size: 14px;
}
.type-post .post-meta .post-share a:hover {
  color: #000;
}

.single-post blockquote {
  padding: 0px 20px;
  margin: 30px 0;
  border-left: 5px solid #ccc;
  font-style: italic;
  font-size: 14px;
}
.single-post blockquote p:last-child {
  margin-bottom: 0;
}

/*Post Navigation*/
.post-navigation {
  margin-bottom: 30px;
}
.post-navigation-title {
  width: 100%;
  display: inline-block;
  background: #fff;
  box-shadow: rgba(58, 78, 95, 0.2) 0 10px 16px,
    rgba(58, 78, 95, 0.05) 0 -5px 16px;
  vertical-align: top;
  border-radius: 10px;
  overflow: hidden;
}
.post-navigation-title a {
  color: #000;
  text-decoration: none;
}
.post-navigation-title .link a {
  font-size: 10px;
  color: #333;
}
.post-navigation-title h5 {
  font-size: 14px;
  margin: 0;
}
.post-navigation-title h5 a {
  color: #000;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}
.post-navigation-title span {
  font-size: 11px;
  font-style: italic;
}
.post-navigation-title figure {
  width: 100px;
  float: left;
  margin: 0;
}
.post-navigation-title .text {
  margin-left: 120px;
  margin-top: 10px;
}

.post-navigation-title.right {
  text-align: right;
}
.post-navigation-title.right figure {
  float: right;
}
.post-navigation-title.right .text {
  margin-left: 0;
  margin-right: 120px;
}

/*-------------------------------------------------------*/
/* Comments */
/*-------------------------------------------------------*/
.content-comment {
  background: #fff;
  box-shadow: rgba(58, 78, 95, 0.2) 0 10px 16px,
    rgba(58, 78, 95, 0.05) 0 -5px 16px;
  padding: 10px;
  border-radius: 10px;
}
.content-comment h2 {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  padding: 5px 0 30px;
  margin: 0;
  text-transform: uppercase;
}
.commentlist {
  margin: 0;
  padding: 0;
}
.comment {
  list-style-type: none;
}
.comment ul {
  padding-left: 90px;
}
.thecomment {
  margin-bottom: 15px;
  position: relative;
  padding: 15px 0;
}
.thecomment .author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  float: left;
  margin-right: 20px;
}
.thecomment .comment-text {
  overflow: hidden;
}
.thecomment .reply {
  position: absolute;
  top: 0;
  right: 0;
}
.thecomment .reply a {
  padding: 3px 10px;
  color: #fff;
  display: block;
  font-size: 10px;
  text-transform: uppercase;
}
.thecomment h4 {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0;
}
.thecomment .date {
  font-size: 12px;
  color: #666;
}
.thecomment p {
  margin: 5px 0 0;
}

@media (max-width: 767px) {
  .thecomment .author-img {
    display: none;
  }
  .comment ul {
    padding-left: 20px;
  }
}

/*-------------------------------------------------------*/
/* Comment Respond */
/*-------------------------------------------------------*/
.comment-respond {
  margin-top: 50px;
  background: #fff;
  box-shadow: rgba(58, 78, 95, 0.2) 0 10px 16px,
    rgba(58, 78, 95, 0.05) 0 -5px 16px;
  padding: 20px;
  border-radius: 10px;
}

.comment-respond h2 {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  padding: 5px 0 30px;
  margin: 0;
}
.comment-respond .form-control {
  border: none;
  border-bottom: 2px solid #a2a2a2;
  box-shadow: none;
  padding: 6px 0;
  border-radius: 0;
}
.comment-respond textarea.form-control {
  border: 2px solid #a2a2a2;
  padding: 6px;
}
.comment-respond .form-group {
  margin-bottom: 35px;
}
.comment-respond .action {
  margin-bottom: 0;
  text-align: center;
}

/*-------------------------------------------------------*/
/* Blog Sidebar*/
/*-------------------------------------------------------*/
.blog-sidebar {
  padding-left: 40px;
}

.sidebar-list {
  margin: 0;
  padding: 0;
}
.sidebar-list > li + li {
  padding-top: 12px;
}
.sidebar-list li {
  margin: 0;
  padding: 0 20px 0 23px;
  position: relative;
  list-style-type: none;
}
.sidebar-list > li:after {
  top: 6px;
}
.sidebar-list > li + li:after {
  top: 18px;
}
.sidebar-list li:after {
  content: "";
  width: 8px;
  height: 8px;
  float: left;
  position: absolute;
  left: 0;
  transform: rotate(-45deg);
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
}
.sidebar-list li a {
  color: #333;
  text-decoration: none;
}
.sidebar-list li a:hover {
  color: #000;
}

.widget {
  padding: 20px;
  background: #fff;
  box-shadow: rgba(58, 78, 95, 0.2) 0 10px 16px,
    rgba(58, 78, 95, 0.05) 0 -5px 16px;
  margin-bottom: 30px;
  border-radius: 10px;
}
.widget .form-control {
  border: 1px solid #a2a2a2;
  box-shadow: none;
  padding: 6px 10px;
  border-radius: 0;
}

.widget .widget-title {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  margin: 0 0 30px;
}
.widget .widget-title:before {
  width: 30px;
  height: 3px;
  background: #000;
  content: "";
  position: absolute;
  left: 0;
  margin: auto;
  bottom: -10px;
}

.widget .widget-about {
}
.widget .widget-about .avtar {
  display: inline-block;
  margin-bottom: 15px;
}
.widget .widget-about h4 {
  font-size: 16px;
  font-weight: 700;
}

.widget-search {
  padding: 15px;
}

.widget-search .form-group {
  position: relative;
  margin: 0;
}

.widget-search .m-btn-icon {
  background: none;
  border: none;
  position: absolute;
  right: 0;
  top: 8px;
  padding: 0 7px;
  color: #666;
}

.widget .widget-recent-posts {
  margin: 0;
  padding: 0;
}
.widget .widget-recent-posts li {
  list-style-type: none;
  width: 100%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 10px;
}
.widget .widget-recent-posts li:last-child {
  margin-bottom: 0;
}
.widget .widget-recent-posts li figure {
  float: left;
  width: 80px;
  margin-bottom: 2px;
}
.widget .widget-recent-posts li .text {
  margin-left: 100px;
  font-size: 14px;
}
.widget .widget-recent-posts li a {
  font-weight: 600;
  text-decoration: none;
  color: #000;
  text-transform: uppercase;
}
.widget .widget-recent-posts li span {
  font-size: 12px;
  color: #999;
  display: block;
}

.widget .widget-tagcloud a {
  border: 1px solid #666;
  color: #666;
  font-size: 13px;
  padding: 6px 8px;
  display: inline-block;
  margin-bottom: 4px;
  text-decoration: none;
}
.widget .widget-tagcloud a:hover {
  color: #000;
  border-color: #000;
}

@media (max-width: 991px) {
  .blog-sidebar {
    width: 300px;
    padding-left: 0;
    padding-top: 40px;
    margin: 0 auto;
    max-width: 100%;
  }
}

/*-------------------------------------------------------*/
/* Contact */
/*-------------------------------------------------------*/
.contact-form {
  background: #fff;
  border-radius: 10px;
  box-shadow: rgba(58, 78, 95, 0.2) 0 10px 16px,
    rgba(58, 78, 95, 0.05) 0 -5px 16px;
  padding: 20px;
}
.contact-us .form-group {
  margin-bottom: 35px;
}
.contact-us .form-control {
  border: none;
  border-bottom: 2px solid #a2a2a2;
  box-shadow: none;
  padding: 6px 0;
  border-radius: 0;
}
.contact-us .form-group.action {
  margin-bottom: 0;
  text-align: center;
}
.contact-us textarea.form-control {
  border: 2px solid #a2a2a2;
  padding: 6px;
}
.contact-info {
  background: #fff;
  position: relative;
  padding: 10px 10px 10px 90px;

  margin-bottom: 30px;
  box-shadow: rgba(58, 78, 95, 0.2) 0 10px 16px,
    rgba(58, 78, 95, 0.05) 0 -5px 16px;
  border-radius: 10px;
}
.contact-info i {
  font-size: 16px;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  position: absolute;
  left: 20px;
  top: 10px;
  background: #000;
  border-radius: 50%;
  color: #fff;
}
.contact-info a {
  color: #666;
}
.contact-info h4 {
  margin: 0 0 10px;
  font-weight: 600;
}
.contact-info p {
  font-size: 15px;
  color: #666;
  margin: 0;
}

@media (max-width: 767px) {
  .contact-form {
    margin-bottom: 30px;
  }
}

/*contact form 01*/
.contact-form-01 {
  box-shadow: 0px 0 1px 2px rgba(0, 0, 0, 0.05),
    0px 0px 1px 6px rgba(0, 0, 0, 0.05);
  padding: 25px;
  background: #fff;
}
.contact-form-01 .form-group {
  position: relative;
}
.contact-form-01 .form-group i {
  background: #eee;
  position: absolute;
  top: 1px;
  left: 1px;
  height: 43px;
  width: 43px;
  line-height: 43px;
  text-align: center;
}
.contact-form-01 .form-group .form-control {
  border: 1px solid #ddd;
  height: 45px;
  border-radius: 0;
  padding-left: 60px;
}
.contact-form-01 .form-group textarea.form-control {
  height: 125px;
  padding: 10px;
}

.contact-info-01 {
  box-shadow: 0px 0 1px 2px rgba(0, 0, 0, 0.05),
    0px 0px 1px 6px rgba(0, 0, 0, 0.05);
  padding: 25px;
  background: #fff;
}

.contact-info-01 {
  margin: 0;
  padding: 35px 25px 35px 75px;
}
.contact-info-01 li {
  list-style-type: none;
  width: 100%;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
.contact-info-01 > li + li {
  border-top: 1px solid #ddd;
  margin-top: 20px;
  padding-top: 20px;
}

.contact-info-01 i {
  position: absolute;
  left: -60px;
  width: 40px;
  height: 40px;
  font-size: 16px;
  padding: 0;
  text-align: center;
  line-height: 40px;
  background: #333;
  border-radius: 50%;
  color: #fff;
}

.contact-info-01 h4 {
  margin: 0;
  padding: 0 0 10px;
  font-weight: 600;
  font-size: 18px;
}
.contact-info-01 p,
.contact-info-01 a {
  font-size: 14px;
  margin: 0;
  color: #333;
}

/*-------------------------------------------------------*/
/* Footer */
/*-------------------------------------------------------*/
.footer {
  background: #121212;
}
.footer .footer-logo {
  padding: 0 0 20px;
  margin: 0;
  color: #fff;
  font-size: 22px;
  letter-spacing: 2px;
  font-weight: 300;
}
.footer .main-footer {
  padding: 40px 0;
}
.footer .sub-footer {
  background: #171717;
  color: #999;
  padding: 25px 0;
}
.footer .sub-footer p {
  margin: 0;
}































































/*******************************/
/********* General CSS *********/
/*******************************/
body {
    color: #797979;
    background: #ffffff;
    font-family: 'Montserrat', sans-serif;
}

h1,
h2, 
h3, 
h4,
h5, 
h6 {
    color: #414141;
}

a {
    color: #313131;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: #EF233C;
    outline: none;
    text-decoration: none;
}

.btn:focus,
.form-control:focus {
    box-shadow: none;
}

.container-fluid {
    max-width: 1366px;
}

.btn {
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #ffffff;
    background: #EF233C;
    border: 2px solid transparent;
    border-radius: 0;
    box-shadow: inset 0 0 0 50px #EF233C;
    transition: ease-out 0.3s;
    -webkit-transition: ease-out 0.3s;
    -moz-transition: ease-out 0.3s;
}

.btn:hover {
    color: #EF233C;
    background: transparent;
    box-shadow: inset 0 0 0 0 #EF233C;
    border-color: #EF233C;
}

#loader {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s ease-out, visibility 0s linear .3s;
    -o-transition: opacity .3s ease-out, visibility 0s linear .3s;
    transition: opacity .3s ease-out, visibility 0s linear .3s;
    z-index: 999;
}

#loader.show {
    -webkit-transition: opacity .6s ease-out, visibility 0s linear 0s;
    -o-transition: opacity .6s ease-out, visibility 0s linear 0s;
    transition: opacity .6s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

#loader .loader {
    position: relative;
    width: 45px;
    height: 45px;
    border: 5px solid #dddddd;
    border-top: 5px solid #EF233C;
    border-radius: 50%;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.back-to-top {
    position: fixed;
    display: none;
    width: 44px;
    height: 44px;
    padding: 8px 0;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    z-index: 9;
}

.back-to-top i {
    color: #ffffff;
}

.back-to-top:hover i {
    color: #414141;
}


/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.navbar {
    position: relative;
    transition: .5s;
    z-index: 999;
}

.navbar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
}

.navbar .navbar-brand {
    margin: 0;
    font-size: 45px;
    line-height: 0px;
    font-weight: 700;
    letter-spacing: 2px;
    transition: .5s;
    
}

.navbar .navbar-brand img {
    max-width: 100%;
    max-height: 40px;
}

.navbar .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #f8f9fa;
}

@media (min-width: 992px) {
    .navbar {
        position: absolute;
        width: 100%;
        padding: 30px 60px;
        background: transparent !important;
        border-bottom: 1px dashed rgba(256, 256, 256, .2);
        z-index: 9;
    }
    
    .navbar.nav-sticky {
        padding: 10px 60px;
        background: #ffffff !important;
    }
    
    .navbar .navbar-brand {
        color: #ffffff;
    }
    
    .navbar.nav-sticky .navbar-brand {
        color: #EF233C;
    }

    .navbar-light .navbar-nav .nav-link,
    .navbar-light .navbar-nav .nav-link:focus {
        padding: 10px 10px 8px 10px;
        color: #ffffff;
        font-size: 15px;
        font-weight: 500;
    }
    
    .navbar-light.nav-sticky .navbar-nav .nav-link,
    .navbar-light.nav-sticky .navbar-nav .nav-link:focus {
        color: #414141;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: #111111;
    }
    
    .navbar-light.nav-sticky .navbar-nav .nav-link:hover,
    .navbar-light.nav-sticky .navbar-nav .nav-link.active {
        color: #EF233C;
    }
}

@media (max-width: 991.98px) {   
    .navbar {
        padding: 15px;
        background: #ffffff !important;
    }
    
    .navbar .navbar-brand {
        color: #EF233C;
    }
    
    .navbar .navbar-nav {
        margin-top: 15px;
    }
    
    .navbar a.nav-link {
        padding: 5px;
    }
    
    .navbar .dropdown-menu {
        box-shadow: none;
    }
}




.hero .hero-text p {
    color: #ffffff;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 15px;
}

.hero .hero-text h1 {
    color: #ffffff;
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.hero .hero-text h2 {
    display: inline-block;
    margin: 0;
    height: 35px;
    color: #ffffff;
    font-size: 35px;
    font-weight: 600;
}

.hero .hero-text .typed-text {
    display: none;
}

.hero .hero-text .typed-cursor {
    font-size: 35px;
    font-weight: 300;
    color: #ffffff;
}

.hero .hero-btn .btn {
    margin-top: 35px;
    color: #EF233C;
    background: #ffffff;
    box-shadow: inset 0 0 0 50px #ffffff;
}

.hero .hero-btn .btn:hover {
    color: #ffffff;
    background: transparent;
    box-shadow: inset 0 0 0 0 #ffffff;
    border-color: #ffffff;
}

.hero .hero-btn .btn:first-child {
    margin-right: 10px;
}

@media (max-width: 991.98px) {
    .hero {
        padding-top: 60px;
    }
    
    .hero .hero-content {
        padding: 0 15px;
    }
    
    .hero .hero-text p {
        font-size: 20px;
    }
    
    .hero .hero-text h1 {
        font-size: 45px;
    }
    
    .hero .hero-text h2 {
        font-size: 25px;
        height: 25px;
    }
    
    .hero .hero-btn .btn {
        padding: 12px 30px;
        letter-spacing: 1px;
    }
}

@media (max-width: 767.98px) {
    .hero {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .hero,
    .hero .hero-text,
    .hero .hero-btn {
        width: 100%;
        text-align: center;
    }
    
    .hero .hero-text p {
        font-size: 18px;
    }
    
    .hero .hero-text h1 {
        font-size: 35px;
    }
    
    .hero .hero-text h2 {
        font-size: 22px;
        height: 22px;
    }
    
    .hero .hero-btn .btn {
        padding: 10px 15px;
        letter-spacing: 1px;
    }
}








/*******************************/
/********** Hero CSS ***********/
/*******************************/
.hero {
    position: relative;
    width: 100%;
    margin-bottom: 45px;
    padding: 120px 0 0 0;
    overflow: hidden;
    background: linear-gradient(rgba(35, 174, 239, 0.95), rgba(146, 210, 221, 0.95)), url(../img/hero-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero .container-fluid {
    padding: 0;
}

.hero .hero-image {
    position: relative;
    text-align: right;
    padding-right: 75px;
}

.hero .hero-image img {
    max-width: 80%;
    max-height: 80%;
}

.hero .hero-content {
    position: relative;
    padding-left: 75px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.hero .hero-text p {
    color: #ffffff;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 15px;
}

.hero .hero-text h1 {
    color: #ffffff;
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.hero .hero-text h2 {
    display: inline-block;
    margin: 0;
    height: 35px;
    color: #ffffff;
    font-size: 35px;
    font-weight: 600;
}

.hero .hero-text .typed-text {
    display: none;
}

.hero .hero-text .typed-cursor {
    font-size: 35px;
    font-weight: 300;
    color: #ffffff;
}

.hero .hero-btn .btn {
    margin-top: 35px;
    color: #EF233C;
    background: #ffffff;
    box-shadow: inset 0 0 0 50px #ffffff;
}

.hero .hero-btn .btn:hover {
    color: #ffffff;
    background: transparent;
    box-shadow: inset 0 0 0 0 #ffffff;
    border-color: #ffffff;
}

.hero .hero-btn .btn:first-child {
    margin-right: 10px;
}

@media (max-width: 991.98px) {
    .hero {
        padding-top: 60px;
    }
    
    .hero .hero-content {
        padding: 0 15px;
    }
    
    .hero .hero-text p {
        font-size: 20px;
    }
    
    .hero .hero-text h1 {
        font-size: 45px;
    }
    
    .hero .hero-text h2 {
        font-size: 25px;
        height: 25px;
    }
    
    .hero .hero-btn .btn {
        padding: 12px 30px;
        letter-spacing: 1px;
    }
}

@media (max-width: 767.98px) {
    .hero {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .hero,
    .hero .hero-text,
    .hero .hero-btn {
        width: 100%;
        text-align: center;
    }
    
    .hero .hero-text p {
        font-size: 18px;
    }
    
    .hero .hero-text h1 {
        font-size: 35px;
    }
    
    .hero .hero-text h2 {
        font-size: 22px;
        height: 22px;
    }
    
    .hero .hero-btn .btn {
        padding: 10px 15px;
        letter-spacing: 1px;
    }
}

@media (max-width: 575.98px) {
    .hero .hero-text p {
        font-size: 16px;
    }
    
    .hero .hero-text h1 {
        font-size: 30px;
    }
    
    .hero .hero-text h2 {
        font-size: 18px;
        height: 18px;
    }
    
    .hero .hero-btn .btn {
        padding: 8px 10px;
        letter-spacing: 0;
    }
}


/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    margin-bottom: 45px;
}

.section-header p {
    display: inline-block;
    margin: 0 30px;
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: #ffffff;
}

.section-header p::before {
    position: absolute;
    content: "";
    height: 3px;
    top: 11px;
    right: 0;
    left: -30px;
    background: #EF233C;
    z-index: -1;
}

.section-header p::after {
    position: absolute;
    content: "";
    width: 3px;
    height: 3px;
    top: 11px;
    left: 3px;
    background: #EF233C;
    z-index: 1;
}

.section-header h2 {
    margin: 0;
    position: relative;
    font-size: 45px;
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 30px;
    }
}


/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    margin: -45px 0 45px 0;
}

.about .col-lg-6 {
    padding: 0;
}

.about .section-header {
    margin-bottom: 30px;
}

.about .about-img {
    position: relative;
    height: 100%;
}

.about .about-img img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about .about-content {
    padding: 0 60px;
}

.about .about-text p {
    font-size: 16px;
}

.about .skills {
    margin-bottom: 30px;
}

.about .skill-name {
    margin-top: 15px;
}

.about .skill-name p {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 400;
}

.about .skill-name p:last-child {
    float: right;
}

.about .progress {
    height: 10px;
    border-radius: 10px;
    background: #dddddd;
}

.about .progress .progress-bar {
    width: 0px;
    background: #239def;
    border-radius: 10px;
    transition: 2s;
}

.about .about-text a.btn {
    margin-top: 15px;
}

@media (max-width: 991.98px) {
    .about .about-content {
        padding: 45px 15px 0 15px;
    }
}


/*******************************/
/******* Experience CSS ********/
/*******************************/
.experience {
    text-align: center;
    background: #fff;
    border-radius: 10px;
    padding: 40px 20px;
    box-shadow: rgba(58, 78, 95, 0.2) 0 10px 16px,
      rgba(58, 78, 95, 0.05) 0 -5px 16px;
    width: 100%;
    float: left;
    position: relative;
    padding: 45px 0 15px 0;
}

.experience .timeline {
    position: relative;
    width: 100%;
}

.experience .timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: #EF233C;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.experience .timeline .timeline-item {
    position: relative;
    background: inherit;
    width: 50%;
    margin-bottom: 30px;
}

.experience .timeline .timeline-item.left {
    left: 0;
    padding-right: 30px;
}

.experience .timeline .timeline-item.right {
    left: 50%;
    padding-left: 30px;
}

.experience .timeline .timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 48px;
    right: -8px;
    background: #ffffff;
    border: 2px solid #EF233C;
    border-radius: 16px;
    z-index: 1;
}

.experience .timeline .timeline-item.right::after {
    left: -8px;
}

.experience .timeline .timeline-item::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  top: 46px;
  right: 10px;
  z-index: 1;
  border: 10px solid;
  border-color: transparent transparent transparent #dddddd;
}

.experience .timeline .timeline-item.right::before {
  left: 10px;
  border-color: transparent #dddddd transparent transparent;
}

.experience .timeline .timeline-date {
    position: absolute;
    width: 100%;
    top: 44px;
    font-size: 16px;
    font-weight: 600;
    color: #EF233C;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1;
}

.experience .timeline .timeline-item.left .timeline-date {
    text-align: left;
    left: calc(100% + 55px);
}

.experience .timeline .timeline-item.right .timeline-date {
    text-align: right;
    right: calc(100% + 55px);
}

.experience .timeline .timeline-text {
    padding: 30px;
    background: #ffffff;
    position: relative;
    border-right: 5px solid #dddddd;
    box-shadow: 0 0 60px rgba(0, 0, 0, .08);
}

.experience .timeline .timeline-item.right .timeline-text {
    border-right: none;
    border-left: 5px solid #dddddd;
}

.experience .timeline .timeline-text h2 {
    margin: 0 0 5px 0;
    font-size: 22px;
    font-weight: 600;
}

.experience .timeline .timeline-text h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
}

.experience .timeline .timeline-text p {
    margin: 0;
    font-size: 16px;
}

@media (max-width: 767.98px) {
    .experience .timeline::after {
        left: 8px;
    }

    .experience .timeline .timeline-item {
        width: 100%;
        padding-left: 38px;
    }
    
    .experience .timeline .timeline-item.left {
        padding-right: 0;
    }
    
    .experience .timeline .timeline-item.right {
        left: 0%;
        padding-left: 38px;
    }

    .experience .timeline .timeline-item.left::after, 
    .experience .timeline .timeline-item.right::after {
        left: 0;
    }
    
    .experience .timeline .timeline-item.left::before,
    .experience .timeline .timeline-item.right::before {
        left: 18px;
        border-color: transparent #dddddd transparent transparent;
    }
    
    .experience .timeline .timeline-item.left .timeline-date,
    .experience .timeline .timeline-item.right .timeline-date {
        position: relative;
        top: 0;
        right: auto;
        left: 0;
        text-align: left;
        margin-bottom: 10px;
    }
    
    .experience .timeline .timeline-item.left .timeline-text,
    .experience .timeline .timeline-item.right .timeline-text {
        border-right: none;
        border-left: 5px solid #dddddd;
    }
}


/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.service .service-item {
    position: relative;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    box-shadow: inset 0 0 0 0 transparent;
    transition: ease-out 0.5s;
}

.service .service-item:hover {
    box-shadow: inset 800px 0 0 0 #f54d4d;
}

.service .service-icon {
    position: relative;
    width: 150px;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #000000;
    background: #ffffff;
}

.service .service-icon-research i {
    position: relative;
    font-size: 60px;
    color: #F15022;
    transition: .3s;
}

.service .service-icon-design i {
    position: relative;
    font-size: 60px;
    color: #7FBA00;
    transition: .3s;
}

.service .service-icon-security i {
    position: relative;
    font-size: 60px;
    color: #01A4EF;
    transition: .3s;
}

.service .service-icon-consulting i {
    position: relative;
    font-size: 60px;
    color: #FFB901;
    transition: .3s;
}





.service .service-item:hover i {
    font-size: 75px;
}

.service .service-text {
    position: relative;
    width: calc(100% - 120px);
    padding: 0 30px;
}

.service .service-text h3 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
    transition: 1s;
}

.service .service-text p {
    margin: 0;
    font-size: 16px;
    transition: 1s;
}

.service .service-item:hover .service-text h3,
.service .service-item:hover .service-text p {
    color: #ffffff;
}

@media (max-width: 575.98px) {
    .service .service-text h3 {
        font-size: 16px;
        margin-bottom: 5px;
    }
    
    .service .service-text p {
        font-size: 14px;
    }
}


/*******************************/
/******** Portfolio CSS ********/
/*******************************/
.portfolio {
    position: relative;
    padding: 45px 0 15px 0;
}

.portfolio #portfolio-filter {
    padding: 0;
    margin: -15px 0 25px 0;
    list-style: none;
    font-size: 0;
    text-align: center;
}

.portfolio #portfolio-filter li {
    cursor: pointer;
    display: inline-block;
    margin: 5px;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    background: #EF233C;
    border: 2px solid transparent;
    border-radius: 0;
    box-shadow: inset 0 0 0 50px #EF233C;
    transition: ease-out 0.3s;
    -webkit-transition: ease-out 0.3s;
    -moz-transition: ease-out 0.3s;
}

.portfolio #portfolio-filter li:hover,
.portfolio #portfolio-filter li.filter-active {
    color: #EF233C;
    background: transparent;
    box-shadow: inset 0 0 0 0 #EF233C;
    border-color: #EF233C;
}

.portfolio .portfolio-item {
    position: relative;
}

.portfolio .portfolio-wrap {
    position: relative;
    width: 100%;
}

.portfolio .portfolio-img {
    position: relative;
    overflow: hidden;
}

.portfolio .portfolio-img img {
    position: relative;
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    transform: scale(1.1);
    transition: .5s;
}

.portfolio .portfolio-item:hover img {
    margin-left: 15px;
}

.portfolio .portfolio-text {
    position: relative;
    height: 60px;
    width: calc(100% - 30px);
    margin: -30px 15px 30px 15px;
    display: flex;
    align-items: center;
    background: #ffffff;
    box-shadow: 0 0 15px rgba(0, 0, 0, .12);
}

.portfolio .portfolio-text h3 {
    width: calc(100% - 70px);
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 0 15px;
    white-space: nowrap;
    overflow: hidden;
}

.portfolio .portfolio-text a.btn {
    width: 50px;
    height: 50px;
    padding: 0 0 2px 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    font-weight: 100;
}

.portfolio .portfolio-item:hover a.btn {
    color: #EF233C;
    background: transparent;
    box-shadow: inset 0 0 0 0 #EF233C;
    border-color: #EF233C;
}


/*******************************/
/********* Banner CSS **********/
/*******************************/
.banner {
    position: relative;
    width: 100%;
    margin: 45px 0;
    padding: 90px 0;
    background: #EF233C;
}

.banner .container {
    max-width: 750px;
    text-align: center;
}

.banner .section-header {
    margin-bottom: 20px;
}

.banner .section-header p {
    color: #414141;
    background: transparent;
}

.banner .section-header p::after {
    display: none;
}

.banner .section-header h2 {
    color: #ffffff;
}

.banner .section-header h2 span {
    color: #414141;
    font-size: 50px;
}

.banner .banner-text p {
    font-size: 18px;
    color: #ffffff;
}

.banner .banner-text .btn {
    margin-top: 15px;
    color: #EF233C;
    background: #ffffff;
    box-shadow: inset 0 0 0 50px #ffffff;
}

.banner .banner-text .btn:hover {
    color: #ffffff;
    background: transparent;
    box-shadow: inset 0 0 0 0 #ffffff;
    border-color: #ffffff;
}


/*******************************/
/********* Pricing CSS *********/
/*******************************/
.price {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.price .row {
    padding: 0 15px;
}

.price .col-md-4 {
    padding: 0;
}

.price .price-item {
    position: relative;
    margin-bottom: 30px;
    background: #ffffff;
}

.price .featured-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .2);
    z-index: 1;
}

.price .price-header,
.price .price-body,
.price .price-footer {
    position: relative;
    text-align: center;
}

.price .price-header {
    padding: 45px 0 30px 0;
    color: #414141;
}

.price .price-item.featured-item .price-header {
    color: #EF233C;
}

.price .price-title h2 {
    font-size: 25px;
    font-weight: 400;
    text-transform: uppercase;
}

.price .price-prices h2 {
    font-size: 45px;
    font-weight: 700;
    margin-left: 10px;
}

.price .price-prices h2 small {
    position: absolute;
    font-size: 18px;
    font-weight: 400;
    margin-top: 9px;
    margin-left: -12px;
}

.price .price-prices h2 span {
    margin-left: 1px;
    font-size: 18px;
    font-weight: 400;
}

.price .price-item.featured-item h2 {
    color: #EF233C;
}

.price .price-body {
    padding: 0 0 20px 0;
}

.price .price-description ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.price .price-description ul li {
    padding: 0 0 20px 0;
}

.price .price-item .price-action {
    padding-bottom: 45px;
}

.price .price-item .price-action .btn {
    color: #ffffff;
    background: #414141;
    box-shadow: inset 0 0 0 50px #414141;
}

.price .price-item .price-action .btn:hover {
    color: #414141;
    background: transparent;
    box-shadow: inset 0 0 0 0 #414141;
    border-color: #414141;
}

.price .price-item.featured-item .price-action .btn {
    color: #ffffff;
    background: #EF233C;
    box-shadow: inset 0 0 0 50px #EF233C;
}

.price .price-item.featured-item .price-action .btn:hover {
    color: #EF233C;
    background: transparent;
    box-shadow: inset 0 0 0 0 #EF233C;
    border-color: #EF233C;
}


/*******************************/
/*********** Team CSS **********/
/*******************************/
.team {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.team .team-item {
    position: relative;
    background: #ffffff;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-shadow: inset 0 0 0 0 transparent;
    transition: ease-out 0.5s;
}

.team .team-img {
    position: relative;
    width: 50%;
    overflow: hidden;
}

.team .team-img img {
    position: relative;
    width: 100%;
    transition: .5s;
}

.team .team-text {
    position: relative;
    width: 50%;
    padding: 0 30px;
}

.team .team-text h2 {
    color: #EF233C;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    transition: 1s;
}

.team .team-text h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    transition: 1s;
}

.team .team-text p {
    margin-bottom: 20px;
    transition: 1s;
}

.team .team-social {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.team .team-social a.btn {
    width: 35px;
    height: 35px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: normal;
    margin-right: 5px;
}

.team .team-item:hover {
    box-shadow: inset 800px 0 0 0 #EF233C;
}

.team .team-item:hover .team-img img {
    transform: scale(1.2);
}

.team .team-item:hover .team-text h2,
.team .team-item:hover .team-text h4,
.team .team-item:hover .team-text p {
    color: #ffffff;
}

.team .team-item:hover .team-social a.btn {
    background: #ffffff;
}

.team .team-item:hover .team-social a.btn:hover {
    border-color: #ffffff;
}

@media(max-width: 575.98px) {
    .team .team-text {
        padding: 0 15px;
    }
    
    .team .team-text h2 {
        font-size: 16px;
        margin-bottom: 0;
    }

    .team .team-text h4 {
        margin-bottom: 5px;
    }

    .team .team-text p {
        font-size: 14px;
        line-height: 18px;
        margin-bottom: 10px;
    }
}


/*******************************/
/******* Testimonial CSS *******/
/*******************************/
.testimonial {
    position: relative;
    margin: 45px 0;
    padding: 90px 0;
    background: #EF233C;
}

.testimonial .container {
    max-width: 900px;
}

.testimonial .testimonial-icon {
    margin-bottom: 45px;
    text-align: center;
}

.testimonial .testimonial-icon i {
    font-size: 60px;
    color: rgba(256, 256, 256, .5);
}

.testimonial .testimonial-item {
    position: relative;
    margin: 0 15px;
    text-align: center;
}

.testimonial .testimonial-img {
    position: relative;
    margin-bottom: 15px;
    z-index: 1;
}

.testimonial .testimonial-item img {
    margin: 0 auto;
    width: 120px;
    padding: 10px;
    border: 5px dotted #ffffff;
    border-radius: 100px;
}

.testimonial .testimonial-text {
    position: relative;
    margin-top: -70px;
    padding: 65px 35px 30px 35px;
    text-align: center;
    background: #ffffff;
    border-radius: 500px;
}

.testimonial .testimonial-item p {
    font-size: 18px;
    font-style: italic;
}

.testimonial .testimonial-text h3 {
    color: #EF233C;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.testimonial .testimonial-text h4 {
    color: #666666;
    font-size: 14px;
    margin-bottom: 0;
}

.testimonial .owl-dots {
    margin-top: 15px;
    text-align: center;
}

.testimonial .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(256, 256, 256, .5);
}

.testimonial .owl-dot.active {
    background: #ffffff;
}


/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    margin: 45px 0;
    background: #239def;
}

.contact .container-fluid {
    background: url(../img/contact.jpg) left center no-repeat;
    background-size: contain;
}

.contact .contact-form {
    position: relative;
    padding: 90px 0 90px 45px;
    background: #239def;
}

.contact .contact-form input {
    color: #ffffff;
    padding: 15px 0;
    background: none;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(256, 256, 256, .5);
}

.contact .contact-form textarea {
    color: #ffffff;
    height: 90px;
    padding: 15px 0;
    background: none;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(256, 256, 256, .5);
}

.contact .contact-form .form-control::placeholder {
    color: #ffffff;
    opacity: 1;
}

.contact .contact-form .form-control:-ms-input-placeholder,
.contact .contact-form .form-control::-ms-input-placeholder {
    color: #ffffff;
}

.contact .contact-form .btn {
    margin-top: 35px;
    color: #EF233C;
    background: #ffffff;
    box-shadow: inset 0 0 0 50px #ffffff;
}

.contact .contact-form .btn:hover {
    color: #ffffff;
    background: transparent;
    box-shadow: inset 0 0 0 0 #ffffff;
    border-color: #ffffff;
}

.contact .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 14px;
    font-style: italic;
    color: #ffffff;
}

@media (max-width: 767.98px) {
    .contact .container-fluid {
        background: none;
    }
    
    .contact .contact-form {
        padding: 90px 0;
    }
}


/*******************************/
/*********** Blog CSS **********/
/*******************************/
.blog {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.blog .blog-item {
    position: relative;
    margin-bottom: 30px;
}

.blog .blog-img {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.blog .blog-img img {
    width: 100%;
    transition: .5s;
}

.blog .blog-item:hover img {
    transform: scale(1.1);
}

.blog .blog-text {
    position: relative;
    padding: 30px;
    border-right: 1px solid rgba(0, 0, 0, .07);
    border-bottom: 1px solid rgba(0, 0, 0, .07);
    border-left: 1px solid rgba(0, 0, 0, .07);
}

.blog .blog-text h2 {
    font-size: 25px;
    font-weight: 600;
}

.blog .blog-text p {
    margin-bottom: 10px;
}

.blog .blog-item a.btn {
    margin-top: 10px;
    padding: 8px 15px;
}

.blog .blog-item a.btn i {
    margin-left: 5px;
}

.blog .blog-meta {
    position: relative;
    display: flex;
    margin-bottom: 15px;
}

.blog .blog-meta p {
    margin: 0 10px 0 0;
    font-size: 13px;
}

.blog .blog-meta i {
    color: #414141;
    margin-right: 5px;
}

.blog .blog-meta p:last-child {
    margin: 0;
}


/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    margin-top: 45px;
    background: #239def;
}

.footer .container-fluid {
    padding: 60px 0 0 0;
}

.footer .footer-info {
    position: relative;
    width: 100%;
    text-align: center;
}

.footer .footer-info h2 {
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
}

.footer .footer-info h3 {
    margin-bottom: 25px;
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
}

.footer .footer-menu {
    width: 100%;
    display: flex;
    justify-content: center;
}

.footer .footer-menu p {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    line-height: 20px;
    padding: 0 15px;
    border-right: 1px solid #ffffff;
}

.footer .footer-menu p:last-child {
    border: none;
}

.footer .footer-social {
    position: relative;
    margin-top: 15px;
}

.footer .footer-social a {
    display: inline-block;
}

.footer .footer-social a i {
    margin-right: 15px;
    font-size: 20px;
    color: #ffffff;
    transition: .3s;
}

.footer .footer-social a:last-child i {
    margin: 0;
}

.footer .footer-social a:hover i {
    color: #414141;
}

.footer .copyright {
    position: relative;
    text-align: center;
    margin-top: 30px;
    padding-top: 25px;
    padding-bottom: 25px;
}

.footer .copyright::before {
    position: absolute;
    content: "";
    width: 50%;
    height: 1px;
    top: 0;
    left: 25%;
    background: rgba(256, 256, 256, .2);
}

.footer .copyright p {
    margin: 0;
    color: #ffffff;
}

.footer .copyright .col-md-6:last-child p {
    text-align: right;
}

.footer .copyright p a {
    color: #ffffff;
    font-weight: 600;
}

.footer .copyright p a:hover {
    color: #414141;
}

@media (max-width: 575.98px) {
    .footer .footer-info h2 {
        margin-bottom: 20px;
        font-size: 20px;
        font-weight: 600;
    }

    .footer .footer-info h3 {
        margin-bottom: 20px;
        font-size: 16px;
    }

    .footer .footer-menu p {
        font-size: 16px;
        line-height: 16px;
        padding: 0 5px;
    }
}