/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Lato", sans-serif;
  color: #444444;
}

a {
  color: #47b2e4;
  text-decoration: none;
}

a:hover {
  color: #73c5eb;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Lato", sans-serif;
  color: black;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: rgb(53, 62, 70);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6bc1e9;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: #7c7cf2;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo a:hover {
  color: blue;
}
#header .logo img {
  max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: rgb(53, 62, 70);
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  border: 2px solid #47b2e4;
  font-weight: 600;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: rgb(53, 62, 70);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #0c3c53;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: rgb(53, 62, 70);
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: black;
  font-size: 28px;
  cursor: pointer;
  line-height: 0;
  transition: 0.5s;
  display: none;
}

.mobile-nav-toggle.bi-x {
  color: black;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: inline-block;
    color: white;
    margin-top: 2%;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 25px 20px;
  font-size: 21px;
  color: #222222;
}

.navbar-mobile > ul > li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover > a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #106eea;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #106eea;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 82vh;
  box-shadow: inset 0 0 0 1000px rgba(88, 83, 83, 0.8);
}

#hero:hover {
  background-color: #7286b8;
}
#hero .container {
  padding-top: 72px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
  text-shadow: 2px 1px #222324;
}

.word {
  color: white;
  font: 500 normal 2.5em "tahoma";
  text-shadow: 2px 1px #222324;
}

@media (max-width: 768px) {
  .word {
    color: white;
    font: 500 normal 1.5em "tahoma";
    text-shadow: 2px 1px #222324;
  }
}
#hero .btn-get-started {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: rgb(53, 62, 70);
  margin: 1%;
}

#hero .btn-get-started:hover {
  background: #209dd8;
}

#hero .animated {
  max-width: 60%;
  height: auto;
  margin-left: 10%;
  margin-top: 5%;
}

@media (max-width: 991px) {
  #hero {
    height: 80vh;
    text-align: center;
  }

  #hero .animated {
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
    width: 75%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
    text-shadow: 2px 1px #222324;
  }
  #hero .hero-img img {
    width: 70%;
  }
  .line {
    font-size: 18px;
    line-height: 30px;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }

  #hero .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }
}

.slideshow::after {
  content: "";
}
.img-bg-slide {
  width: 100%;
  height: 82vh;
  position: absolute;
  top: 0px;
  left: 0px;
  background-blend-mode: saturation;
  filter: grayscale(50%);
  background-size: cover; /* covers whole viewport */
  background-position: 100% 33%;
  background-repeat: no-repeat;
  opacity: 0;
  z-index: 0;
  animation: backgroundSlideshow 30s linear infinite 0s;
  /* -webkit-filter: blur(2px); */
}
.slideshow li:nth-child(1) .img-bg-slide {
  background-image: url("../img/bg-1.jpg");
}
.slideshow li:nth-child(2) .img-bg-slide {
  background-image: url("../img/bg-2.jpg");
  animation-delay: 10s;
}
.slideshow li:nth-child(3) .img-bg-slide {
  background-image: url("../img/bg-3.jpg");
  animation-delay: 20s;
}
.slideshow li:nth-child(4) .img-bg-slide {
  background-image: url("../img/bg-4.jpg");
  animation-delay: 30s;
}
.slideshow li:nth-child(4) .img-bg-slide {
  background-image: url("../img/bg-5.jpg");
  animation-delay: 40s;
}
@keyframes backgroundSlideshow {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

/*--------------------------------------------------------------
# Sections General 
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f3f5fa;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
  padding-bottom: 15px;
  position: relative;
  color: rgb(53, 62, 70);
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: rgb(53, 62, 70);
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 30px;
}
.about .content h5 {
  font-size: 17px;
  font-weight: 300;
  font-weight: 400;
  line-height: 2.2em;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: rgb(53, 62, 70);
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: #fff;
  background: rgb(53, 62, 70);
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #37517e;
}

.about .content .btn-learn-more:hover {
  background: #47b2e4;
  color: #fff;
  text-decoration: none;
}
.about .images .hero-img {
  max-width: 50%;
  height: auto;
  margin-left: 20%;
}
/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .content h3 {
  font-weight: 700;
  font-size: 32px;
  color: rgb(53, 62, 70);
}

.skills .content p:last-child {
  margin-bottom: 0;
}

.skills .progress {
  height: 80px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #37517e;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #e8edf5;
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #0000ff;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
  background-color: #f2f2f2 !important;
}
.services .icon-box {
  text-align: center;
  border: 1px solid #d5e1ed;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: white;
  border-radius: 50px;
  transition: all 0.3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
}

.services .icon-box .icon i {
  font-size: 28px;
}

.services .icon-box .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: #badaf7;
  border-radius: 50px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #2c4964;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 15px;
  font-weight: 400;
}

.services .icon-box:hover {
  background: #7286b8;
}

.services .icon-box:hover .icon i {
  color: #7c7cf2;
}

.services .icon-box:hover .icon::before {
  background: radial-gradient(black, transparent);
}

.services .icon-box:hover h4 a,
.services .icon-box:hover p {
  color: white;
}
.icon i {
  color: rgb(53, 62, 70);
}

.customer-logos.slider {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(264px, 1fr));
  gap: 24px;
}
/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  background-color: #f2f2f2 !important;
}
.slick-slide {
  margin: 0 20px;
}
.slick-slide img {
  width: 100%;
}
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
.slick-slide img {
  display: block;
}
@media (max-width: 575px) {
  .slick-slide img {
    display: inline;
  }
}
.slick-initialized .slick-slide {
  display: block;
}
.copy {
  padding-top: 250px;
}
.clients {
  position: relative;
}

.prev-button,
.next-button {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  background-color: #333;
  color: #fff;
  padding: 10px 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
}

.prev-button {
  left: 15px;
}

.next-button {
  right: 15px;
}

.prev-button:hover,
.next-button:hover {
  background-color: black;
}

.prev-button:focus,
.next-button:focus {
  outline: none;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  background-image: url("assets/img/bg3.jpg");
  background-repeat: no-repeat;
}
.testimonial {
  position: relative;
  width: 100%;
  padding: 50px 0;
  overflow: hidden;
}
.testimonial .img {
  height: 170px;
  width: 170px;
  object-fit: cover;
  border-radius: 50%;
}
.testimonial .slide {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 30px;
  height: 100%;
  width: 100%;
}
.slide p {
  text-align: center;
  padding: 0 160px;
  font-size: 14px;
  font-weight: 400;
  color: #333;
}
.slide .quote-icon {
  font-size: 30px;
  color: rgb(53, 62, 70);
}
.slide .details {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.details .name {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}
.details .job {
  font-size: 15px;
  font-weight: 400;
  color: #ff0000;
}
/* swiper button css */
.nav-btn {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  transform: translateY(30px);
  background-color: rgba(0, 0, 0, 0.1);
  transition: 0.8s;
}
.nav-btn:hover {
  background-color: rgba(0, 0, 0, 0.2);
}
.nav-btn::after,
.nav-btn::before {
  font-size: 20px;
  color: #fff;
}
.swiper-pagination-bullet {
  background-color: rgba(0, 0, 0, 0.8);
}
.swiper-pagination-bullet-active {
  background-color: rgb(53, 62, 70);
}
@media screen and (max-width: 768px) {
  .slide p {
    padding: 0 20px;
  }
  .nav-btn {
    display: none;
  }
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  background: #ffff;
  padding: 70px 0 60px;
}
.four {
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  margin: 0px;
}
.counter-box {
  display: block;
  padding: 40px 20px 37px;
  text-align: center;
}

.counter-box p {
  margin: 15px 0 0;
  padding: 0;
  color: #888;
  font-size: 18px;
  font-weight: 500;
}

.counter-box i {
  font-size: 50px;
  margin: 0 0 15px;
  background: white;
}

.counter {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #0000ff !important;
}

.clint-img {
  width: 25%;
  margin-bottom: 20px;
}
/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.gallery .controls {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px 0;
  list-style: none;
}

.gallery .controls .buttons {
  height: 40px;
  font-size: 20px;
  line-height: 40px;
  cursor: pointer;
  margin: 20px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  text-align: center;
  overflow: hidden;
  padding-left: 5px;
  padding-right: 5px;
}

.gallery .controls .buttons.active {
  background: rgb(53, 62, 70);
  color: #fff;
}

.gallery .image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.gallery .image-container .image {
  height: 250px;
  width: 350px;
  overflow: hidden;
  border: 15px solid #fff;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  margin: 20px;
}

.gallery .image-container .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.gallery .image-container .image:hover img {
  transform: scale(1.4);
}

#content {
  z-index: 1;
}

#bg-text {
  color: lightgrey;
  font-size: 80px;
  text-transform: uppercase;
  font-weight: 800;
  z-index: -1;
  opacity: 0.07;
  width: 100%;
  left: 0;
  color: inherit;
  transform: rotate(300deg);
  -webkit-transform: rotate(0deg);
  margin-top: -9%;
}

@media (max-width: 820px) {
  #bg-text {
    font-size: 40px;
    margin-top: -11.1%;
  }
}

@media (max-width: 420px) {
  #bg-text {
    font-size: 40px;
    margin-top: -24.1%;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact-section {
  padding: 25px;
  margin-top: 10px;
  border-top: 3px solid rgb(53, 62, 70);
  border-bottom: 3px solid rgb(53, 62, 70);
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

.contact .info {
  padding: 30px;
  background: #fff;
  width: 100%;
}

.contact .info i {
  font-size: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 0px;
  font-size: 30px;
  font-weight: 600;
  margin-top: 15px;
  text-align: center;
}
.contact .info h5 {
  text-align: center;
}
.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #6182ba;
}

.contact .info .email p {
  padding-top: 15px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #47b2e4;
  color: #fff;
}

.hovor :hover {
  background: #7286b8;
  color: white;
}

.contact {
  width: 100%;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .error-message br + br {
  margin-top: 25px;
}

.contact .sent-message {
  display: none;
  color: #fff;
  background: rgb(53, 62, 70);
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact input,
.contact textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact input:focus,
.contact textarea:focus {
  border-color: #47b2e4;
}

.contact input {
  height: 33px;
}
label {
  display: inline-block;
  margin-bottom: 0;
}
.contact textarea {
  padding: 10px 12px;
}
.contact button[type="submit"] {
  background: rgb(53, 62, 70);
  border: 0;
  padding: 12px 34px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact button[type="submit"]:hover {
  background: #209dd8;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Social media icon
--------------------------------------------------------------*/
.icon-bar {
  position: fixed;
  top: 72%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  z-index: 10;
}

.icon-bar1 {
  text-decoration: none;
  width: 210px;
  background: rgb(53, 62, 70);
  color: #fff;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 5px;
  font-size: 20px;
  transform: translateX(-170px);
  -webkit-transform: translateX(-170px);
  -ms-transform: translateX(-170px);
  transition: all 0.5s linear;
  -webkit-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
}

.facebook {
  background: #3b5998;
}
.twitter {
  background: #00aced;
}

.instagram {
  background: #e4405f;
}

.youtube {
  background: #cd201f;
}

.linkedin {
  background: #0077b5;
}
.fab {
  padding-left: 20px;
  font-size: 25px !important;
  animation: letszoom 3s linear alternate-reverse infinite;
}
@keyframes letszoom {
  from {
    transform: scale(0.8);
  }

  to {
    transform: scale(1);
  }
}

a:hover {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: rgb(53, 62, 70);
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #f2f2f2;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  color: rgb(53, 62, 70);
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;

  color: #5e5e5e;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: rgb(53, 62, 70);
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #47b2e4;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgb(53, 62, 70);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #209dd8;
  color: #fff;
  text-decoration: none;
}

#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
}

#footer .copyright {
  float: left;
}

#footer .credits {
  float: right;
  font-size: 13px;
}

#footer .credits a {
  transition: 0.3s;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 74px;
  }

  #footer .copyright,
  #footer .credits {
    text-align: center;
    float: none;
  }

  #footer .credits {
    padding-top: 4px;
  }
}
@media (max-width: 768px) {
  .container1 {
    padding-left: 74px;
  }
}
