@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Jost:ital,wght@0,100..900;1,100..900&family=Prompt:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&display=swap");
* {
  transition: transform 0.3s ease-in-out;
}

p, a, ul, li {
  font-size: 14px;
}

#whatsapp-widget .chat-header,
#whatsapp-widget .chat-content,
#whatsapp-widget .message-input {
  position: fixed;
  right: 20px;
  width: 300px;
  background-color: #e5ddd5;
  z-index: 10003;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}
#whatsapp-widget .chat-header {
  top: calc(100% - 420px);
  height: 60px;
  background-color: #075e54;
  color: white;
  padding: 10px;
  display: none;
  align-items: center;
  border-radius: 12px 12px 0 0;
}
#whatsapp-widget .chat-header .avatar-container {
  position: relative;
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
#whatsapp-widget .chat-header img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
#whatsapp-widget .chat-header .online-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  background-color: #25d366;
  border-radius: 50%;
  border: 2px solid #075e54;
}
#whatsapp-widget .chat-header .chat-header-info {
  flex-grow: 1;
}
#whatsapp-widget .chat-header span {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
  color: #FFF;
}
#whatsapp-widget .chat-header .online-status {
  font-size: 12px;
}
#whatsapp-widget .chat-header .close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s;
}
#whatsapp-widget .chat-header .close-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
#whatsapp-widget .chat-content {
  top: calc(100% - 360px);
  height: 300px;
  padding: 20px;
  overflow-y: auto;
  display: none;
}
#whatsapp-widget .chat-content .message {
  max-width: 80%;
  padding: 8px 12px;
  margin-bottom: 10px;
  border-radius: 7.5px;
  position: relative;
  word-wrap: break-word;
}
#whatsapp-widget .chat-content .message.received {
  background-color: #ffffff;
  align-self: flex-start;
}
#whatsapp-widget .chat-content .message.sent {
  background-color: #dcf8c6;
  align-self: flex-end;
  margin-left: auto;
}
#whatsapp-widget .message-input {
  bottom: 20px;
  height: 60px;
  display: none;
  padding: 10px;
  background-color: #f0f0f0;
  border-radius: 0 0 12px 12px;
}
#whatsapp-widget .whatsapp-btn {
  background-color: #25d366;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 12px;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
#whatsapp-widget .whatsapp-btn:hover {
  background-color: #128c7e;
}
#whatsapp-widget .typing-indicator {
  background-color: #e5ddd5;
  padding: 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 10px;
}
#whatsapp-widget .typing-indicator span {
  height: 10px;
  width: 10px;
  float: left;
  margin: 0 1px;
  background-color: #9e9ea1;
  display: block;
  border-radius: 50%;
  opacity: 0.4;
}
#whatsapp-widget .typing-indicator span:nth-of-type(1) {
  animation: 1s blink infinite 0.3333s;
}
#whatsapp-widget .typing-indicator span:nth-of-type(2) {
  animation: 1s blink infinite 0.6666s;
}
#whatsapp-widget .typing-indicator span:nth-of-type(3) {
  animation: 1s blink infinite 0.9999s;
}
@keyframes blink {
  50% {
    opacity: 1;
  }
}
#whatsapp-widget .chat-icon {
  position: fixed;
  bottom: 90px;
  right: 10px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 10004;
  animation: wave 2s infinite;
}
#whatsapp-widget .chat-icon img {
  width: 35px;
  height: 35px;
}
@keyframes wave {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.supportive-text {
  color: #000000;
  font-size: 22px;
  font-family: "Dancing Script";
  font-style: normal;
  font-weight: 400;
  text-align: center;
  line-height: 28px;
  text-transform: capitalize;
  margin-bottom: 0;
}

h2 {
  color: #000000;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  text-align: center;
  line-height: 40px;
  text-transform: capitalize;
}
h2 span {
  color: #3B9914;
}

.justify-text {
  text-align: justify;
  margin: 0;
}

header {
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}
header .navbar {
  background-color: rgba(23, 23, 23, 0.6);
}
header .navbar .navbar-brand {
  color: #FFF;
  margin: 0;
}
header .navbar .navbar-brand img {
  width: 2.2rem;
}
header .navbar .navbar-brand span span {
  color: #F2E900;
}
header .navbar .navbar-toggler {
  color: #FFF;
}
header .navbar .offcanvas {
  width: 80%;
  background-color: #171717;
}
header .navbar .offcanvas .offcanvas-header .offcanvas-title {
  color: #FFF;
  font-size: 15px;
}
header .navbar .offcanvas .offcanvas-header .offcanvas-title span {
  color: #F2E900;
}
header .navbar .offcanvas .offcanvas-header .btn-close {
  border-radius: 50px;
  background-color: #F2E900;
}
header .navbar .offcanvas .offcanvas-body .navbar-nav {
  line-height: 30px;
}
header .navbar .offcanvas .offcanvas-body .navbar-nav .nav-item {
  margin: 0;
}
header .navbar .offcanvas .offcanvas-body .navbar-nav .nav-item .nav-link {
  font-family: "Jost";
  color: #FFF;
  text-transform: uppercase;
}
header .navbar .offcanvas .offcanvas-body .navbar-nav .nav-item:hover .nav-link {
  color: #F2E900;
}
header .navbar .offcanvas .offcanvas-body .navbar-nav .nav-item:hover .nav-link::after {
  content: "";
  display: block;
}

#hero {
  position: relative;
  top: 0;
  width: 100%;
  height: 250px;
}
#hero .hero-content {
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
#hero h1 {
  color: #FFF;
  text-align: center;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
}

#hero, #homeHero {
  height: 50vh;
  /* Add the overlay */
}
#hero img, #homeHero img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
#hero::before, #homeHero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

/*===========================================================================
HOME PAGE STARTS
=============================================================================*/
#homePage #homeHero {
  position: relative;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
#homePage #homeHero .homehero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: inherit;
}
#homePage #homeHero h1 {
  color: #FFF;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 36px;
  margin: 0;
}
#homePage #homeHero p {
  text-align: center;
  font-family: "Jost";
  color: #FFF;
  font-size: 15px;
  font-style: normal;
  font-weight: 200;
  line-height: 24px;
}
#homePage #homeHero a {
  display: inline-block;
  padding: 14px 20px;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
  text-decoration: none;
  text-transform: uppercase;
  border: 2px solid #FFF;
}
#homePage #homeHero a:hover {
  background-color: #F2E900;
  color: #171717;
  border: 1.475px solid #F2E900;
}
#homePage #welcome .welcome-intro {
  padding: 50px;
  background-color: #CBCA7B;
  height: 100%;
  border-radius: 0px 0px 0px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#homePage #welcome .welcome-intro h2 {
  margin: 0;
  text-align: left;
  line-height: 36px;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 18px;
}
#homePage #welcome .welcome-intro p {
  margin: 0;
}
#homePage #welcome .welcome-details {
  padding: 30px 40px;
  background-color: #F7F7F7;
}
#homePage #welcome .welcome-details span {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
#homePage #welcome .welcome-details span h3 {
  margin: 0 0 0 5px;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 0;
}
#homePage #welcome .welcome-details ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
#homePage #welcome .welcome-details ul li:not(:last-child) {
  margin-bottom: 25px;
}
#homePage #welcome .welcome-details p {
  margin: 0;
}
#homePage #booking form #requiredVehicles {
  display: flex;
  flex-wrap: wrap;
}
#homePage #booking form #requiredVehicles .form-check {
  flex: 2 50%;
}
#homePage #getLicense a {
  display: inline-block;
  padding: 14px 20px;
  color: #63AB45;
  text-align: center;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
  text-decoration: none;
  text-transform: uppercase;
  border: 2px solid #63AB45;
}
#homePage #getLicense a:hover {
  background-color: #63AB45;
  color: #FFF;
  border: 2px solid #63AB45;
}
#homePage #services {
  overflow: hidden;
}
#homePage #services .container .service-card {
  overflow: hidden;
  position: relative;
  border: 0;
  overflow: hidden;
}
#homePage #services .container .service-card .card-head {
  overflow: hidden;
}
#homePage #services .container .service-card .card-head:hover .card-img-top {
  transform: scale(1.1);
}
#homePage #services .container .service-card .card-body {
  padding: 9px 0px 0px 17px;
}
#homePage #services .container .service-card .card-body .card-title {
  font-size: 19px;
  font-weight: 600;
  text-transform: capitalize;
}
#homePage #services .container .service-card .card-body .card-title::before {
  content: "";
  position: absolute;
  left: 0px;
  height: 50%;
  width: 4px;
  background-color: #171717;
}
#homePage #specials {
  background-color: #FFF;
  overflow: hidden;
}
#homePage #specials .container .col {
  display: flex;
  justify-content: center;
}
#homePage #specials .container .col .specials-card {
  overflow: hidden;
  border: none;
  height: 300px;
  width: 400px;
}
#homePage #specials .container .col .specials-card img {
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
#homePage #specials .container .col .specials-card .card-body {
  border-radius: 8px;
  padding: 30px;
  justify-content: center;
  position: absolute;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  color: #FFF;
  text-align: center;
  flex-direction: column;
  background-color: rgba(72, 72, 72, 0.7);
}
#homePage #specials .container .col .specials-card .card-body .card-title {
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 10px;
}
#homePage #specials .container .col .specials-card .card-body p {
  font-weight: 200;
}
#homePage #specials .container .col .specials-card .card-body p a {
  text-decoration: none;
}
#homePage #specials .container .col .specials-card .card-body p a span {
  color: #4bff00;
}
#homePage #specials .container .col:hover img {
  transform: scale(1.1);
}
#homePage #team .container-fluid {
  overflow: hidden;
  background-color: #F7F7F7;
}
#homePage #team .container-fluid .team-left-section {
  background-color: #171717;
  border-bottom-right-radius: 80px;
  padding: 80px 35px;
  color: #FCFCFC;
  font-style: normal;
}
#homePage #team .container-fluid .team-left-section h2 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 40px;
  text-transform: capitalize;
  color: #FFF;
  text-align: left;
}
#homePage #team .container-fluid .team-right-section .swiper {
  width: 100%;
  height: 100%;
}
#homePage #team .container-fluid .team-right-section .swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 18px;
}
#homePage #team .container-fluid .team-right-section .swiper .swiper-slide img {
  width: 70%;
  display: flex;
  justify-content: center;
  left: 50%;
  padding: 30px 0px;
}
#homePage #team .container-fluid .team-right-section .swiper .swiper-pagination-bullet {
  background: #000;
}
#homePage #team .container-fluid .team-right-section .swiper .swiper-pagination-bullet-active {
  border: 2px solid #787878;
  background: #FFF;
  height: 9px;
  width: 9px;
}
#homePage #testimonials .card {
  border: 0;
  text-align: center;
}
#homePage #testimonials .card a {
  text-decoration: none;
}
#homePage #testimonials .card .card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
#homePage #testimonials .card .card-body p {
  color: #787878;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 0;
}
#homePage #testimonials .card .card-footer {
  background: transparent;
  margin: 10px 0;
  border: 0;
}
#homePage #testimonials .card .card-footer p {
  color: #000000;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
}
#homePage #testimonials .card .card-footer ::after, #homePage #testimonials .card .card-footer ::before {
  content: "-";
  margin-left: 5px;
  margin-right: 5px;
}
#homePage #testimonials .swiper-pagination-bullet-active {
  border: 1px solid #3CB371;
  background: #FFF;
  height: 12px;
  width: 12px;
}
#homePage #memories {
  overflow: hidden;
}
#homePage #memories .memories-container {
  background-color: #171717;
}
#homePage #memories .memories-container .row:first-child .supportive-text {
  color: #FFF;
}
#homePage #memories .memories-container .row:first-child h2 {
  color: #FFF;
}
#homePage #memories .memories-container .row:nth-child(2) .col {
  display: flex;
  align-items: center;
  justify-content: center;
}
#homePage #memories .memories-container .row:nth-child(2) img {
  border-radius: 8px;
  width: 100%;
}
#homePage #memories .memories-container .row:nth-child(2) img:hover {
  transform: scale(1.05);
}
#homePage #memories::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 26px;
  background-image: url("../images/shapes/scratch-top.svg");
  background-size: cover;
  border: 0;
  transform: translateY(-25px);
}
#homePage #memories .points-container {
  overflow: hidden;
}
#homePage #memories .points-container .img-container {
  display: flex;
  align-items: center;
}
#homePage #memories .points-container .img-container img {
  width: 300px;
}
#homePage #memories .points-container .img-container::before {
  content: "";
  position: absolute;
  left: 65%;
  width: 18%;
  height: 27%;
  background-image: url("../images/points-section-certificate.webp");
  background-size: contain;
  background-repeat: no-repeat;
  border: 0;
  transform: translateY(-87px);
}
#homePage #memories .points-container .facts-container img {
  height: 22px;
}
#homePage #memories .points-container .facts-container ul {
  display: flex;
  flex-direction: column;
}
#homePage #memories .points-container .facts-container ul li {
  line-height: 24px;
  font-size: 18px;
  font-weight: 600;
}
#homePage #memories .points-container .facts-container ul li p {
  font-weight: normal;
  font-size: 14px;
}
#homePage #faq {
  overflow: hidden;
}
#homePage #faq .accordion .accordion-item {
  margin: 20px 0;
  border-radius: 8px;
  background: #FFF;
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.08);
}
#homePage #faq .accordion .accordion-item .accordion-header {
  font-size: 16px;
  border-radius: 8px;
  background: #FFF;
}
#homePage #faq .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background-color: #FFF;
  box-shadow: none;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
#homePage #faq .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) .accordion-header {
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.08);
}
#homePage #faq .accordion .accordion-item .accordion-header .accordion-button:is(.collapsed) {
  border-radius: 8px;
}
#homePage #faq .accordion .accordion-item .accordion-header .accordion-button:is(.collapsed) .accordion-header {
  box-shadow: none;
}
#homePage #faq .accordion .accordion-item .accordion-body {
  font-size: 14px;
  color: #787878;
}

/*===========================================================================
HOME PAGE ENDS
=============================================================================*/
/*===========================================================================
TOUR PAGE STARTS
=============================================================================*/
#tourPage #pearl .container .tour-card {
  border: 0;
}
#tourPage #pearl .container .tour-card .card-head {
  overflow: hidden;
}
#tourPage #pearl .container .tour-card .card-head:hover .card-img-top {
  transform: scale(1.1);
}
#tourPage #pearl .container .tour-card .card-body {
  padding: 14px 3px;
}
#tourPage #pearl .container .tour-card .card-body .card-title {
  font-size: 19px;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0px 0 0px 0;
}
#tourPage #pearl .container .tour-card .card-body .card-title::before {
  content: "";
  display: inline-block;
  height: 1px;
  width: 50px;
  background-color: #171717;
  transform: translateY(-6px);
  margin-right: 10px;
}
#tourPage #vietnam {
  overflow: hidden;
}
#tourPage #vietnam .container .tour-card {
  overflow: hidden;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
#tourPage #vietnam .container .tour-card .card-head {
  overflow: hidden;
}
#tourPage #vietnam .container .tour-card .card-head:hover .card-img-top {
  transform: scale(1.1);
}
#tourPage #vietnam .container .tour-card .card-img-top {
  min-height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2;
}
#tourPage #vietnam .container .tour-card .card-body .card-title {
  font-size: 19px;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0px 0 0px 0;
}
#tourPage #vietnam .container .tour-card .card-body .card-title::before {
  content: "";
  display: inline-block;
  height: 1px;
  width: 50px;
  background-color: #171717;
  transform: translateY(-6px);
  margin-right: 10px;
}
#tourPage #ourFleet {
  overflow: hidden;
}
#tourPage #ourFleet h2 {
  font-size: 30px;
  line-height: 46px;
}
#tourPage #ourFleet h2::after {
  content: "";
  display: block;
  height: 25px;
  margin: 0 auto;
  background-image: url("../images/icons/decorator.svg");
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(-5px);
}
#tourPage #ourFleet .container .fleet-card {
  overflow: hidden;
  border: none;
}
#tourPage #ourFleet .container .fleet-card .card-head {
  overflow: hidden;
}
#tourPage #ourFleet .container .fleet-card .card-head:hover .card-img-top {
  transform: scale(1.1);
}
#tourPage #ourFleet .container .fleet-card .card-head .card-img-top {
  min-height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2;
}
#tourPage #ourFleet .container .fleet-card .card-body .card-title {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 21.825px;
  margin: 10px 0 15px 0;
}
#tourPage #ourFleet .container .fleet-card .card-body .card-title::before {
  content: "";
  display: inline-block;
  height: 1px;
  width: 30px;
  background-color: #171717;
  transform: translateY(-6px);
  margin-right: 10px;
}
#tourPage #ourFleet .container .fleet-card .card-body table td {
  color: #000000;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-bottom: 10px;
}
#tourPage #ourFleet .container .fleet-card .card-body table img {
  width: 20px;
}

/*===========================================================================
TOUR PAGE ENDS
=============================================================================*/
/*===========================================================================
GALLERY PAGE STARTS
=============================================================================*/
#galleryPage #galleryContent {
  overflow: hidden;
}
#galleryPage #galleryContent img {
  border-radius: 12px;
}
#galleryPage #galleryContent img:hover {
  transform: scale(1.04);
}

/*===========================================================================
GALLERY PAGE ENDS
=============================================================================*/
/*===========================================================================
ABOUT PAGE STARTS
=============================================================================*/
#aboutPage #aboutContent {
  overflow: hidden;
}

/*===========================================================================
ABOUT PAGE ENDS
=============================================================================*/
/*===========================================================================
CONTACT PAGE STARTS
=============================================================================*/
#contactPage #contactContent {
  overflow: hidden;
}
#contactPage #contactContent .img-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

/*===========================================================================
CONTACT PAGE ENDS
=============================================================================*/
/*===========================================================================
LICENSE PAGE STARTS
=============================================================================*/
#licensePage #applyForLicenseInfo {
  overflow: hidden;
}

/*===========================================================================
LICENSE PAGE ENDS
=============================================================================*/
footer {
  background-color: #171717;
  color: #FFF;
}
footer .row:first-child {
  padding: 50px 0 50px 0;
  border-bottom: 1px solid #333935;
}
footer .row:first-child .footer-logo {
  display: flex;
  align-items: center;
}
footer .row:first-child .footer-logo img {
  width: 2.4rem;
}
footer .row:first-child .footer-logo span {
  color: #F2E900;
}
footer .row:first-child h6 {
  font-style: normal;
  font-weight: 500;
  line-height: 26.4px;
  margin: 0;
  margin-bottom: 15px;
  font-size: 22px;
}
footer .row:first-child p {
  margin: 0;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  color: #FCFCFC;
}
footer .row:first-child ul {
  margin: 0;
}
footer .row:first-child ul li {
  font-style: normal;
  font-weight: 400;
  line-height: 35px;
  font-size: 15px;
}
footer .row:first-child ul li a {
  color: #FFF;
  text-decoration: none;
}
footer .row:first-child #footer-social-list li a {
  display: flex;
  width: 37px;
  height: 37px;
  padding: 15px;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  border: 1px solid #000;
  background: #333935;
  color: #999;
}
footer .row:first-child #footer-contact-list li a {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
}
footer .row:last-child p {
  color: #FCFCFC;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
}
footer .row:last-child p a {
  color: #FFF;
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */