/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Montserrat', sans-serif;
  color: #444444;
  overflow-x: hidden !important;
}

a {
  color: #106eea;
  text-decoration: none;
}

a:hover {
  color: #3b8af2;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /*    font-family: 'Roboto';*/
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

/*
#preloader:before {
content: "";
position: fixed;
top: calc(50% - 30px);
left: calc(50% - 30px);
border: 6px solid #106eea;
border-top-color: #e2eefd;
border-radius: 50%;
width: 60px;
height: 60px;
-webkit-animation: animate-preloader 1s linear infinite;
animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
0% {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
100% {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}
}

@keyframes animate-preloader {
0% {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
100% {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}
}
*/
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #D2AC47;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

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

.back-to-top:hover {
  background: #3284f1;
  color: #fff;
}

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
      -webkit-transition-delay: 0 !important;
      transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #106eea;
  height: 40px;
  font-size: 14px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
}

#topbar .contact-info i {
  font-style: normal;
  color: #fff;
}

#topbar .contact-info i a,
#topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}

#topbar .contact-info i a {
  line-height: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  transition: 0.3s;
}

#topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}

#topbar .social-links a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-left: 20px;
}

#topbar .social-links a:hover {
  color: white;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: rgba(0, 0, 0, .1);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 997;
  /* height: 86px; */
  -webkit-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  /* margin: 10px 0; */
  padding-top: 10px;
}
#header.scrolled {
  background: rgb(10 10 10 / 90%);
/*    background: rgba(0, 0, 0, .9);*/
  
  position: fixed;
  -webkit-box-shadow: 0px 4px 5px rgb(0 0 0 / 20%);
  box-shadow: 0px 4px 5px rgb(0 0 0 / 20%);
}
#header.fixed-top {
  min-height: 80px;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.8px;
  font-family: 'Montserrat', sans-serif;
}

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

#header .logo a span {
  color: #106eea;
}

#header .logo img {
  /* max-height: 40px; */
  width: 220px;
}

.scrolled-offset {
  /* margin-top: 70px; */
}

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

.navbar ul {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  /* -webkit-box-align: center; */
  -ms-flex-align: center;
  /* align-items: center; */
}

.navbar li {
  position: relative;
}

.navbar > ul > li {
  white-space: nowrap;
  padding: 10px 0 10px 0;
  /* text-align: left; */
}

.navbar a,
.navbar a:focus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 25px;
  font-weight: 100;
  color: #fff;
  white-space: nowrap;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}

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

.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #106eea;
  display: none;
  width: 0px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover > a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #D2AC47;
  border-bottom: 1px solid;
  width: max-content;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 200px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 30px 30px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  background: #1F1F1F 0% 0% no-repeat padding-box;
  /* -webkit-box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25); */
  /* box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25); */
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 300px;
  height: max-content;
  color: #fff;
}

.navbar .dropdown ul li {
  min-width: 200px;
  /* color: #fff; */
}

.navbar .dropdown ul a {
  padding: 5px 0px;
  /* font-weight: 400; */
  color: #fff;
  font-size: 20px;
  /* color: #fff; */
  display: block;
  /* padding: 0px; */
  margin-bottom: 4px;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}

.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: #D2AC47;
  border-bottom: 1px solid;
  width: max-content;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  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-nav-toggle {
  color: #222222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

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

@media (max-width: 991px) {
  .mobile-nav-toggle {
      display: block;
  }

  .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);
  -webkit-transition: 0.3s;
  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;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  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;
  -webkit-box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  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;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  /*    background: url("/web/20230722143645im_/https://dhariwalthiranigroup.com/assets/images/main-banner.png") top left;*/
  /*    background: url("/web/20230722143645im_/https://dhariwalthiranigroup.com/assets/home-video.mp4") top left;*/
  background-size: cover;
  position: relative;
}

/*
#hero:before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  background: transparent -webkit-gradient(linear, left top, left bottom, from(#000000), to(#54545400)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, #000000 0%, #54545400 100%) 0% 0% no-repeat padding-box;
}
*/

#hero .container {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#hero h1 {
  margin: 0;
  font-size: 100px;
  font-weight: 100;
  line-height: 100px;
  color: #ffffff;
  /*    font-family: "Poppins", sans-serif;*/
  text-align: center;
  font-family: 'IvyModeRegular';
}

#hero h1 span {
  color: #106eea;
}

#hero h2 {
  color: #FFFFFF;
  margin: 20px 0 0px 0;
  font-size: 18px;
  font-weight: 300;
  text-align: center;
  letter-spacing: 10px;
  text-transform: uppercase;

}

/*
.banner-content-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
*/
/*
div#main-slider {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
*/

.banner-content-wrapper h1 {
  margin: 0;
  font-size: 100px;
  font-weight: 100;
  line-height: 100px;
  color: #ffffff;
  /*    font-family: "Poppins", sans-serif;*/
  text-align: center;
  font-family: 'IvyModeRegular';
}

.banner-content-wrapper h1 span {
  color: #106eea;
}

.banner-content-wrapper h2 {
  color: #FFFFFF;
  margin: 10px 0 0px 0;
  font-size: 20px;
  font-weight: 300;
  text-align: center;
  letter-spacing: 10px;

}

#hero h3 {
  color: #FFFFFF;
  margin: 10px 0 0px 0;
  font-size: 20px;
  font-weight: 300;
  text-align: center;
  letter-spacing: 2px;
}

#hero .btn-get-started {
  /*    font-family: "Roboto", sans-serif;*/
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #fff;
  background: #106eea;
}

#hero .btn-get-started:hover {
  background: #247cf0;
}

#hero .btn-watch-video {
  font-size: 16px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-left: 25px;
  color: #222222;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#hero .btn-watch-video i {
  color: #106eea;
  font-size: 32px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

#hero .btn-watch-video:hover {
  color: #106eea;
}

#hero .btn-watch-video:hover i {
  color: #3b8af2;
}

@media (min-width: 1024px) {
  #hero {
      background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero {
      height: 100vh;
  }

  #hero h1 {
      font-size: 32px;
      line-height: 36px;
  }

  #hero h2 {
      font-size: 15px;
      line-height: 20px;
      margin-bottom: 30px;
      padding: 0px 10px;
      text-transform: uppercase;
  }

  #hero .btn-get-started,
  #hero .btn-watch-video {
      font-size: 13px;
  }
}

@media (max-height: 500px) {
  #hero {
      height: 120vh;
  }
}

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

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

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

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: #e7f1fd;
  color: #106eea;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}

.section-title h3 {
  margin: 15px 0 0 0;
  /*
  font-size: 21px;
  color: #D2AC47;
  font-family: 'Montserrat';
  text-transform: uppercase;
  letter-spacing: 21px;
*/
  font-family: 'IvyModeRegular';
  color: #fff;
  letter-spacing: 0;
  font-size: 80px;
  text-transform: capitalize;
}

.section-title h3 span {
  color: #D2AC47;
}

.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 600;
  color: #fff;
  font-weight: 300;
  letter-spacing: 8px;
  width: 100% !important;
}

@media (min-width: 1024px) {
  .section-title p {
      width: 50%;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f1f6fe;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
      margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
      display: block !important;
  }

  .breadcrumbs ol {
      display: block;
  }

  .breadcrumbs ol li {
      display: inline-block;
  }
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 35px;
}

.about .content ul li:first-child {
  margin-top: 35px;
}

.about .content ul i {
  background: #fff;
  -webkit-box-shadow: 0px 6px 15px rgba(16, 110, 234, 0.12);
  box-shadow: 0px 6px 15px rgba(16, 110, 234, 0.12);
  font-size: 24px;
  padding: 20px;
  margin-right: 15px;
  color: #106eea;
  border-radius: 50px;
}

.about .content ul h5 {
  font-size: 18px;
  color: #555555;
}

.about .content ul p {
  font-size: 15px;
}

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



/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 70px 0 60px;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #f1f6fe;
}

.counts .count-box i {
  position: absolute;
  top: -28px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 24px;
  background: #106eea;
  color: #fff;
  width: 56px;
  height: 56px;
  line-height: 0;
  border-radius: 50px;
  border: 5px solid #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #062b5b;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  /*    font-family: "Roboto", sans-serif;*/
  font-size: 14px;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 15px 0;
  text-align: center;
}

.clients img {
  /*    max-width: 45%;*/
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
}

.clients img:hover {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .clients img {
      max-width: 40%;
  }
}


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

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

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

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  /* background: #fff; */
  /* padding: 0 0 0px 0; */
  color: #444444;
  font-size: 14px;
  background: #0A0A0A;
  padding-bottom: 0;
}

#footer .footer-newsletter {
  padding: 0px 0;
  /* background: #f1f6fe; */
  text-align: center;
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  /* background: #fff; */
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  /* -webkit-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06); */
  /* box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06); */
  text-align: left;
  border-bottom: 1px solid #fff;
  border-radius: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: 100%;
  background: transparent;
  /* border-bottom: 1px solid #fff; */
  color: #fff;
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  /* background: #106eea; */
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  -webkit-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #0d58ba;
}

#footer .footer-newsletter form input[type=email]::-webkit-input-placeholder {
  letter-spacing: 5px;
  font-size: 10px;
  color: #fff;
}

#footer .footer-newsletter form input[type=email]:-ms-input-placeholder {
  letter-spacing: 5px;
  font-size: 10px;
  color: #fff;
}

#footer .footer-newsletter form input[type=email]::placeholder {
  letter-spacing: 5px;
  font-size: 10px;
  color: #fff;
}

#footer .footer-top {
  padding: 0;
  /* background: #fff; */
  padding-bottom: 30px;
  border-bottom: 1px solid #FFFFFF;
}

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

#footer .footer-top .footer-contact h3 {
  font-size: 24px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact h3 span {
  color: #106eea;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  /*    font-family: "Roboto", sans-serif;*/
  color: #777777;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 300;
  color: #FFFFFF;
  position: relative;
  padding-bottom: 12px;
  font-family: 'IvyModeRegular';
  font-size: 30px;
  line-height: 40px;
  text-align: left;
}

#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;
  color: #106eea;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 5px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

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

#footer .footer-top .footer-links ul a {
  color: #ffffff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: inline-block;
  line-height: 15px;
  font-size: 10px;
  letter-spacing: 5px;
  font-weight: 300;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  /*    color: #106eea;*/
}

#footer .footer-top .social-links a {
  font-size: 10px;
  letter-spacing: 5px;
  display: inline-block;
  /* background: #106eea; */
  color: #D2AC47;
  line-height: 1;
  padding: 0px 0;
  margin-right: 15px;
  border-radius: 4px;
  text-align: center;
  /* width: 36px; */
  /* height: 36px; */
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  /* background: #3b8af2; */
  color: #D2AC47;
  text-decoration: none;
}

#footer .copyright {
  text-align: center;
  /*    float: left;*/
  font-size: 10px;
  color: #fff;
  letter-spacing: 2px;
}

#footer .copyright a {
  color: #fff;
}

#footer .footer-links.social-links {
  margin-bottom: 0;
  padding-bottom: 0;
}

@media (max-width: 768px) {

  #footer .copyright {
      float: none;
      text-align: center;
      padding: 2px 0;
  }
}