/*
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;
    }
}

*/
.slider-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: -moz-fit-content;
  height: fit-content;
}
.slider-container .container {
  width: 90%;
  max-width: 100rem;
  padding: 1rem;
  padding-top: 3rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.slider-container .container .details {
  flex: 1;
  height: 40rem;
  min-width: 30rem;
  background-color: #022b57;
  border: 4px solid #f2f8ff;
  color: #f2f8ff;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  overflow: hidden;
}
.slider-container .container .details .content {
  z-index: 1;
}
.slider-container .container .details .content .pretitle {
  font-size: 3rem;
  font-weight: bold;
}
.slider-container .container .details .content .title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffc904;
}
.slider-container .container .details .content .description {
  font-size: 1.5rem;
  font-weight: 200;
  line-height: 3rem;
  text-align: justify;
}
.slider-container .container .details .content.show-video {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  opacity: 1;
  border-radius: 0.5rem;
  padding: 0.5rem;
  overflow: hidden;
  z-index: 2;
  transition: 0.5s ease;
}
.slider-container .container .details .content.show-video video {
  background-color: #fff;
  border-radius: 0.5rem;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.slider-container .container .details .content.show-video .closeBtn {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 20px;
  height: 20px;
  border: none;
  outline: none;
  border-radius: 50%;
  background-color: red;
  color: #fff;
  font-weight: bold;
}
.slider-container .container .details .content.show-video .closeBtn:hover {
  background-color: #ff6666;
}
.slider-container .container .details .content.show-video.hide {
  z-index: -1;
  width: 0;
  height: 0;
  opacity: 0;
}
.slider-container .container .items {
  height: 40rem;
  width: 40rem;
  color: #f2f8ff;
  background-color: #fff;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}
.slider-container .container .items .item {
  position: relative;
  width: 50%;
  height: 50%;
  flex: 1 1 0.5;
  transition: 0.2s ease;
  border: 4px solid #f2f8ff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  font-size: 1.5rem;
  font-weight: bold;
  overflow: hidden;
}
.slider-container .container .items .item:hover {
  border-bottom: 5px solid #ffc904;
}
.slider-container .container .items .item:hover .item-name {
  opacity: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 56, 115, 0.5);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}
.slider-container .container .items .item video {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.slider-container .container .items .item .item-name {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  opacity: 0;
  color: #f2f8ff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.slider-container .container .items .link {
  color: #f2f8ff;
  text-align: center;
}

.about-ace {
  display: flex;
  flex-direction: row;
  align-items: streach;
  justify-content: space-between;
  max-width: 100rem;
  width: 100%;
  padding: 1rem;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.about-ace .content {
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: space-between;
  flex: 1;
  min-width: 20rem;
  height: -moz-fit-content;
  height: fit-content;
  padding-bottom: 1rem;
}
.about-ace .content .title {
  color: #003873;
  font-size: 3rem;
  font-weight: 800;
}
.about-ace .content .sub-title {
  font-size: 2rem;
  font-weight: bold;
  color: #ffc904;
}
.about-ace .content .description p {
  margin: 1rem 0rem;
  color: #003873;
}
.about-ace .content .description p strong {
  font-size: 1.5rem;
}
.about-ace .content .more-info {
  color: #003873;
}
.about-ace .media {
  position: relative;
  flex: 1;
  padding: 0rem;
  overflow: hidden;
  border-radius: 0.5rem;
  -webkit-mask-image: radial-gradient(ellipse closest-side, rgb(0, 0, 0) 10%, rgba(0, 0, 0, 0) 100%);
  mask-image: radial-gradient(ellipse closest-side, rgb(0, 0, 0) 10%, rgba(0, 0, 0, 0) 100%);
}
.about-ace .media .video {
  width: 100%;
  height: 100%;
}

.top-products-container {
  display: flex;
  flex-direction: column;
  max-width: 100rem;
  margin-bottom: 0rem;
}
.top-products-container .content {
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: space-between;
  padding: 1rem;
  flex: 1;
}
.top-products-container .content .title {
  color: #003873;
  font-size: 3rem;
  font-weight: 800;
}
.top-products-container .content .title span {
  color: #ffc904;
}
.top-products-container .content .sub-title {
  font-size: 2rem;
  font-weight: bold;
  color: #ffc904;
}
.top-products-container .content .description {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
  position: relative;
  min-height: 20rem;
}
.top-products-container .content .description .img {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.top-products-container .content .description .img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 0;
  /* Radial gradient mask */
  -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 40%, rgba(0, 0, 0, 0) 90%);
  mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 40%, rgba(0, 0, 0, 0) 90%);
}
.top-products-container .content .description .item {
  z-index: 2;
  border: 5px solid transparent;
  border-radius: 1rem;
  padding: 1rem;
  width: 20rem;
  min-height: 10rem;
  background-color: rgba(24, 61, 120, 0.5568627451);
  line-height: 2rem;
}
.top-products-container .content .description .item .title {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffc904;
  margin-bottom: 1rem;
}
.top-products-container .content .description .item .detail {
  align-items: center;
  color: #f2f8ff;
}
.top-products-container .content .more-info {
  color: #003873;
}
.top-products-container .top-products-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  padding-top: 0;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.top-products-container .top-products-list .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
  position: relative;
  margin: 0.5rem;
  padding: 0.5rem;
  border-radius: 4px;
  background: #fff;
  min-width: 25rem;
  height: 27rem;
  overflow: hidden;
  transition: 0.3s ease;
  border: 1px solid #f2f8ff;
}
.top-products-container .top-products-list .item:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}
.top-products-container .top-products-list .item:hover .links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  height: 100%;
  left: 50%;
  overflow: hidden;
  background: #003873;
  overflow: auto;
  /* Scrollbar track (background) */
  /* Scrollbar thumb (the draggable part) */
}
.top-products-container .top-products-list .item:hover .links .link {
  color: #f2f8ff;
}
.top-products-container .top-products-list .item:hover .links .link:hover {
  color: #003873;
  background: #ffc904;
}
.top-products-container .top-products-list .item:hover .links::-webkit-scrollbar {
  background-color: #030b21;
  width: 0.5rem;
  /* width of the vertical scrollbar */
  height: 0.5rem;
  /* height of the horizontal scrollbar */
}
.top-products-container .top-products-list .item:hover .links::-webkit-scrollbar-thumb {
  background-color: #f2c41d;
  /* Color of the scrollbar thumb */
  border-radius: 0.25rem;
  /* Optional: rounded corners */
}
.top-products-container .top-products-list .item:hover .media {
  width: 50%;
}
.top-products-container .top-products-list .item:hover .description {
  left: 0;
  width: 50%;
}
.top-products-container .top-products-list .item .media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 3rem);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transition: 0.3s ease;
}
.top-products-container .top-products-list .item .media img {
  position: absolute;
  left: -100%;
  top: 0;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  transition: 0.3s ease;
}
.top-products-container .top-products-list .item .media img:first-child {
  position: absolute;
  top: 0;
  left: 0;
}
.top-products-container .top-products-list .item .description {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4rem;
  transition: 0.3s ease;
  background-color: #022b57;
}
.top-products-container .top-products-list .item .description a {
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
  color: #f2f8ff;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-products-container .top-products-list .item .description a:hover {
  cursor: pointer;
}
.top-products-container .top-products-list .item .links {
  position: absolute;
  height: 100%;
  width: 50%;
  top: 0;
  left: 100%;
  background-color: #003873;
  overflow: hidden;
}
.top-products-container .top-products-list .item .links .link {
  color: #030b21;
  margin: 0.1rem 0.5rem;
  padding: 0.1rem 0.3rem;
  border: 1px solid transparent;
  border-bottom: 1px solid grey;
  text-decoration: none;
  text-transform: uppercase;
  width: -moz-fit-content;
  width: fit-content;
  transition: 0.3s ease;
}
.top-products-container .top-products-list .item .links .title {
  padding: 0.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  opacity: 1;
  width: 100%;
  color: #ffc904;
}
.top-products-container .top-products-list .item:last-child {
  flex-grow: 1;
}

.about-us-shorts {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.about-us-shorts .content {
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: space-between;
  max-width: 100rem;
  width: 100%;
  padding: 1rem;
  flex: 1;
}
.about-us-shorts .content .title {
  color: #003873;
  font-size: 3rem;
  font-weight: bold;
}
.about-us-shorts .content .title span {
  color: #ffc904;
}
.about-us-shorts .content .sub-title {
  font-size: 2rem;
  font-weight: bold;
  color: #1172BB;
}
.about-us-shorts .content .description {
  font-weight: bold;
  color: #1172BB;
}
.about-us-shorts .content .more-info {
  color: whitesmoke;
}
.about-us-shorts .offering {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-around;
  gap: 4px;
  flex-wrap: wrap;
  overflow: hidden;
  margin-bottom: 2rem;
  width: 100%;
  height: 90vh;
}
.about-us-shorts .offering .left {
  width: 33.3333333333%;
  height: 100%;
}
.about-us-shorts .offering .right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4px;
  width: calc(66.6666666667% - 4px);
  height: 100%;
}
.about-us-shorts .offering .top {
  width: 100%;
  height: calc(50% - 2px);
}
.about-us-shorts .offering .bottom {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  height: calc(50% - 2px);
  gap: 4px;
}
.about-us-shorts .offering .item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  overflow: hidden;
  flex-grow: 1;
}
.about-us-shorts .offering .item .slider {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  height: 100%;
  width: 200%;
  position: relative;
}
.about-us-shorts .offering .item .slider .item1,
.about-us-shorts .offering .item .slider .item2,
.about-us-shorts .offering .item .slider .item3,
.about-us-shorts .offering .item .slider .item4,
.about-us-shorts .offering .item .slider .item5 {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  transition: 1s ease, z-index 0.3s ease;
}
.about-us-shorts .offering .item .slider .item1 img,
.about-us-shorts .offering .item .slider .item2 img,
.about-us-shorts .offering .item .slider .item3 img,
.about-us-shorts .offering .item .slider .item4 img,
.about-us-shorts .offering .item .slider .item5 img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.about-us-shorts .offering .item .first .item5 {
  left: -50%;
  z-index: 1;
}
.about-us-shorts .offering .item .first .item1 {
  left: 0;
  z-index: 2;
}
.about-us-shorts .offering .item .first .item2,
.about-us-shorts .offering .item .first .item3 {
  left: 50%;
  z-index: 1;
}
.about-us-shorts .offering .item .first .item4 {
  left: 50%;
  z-index: 0;
}
.about-us-shorts .offering .item .next1 .item1 {
  left: -50%;
  z-index: 1;
}
.about-us-shorts .offering .item .next1 .item2 {
  left: 0;
  z-index: 2;
}
.about-us-shorts .offering .item .next1 .item3,
.about-us-shorts .offering .item .next1 .item4 {
  left: 50%;
  z-index: 1;
}
.about-us-shorts .offering .item .next1 .item5 {
  left: 50%;
  z-index: 0;
}
.about-us-shorts .offering .item .next2 .item2 {
  left: -50%;
  z-index: 1;
}
.about-us-shorts .offering .item .next2 .item3 {
  left: 0;
  z-index: 2;
}
.about-us-shorts .offering .item .next2 .item4,
.about-us-shorts .offering .item .next2 .item5 {
  left: 50%;
  z-index: 1;
}
.about-us-shorts .offering .item .next2 .item1 {
  left: 50%;
  z-index: 0;
}
.about-us-shorts .offering .item .next3 .item3 {
  left: -50%;
  z-index: 1;
}
.about-us-shorts .offering .item .next3 .item4 {
  left: 0;
  z-index: 2;
}
.about-us-shorts .offering .item .next3 .item5,
.about-us-shorts .offering .item .next3 .item1 {
  left: 50%;
  z-index: 1;
}
.about-us-shorts .offering .item .next3 .item2 {
  left: 50%;
  z-index: 0;
}
.about-us-shorts .offering .item .last .item4 {
  left: -50%;
  z-index: 1;
}
.about-us-shorts .offering .item .last .item5 {
  left: 0;
  z-index: 2;
}
.about-us-shorts .offering .item .last .item1,
.about-us-shorts .offering .item .last .item2 {
  left: 50%;
  z-index: 1;
}
.about-us-shorts .offering .item .last .item3 {
  left: 50%;
  z-index: 0;
}
.about-us-shorts .offering .item .media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.about-us-shorts .offering .item .media img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.about-us-shorts .offering .item .info {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  gap: 1rem;
  transition: bottom 0.2s ease;
}
.about-us-shorts .offering .item .info .info-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 100%;
  width: 100%;
  padding: 0.5rem;
  text-align: justify;
  z-index: 3;
  background-color: rgba(0, 56, 115, 0.7);
  transition: 0.3s ease-in-out;
}
.about-us-shorts .offering .item .info .info-item .description {
  width: 100%;
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffc904;
  line-height: 2rem;
}
.about-us-shorts .offering .item .info .info-item .more-details {
  width: 100%;
  font-size: 1rem;
  color: #c8c8c8;
  font-weight: 300;
  line-height: 1.5rem;
}
.about-us-shorts .offering .item .info .info-item .more-details strong {
  font-weight: bold;
}
.about-us-shorts .offering .item .info .info-item::before {
  content: "";
  height: 100%;
  width: 100%;
  border-radius: 4px;
  border: 2px solid transparent;
  position: absolute;
  top: 0px;
  right: 0px;
  transition: 0.2s ease;
}
.about-us-shorts .offering .item:hover .info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  bottom: 0%;
  height: -moz-fit-content;
  height: fit-content;
}/*# sourceMappingURL=index.css.map */