@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");
body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.main-btn {
  background: #f47f1f !important;
  color: white !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  padding: 10px 30px !important;
  border-radius: 50px !important;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}
.main-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #213e62;
  z-index: -1;
  transition: width 0.4s ease;
  border-radius: 50px !important;
}
.main-btn:hover::before {
  width: 100%;
}
.main-btn:hover {
  color: white !important;
  border: unset;
}

.plain-btn {
  color: #f47f1f !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  position: relative !important;
  display: inline-block;
  transition: 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.plain-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 2px;
  background: #f47f1f;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.plain-btn:hover::after {
  transform: scaleX(1);
}

.main-title {
  text-align: center;
  color: #213e62;
  font-size: 26px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 30px;
  margin-top: 30px;
}

.decorated-heading {
  position: relative;
  padding-bottom: 20px;
}
.decorated-heading::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 1px;
  background: #707070;
  bottom: 3px;
  left: 0;
}
.decorated-heading::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 8px;
  border: 1px solid #707070;
  border-radius: 10px;
  bottom: 0;
  left: 0;
  background: #fff;
  z-index: 9;
}

.container {
  max-width: 1140px;
}

.input-icon {
  position: relative;
}
.input-icon i {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
  pointer-events: none;
}
.input-icon input {
  width: 100%;
  padding-left: 30px;
  min-height: 50px !important;
}

.navbar {
  background-color: #213e62;
  height: 75px;
  z-index: 99;
  max-width: 1366px !important;
  margin: 0 auto;
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  padding: 0px 35px !important;
}
.navbar .navbar-brand img {
  max-height: 50px;
  max-width: 200px;
}
.navbar .navbar-collapse {
  justify-content: end;
}
.navbar .nav-link {
  color: white !important;
  padding: 0 30px !important;
}
.navbar .navbar-icons i {
  padding: 0.5rem 1rem;
  color: white !important;
  font-size: 18px;
}
.navbar .navbar-list {
  display: flex;
  align-items: center;
}
.navbar .search-form {
  display: none;
  background: #f47f1f;
  height: 60px;
  position: absolute;
  z-index: 99;
  top: 75px;
  width: 100%;
  left: 0;
}
.navbar .search-form input {
  border: unset;
  background: transparent;
  height: 100%;
  padding: 20px;
  width: 100%;
}
.navbar .search-form input::-moz-placeholder {
  color: #fff;
  font-size: 18px;
}
.navbar .search-form input::placeholder {
  color: #fff;
  font-size: 18px;
}
.navbar .search-form i {
  position: absolute;
  right: 20px;
  top: 30%;
  font-size: 25px;
  color: white;
}
.navbar .search-form.active {
  display: block;
}

#menuIcon {
  position: relative;
  width: 24px;
  height: 24px;
  cursor: pointer;
  display: inline-block;
}
#menuIcon i {
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.7s ease;
}
#menuIcon .plus-icon {
  opacity: 0;
  transform: rotate(90deg) scale(0.5);
}
#menuIcon:hover .icon-bars {
  opacity: 0;
  transform: rotate(-90deg) scale(0.5);
}
#menuIcon:hover .plus-icon {
  opacity: 1;
  transform: rotate(0) scale(1);
}

.sidenav {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: #fff;
  z-index: 999;
  transition: right 0.3s ease;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
}
.sidenav.active {
  right: 0;
}
.sidenav__inner {
  padding: 20px;
}
.sidenav i.fa-x {
  font-size: 20px;
  cursor: pointer;
  margin-bottom: 20px;
  display: block;
  position: absolute;
  left: auto;
  right: 15px;
  top: 40px;
  transform: rotate(0deg) scale(1);
  transition: transform 1.6s ease;
}
.sidenav i.fa-x:hover {
  transform: rotate(360deg) scale(1);
}
.sidenav .sidenav__nav li a {
  position: relative;
  display: inline-block;
  font-size: 1.2rem !important;
  line-height: 1.8;
  color: #5D5D5D;
  text-decoration: none;
  overflow: hidden;
  transition: 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.sidenav .sidenav__nav li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 2px;
  background: #f47f1f;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.sidenav .sidenav__nav li a::before {
  content: attr(value);
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  color: #f47f1f;
  white-space: nowrap;
  overflow: hidden;
  transition: width 0.3s ease;
}
.sidenav .sidenav__nav li a:hover {
  color: transparent;
}
.sidenav .sidenav__nav li a:hover::after {
  transform: scaleX(1);
}
.sidenav .sidenav__nav li a:hover::before {
  width: 100%;
}
.sidenav .sidenav__nav li a.active {
  color: #f47f1f;
}
.sidenav .header-sidenav-sociallist ul {
  list-style: none;
  display: flex;
  padding: 0px;
  gap: 10px;
}
.sidenav .header-sidenav-sociallist ul i {
  color: #5D5D5D;
  font-size: 30px;
  transition: 0.5s all;
}
.sidenav .header-sidenav-sociallist ul i:hover {
  color: #f47f1f;
}

.hero-section {
  height: 580px;
  max-width: 1366px;
  margin: 0 auto;
  margin-top: 75px;
}
.hero-section .carousel-fade .carousel-item {
  transition: opacity 0.5s ease-in-out !important;
}
.hero-section .carousel-caption {
  right: unset;
  top: 20px;
  left: 5%;
  color: #fff;
  text-align: left;
  width: 60%;
}
.hero-section .carousel-caption h1 {
  font-weight: 900;
  font-size: clamp(24px, 5vw, 48px);
}
.hero-section .carousel-caption p {
  font-weight: 600;
  font-size: clamp(14px, 1.5vw, 18px);
}
.hero-section .carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.track-cards {
  position: relative;
  max-width: 1140px;
  margin: 0 auto !important;
  margin-top: -50px !important;
  padding-bottom: 40px;
  z-index: 9;
}
.track-cards .row {
  justify-content: space-evenly;
}
.track-cards .card-column {
  min-height: 500px;
  max-width: 30% !important;
  background-image: url(../assets/images/cards-border.png);
  background-size: 100% 100%;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 1.2s ease;
}
.track-cards .card-column:hover {
  transform: scale(1.1);
}
.track-cards .card-column h1 {
  color: #213e62;
  margin: 15px 0 30px;
  font-size: 26px;
  font-weight: 700;
  z-index: 99;
}
.track-cards .card-column input, .track-cards .card-column textarea {
  border: 1px solid #6396d5;
  border-radius: 7px;
}
.track-cards .card-column .country-select {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto 5px;
  gap: 10px;
}
.track-cards .card-column .country-select select {
  border: unset !important;
  color: #212529;
  padding: 0.3rem 0.2rem !important;
}
.track-cards .card-column .country-select label {
  position: absolute;
  font-size: 14px;
  color: #212529;
  left: 8px;
  right: auto;
  top: 30px;
  transform: translateZ(0);
  font-variant: all-small-caps;
  font-weight: 500;
}
.track-cards .card-column textarea {
  width: 266px;
  margin: auto 10px;
  padding: 13px 15px;
}
.track-cards .card-column p {
  text-align: center;
  font-size: 15px;
  color: #6c757d;
}
.track-cards .service-center img {
  height: 200px;
  margin-top: -65px;
  padding: 20px 0;
}
.track-cards .service-center p {
  padding: 90px 45px 58px !important;
}
.track-cards .button-group {
  margin-top: 10px;
}
.track-cards .button-group button {
  width: 50px;
  height: 30px;
  font-size: 12px;
}
.track-cards .button-group button.active {
  background-color: #b0d3ff;
}

.services-section {
  min-height: 500px;
  max-height: 1100px;
  position: relative;
}
.services-section img {
  width: 100%;
  height: 650px;
}
.services-section .service-links {
  list-style: none;
  position: absolute;
  top: 22%;
  z-index: 9;
  right: -6%;
  left: auto;
  background-color: #ffffff;
  width: 350px;
  height: 100%;
  max-height: 500px;
  margin: 0;
  transform: translateX(22%) !important;
  padding: 30px;
  box-shadow: 0 38px 48px rgba(185, 132, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.services-section .service-links li {
  cursor: pointer;
  padding: 10px;
  color: #777;
  transition: all 0.3s;
  position: relative;
}
.services-section .service-links li i {
  color: #f47f1f;
}
.services-section .service-links li a {
  color: #4D4D4F;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  z-index: 1;
  width: 100%;
  padding: 10px 0px 10px 0px;
}
.services-section .service-links li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -20%;
  width: 0%;
  height: 100%;
  background: #f47f1f;
  z-index: -1;
  transition: width 0.4s ease;
  background-position: left bottom;
  background-size: 201% 100%;
}
.services-section .service-links li:hover a::before {
  width: 120%;
}
.services-section .service-links li.active a::before {
  width: 120%;
}
.services-section .service-links li:hover a, .services-section .service-links li.active a {
  color: #fff;
}
.services-section .service-links li:hover a i, .services-section .service-links li.active a i {
  display: none;
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1 !important;
  width: auto !important;
  color: #ffffff;
  top: auto !important;
  bottom: -3% !important;
}
.carousel-control-prev .carousel-control-prev-icon,
.carousel-control-prev .carousel-control-next-icon,
.carousel-control-next .carousel-control-prev-icon,
.carousel-control-next .carousel-control-next-icon {
  width: 60px;
  height: 40px;
  background-color: #f47f1f;
  border-radius: 50px;
  background-image: none !important;
  transition: all ease 0.8s;
  position: relative;
  z-index: 99;
  opacity: 1 !important;
  color: transparent;
  margin: 0 7px;
}
.carousel-control-prev .carousel-control-prev-icon .fa-solid,
.carousel-control-prev .carousel-control-next-icon .fa-solid,
.carousel-control-next .carousel-control-prev-icon .fa-solid,
.carousel-control-next .carousel-control-next-icon .fa-solid {
  color: #ffffff !important;
  font-size: 20px;
  position: absolute;
  left: 27%;
  right: 0px;
  top: 11px;
}
.carousel-control-prev .carousel-control-prev-icon:hover,
.carousel-control-prev .carousel-control-next-icon:hover,
.carousel-control-next .carousel-control-prev-icon:hover,
.carousel-control-next .carousel-control-next-icon:hover {
  background-color: #213e62;
}

.carousel-control-prev {
  left: 40% !important;
}

.carousel-control-next {
  right: 45% !important;
}

#hover-prev-icon,
#hover-next-icon {
  display: none !important;
  color: #f47f1f !important;
}

#hover-prev-icon {
  left: 50%;
}

#hover-next-icon {
  left: 10%;
}

.carousel-control-prev .carousel-control-prev-icon:hover {
  width: 70px;
}
.carousel-control-prev .carousel-control-prev-icon:hover #hover-prev-icon {
  display: block !important;
}

.carousel-control-next .carousel-control-next-icon:hover {
  width: 70px;
}
.carousel-control-next .carousel-control-next-icon:hover .fa-solid {
  left: 35%;
}
.carousel-control-next .carousel-control-next-icon:hover #hover-next-icon {
  display: block !important;
}

.industry-sectors {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}
.industry-sectors .row {
  align-items: center;
  justify-content: space-between;
}
.industry-sectors .owl_slider {
  flex: 0 0 55%;
  max-width: 55%;
}
.industry-sectors .owl-carousel .owl-item {
  text-align: center;
}
.industry-sectors .owl-carousel .owl-item .view-image {
  height: 150px;
  width: 204px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.industry-sectors .owl-carousel .owl-item img {
  display: block;
  width: 114px;
  height: 110px;
}
.industry-sectors .owl-carousel .owl-item h1 {
  color: #666666;
  font-size: 16px;
  text-transform: uppercase;
}
.industry-sectors .industry-content {
  flex: 0 0 45%;
  max-width: 45%;
  background-color: #ffffff;
  box-shadow: 0 38px 48px rgba(185, 132, 255, 0.1);
  padding: 40px;
  text-align: center;
}
.industry-sectors .industry-content p {
  color: #666666;
  line-height: 24px;
  font-size: 17px;
  margin: 15px 0 28px;
}

.owl-carousel .owl-nav {
  position: relative;
}
.owl-carousel .owl-prev,
.owl-carousel .owl-next {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1 !important;
  width: auto !important;
  color: #ffffff;
  top: 30px !important;
  bottom: -5% !important;
}
.owl-carousel .owl-prev {
  left: 38% !important;
}
.owl-carousel .owl-next {
  right: 38% !important;
}
.owl-carousel .owl-prev .fa-angles-left, .owl-carousel .owl-prev .fa-angles-right,
.owl-carousel .owl-next .fa-angles-left,
.owl-carousel .owl-next .fa-angles-right {
  width: 60px;
  height: 40px;
  background-color: #f47f1f;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease 0.8s;
  font-size: 20px;
  color: #fff;
}
.owl-carousel .owl-prev .fa-angles-left:hover, .owl-carousel .owl-prev .fa-angles-right:hover,
.owl-carousel .owl-next .fa-angles-left:hover,
.owl-carousel .owl-next .fa-angles-right:hover {
  background-color: #213e62;
  width: 70px;
}

.owl-prev:hover #hover-prev-icon,
.owl-next:hover #hover-next-icon {
  position: absolute;
  display: block !important;
  font-size: 20px;
}

.integrated-solutions .col-12 {
  padding: 50px 0;
}
.integrated-solutions .solution-section {
  margin-right: 10%;
  border-radius: 25px;
  box-shadow: 1px 1px 7px 5px rgba(67, 0, 154, 0.1);
  position: relative;
  height: 275px;
  transition: all 0.5s;
  border: 0px solid transparent;
}
.integrated-solutions .solution-section img {
  width: 100%;
  height: 100%;
  border-radius: 25px;
}
.integrated-solutions .solution-section .solution-content {
  position: absolute;
  background-color: #ffffff;
  bottom: -9%;
  right: -8%;
  width: 330px;
  padding: 15px;
  border-bottom-left-radius: 5px;
  border: 1px solid #ffffff;
  border-bottom-right-radius: 5px;
  transition: all 1s;
  box-shadow: 0 38px 48px rgba(185, 132, 255, 0.1);
}
.integrated-solutions .solution-section .solution-content h1 {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  color: #213e62;
}
.integrated-solutions .solution-section .solution-content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #666;
}
.integrated-solutions .solution-section:hover {
  border: 10px solid white;
  box-shadow: 1px 1px 7px 5px rgba(67, 0, 154, 0.1);
}
.integrated-solutions .solution-section:hover .solution-content {
  box-shadow: 1px 1px 13px 4px rgba(67, 0, 154, 0.3);
  bottom: 15%;
  transition: all 0.5s;
}

.mobile-app {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  background-color: #ffffff;
  width: 100%;
  box-shadow: 0 38px 48px rgba(185, 132, 255, 0.1);
  text-align: center;
  overflow: hidden;
}
.mobile-app h1 {
  font-size: 18px;
  font-weight: 500;
  color: #213e62;
}
.mobile-app h2 {
  font-size: 26px;
  font-weight: 700;
  color: #213e62;
}
.mobile-app p {
  font-size: 17px;
  color: #666666;
  line-height: 24px;
  padding: 10px;
  margin: 0;
}

.footer {
  background-color: #F9F9F9;
  padding: 30px 0 0;
  max-width: 1366px;
  margin: 50px auto 0;
}
.footer .social-icons {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 2rem;
}
.footer .social-icons span {
  font-weight: 500;
  font-size: 16px;
  color: #2A2A2A;
}
.footer .social-icons a {
  text-decoration: none;
}
.footer .social-icons a i {
  color: #5D5D5D;
  font-size: 30px;
  transition: 0.5s all;
}
.footer .social-icons a i:hover {
  color: #f47f1f;
}
.footer .navigation ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .navigation ul li a {
  text-decoration: none;
  color: #666;
  font-size: 15px;
  position: relative;
  padding: 0.5rem 1rem !important;
}
.footer .navigation ul li a:hover {
  color: #f47f1f;
}
.footer .navigation ul li a::after {
  content: "";
  height: 10px;
  width: 1px;
  background: #666;
  position: absolute;
  top: 40%;
  right: 0;
}
.footer .navigation ul li:last-child a::after {
  display: none;
}
.footer .copy-rights {
  background-color: #f47f1f;
  text-align: center;
}
.footer .copy-rights p {
  font-size: 15px;
  font-weight: 600;
  color: white;
  padding: 15px 0px;
  margin: 0px !important;
}

.pages-hero-section {
  position: relative;
  max-width: 1366px;
  height: 260px;
  margin: 0 auto;
  margin-top: 75px;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pages-hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.pages-hero-section h1 {
  color: white;
  font-size: 50px;
  font-weight: bold;
  z-index: 2;
  text-transform: uppercase;
}

.about-bg-image {
  background-image: url("../assets/images/about_us.png");
}

.services-bg-image {
  background-image: url("../assets/images/services/hero-image.png");
}

.contact-bg-image {
  background-image: url("../assets/images/contact-us.png");
  background-size: 100% 175% !important;
}

.FAQ-bg-image {
  background-image: url("../assets/images/FAQ.png");
  height: 280px;
  flex-direction: column;
}
.FAQ-bg-image .input-icon {
  z-index: 2;
  width: 40%;
}
.FAQ-bg-image .input-icon i {
  left: unset;
  right: 20px;
  color: #f47f1f;
}
.FAQ-bg-image .input-icon input {
  border: unset !important;
  border-radius: 10px;
}

.regions-bg-image {
  background-image: url("../assets/images/coverage-regions.png");
}
.regions-bg-image .overlay {
  background: rgba(0, 0, 0, 0.5);
}

.breadcrumb-nav {
  margin: 20px 0px;
}
.breadcrumb-nav .breadcrumb {
  background-color: transparent;
}
.breadcrumb-nav .breadcrumb li {
  color: #213e62;
}
.breadcrumb-nav .breadcrumb li a {
  text-decoration: none;
  color: #213e62;
}
.breadcrumb-nav .breadcrumb li a:hover {
  color: #f47f1f;
}
.breadcrumb-nav .breadcrumb li.active {
  color: #f47f1f;
}

.nav-pills .nav-link {
  font-size: 18px;
  color: #4D4D4F;
  font-weight: 400;
  padding: 15px 10px 15px 20px;
  position: relative;
  width: 100%;
  margin-left: unset;
  transition: all 0.5s;
}
.nav-pills .nav-link i {
  margin-right: 10px;
}
.nav-pills .nav-link.active, .nav-pills .nav-link:hover {
  background-color: #ffe5dd !important;
  color: #f47f1f !important;
  width: 95%;
  margin-left: auto;
}

.tab-content h1 {
  text-align: left;
}
.tab-content p {
  font-weight: 400;
  font-size: 16px;
  color: #4D4D4F;
}

.services-solutions .col-12 {
  padding: 0px;
}
.services-solutions {
  padding-bottom: 6rem;
}
.services-solutions .solution-section {
  box-shadow: unset;
  border-radius: 0;
  height: 300px;
}
.services-solutions .solution-section img {
  border-radius: 0;
  transform: scale(1);
  transition: all 0.5s;
}
.services-solutions .solution-section .solution-content {
  top: 80%;
  bottom: unset;
  right: 4%;
  width: 90%;
  min-height: 180px;
}
.services-solutions .solution-section:hover {
  border: unset;
  box-shadow: unset;
}
.services-solutions .solution-section:hover img {
  transform: scale(1.05);
}
.services-solutions .solution-section:hover .solution-content {
  bottom: unset;
  transition: all 0.5s;
  top: 70%;
}
.services-solutions :nth-child(3) .solution-section, .services-solutions :nth-child(4) .solution-section {
  margin-top: 11rem;
  margin-bottom: 11rem;
}

.contact-info {
  background-color: white;
  box-shadow: 0 38px 48px rgba(185, 132, 255, 0.1);
  padding: 30px;
  height: 100%;
}
.contact-info h1 {
  color: #4D4D4F;
  font-weight: 600;
  margin-bottom: 3rem;
  font-size: 17px;
}
.contact-info p {
  color: #4D4D4F;
  font-size: 16px;
  line-height: 40px;
}
.contact-info p i {
  color: #f47f1f;
  padding-right: 30px;
}

.contact-section {
  margin: 5rem 0px;
}
.contact-section h1 {
  text-align: left;
}
.contact-section .form--underline .form-control {
  border: unset !important;
  border-bottom: 1px solid #ced4da !important;
  border-radius: unset !important;
}
.contact-section p {
  font-weight: 400;
  color: #4D4D4F;
  font-size: 18px;
}

.custom-file-label::after {
  background-color: #f47f1f !important;
  color: white !important;
  font-weight: 500 !important;
  border: unset !important;
}

#accordion {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
#accordion .card-header {
  position: relative;
  height: 65px;
  display: flex;
  align-items: center;
}
#accordion .card-header .accordion-icon::before {
  content: "⌄";
  display: inline-block;
  transition: transform 0.3s ease;
  position: absolute;
  right: 25px;
  top: 30%;
  font-size: 30px;
}
#accordion .card-header.collapsed .accordion-icon::before {
  transform: rotate(0deg);
  top: 17%;
}
#accordion .card-header:not(.collapsed) .accordion-icon::before {
  transform: rotate(180deg);
}/*# sourceMappingURL=main.css.map */