/* IMPORT FONT FROM GOOGLE */
/*
PARTIALS FILE
-File name must start with _
*/
/*
PARTIALS FILE
-File name must start with _


//EXAMPLES
//FIXED CODE INSERT WITHOUT PARAMETER
@mixin flex-d-row-aic() {
    display: flex;
    flex-direction: row;
    align-items: center;
}

//FIXED CODE INSERT
@mixin flex-row-aic-jc($para) {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: $para;
}

//FIXED CODE INSERT PARAMETER
@mixin flex-dr-ai-jc($f-d: null, $a-i: null, $j-c: null) {
    display: flex;

    @if($f-d !=null) {
        flex-direction: $f-d;
    }

    @if($a-i !=null) {
        align-items: $a-i;
    }

    @if($j-c !=null) {
        justify-content: $j-c;
    }
}

*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Stardos+Stencil:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", serif;
  cursor: default;
}

html,
body {
  background: #f2f8ff;
  width: 100%;
  transition: 0.3s ease;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  cursor: pointer;
}

section {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.nav-container {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  width: 100%;
  min-height: 6rem;
  background: #022b57;
}
.nav-container .logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 20rem;
}
.nav-container .logo-container img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 4rem;
  width: 4rem;
}
.nav-container .logo-container .logo-info {
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: center;
  padding-left: 0.5rem;
}
.nav-container .logo-container .logo-info .company-full-name {
  color: #ffc904;
  font-weight: bold;
  font-size: 2rem;
}
.nav-container .logo-container .logo-info .company-slogan {
  color: #ffc904;
  font-weight: 300;
  font-size: 0.8rem;
}
.nav-container .navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  align-items: center;
  font-size: 14px;
}
.nav-container .navbar .nav-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  font-size: 1rem;
}
.nav-container .navbar .nav-list .nav-list-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5px;
  list-style-type: none;
  position: relative;
  min-width: 40px;
  height: 4rem;
  margin: 0.2rem;
  cursor: pointer;
}
.nav-container .navbar .nav-list .nav-list-item i {
  display: flex;
  height: 10px;
  width: 10px;
  align-items: center;
  justify-content: center;
  color: #f2f8ff;
}
.nav-container .navbar .nav-list .nav-list-item:hover .rotate {
  transform: rotate(90deg);
}
.nav-container .navbar .nav-list .nav-list-item .nav-link {
  font-weight: 300;
  text-decoration: none;
  text-align: center;
  color: #f2f8ff;
  width: 9rem;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
}
.nav-container .navbar .nav-list .nav-list-item .nav-link:hover {
  font-weight: bold;
  color: #003873;
  background: #ffc904 !important;
}
.nav-container .navbar .nav-list .nav-list-item .nav-link.active {
  font-weight: bold;
  border: 1px solid gray;
  background: #003873;
}
.nav-container .navbar .nav-list .nav-list-item .button {
  text-decoration: none;
  padding: 10px 20px;
  color: white;
  border: 1px solid #f2f8ff;
}
.nav-container .navbar .nav-list .nav-list-item .button:hover {
  color: #003873;
  background: #ffc904 !important;
}
.nav-container .submenu-container {
  position: relative;
  width: 100%;
}
.nav-container .submenu-container .item-submenu {
  display: none;
  flex-wrap: wrap;
  z-index: 999;
  position: absolute;
  top: 0rem;
  left: 50%;
  width: 90%;
  min-height: 30px;
  transform: translateX(-50%);
  background-color: rgba(0, 56, 115, 0.8156862745);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  font-size: 1.2rem;
  border-radius: 5px;
  border: 1px solid gray;
  transition: 0.2s ease;
}
.nav-container .submenu-container .item-submenu .submenu-category {
  flex-grow: 1;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 5px 0px;
  padding: 5px;
}
.nav-container .submenu-container .item-submenu .submenu-category ul {
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: center;
  list-style: none;
  margin: 5px 0px;
  padding: 5px;
  width: 13rem;
}
.nav-container .submenu-container .item-submenu .submenu-category ul .title {
  margin-bottom: 0.2rem;
  border-radius: 5px;
  text-align: center;
  width: 100%;
  height: 3.5 rem;
  padding: 5px;
  color: #ffc904;
  text-align: left;
}
.nav-container .submenu-container .item-submenu .submenu-category ul .title .title-link {
  text-decoration: none;
  color: #ffc904;
}
.nav-container .submenu-container .item-submenu .submenu-category ul .item {
  position: relative;
  padding: 5px;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  color: #f2f8ff;
  border: 1px solid transparent;
  border-bottom: 1px solid grey;
  transition: 0.3s;
}
.nav-container .submenu-container .item-submenu .submenu-category ul .item a {
  color: #f2f8ff;
}
.nav-container .submenu-container .item-submenu .submenu-category ul .item:hover {
  width: 100%;
  border-radius: 5px;
  background-color: rgba(0, 105.6695652174, 217, 0.8156862745);
  border: 1px solid transparent;
  cursor: pointer;
}
.nav-container .submenu-container .item-submenu:hover {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}
.nav-container .submenu-container .unhide {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}

.slider-container {
  width: 100%;
  height: 500px;
  /* Adjust the height of the slider */
  overflow: hidden;
  position: relative;
  /* Pause the animation when hovering over the slider-container */
  /* Style for the navigation circles */
}
.slider-container .slider {
  width: 100%;
  height: calc(100vh - 6rem);
  display: flex;
  flex-direction: row;
  transition: transform 1s ease-in-out;
  will-change: transform;
  /* Optimizing performance for animations */
}
.slider-container .slider .slide {
  position: relative;
  min-width: 100%;
  /* Each slide takes 100% of the container width */
  height: calc(100vh - 6rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}
.slider-container .slider .slide .img-left {
  position: relative;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.5;
}
.slider-container .slider .slide .img-right {
  position: relative;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.5;
}
.slider-container .slider .slide .img-center {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.9;
}
.slider-container .slider .slide .video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh - 6rem);
  overflow: hidden;
  /* Ensures the container fills the parent */
}
.slider-container .slider .slide .video iframe {
  border: none;
  /* Remove border */
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* Makes the iframe fill the container */
}
.slider-container .slider .slide .video video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slider-container .slider .slide:hover {
  animation-play-state: paused;
  /* Pause the animation when hovering over the image */
}
.slider-container .slider .slide .slide-info {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: right;
  justify-content: space-between;
  width: clamp(20rem, 50vw, 35rem);
  padding: 1rem;
}
.slider-container .slider .slide .slide-info .title {
  color: #ffc904;
  text-shadow: 2px 2px 4px #003873, -2px -2px 4px #003873, 2px -2px 4px #003873, -2px 2px 4px #003873;
  font-weight: bold;
  font-size: 3rem;
}
.slider-container .slider .slide .slide-info .sub-title {
  font-weight: bold;
  font-size: 2rem;
  color: #ffc904;
  text-shadow: 2px 2px 4px #003873, -2px -2px 4px #003873, 2px -2px 4px #003873, -2px 2px 4px #003873;
}
.slider-container .slider .slide .slide-info .description {
  color: #ffc904;
  line-height: 1.5rem;
  text-shadow: 2px 2px 4px #003873, -2px -2px 4px #003873, 2px -2px 4px #003873, -2px 2px 4px #003873;
}
.slider-container:hover .slider {
  animation-play-state: paused;
}
.slider-container .circle-container {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 10px;
}
.slider-container .circle-container .circle {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.slider-container .circle-container .circle.active {
  /* Highlight the active circle */
  background-color: #3498db;
}

.footer {
  width: 100%;
  background: #022b57;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  font-size: 0.7rem;
  color: #f2c41d;
  padding-top: 0rem;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.footer .colors {
  position: absolute;
  left: var(--l);
  bottom: 0;
  transform: translate(-50%, 80%);
  height: var(--h);
  aspect-ratio: 1/1;
  background: var(--c);
  z-index: -1;
  -webkit-mask-image: radial-gradient(circle closest-side, rgb(0, 0, 0) 10%, rgba(0, 0, 0, 0) 100%);
  mask-image: radial-gradient(circle closest-side, rgb(0, 0, 0) 10%, rgba(0, 0, 0, 0) 100%);
}
.footer footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 1rem;
  background: linear-gradient(to bottom, #ffc904 5rem, transparent 2rem);
}
.footer footer .link {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 0.1rem;
}
.footer footer .link .about-ace-company,
.footer footer .link .products,
.footer footer .link .connect-with-us,
.footer footer .link .get-to-know-us,
.footer footer .link .downloads {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: flex-start;
  gap: 0.1rem;
  width: 17rem;
  margin: 1rem 0.5rem;
  margin-top: 5rem;
}
.footer footer .link .about-ace-company .title,
.footer footer .link .products .title,
.footer footer .link .connect-with-us .title,
.footer footer .link .get-to-know-us .title,
.footer footer .link .downloads .title {
  width: 100%;
}
.footer footer .link .about-ace-company .title p,
.footer footer .link .about-ace-company .title h5,
.footer footer .link .products .title p,
.footer footer .link .products .title h5,
.footer footer .link .connect-with-us .title p,
.footer footer .link .connect-with-us .title h5,
.footer footer .link .get-to-know-us .title p,
.footer footer .link .get-to-know-us .title h5,
.footer footer .link .downloads .title p,
.footer footer .link .downloads .title h5 {
  color: #ffc904;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
}
.footer footer .link .about-ace-company .links,
.footer footer .link .products .links,
.footer footer .link .connect-with-us .links,
.footer footer .link .get-to-know-us .links,
.footer footer .link .downloads .links {
  font-size: 1rem;
  color: #cad3e3;
  font-weight: lighter;
  margin-bottom: 0.2rem;
  padding: 0.2rem;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid transparent;
  transition: 0.2s;
}
.footer footer .link .about-ace-company .links:hover,
.footer footer .link .products .links:hover,
.footer footer .link .connect-with-us .links:hover,
.footer footer .link .get-to-know-us .links:hover,
.footer footer .link .downloads .links:hover {
  font-weight: bold;
  color: whitesmoke;
}
.footer footer .link .about-ace-company .links i,
.footer footer .link .products .links i,
.footer footer .link .connect-with-us .links i,
.footer footer .link .get-to-know-us .links i,
.footer footer .link .downloads .links i {
  font-size: 1rem;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  color: #ffc904;
}
.footer footer .link .about-ace-company .link-list,
.footer footer .link .products .link-list,
.footer footer .link .connect-with-us .link-list,
.footer footer .link .get-to-know-us .link-list,
.footer footer .link .downloads .link-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  width: 100%;
}
.footer footer .link .about-ace-company .link-list .icon-group,
.footer footer .link .products .link-list .icon-group,
.footer footer .link .connect-with-us .link-list .icon-group,
.footer footer .link .get-to-know-us .link-list .icon-group,
.footer footer .link .downloads .link-list .icon-group {
  height: 4rem;
  display: flex;
  flex-direction: row;
  align-items: end;
  justify-content: center;
  gap: 1rem;
}
.footer footer .link .about-ace-company .link-list .icon-group i,
.footer footer .link .products .link-list .icon-group i,
.footer footer .link .connect-with-us .link-list .icon-group i,
.footer footer .link .get-to-know-us .link-list .icon-group i,
.footer footer .link .downloads .link-list .icon-group i {
  display: flex;
  flex-direction: row;
  align-items: end;
  justify-content: center;
  color: grey;
  font-size: 2rem;
  height: 3rem;
  width: 3rem;
  transition: 0.1s;
}
.footer footer .link .about-ace-company .link-list .icon-group i:hover,
.footer footer .link .products .link-list .icon-group i:hover,
.footer footer .link .connect-with-us .link-list .icon-group i:hover,
.footer footer .link .get-to-know-us .link-list .icon-group i:hover,
.footer footer .link .downloads .link-list .icon-group i:hover {
  color: #ffc904;
  font-size: 2.5rem;
}
.footer footer .link .about-ace-company .media,
.footer footer .link .products .media,
.footer footer .link .connect-with-us .media,
.footer footer .link .get-to-know-us .media,
.footer footer .link .downloads .media {
  aspect-ratio: 1/1;
  width: 7rem;
}
.footer footer .link .about-ace-company .media img,
.footer footer .link .products .media img,
.footer footer .link .connect-with-us .media img,
.footer footer .link .get-to-know-us .media img,
.footer footer .link .downloads .media img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
.footer footer .link .about-ace-company .connect-wa,
.footer footer .link .products .connect-wa,
.footer footer .link .connect-with-us .connect-wa,
.footer footer .link .get-to-know-us .connect-wa,
.footer footer .link .downloads .connect-wa {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  position: relative;
  height: 100%;
  margin: auto;
  margin-top: 1.5rem;
  padding: 0;
}
.footer footer .link .about-ace-company .connect-wa .lets-connect,
.footer footer .link .products .connect-wa .lets-connect,
.footer footer .link .connect-with-us .connect-wa .lets-connect,
.footer footer .link .get-to-know-us .connect-wa .lets-connect,
.footer footer .link .downloads .connect-wa .lets-connect {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-width: 15rem;
  border-radius: 5px;
  border: 1px solid grey;
  overflow: hidden;
  background-color: #003873;
  margin: 0;
}
.footer footer .link .about-ace-company .connect-wa .lets-connect .title,
.footer footer .link .products .connect-wa .lets-connect .title,
.footer footer .link .connect-with-us .connect-wa .lets-connect .title,
.footer footer .link .get-to-know-us .connect-wa .lets-connect .title,
.footer footer .link .downloads .connect-wa .lets-connect .title {
  width: 100%;
  border-bottom: 1px solid gray;
}
.footer footer .link .about-ace-company .connect-wa .lets-connect .title p,
.footer footer .link .about-ace-company .connect-wa .lets-connect .title h5,
.footer footer .link .products .connect-wa .lets-connect .title p,
.footer footer .link .products .connect-wa .lets-connect .title h5,
.footer footer .link .connect-with-us .connect-wa .lets-connect .title p,
.footer footer .link .connect-with-us .connect-wa .lets-connect .title h5,
.footer footer .link .get-to-know-us .connect-wa .lets-connect .title p,
.footer footer .link .get-to-know-us .connect-wa .lets-connect .title h5,
.footer footer .link .downloads .connect-wa .lets-connect .title p,
.footer footer .link .downloads .connect-wa .lets-connect .title h5 {
  width: 100%;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-align: center;
  padding: 0.5rem;
  background: #ffc904;
  color: #022b57;
  margin: 0;
}
.footer footer .link .about-ace-company .connect-wa .lets-connect .item,
.footer footer .link .products .connect-wa .lets-connect .item,
.footer footer .link .connect-with-us .connect-wa .lets-connect .item,
.footer footer .link .get-to-know-us .connect-wa .lets-connect .item,
.footer footer .link .downloads .connect-wa .lets-connect .item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  font-size: 1rem;
  width: 100%;
  height: 3rem;
  background-color: #f2f8ff;
  border-bottom: 1px solid gray;
  gap: 0.5rem;
  padding: 0.2rem;
  transition: 0.3s ease;
}
.footer footer .link .about-ace-company .connect-wa .lets-connect .item .left,
.footer footer .link .products .connect-wa .lets-connect .item .left,
.footer footer .link .connect-with-us .connect-wa .lets-connect .item .left,
.footer footer .link .get-to-know-us .connect-wa .lets-connect .item .left,
.footer footer .link .downloads .connect-wa .lets-connect .item .left {
  width: 2rem;
  height: 2rem;
  border-radius: 1rem;
  position: relative;
}
.footer footer .link .about-ace-company .connect-wa .lets-connect .item .left img,
.footer footer .link .products .connect-wa .lets-connect .item .left img,
.footer footer .link .connect-with-us .connect-wa .lets-connect .item .left img,
.footer footer .link .get-to-know-us .connect-wa .lets-connect .item .left img,
.footer footer .link .downloads .connect-wa .lets-connect .item .left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  border-radius: 50%;
}
.footer footer .link .about-ace-company .connect-wa .lets-connect .item .left::before,
.footer footer .link .products .connect-wa .lets-connect .item .left::before,
.footer footer .link .connect-with-us .connect-wa .lets-connect .item .left::before,
.footer footer .link .get-to-know-us .connect-wa .lets-connect .item .left::before,
.footer footer .link .downloads .connect-wa .lets-connect .item .left::before {
  content: "";
  position: absolute;
  right: 0px;
  top: 0px;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #00c800;
  z-index: 2;
}
.footer footer .link .about-ace-company .connect-wa .lets-connect .item .right,
.footer footer .link .products .connect-wa .lets-connect .item .right,
.footer footer .link .connect-with-us .connect-wa .lets-connect .item .right,
.footer footer .link .get-to-know-us .connect-wa .lets-connect .item .right,
.footer footer .link .downloads .connect-wa .lets-connect .item .right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.footer footer .link .about-ace-company .connect-wa .lets-connect .item .right .purpose,
.footer footer .link .products .connect-wa .lets-connect .item .right .purpose,
.footer footer .link .connect-with-us .connect-wa .lets-connect .item .right .purpose,
.footer footer .link .get-to-know-us .connect-wa .lets-connect .item .right .purpose,
.footer footer .link .downloads .connect-wa .lets-connect .item .right .purpose {
  font-size: 0.8rem;
  color: #022b57;
  font-weight: bold;
}
.footer footer .link .about-ace-company .connect-wa .lets-connect .item .right .desc,
.footer footer .link .products .connect-wa .lets-connect .item .right .desc,
.footer footer .link .connect-with-us .connect-wa .lets-connect .item .right .desc,
.footer footer .link .get-to-know-us .connect-wa .lets-connect .item .right .desc,
.footer footer .link .downloads .connect-wa .lets-connect .item .right .desc {
  font-size: 0.8rem;
  color: #022b57;
}
.footer footer .link .about-ace-company .connect-wa .lets-connect .item:hover,
.footer footer .link .products .connect-wa .lets-connect .item:hover,
.footer footer .link .connect-with-us .connect-wa .lets-connect .item:hover,
.footer footer .link .get-to-know-us .connect-wa .lets-connect .item:hover,
.footer footer .link .downloads .connect-wa .lets-connect .item:hover {
  background-color: rgb(166, 209.3391304348, 255);
  cursor: default;
}
.footer footer .link .about-ace-company .connect-wa .hide,
.footer footer .link .products .connect-wa .hide,
.footer footer .link .connect-with-us .connect-wa .hide,
.footer footer .link .get-to-know-us .connect-wa .hide,
.footer footer .link .downloads .connect-wa .hide {
  display: none;
}
.footer footer .link .about-ace-company .connect-wa .wa-btn,
.footer footer .link .products .connect-wa .wa-btn,
.footer footer .link .connect-with-us .connect-wa .wa-btn,
.footer footer .link .get-to-know-us .connect-wa .wa-btn,
.footer footer .link .downloads .connect-wa .wa-btn {
  outline: none;
  border: none;
  padding: 0.5rem 1rem;
  height: 2rem;
  border-radius: 5px;
  background-color: #ffc904;
  color: #022b57;
}
.footer footer .link .about-ace-company .connect-wa .wa-btn:hover,
.footer footer .link .products .connect-wa .wa-btn:hover,
.footer footer .link .connect-with-us .connect-wa .wa-btn:hover,
.footer footer .link .get-to-know-us .connect-wa .wa-btn:hover,
.footer footer .link .downloads .connect-wa .wa-btn:hover {
  background: rgb(255, 211.9721115538, 55);
}
.footer footer .link .about-ace-company {
  align-items: center;
  width: 15rem;
  margin-top: 0rem;
  background-color: #003873;
}
.footer footer .link .about-ace-company .title {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer footer .link .about-ace-company .title h5 {
  font-size: 1rem;
  color: #ffc904;
}
.footer footer .link .about-ace-company .title-about {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0.5rem;
}
.footer footer .link .about-ace-company .title-about h5 {
  text-align: left;
  width: 100%;
  font-size: 1rem;
  color: #f2f8ff;
}
.footer footer .link .about-ace-company .title-about p {
  text-align: left;
  width: 100%;
  font-size: 0.8rem;
  color: #cad3e3;
  line-height: 1.5rem;
  margin: 0.5rem;
}
.footer footer .link .about-ace-company .request-form-btn {
  outline: none;
  border: none;
  padding: 0.5rem 1rem;
  margin: 1rem;
  height: 2rem;
  border-radius: 5px;
  background-color: #ffc904;
  color: #022b57;
  font-size: 0.8rem;
}
.footer footer .link .about-ace-company .request-form-btn:hover {
  background: rgb(255, 211.9721115538, 55);
}
.footer footer .disclaimer {
  color: #f2f8ff;
  font-size: 0.7rem;
  text-align: center;
}
.footer .float-button {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
}
.footer .float-button .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2rem;
  width: 2rem;
  border-radius: 50%;
  background-color: #ffc904;
  color: #022b57;
}/*# sourceMappingURL=styles.css.map */