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

a {
  color: #079DD9;
  text-decoration: none;
}

a:hover {
  color: #079DD9;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Raleway', sans-serif;
}

/*--------------------------------------------------------------
# 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 #079DD9;
  border-top-color: #ffffff;
  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% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #079DD9;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #E16926;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: #fff;
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  background: #079DD9;
  height: 60px;
}

#header .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
  width: auto;
  margin-right: 10px;
  /* outline: 2px solid white;
  border-radius: 15%; */
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  margin-right: 10px;
}
.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: 15px;
  font-weight: 700;
  font-family: 'Raleway', sans-serif;
  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 > ul > li > a:before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 3px;
  left: 30px;
  background-color: #fff;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}
.navbar a:hover:before,
.navbar li:hover > a:before,
.navbar .active:before {
  visibility: visible;
  width: 25px;
}
.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #fff;
}

.button {
  color: #ffffff;
  padding: 10px 30px;
  border-radius: 30px;
  display: inline-block;
  float: right;
  overflow: hidden;
  position: relative;
  z-index: 2;
  outline: 2px solid white;
}

.button:hover {
  background: #E16926;
  color: #FFFFFF;
}

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

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

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 100px;
  left: 0;
  bottom: 0;
  background: #fff;
  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;
  border-radius: 8px;
  background-color: #079DD9;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile > ul > li > a:before {
  left: 20px;
}
.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #fff;
}
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #fff;
}
.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  background: #fff;
  position: relative;
  padding: 200px 0 0 0;
}
#hero:before {
  content: '';
  background: #079DD9;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero h1 {
  margin: 0 0 20px 0;
  font-size: 60px;
  font-weight: 700;
  line-height: 70px;
  color: #fff;
}

#hero p {
  font-size: 15px;
  color: #fff;
  margin-bottom: 40px;
  max-width: 600px;
}

#hero .hero-img img {
  max-width: 500px;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (max-width: 991px) {
  #hero {
    padding-top: 80px;
  }
  #hero .animated {
    -webkit-animation: none;
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
  }
  #hero .hero-img {
    text-align: center;
  }
  #hero .hero-img img {
    max-width: 100%;
  }
  #hero h1 {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 10px;
  }
  #hero p {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
.hero-waves {
  display: block;
  margin-top: 60px;
  width: 100%;
  height: 60px;
  z-index: 5;
  position: relative;
}

.wave1 use {
  -webkit-animation: move-forever1 10s linear infinite;
  animation: move-forever1 10s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave2 use {
  -webkit-animation: move-forever2 8s linear infinite;
  animation: move-forever2 8s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave3 use {
  -webkit-animation: move-forever3 6s linear infinite;
  animation: move-forever3 6s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

@-webkit-keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}
@-webkit-keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
@-webkit-keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
/*--------------------------------------------------------------
# Second Page (Work)
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

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

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  font-family: 'Raleway', sans-serif;
  color: #E16926;
}

.section-title p {
  font-size: 20px;
  padding: 0;
  margin: 0;
  margin-top: 20px;
  text-align: center;
  color: #000;
  font-family: 'Raleway', sans-serif;
}

.work .single-work {
  text-align: center;
  position: relative;
  padding: 80px 30px 30px 30px;
}
.work .single-work .serial span {
  font-size: 50px;
  margin-bottom: 50px;
  color: #079DD9;
  display: flex;
  justify-content: center;
  align-items: center;
}

.work .single-work h3 {
  color: #E16926;
  font-weight: 700;
  font-size: 20px;
}
.work .single-work p {
  color: #000000;
  margin-top: 20px;
  line-height: 24px;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #fafaff;
  min-height: 40px;
  margin-top: 80px;
}
@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 64px;
  }
}
.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}
@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}
.breadcrumbs ol {
  display: flex;
  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;
  }
}

/*--------------------------------------------------------------
# Third Page (About) (Tentang Kami)
--------------------------------------------------------------*/

.about {
  margin-bottom: 100px;
}
.about .content h3 {
  font-weight: 600;
  font-size: 40px;
  color: #E16926;
  text-align: center;
}

.about .content p:last-child {
  margin-bottom: 0;
  text-align: justify;
  font-weight: 500;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.about .content img {
  width: 50%;
  margin-left: 100px;
}

.rounded-image {
  border-radius: 50%;
  object-fit: cover;
  width: 100%; /* Optional: Adjust this to control the image size */
  height: auto;
}

@media screen and (max-width: 768px) {
  .about {
    flex-direction: column;
  }

  .about .col-md-4,
  .about .col-md-8 {
    flex-basis: 100%;
  }
}

/*--------------------------------------------------------------
# Fourth Page
--------------------------------------------------------------*/
.counts {
  background: #079DD9;
  padding: 70px 0 60px;
}
.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
}
.counts .count-box i {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 50px;
  background: #fff;
  padding: 12px;
  color: #079DD9;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  width: 80px;
  height: 80px;
}
.counts .count-box span {
  font-size: 70px;
  margin-top: 30px;
  display: block;
  font-weight: 700;
  color: #fff;
}
.counts .count-box p {
  padding: 0;
  margin-top: 15px;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 20px;
}

/*--------------------------------------------------------------
# Talent
--------------------------------------------------------------*/
.card-img-top {
  border-radius: 10%;
  border: solid;
  border-color: #079DD9;
  object-fit: cover;
  cursor: pointer;
}
.swal2-title {
  font-family: 'Raleway', sans-serif;
  font-size: 40px;
  font-weight: 700;
}
.talent .talent-title h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  font-family: 'Raleway', sans-serif;
  color: #E16926;
}

.talent .talent-title p {
  font-size: 20px;
  font-weight: 400;
  padding: 0;
  margin: 0;
  margin-top: 20px;
  text-align: center;
  color: #000000;
  font-family: 'Raleway', sans-serif;
}
.containerTalent {
  display: grid;
  float: left;
}

.containerTalent2 {
  display: grid;
  float: left;
}
.topic p {
  padding: 20px 0 0 10px;
  margin: 10px;
}
.wrapper {
  height: 50px;
  margin: 0 15px;
  max-width: 600px;
  width: 215px;
  padding: 0 20px;
  border-radius: 25px;
  border-style: solid;
  border-color: #079DD9;
  border-width: thin;
  background: #fff;
}

.wrapper input {
  max-width: 400px;
  width: 135px;
  margin: 18px 5px;
  appearance: none;
  height: 12px;
  border-radius: 25px;
  background-color: #ededed;
  box-shadow: 0 0 0 2px #ededed;
  overflow: hidden;
  cursor: pointer;
}
input::-webkit-slider-thumb {
  appearance: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  border: 2px solid #fff;
  background-color: #079DD9;
  box-shadow: -208px 0 0 200px #079DD9;
}
.wrapper .slide-value {
  font-size: 20px;
  font-weight: 400;
  color: #333;
  width: 0px;
  text-align: center;
}

.proses {
  margin: 20px 130px;
}
.proses button {
  background-color: #079DD9;
  font-size: 12px;
  padding: 10px 24px;
  border-radius: 12px;
  border: #333;
  color: #fff;
}

.reset {
  margin: 20px 15px;
}
.reset button {
  background-color: #079DD9;
  font-size: 12px;
  padding: 10px 30px;
  border-radius: 12px;
  border-style: solid;
  border-color: #079DD9;
  border-width: thin;
  background: #fff;
}

.proses button:hover {
  background-color: #1388AD;
}

.help-icon {
  position: relative;
  display: inline-block;
  cursor: pointer;
  left: 400px;
  top: -58px;
}

.help-icon i {
  font-size: 25px;
}

.help-icon::after {
  content: 'Angka Pada Slider Menunjukkan Penguasaan Skill Dari Seorang Talent (Semakin Besar Angka Maka Akan Semakin Ahli Dalam Bidang Tersebut)';
  text-align: center;
  position: absolute;
  top: 30px;
  left: -30px;
  background-color: #079DD9;
  color: #fff;
  padding: 8px;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.help-icon:hover::after {
  opacity: 1;
}

.talent img {
  border-radius: 10px;
  width: 100px;
  height: 100px;
  border: solid;
  border-color: #079DD9;
  object-fit: cover;
  margin-bottom: 20px;
}

@media (min-width: 200px) {
  .containerTalent {
    width: 100%;
    grid-template-columns: 240px;
  }
  /* .containerTalent2 {
    width: 100%;
    grid-template-columns: 240px;
  } */
}

@media (min-width: 350px) {
  .containerTalent {
    width: 100%;
    grid-template-columns: 240px;
  }
  /* .containerTalent2 {
    width: 100%;
    grid-template-columns: 240px;
  } */
}

@media (min-width: 600px) {
  .containerTalent {
    width: 100%;
    grid-template-columns: 240px 240px;
  }
  /* .containerTalent2 {
    width: 100%;
    grid-template-columns: 240px 240px;
  } */
}

@media (min-width: 1000px) {
  .containerTalent {
    width: 50%;
    grid-template-columns: 240px 240px;
    padding: 25px 0;
  }
  /* .containerTalent2 {
    width: 50%;
    grid-template-columns: 240px 240px ;
    padding: 25px 0;
  } */
}

@media (max-width: 768px) {
  .proses,
  .reset,
  .help-icon {
    flex-basis: auto;
    max-width: 100%;
    margin: 5px;
  }
}
/*--------------------------------------------------------------
# Partner
--------------------------------------------------------------*/
.partner {
  background: #079DD9;
}
.partner .partner-title h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  font-family: 'Raleway', sans-serif;
  color: #fff;
}
.partner .partner-title p {
  font-size: 20px;
  font-weight: 400;
  padding: 0;
  margin: 0;
  margin-top: 20px;
  text-align: center;
  color: #fff;
  font-family: 'Raleway', sans-serif;
}

.logos {
  overflow: hidden;
  padding: 60px 0;
  background: #079DD9;
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: '';
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 84, 84, 0), #079DD9);
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), #079DD9);
}

.logos-slide {
  display: inline-block;
  animation: 35s slide infinite linear;
}

.logos-slide img {
  width: 150px;
  height: 115px;
  margin: 0 40px;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@media (max-width: 768px) {
  .partner .row.justify-content-center {
    flex-wrap: wrap;
  }

  .partner .col-lg-3 {
    flex-basis: calc(50% - 20px);
    max-width: calc(50% - 20px);
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: #fff;
  background-position: center center;
  background-size: cover;
  position: relative;
}
.testi-title h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  font-family: 'Raleway', sans-serif;
  color: #E16926;
}
.testi-title p {
  font-size: 20px;
  font-weight: 400;
  padding: 0;
  margin: 0;
  margin-top: 20px;
  text-align: center;
  color: #000000;
  font-family: 'Raleway', sans-serif;
  padding-bottom: 35px;
}
.testimonials::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.testimonials .section-header {
  margin-bottom: 40px;
}
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}
.testimonials .testimonial-item {
  text-align: center;
  color: #000000;
}
.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(0, 0, 0, 0.15);
  margin: 0 auto;
  margin-top: 30px;
}
.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #000000;
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #000000;
  margin: 0 0 15px 0;
}
.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(0, 0, 0, 0.4);
  font-size: 26px;
}
.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}
.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: rgb(114, 114, 114);
}
.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: rgba(255, 158, 61, 0.4);
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #079DD9;
}
@media (min-width: 1024px) {
  .testimonials {
    background-attachment: fixed;
  }
}
@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  background: #079DD9;
  padding: 10px 0 0 0;
}

.contact .info {
  width: 100%;
}

.contact .contact-title h2 {
  margin: 0;
  margin-top: 30px;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  font-family: 'Raleway', sans-serif;
  color: #fff;
}

.contact .info img {
  align-items: center;
  margin-bottom: 80px;
  width: 400px;
  height: auto;
}
.contact .info .email,
.contact .info .phone {
  margin-top: 100px;
}
.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #fff;
  color: #079DD9;
}
.contact .email-form {
  width: 70%;
}
.contact .email-form .form-group {
  padding-bottom: 8px;
}

.contact .email-form input,
.contact .email-form textarea {
  border-radius: 8px;
  box-shadow: none;
  font-size: 14px;
}
.contact .email-form input {
  height: 44px;
}

.contact .email-form button[type='submit'] {
  background: #079DD9;
  border: 0;
  outline: 2px solid white;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
  margin-top: 10px;
}
.contact .email-form button[type='submit']:hover {
  background: #fff;
  color: #079DD9;
}

@media (max-width: 768px) {
  .contact .row {
    flex-direction: column;
  }

  .contact .col-lg-5,
  .contact .col-lg-7 {
    width: 100%;
  }

  .contact .info img {
    display: none;
  }

  .contact .email-form {
    width: 90%;
  }

  .contact .email-form button[type='submit'] {
    margin-top: 10px;
    margin-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #ffffff;
  padding: 0 0 30px 0;
  color: #000000;
  font-size: 14px;
  background: #079DD9;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}
#footer .footer-top .footer-info {
  margin-bottom: 15px;
  background: #079DD9;
  color: #fff;
  text-align: center;
  padding: 30px 20px;
  border-radius: 20px;
}
#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top .footer-info a {
  color: #fff;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: 'Raleway', sans-serif;
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  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: #E16926;
  color: #fff;
  text-decoration: none;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 700;
  color: #079DD9;
  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;
  color: #000000;
  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: #079DD9;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  color: #E16926;
}

#footer .copyright {
  display: flex;
  justify-content: space-between;
  text-align: center;
  padding-top: 30px;
  color: #fff;
}

.left-text {
  float: left;
}

.right-text {
  float: right;
}

@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
}
