/* Colors */
:root {
  --color-default: #222222;
  --color-primary: #6cbebf;
  --color-secondary: #453c41;
}

/* Fonts */
:root {
  --font-primary: "Montserrat", sans-serif;
}

/*
  # Scrollbar
  */
body::-webkit-scrollbar {
  width: 0.5em;
}

body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
  background-color: var(--color-primary);
}

/*
  # General
  */
body {
  font-family: var(--font-primary);
  color: var(--color-default);
}
body main {
  padding: 0 1rem;
}
body a {
  color: var(--color-primary);
  text-decoration: none;
}
body a:hover {
  color: #00b6a1;
  text-decoration: none;
}
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  font-family: var(--font-primary);
  color: var(--color-primary);
  font-weight: 600 !important;
}
body p,
body a,
body span {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 18px;
  line-height: 2;
}

/*
  # Sections & Header
  */
section {
  padding: 90px 0;
  overflow: hidden;
}
section .sections-bg {
  background-color: #f6f6f6;
}
section .section-header {
  padding-bottom: 35px;
}
section .section-header h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}
section .section-header h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  bottom: 0;
  margin: auto;
}
section .section-header p {
  margin-bottom: 0;
  color: #6f6f6f;
}

/*
  # Hero Section
  */
.hero {
  width: 100%;
  position: relative;
  background: var(--color-primary);
}
.hero h2, .hero h3, .hero p, .hero span {
  color: #fff;
  line-height: 1.5;
}
.hero h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero p {
  font-weight: 400;
  margin-bottom: 30px;
  letter-spacing: 1.5px;
}
.hero .quotes {
  line-height: 0.8;
  margin-bottom: 2rem;
}
.hero .quotes h3 {
  margin: 0;
}
.hero .quotes span {
  color: var(--color-secondary);
}
.hero .btn-get-started {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 40px;
  border-radius: 10px;
  transition: 0.3s;
  color: #fff;
  background: var(--color-secondary);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  margin-top: 2rem;
}
.hero .btn-get-started:hover {
  border-color: #53b7b8;
}
@media (min-width: 1365px) {
  .hero .hero {
    background-attachment: fixed;
  }
}
@media (max-width: 640px) {
  .hero .hero h2 {
    font-size: 36px;
  }
  .hero .hero h2 .btn-get-started {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  .hero .hero .icon-boxes:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: calc(50% + 20px);
    background-color: #fff;
  }
}

/*
  # Scroll top button
  */
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  transition: all 0.4s;
}
.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}
.scroll-top i:hover {
  color: var(--color-primary);
}
.scroll-top:hover {
  background: var(--color-secondary);
}
.scroll-top .active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*
  # Preloader
  */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--color-primary);
}
#preloader ul {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
  display: flex;
}
#preloader ul li {
  list-style: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  -webkit-animation: grow 1.6s ease-in-out infinite;
          animation: grow 1.6s ease-in-out infinite;
}

/* Define animation */
@-webkit-keyframes grow {
  0%, 40%, 100% {
    transform: scale(0.2);
  }
  20% {
    transform: scale(1);
  }
}
@keyframes grow {
  0%, 40%, 100% {
    transform: scale(0.2);
  }
  20% {
    transform: scale(1);
  }
}
/* Define li properties */
#preloader ul li:nth-child(1) {
  -webkit-animation-delay: -1.4s;
          animation-delay: -1.4s;
  background: #ffff00;
  box-shadow: 0 0 50px #ffff00;
}

#preloader ul li:nth-child(2) {
  -webkit-animation-delay: -1.2s;
          animation-delay: -1.2s;
  background: #76ff03;
  box-shadow: 0 0 50px #76ff03;
}

#preloader ul li:nth-child(3) {
  -webkit-animation-delay: -1s;
          animation-delay: -1s;
  background: #f06292;
  box-shadow: 0 0 50px #f06292;
}

#preloader ul li:nth-child(4) {
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s;
  background: #4fc3f7;
  box-shadow: 0 0 50px #4fc3f7;
}

/*
  # Disable aos animation delay on mobile devices
  */
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*
  # Header
  */
.topbar {
  background: #000000;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  padding: 0;
}
.topbar .contact-info i {
  font-style: normal;
  color: #00b6a1;
  line-height: 0;
  padding-right: 0.5rem;
}
.topbar .contact-info i i a {
  line-height: 0;
  transition: 0.3s;
}
.topbar .contact-info i i a i span {
  padding-left: 5px;
  color: #fff;
}
.topbar .contact-info i i a:hover {
  color: #fff;
  text-decoration: underline;
}
.topbar .social-links {
  display: flex;
  align-items: center;
}
.topbar .social-links a {
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}
.topbar .social-links a:hover {
  color: #fff;
}
@media (max-width: 575px) {
  .topbar .topbar .contact-info i a,
.topbar .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header {
  transition: all 0.5s;
  z-index: 997;
  height: 90px;
  background-color: #53b7b8;
}
.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}
.header .logo h1 {
  font-size: 25px;
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #fff;
  font-family: var(--font-primary);
}
.header .logo h1 span {
  color: #fed766;
}

.sticked-header-offset {
  margin-top: 70px;
}

.sticked {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 70px;
  box-shadow: 2px 20px 20px rgba(0, 0, 0, 0.1);
}

a {
  text-decoration: none;
}

section {
  scroll-margin-top: 50px;
}

/*
  # Desktop Navigation
  */
.navbar {
  position: fixed;
}

@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }
  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navbar li {
    position: relative;
  }
  .navbar > ul > li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }
  .navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    color: #ffffff !important;
    white-space: nowrap;
    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: var(--color-secondary);
    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: 100%;
  }
  .navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
    color: #fff;
  }
  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #334657;
    transition: 0.3s;
    border-radius: 4px;
  }
  .navbar .dropdown ul li {
    min-width: 200px;
  }
  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
    color: #fff;
  }
  .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: var(--color-secondary);
  }
  .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 (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}
@media (min-width: 1280px) {
  .mobile-nav-show,
.mobile-nav-hide {
    display: none;
  }
}
/*
  # Mobile Navigation
  */
@media (max-width: 1279px) {
  .navbar {
    position: fixed !important;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }
  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: var(--color-primary);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }
  .navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    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: #fff;
  }
  .navbar .getstarted,
.navbar .getstarted:focus {
    background: var(--color-primary);
    padding: 8px 20px;
    border-radius: 4px;
    margin: 15px;
    color: #fff;
  }
  .navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
    color: #fff;
    background: rgba(0, 131, 116, 0.8);
  }
  .navbar .dropdown ul,
.navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    background-color: #102433;
  }
  .navbar .dropdown > .dropdown-active,
.navbar .dropdown .dropdown > .dropdown-active {
    display: block;
    border-radius: 10px;
  }
  .mobile-nav-show {
    color: rgba(255, 255, 255, 0.6);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-right: 10px;
  }
  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }
  .mobile-nav-active {
    overflow: hidden;
  }
  .mobile-nav-active .navbar {
    right: 0;
  }
  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(28, 49, 68, 0.8196078431);
    z-index: 9996;
  }
}
/*
  # About
  */
.about h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
  font-family: var(--font-primary);
}

.section-header p,
.intro p,
.start {
  font-family: var(--font-primary);
  color: var(--color-default);
  font-size: 18px;
  font-weight: 500;
}

.intro {
  font-size: 18px;
}

.start {
  font-weight: bold;
}

.hero.aboutme h1,
.hero.aboutme p {
  color: #fff;
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
/*
  # Classes Section
  */
.classes .btn-get-started {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 40px;
  border-radius: 10px;
  transition: 0.3s;
  color: #fff;
  background: var(--color-primary);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  margin-top: 2rem;
}

.trial {
  padding-top: 2rem;
  font-style: italic;
}

#classes a {
  text-decoration: none;
}

#classes a h3 i {
  font-size: 24px;
}

#classes a h3 {
  font-size: 22px;
  border-bottom: 1px solid var(--color-primary);
}

/*
  # Customer Review
  */
.cr .cr-wind {
  padding-left: 10px;
}

.cr .cr-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 30px 10px;
  box-shadow: 0px 0 15px rgba(0, 0, 0, 0.1);
  position: relative;
  background: #fff;
  border-radius: 10px;
}

.cr .cr-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  margin-right: 15px;
}

.cr .cr-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #000;
}

.cr .cr-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.cr .cr-item .stars {
  margin: 10px 0;
}

.cr .cr-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.cr .cr-item .quote-icon-left,
.cr .cr-item .quote-icon-right {
  color: var(--color-primary);
  font-size: 26px;
  line-height: 0;
}

.cr .cr-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.cr .cr-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.cr .cr-item p {
  font-style: italic;
  font-family: var(--font-primary);
  margin: 15px auto 15px auto;
  font-weight: 600;
}

.cr .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.cr .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 1;
}

.cr .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

@media (max-width: 767px) {
  .cr .cr-wind {
    padding-left: 0;
  }
  .cr .cr-item {
    padding: 30px;
    margin: 15px;
  }
  .cr .cr-item .testimonial-img {
    position: static;
    left: auto;
  }
}
/*
  # Pricing Section
  */
.pricing .pricing-item {
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(108, 117, 125, 0.15);
  background: #fff;
  height: 100%;
  position: relative;
  border-radius: 15px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 30px;
  color: #555555;
  text-align: center;
}

.pricing .icon {
  margin: 30px auto 30px auto;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  transform-style: preserve-3d;
}

.pricing .icon i {
  color: var(--color-default);
  font-size: 28px;
  transition: ease-in-out 0.3s;
  line-height: 0;
}

.pricing h4 {
  font-size: 48px;
  color: var(--color-secondary);
  font-weight: 700;
  font-family: var(--font-secondary);
  margin-bottom: 0;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: rgba(108, 117, 125, 0.8);
  font-size: 18px;
  font-weight: 400;
}

.pricing ul {
  padding: 0;
  margin: 0;
  list-style: none;
  color: #6c757d;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: rgba(108, 117, 125, 0.5);
}

.pricing ul .na i {
  color: rgba(108, 117, 125, 0.5);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  display: inline-block;
  padding: 10px 40px;
  border-radius: 50px;
  color: var(--color-primary);
  border: 1px solid rgba(0, 131, 116, 0.2);
  transition: none;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-primary);
  transition: 0.3s;
}

.pricing .buy-btn:hover {
  background: var(--color-primary);
  color: #fff;
}

.pricing .featured {
  z-index: 10;
}

/*
  # Frequently Asked Questions Section
  */
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.faq .content p {
  font-size: 15px;
  color: #6c757d;
}

.faq .accordion-item {
  border: 0;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
}

.faq .accordion-item:last-child {
  margin-bottom: 0;
}

.faq .accordion-collapse {
  border: 0;
}

.faq .accordion-button {
  padding: 20px 50px 20px 20px;
  font-weight: 600;
  border: 0;
  font-size: 18px;
  line-height: 24px;
  color: var(--color-default);
  text-align: left;
  background: #fff;
  box-shadow: none;
  border-radius: 10px;
}

.faq .accordion-button .num {
  padding-right: 10px;
  font-size: 20px;
  line-height: 0;
  color: var(--color-primary);
}

.faq .accordion-button:not(.collapsed) {
  color: var(--color-primary);
  border-bottom: 0;
  box-shadow: none;
}

.faq .accordion-button:after {
  position: absolute;
  right: 20px;
  top: 20px;
}

.faq .accordion-body {
  padding: 0 40px 30px 45px;
  border: 0;
  border-radius: 10px;
  background: #fff;
  box-shadow: none;
}

/*
  # Contact Section
  */
.contact .container {
  display: flex;
}
@media (max-width: 768px) {
  .contact .container {
    display: block;
  }
}
.contact .section-header {
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .contact .section-header {
    display: block;
  }
}
.contact .info-container {
  background-color: var(--color-primary);
  height: 100%;
  padding: 20px;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
}
.contact .info-container .info-item {
  width: 100%;
  background-color: #fff;
  margin-bottom: 20px;
  padding: 20px;
  color: #fff;
}
.contact .info-container .info-item .info-item:last-child {
  margin-bottom: 0;
}
.contact .info-container .info-item h4 {
  padding: 0;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}
.contact .info-container .info-item i {
  font-size: 20px;
  color: var(--color-primary);
  float: left;
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}
.contact .info-container .info-item i:hover {
  background: #fff;
  color: var(--color-primary);
}
.contact .info-container .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: var(--color-primary);
}
.contact .info-container a {
  overflow-wrap: anywhere;
}
.contact form input, .contact form textarea, .contact form button {
  width: 100%;
  margin: 1rem 0;
  border-radius: 1rem;
  outline-color: var(--color-primary);
  box-shadow: 0 3px 20px -2px rgba(108, 117, 125, 0.15);
}
.contact form button {
  background: var(--color-secondary);
}

button:disabled, button[disabled] {
  background-color: #cccccc;
  cursor: not-allowed !important;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*
  # Footer
  */
.footer {
  font-size: 14px;
  background-color: var(--color-primary);
  padding: 50px 0;
  color: white;
  position: absolute;
  /* bottom: 0; */
  left: 0;
  right: 0;
}

.footer .footer-info .logo {
  line-height: 0;
  margin-bottom: 25px;
}

.footer .footer-info .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-info .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  font-family: var(--font-primary);
}

.footer .footer-info p {
  font-size: 14px;
  font-family: var(--font-primary);
}

.footer .social-links {
  margin-left: 1rem;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #fff;
  border-color: #fff;
}

.footer h2 {
  color: var(--color-secondary);
  margin-right: 1rem !important;
}

.footer h4 {
  font-size: 16px;
  position: relative;
  color: var(--color-secondary);
}

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

.footer .footer-links a {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links strong i {
  padding-right: 2px;
  color: rgba(0, 131, 116, 0.8);
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links strong li {
  display: flex;
  align-items: center;
}

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

.footer .footer-links strong a,
.footer-contact strong {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  margin-left: 2rem;
}

.footer .footer-links strong a:hover {
  color: #fff;
}

.footer .footer-contact p {
  line-height: 26px;
}

.footer .copyright {
  text-align: center;
}

.footer .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
}

.footer .credits a {
  color: #fff;
}/*# sourceMappingURL=main.css.map */