@import url(https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap);
/*-------------------------------------------------------------- 
Colors
--------------------------------------------------------------*/
/*-------------------------------------------------------------- 
Global Settings
--------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}
html body {
  height: 100%;
  overflow-x: hidden;
  background: #e8e8e4;
}
html h1, html h2, html h3, html h4, html h5 {
  margin: 0;
  padding: 0;
  font-family: "Sora", sans-serif;
  font-weight: 700;
}
html ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
html li {
  list-style: none;
}
html p {
  margin: 0;
  padding: 0;
  font-family: "Sora", sans-serif;
  font-weight: 300;
}
html a:focus {
  outline: none;
}
html button {
  background-color: transparent;
  outline: none !important;
  padding: 0;
  -moz-text-align-last: center !important;
       text-align-last: center !important;
}
html button:hover {
  background: transparent !important;
  border-color: none !important;
}

/*-------------------------------------------------------------- 
WP/Wordpress
--------------------------------------------------------------*/
.site {
  overflow: hidden !important;
}

#content {
  transform: translateX(0);
  transition: transform 0.5s ease-out;
}

#content.atl-main-active {
  transform: translateX(30%);
  transition: transform 0.5s ease-in;
}

#colophon {
  transform: translateX(0);
  transition: transform 0.5s ease-out;
}

#colophon.atl-main-active {
  transform: translateX(30%);
  transition: transform 0.5s ease-in;
}

/*-------------------------------------------------------------- 
Header Info
--------------------------------------------------------------*/
header .atl-mh-info {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.25em 0 1em;
  z-index: 2;
}
header .atl-mh-info-container {
  width: 95%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 0;
}
header .atl-mh-info-container div {
  width: 33.33%;
}
header .atl-mh-info-menu {
  position: relative;
  z-index: 5;
}
header .atl-mh-info-menu button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
header .atl-mh-info-menu button svg {
  width: auto;
  height: 35px;
  margin-right: 0.5em;
  fill: #142440;
}
header .atl-mh-info-logo {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
header .atl-mh-info-logo a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
header .atl-mh-info-logo a svg {
  width: 125px;
  height: auto;
  fill: unset;
}
header .atl-mh-info-active {
  border: none;
  box-shadow: 0px 3px 10px 0px rgba(209, 101, 39, 0.75);
}
header .atl-mh-info-active::before {
  opacity: 1;
}
header .atl-mh-info-active .atl-mh-info-content ul {
  visibility: visible;
  opacity: 1;
  z-index: 2;
}
header .atl-mh-info-active .atl-mh-info-currency {
  visibility: hidden;
  opacity: 0;
  z-index: -1;
}
header.atl-header-active .atl-mh-info::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #e8e8e4;
  opacity: 0.5;
  z-index: -1;
}
header.atl-header-active .atl-mh-info-logo {
  opacity: 1;
}

/*-------------------------------------------------------------- 
Header Side Menu Content
--------------------------------------------------------------*/
.atl-mm-side {
  width: 30%;
  height: 100%;
  position: fixed;
  overflow: auto;
  padding: 2em 0 5em 0;
  top: 0;
  left: 0;
  background-color: unset;
  overflow-x: hidden;
}
.atl-mm-side-close {
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  font-size: 2em;
  z-index: 10;
  background-color: unset !important;
  color: unset !important;
}
.atl-mm-side-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.atl-mm-side-content {
  width: 90%;
  height: auto;
  margin: 0 auto;
  position: relative;
}
.atl-mm-side-content:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 3em;
}
.atl-mm-side-content:first-child img {
  width: 155px;
  height: auto;
  margin: 0 auto;
}
.atl-mm-side-content:first-child a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.atl-mm-side-content:first-child a svg {
  width: 50%;
  height: auto;
  margin: 0 auto;
}
.atl-mm-side-content ul {
  width: 100%;
  margin: 0 !important;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.atl-mm-side-content ul li {
  width: 100%;
  font-size: 1.1rem;
  text-align: center;
  letter-spacing: 1px;
  margin: 0 0 1em 0;
  position: relative;
}
.atl-mm-side-content ul li a {
  color: unset;
  font-weight: bold;
}
.atl-mm-side-content ul li.atl-mm-active {
  transform: all 0.5s ease-in-out;
}
.atl-mm-side-content ul li.atl-mm-active a {
  border-bottom: 3px solid unset;
  padding: 0 0 0.35em;
}
.atl-mm-side-content:last-child {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.atl-mm-side-content:last-child a {
  margin: 0 1em;
}
.atl-mm-side-content:last-child a svg {
  width: auto;
  height: 30px;
}

/*-------------------------------------------------------------- 
Header Side Menu 
--------------------------------------------------------------*/
.atl-mm-side {
  z-index: -10;
  transform: translateX(-200%);
  transition: transform 1s ease-out;
}

.atl-mm-active {
  z-index: 999999;
  transform: translateX(0%);
  transition: transform 0.45s ease-in;
}

/*-------------------------------------------------------------- 
Main Banner
--------------------------------------------------------------*/
.atl-main {
  width: 100%;
  height: 100dvh;
  position: relative;
}
.atl-main-container {
  width: 70%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.atl-main-content {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.atl-main-content h1 {
  font-size: 3.8rem;
  margin: 0 0 0.5em 0;
}
.atl-main-content h1 b {
  color: #057ffa;
}
.atl-main-content p {
  margin: 1em 0;
}
.atl-main-content:last-child {
  justify-content: flex-end;
  position: relative;
}
.atl-main-content:last-child img {
  position: relative;
}
.atl-main-info {
  width: 95%;
  margin: 0 auto;
  padding: 2.5% 0;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  background-color: #e8e8e4;
  z-index: 5;
  border-radius: 0.5em;
  box-shadow: 0px 0px 5px 0px rgba(51, 51, 51, 0.25);
}
.atl-main-info-box {
  width: 48%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  padding: 5% 0;
}
.atl-main-info-box svg {
  width: 40px;
  height: auto;
  margin: 0;
  fill: #142440;
}
.atl-main-info-box p {
  margin: 0;
  color: #333333;
}
.atl-main-info hr {
  width: 1px;
  height: 55px;
  margin: 0;
  background-color: #6d6d6d;
}
.atl-main-info hr:nth-of-type(even) {
  display: none;
}
.atl-main-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center center !important;
  overflow: hidden;
  z-index: -1;
  opacity: 0.2;
}
.atl-main-skew {
  width: 100dvw;
  height: 13dvh;
  position: absolute;
  bottom: -1px;
  left: 0;
  background-color: #142440;
  clip-path: polygon(0 85%, 100% 0%, 100% 100%, 0% 100%);
}

/*-------------------------------------------------------------- 
About Us
--------------------------------------------------------------*/
.atl-aus {
  width: 100%;
  height: auto;
  padding: 5% 0 8%;
  position: relative;
  background-color: #142440;
}
.atl-aus-wrapper {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.atl-aus-container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;
  position: relative;
  z-index: 2;
}
.atl-aus-content {
  width: 50%;
}
.atl-aus-content:last-child {
  padding: 0 0 0 5%;
}
.atl-aus-content:last-child h2 {
  font-size: 1.8rem;
  color: #e8e8e4;
}
.atl-aus-content:last-child h1 {
  font-size: 2.4rem;
  color: #057ffa;
  margin: 0.5em 0 1em;
}
.atl-aus-content:last-child p {
  color: #e8e8e4;
}
.atl-aus-icons {
  width: 100%;
  margin: 5% 0 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.atl-aus-icons img {
  scale: 0.75;
}
.atl-aus-skew {
  width: 100dvw;
  height: 13dvh;
  position: absolute;
  bottom: -1px;
  left: 0;
  background-color: #e8e8e4;
  clip-path: polygon(0 85%, 100% 0%, 100% 100%, 0% 100%);
}

/*-------------------------------------------------------------- 
Package
--------------------------------------------------------------*/
.atl-pack {
  width: 100%;
  height: auto;
  padding: 5% 0 10%;
  position: relative;
}
.atl-pack-container {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.atl-pack-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.atl-pack-content:first-child {
  padding: 0 5% 0 0;
}
.atl-pack-content:first-child h2 {
  font-size: 2em;
  color: #057ffa;
}
.atl-pack-content:first-child h1 {
  font-size: 2.4rem;
  color: #142440;
  margin: 0.5em 0 1em;
}
.atl-pack-content:first-child a {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0.7em 0;
  margin: 2em 0 0 0;
  border-radius: 0.5em;
  background-color: #057ffa;
  color: #e8e8e4;
  font-weight: bold;
  font-size: 1.2rem;
}
.atl-pack-content:last-child {
  margin: 0 auto;
}
.atl-pack-content:last-child img {
  width: 100%;
}
.atl-pack-skew {
  width: 100dvw;
  height: 13dvh;
  position: absolute;
  bottom: -1px;
  left: 0;
  background-color: #142440;
  clip-path: polygon(0 85%, 100% 0%, 100% 100%, 0% 100%);
}

/*-------------------------------------------------------------- 
Services
--------------------------------------------------------------*/
.atl-services {
  width: 100%;
  height: auto;
  position: relative;
  padding: 5% 0 10%;
  background-color: #142440;
}
.atl-services-wrapper {
  width: 80%;
  margin: 0 auto;
}
.atl-services-head {
  width: 60%;
  margin: 0 0 5em;
}
.atl-services-head h1 {
  color: #e8e8e4;
  margin: 0.5em 0 1em;
}
.atl-services-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.atl-services-content {
  width: 22%;
}
.atl-services-content-title {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 0px 15px 0px rgba(51, 51, 51, 0.35);
  border-radius: 0.5em;
  padding: 1em 0.5em;
  margin: 0 0 1.6em 0;
  background-color: #e8e8e4;
}
.atl-services-content-title svg {
  width: 45px;
  height: auto;
  fill: #142440;
  margin: 0 1em 0 0;
}
.atl-services-content-title svg path {
  fill: #142440;
}
.atl-services-content-title h2 {
  font-size: 1.4rem;
  margin: 0;
  color: #142440;
}
.atl-services-content-title h2 b {
  color: #057ffa;
}
.atl-services-content-txt p {
  color: #e8e8e4;
}
.atl-services-skew {
  width: 100dvw;
  height: 13dvh;
  position: absolute;
  bottom: -1px;
  left: 0;
  background-color: #e8e8e4;
  clip-path: polygon(0 85%, 100% 0%, 100% 100%, 0% 100%);
}

/*-------------------------------------------------------------- 
International
--------------------------------------------------------------*/
.atl-inter {
  width: 100%;
  height: 100%;
  position: relative;
}
.atl-inter-container {
  width: 70%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
}
.atl-inter-content {
  height: auto;
  margin: 0 auto;
  position: relative;
}
.atl-inter-content:first-child {
  width: 60%;
}
.atl-inter-content:last-child {
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 0 0 5%;
}
.atl-inter-content:last-child h1, .atl-inter-content:last-child h2, .atl-inter-content:last-child p {
  text-align: left;
}
.atl-inter-content:last-child h2 {
  color: #057ffa;
}
.atl-inter-content:last-child h1 {
  color: #142440;
  margin: 0.5em 0 0;
}
.atl-inter-content:last-child p {
  margin: 2em 0;
}
.atl-inter-globe {
  width: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}
.atl-inter-globe .atl-rotatingGlobe {
  width: 100%;
  height: auto;
  overflow: hidden;
}

/*-------------------------------------------------------------- 
404
--------------------------------------------------------------*/
.atl-404 {
  width: 100%;
  position: relative;
  padding: 5% 0;
}
.atl-404-container {
  width: 60%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.atl-404-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.atl-404-content-icon {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.atl-404-content-icon svg {
  width: 90%;
  height: auto;
  filter: drop-shadow(5px 5px 5px rgba(51, 51, 51, 0.75));
}
.atl-404-content-icon svg path {
  fill: #057ffa !important;
}
.atl-404-content-txt {
  margin: 5% 0 2em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.atl-404-content-txt h1 {
  font-size: 2.6rem;
  font-weight: bold;
  margin: 0 auto 0.5em;
}
.atl-404-content-txt p {
  font-size: 1.6rem;
  margin: 0 auto 1em;
}
.atl-404-content-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.atl-404-content-box a {
  width: 50%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  background-color: #142440;
  padding: 0.7em 0;
  color: #e8e8e4;
  font-weight: bold;
}

/*-------------------------------------------------------------- 
Footer
--------------------------------------------------------------*/
footer .atl-footer {
  width: 100%;
  height: auto;
  position: relative;
  padding: 5% 0 0;
}
footer .atl-footer-container {
  width: 80%;
  margin: 0 auto;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
}
footer .atl-footer-content {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
footer .atl-footer-content:first-child {
  align-items: flex-end;
}
footer .atl-footer-content:first-child h1, footer .atl-footer-content:first-child h2 {
  text-align: right;
}
footer .atl-footer-content:first-child h2 {
  color: #057ffa;
}
footer .atl-footer-content:first-child h1 {
  color: #e8e8e4;
  margin: 1em 0;
}
footer .atl-footer-content-links {
  width: 50%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
footer .atl-footer-content-links a {
  width: auto;
  padding: 0.7em;
  margin: 0 0.25em;
  border-radius: 0.5em;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: #057ffa;
  color: #e8e8e4;
  font-weight: bold;
  text-transform: uppercase;
}
footer .atl-footer-content-links a svg {
  width: 25px;
  height: auto;
  margin: 0 0.5em;
  fill: #e8e8e4;
}
footer .atl-footer-content-links a svg g {
  fill: #e8e8e4;
}
footer .atl-footer-overlay {
  width: 100%;
  height: 70%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #142440;
  z-index: -1;
}

/*-------------------------------------------------------------- 
Whatsapp
--------------------------------------------------------------*/
.atl-wts {
  width: 75px;
  height: 75px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 2.55%;
  bottom: 10%;
  z-index: 999;
  background-color: #057ffa;
  border-radius: 50%;
  box-shadow: 0px 5px 10px 0px rgba(51, 51, 51, 0.75);
}
.atl-wts a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.atl-wts a svg {
  width: 35px;
  height: auto;
  fill: #e8e8e4;
}

/*-------------------------------------------------------------- 
Dev By
--------------------------------------------------------------*/
.atl-devby {
  width: 100%;
  position: relative;
  padding: 2em 0;
  background-color: unset;
}
.atl-devby::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-top: 1px solid unset;
  background-color: #057ffa;
  z-index: -1;
}
.atl-devby-container {
  width: 95%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.atl-devby-container p {
  margin: 0;
  font-size: 1rem;
  color: #e8e8e4;
}
.atl-devby-container p a {
  font-weight: bold;
  color: #142440;
}

@media only screen and (max-width: 1680px) {
  /*-------------------------------------------------------------- 
  Main Banner
  --------------------------------------------------------------*/
  .atl-main-content h1 {
    font-size: 3rem;
  }
  .atl-main-content:first-child {
    width: 60%;
    padding: 0 0 5%;
  }
  .atl-main-content:last-child {
    width: 40%;
    align-items: flex-end;
  }
  .atl-main-info {
    bottom: 5%;
  }

  /*-------------------------------------------------------------- 
  About Us
  --------------------------------------------------------------*/
  .atl-aus {
    padding: 5% 0 15%;
  }
  .atl-aus-content:last-child h1 {
    font-size: 2rem;
  }

  /*-------------------------------------------------------------- 
  Package
  --------------------------------------------------------------*/
  .atl-pack-content:first-child {
    width: 60%;
  }
  .atl-pack-content:last-child {
    width: 40%;
  }

  /*-------------------------------------------------------------- 
  Footer
  --------------------------------------------------------------*/
  footer .atl-footer-overlay {
    height: 75%;
  }
}
@media only screen and (max-width: 1536px) {
  /*-------------------------------------------------------------- 
  Main Banner
  --------------------------------------------------------------*/
  .atl-main-content h1 {
    font-size: 2.8rem;
  }
  .atl-main-content:first-child {
    padding: 0 0 10%;
  }

  /*-------------------------------------------------------------- 
  About Us
  --------------------------------------------------------------*/
  .atl-aus-content:last-child h1 {
    font-size: 1.8rem;
  }
  .atl-aus-icons {
    margin: 10% 0 0;
  }

  /*-------------------------------------------------------------- 
  Services
  --------------------------------------------------------------*/
  .atl-services-head {
    width: 80%;
  }

  /*-------------------------------------------------------------- 
  International
  --------------------------------------------------------------*/
  .atl-inter {
    padding: 5% 0;
  }

  /*-------------------------------------------------------------- 
  Footer
  --------------------------------------------------------------*/
  footer .atl-footer-content:first-child h1 {
    font-size: 2.4rem;
  }
}
@media only screen and (max-width: 1440px) {
  /*-------------------------------------------------------------- 
  Main Banner
  --------------------------------------------------------------*/
  .atl-main-content h1 {
    font-size: 2.6rem;
  }

  /*-------------------------------------------------------------- 
  Footer
  --------------------------------------------------------------*/
  footer .atl-footer-content:first-child h1 {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 1366px) {
  /*-------------------------------------------------------------- 
  Main Banner
  --------------------------------------------------------------*/
  .atl-main-content h1 {
    font-size: 2rem;
  }
  .atl-main-content p {
    font-size: 0.9rem;
  }
  .atl-main-info-box svg {
    width: 30px;
  }
  .atl-main-info-box p {
    font-size: 0.9rem;
  }

  /*-------------------------------------------------------------- 
  About Us
  --------------------------------------------------------------*/
  .atl-aus-content:last-child h1 {
    font-size: 1.6rem;
  }
  .atl-aus-content:last-child p {
    font-size: 0.9rem;
  }

  /*-------------------------------------------------------------- 
  Package
  --------------------------------------------------------------*/
  .atl-pack-content:first-child h1 {
    font-size: 2rem;
  }
  .atl-pack-content:first-child p {
    font-size: 0.9rem;
  }
  .atl-pack-content:first-child a {
    font-size: 0.9rem;
  }

  /*-------------------------------------------------------------- 
  Services
  --------------------------------------------------------------*/
  .atl-services-head h1 {
    font-size: 2rem;
  }
  .atl-services-content-title h2 {
    font-size: 1.2rem;
  }
  .atl-services-content-txt p {
    font-size: 0.9rem;
  }

  /*-------------------------------------------------------------- 
  International
  --------------------------------------------------------------*/
  .atl-inter-content h1 {
    font-size: 2rem;
  }
  .atl-inter-content p {
    font-size: 0.9rem;
  }
}
@media only screen and (max-width: 1152px) {
  /*-------------------------------------------------------------- 
  Main Banner
  --------------------------------------------------------------*/
  .atl-main-container {
    width: 85%;
  }
  .atl-main-content h1 {
    font-size: 2.4rem;
  }

  /*-------------------------------------------------------------- 
  About Us
  --------------------------------------------------------------*/
  .atl-aus-container {
    flex-direction: column-reverse;
  }
  .atl-aus-content {
    width: 100%;
  }
  .atl-aus-content:first-child {
    margin: 2em 0;
  }
  .atl-aus-content:first-child img {
    width: 80%;
    margin: 0 auto;
  }
  .atl-aus-content:last-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .atl-aus-content:last-child h1, .atl-aus-content:last-child h2, .atl-aus-content:last-child p {
    text-align: center;
  }
  .atl-aus-content:last-child h1 {
    font-size: 2.4rem;
  }
  .atl-aus-icons {
    margin: 5% 0 0;
  }

  /*-------------------------------------------------------------- 
  Package
  --------------------------------------------------------------*/
  .atl-pack-container {
    flex-direction: column-reverse;
  }
  .atl-pack-content {
    width: 100% !important;
  }
  .atl-pack-content:first-child {
    align-items: center;
  }
  .atl-pack-content:first-child h1, .atl-pack-content:first-child h2, .atl-pack-content:first-child p {
    text-align: center;
  }
  .atl-pack-content:last-child img {
    width: 60%;
    margin: 0 auto;
  }

  /*-------------------------------------------------------------- 
  Services
  --------------------------------------------------------------*/
  .atl-services-content {
    width: 45%;
    margin: 0 0 5%;
  }

  /*-------------------------------------------------------------- 
  International
  --------------------------------------------------------------*/
  .atl-inter-container {
    width: 90%;
  }

  /*-------------------------------------------------------------- 
  Footer
  --------------------------------------------------------------*/
  footer .atl-footer-content:first-child h1 {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 1024px) {
  /*-------------------------------------------------------------- 
  WP/Wordpress
  --------------------------------------------------------------*/
  #content.atl-main-active {
    transform: translateX(50%);
  }

  #colophon.atl-main-active {
    transform: translateX(50%);
  }

  /*-------------------------------------------------------------- 
  Header Side Menu Content
  --------------------------------------------------------------*/
  .atl-mm-side {
    width: 50%;
  }

  /*-------------------------------------------------------------- 
  Main Banner
  --------------------------------------------------------------*/
  .atl-main-container {
    width: 90%;
    flex-direction: column;
  }
  .atl-main-content:first-child {
    width: 100%;
    padding: 15% 0 0;
    justify-content: flex-start;
  }
  .atl-main-content:first-child h1, .atl-main-content:first-child p {
    text-align: center;
  }
  .atl-main-content:first-child h1 {
    font-size: 3.6rem;
  }
  .atl-main-content:last-child {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .atl-main-content:last-child img {
    width: 70%;
    margin: 0 auto;
  }
  .atl-main-info-box svg {
    width: 45px;
  }
  .atl-main-info-box p {
    font-size: 1rem;
  }

  /*-------------------------------------------------------------- 
  About Us
  --------------------------------------------------------------*/
  .atl-aus {
    padding: 5% 0 25%;
  }
  .atl-aus-content:last-child h1 {
    font-size: 2.6rem;
  }
  .atl-aus-icons {
    flex-wrap: wrap;
  }
  .atl-aus-icons-logos {
    width: 33.33%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 0 2em;
  }

  /*-------------------------------------------------------------- 
  Package
  --------------------------------------------------------------*/
  .atl-pack {
    padding: 5% 0 25%;
  }
  .atl-pack-content {
    width: 100% !important;
  }
  .atl-pack-content:first-child {
    margin: 5% 0 0;
  }
  .atl-pack-content:first-child h1 {
    font-size: 3rem;
  }
  .atl-pack-content:last-child img {
    width: 80%;
  }

  /*-------------------------------------------------------------- 
  Services
  --------------------------------------------------------------*/
  .atl-services {
    padding: 5% 0 25%;
  }

  /*-------------------------------------------------------------- 
  International
  --------------------------------------------------------------*/
  .atl-inter {
    height: auto;
  }
  .atl-inter-container {
    flex-direction: column-reverse;
  }
  .atl-inter-content:first-child {
    width: 50%;
  }
  .atl-inter-content:last-child {
    width: 90%;
    align-items: center;
  }
  .atl-inter-content:last-child h1, .atl-inter-content:last-child h2, .atl-inter-content:last-child p {
    text-align: center;
  }
  .atl-inter-globe {
    width: 100%;
    align-items: center;
    left: 2em;
  }

  /*-------------------------------------------------------------- 
  404
  --------------------------------------------------------------*/
  .atl-404 {
    height: 100dvh;
  }
  .atl-404-container {
    width: 90%;
    height: 100%;
  }

  /*-------------------------------------------------------------- 
  Footer
  --------------------------------------------------------------*/
  footer .atl-footer-container {
    flex-direction: column;
  }
  footer .atl-footer-content {
    width: 100%;
  }
  footer .atl-footer-content:first-child {
    align-items: center;
    margin: 10% 0;
  }
  footer .atl-footer-content:first-child h1, footer .atl-footer-content:first-child h2 {
    text-align: center;
  }
  footer .atl-footer-content:first-child h1 {
    color: #142440;
  }
  footer .atl-footer-content-links {
    width: 100%;
    justify-content: center;
  }
  footer .atl-footer-overlay {
    height: 35%;
  }
}
@media only screen and (max-width: 768px) {
  /*-------------------------------------------------------------- 
  Main Banner
  --------------------------------------------------------------*/
  .atl-main-content:last-child img {
    width: 60%;
  }
}
@media only screen and (max-width: 820px) {
  /*-------------------------------------------------------------- 
  Main Banner
  --------------------------------------------------------------*/
  .atl-main-content:first-child {
    padding: 20% 0 0;
  }
  .atl-main-content:first-child h1 {
    font-size: 2.6rem;
  }

  /*-------------------------------------------------------------- 
  About Us
  --------------------------------------------------------------*/
  .atl-aus-content:last-child h1 {
    font-size: 2rem;
  }

  /*-------------------------------------------------------------- 
  Package
  --------------------------------------------------------------*/
  .atl-pack-content:first-child h1 {
    font-size: 2rem;
  }
  .atl-pack-skew {
    bottom: -2px;
  }
}
@media only screen and (max-width: 600px) {
  /*-------------------------------------------------------------- 
  WP/Wordpress
  --------------------------------------------------------------*/
  #content.atl-main-active {
    transform: translateX(80%);
  }

  #colophon.atl-main-active {
    transform: translateX(80%);
  }

  /*-------------------------------------------------------------- 
  Header Info
  --------------------------------------------------------------*/
  header .atl-mh-info {
    padding: 0.25em 0;
  }
  header .atl-mh-info-container {
    padding: 0.25em 0;
  }
  header .atl-mh-info-menu button svg {
    height: 25px;
  }
  header .atl-mh-info-logo a svg {
    width: 65px;
  }

  /*-------------------------------------------------------------- 
  Header Side Menu Content
  --------------------------------------------------------------*/
  .atl-mm-side {
    width: 80%;
  }

  /*-------------------------------------------------------------- 
  Main Banner
  --------------------------------------------------------------*/
  .atl-main-content:first-child {
    padding: 25% 0 0;
  }
  .atl-main-content:first-child h1 {
    font-size: 1.6rem;
  }
  .atl-main-content:first-child p {
    font-size: 0.7rem;
  }
  .atl-main-content:last-child img {
    width: 70%;
  }
  .atl-main-info-box {
    width: 100%;
    padding: 0.5em 0;
  }
  .atl-main-info-box svg {
    width: 25px;
  }
  .atl-main-info-box p {
    text-align: left !important;
  }
  .atl-main-info hr {
    display: none;
  }

  /*-------------------------------------------------------------- 
  About Us
  --------------------------------------------------------------*/
  .atl-aus-wrapper {
    width: 95%;
  }
  .atl-aus-content:last-child h2 {
    font-size: 1.4rem;
  }
  .atl-aus-content:last-child h1 {
    font-size: 1.6rem;
  }
  .atl-aus-content:last-child p {
    font-size: 0.7rem;
  }

  /*-------------------------------------------------------------- 
  Package
  --------------------------------------------------------------*/
  .atl-pack {
    padding: 5% 0 35%;
  }
  .atl-pack-content:first-child {
    margin: 5% 0 0;
  }
  .atl-pack-content:first-child h2 {
    font-size: 1.4rem;
  }
  .atl-pack-content:first-child h1 {
    font-size: 1.6rem;
  }
  .atl-pack-content:first-child p {
    font-size: 0.7rem;
  }
  .atl-pack-content:first-child a {
    width: 90%;
  }
  .atl-pack-content:last-child img {
    width: 80%;
  }

  /*-------------------------------------------------------------- 
  Services
  --------------------------------------------------------------*/
  .atl-services {
    padding: 5% 0 25%;
  }
  .atl-services-head {
    width: 90%;
    margin: 0 auto;
  }
  .atl-services-head h1 {
    font-size: 1.6rem;
    text-align: center;
  }
  .atl-services-content {
    width: 100%;
  }
  .atl-services-content-title svg {
    width: 35px;
  }
  .atl-services-content-title h2 {
    font-size: 1rem;
  }
  .atl-services-content-txt p {
    font-size: 0.7rem;
  }

  /*-------------------------------------------------------------- 
  International
  --------------------------------------------------------------*/
  .atl-inter-content {
    width: 100% !important;
  }
  .atl-inter-content:last-child h2 {
    font-size: 1.4rem;
  }
  .atl-inter-content:last-child h1 {
    font-size: 1.6rem;
  }
  .atl-inter-content:last-child p {
    font-size: 0.7rem;
  }
  .atl-inter-globe {
    left: 1em;
  }

  /*-------------------------------------------------------------- 
  404
  --------------------------------------------------------------*/
  .atl-404-container {
    width: 100%;
  }
  .atl-404-content-txt {
    margin: 10% 0 2em;
  }
  .atl-404-content-txt h1 {
    font-size: 1.4rem;
    text-align: center;
  }
  .atl-404-content-txt p {
    font-size: 0.9rem;
    text-align: center;
  }
  .atl-404-content-box a {
    width: 80%;
    font-size: 0.9rem;
  }

  /*-------------------------------------------------------------- 
  Footer
  --------------------------------------------------------------*/
  footer .atl-footer-content:first-child h2 {
    font-size: 1.4rem;
  }
  footer .atl-footer-content:first-child h1 {
    font-size: 1.6rem;
  }
  footer .atl-footer-content:first-child a {
    width: 100%;
    font-size: 0.7rem;
  }

  /*-------------------------------------------------------------- 
  Whatsapp
  --------------------------------------------------------------*/
  .atl-wts {
    width: 65px;
    height: 65px;
    right: 5%;
  }

  /*-------------------------------------------------------------- 
  Dev By
  --------------------------------------------------------------*/
  .atl-devby-container {
    flex-direction: column;
    justify-content: center;
  }
  .atl-devby-container p {
    font-size: 0.7rem;
  }
}
@media only screen and (max-width: 360px) {
  /*-------------------------------------------------------------- 
  Main Banner
  --------------------------------------------------------------*/
  .atl-main-content:first-child h1 {
    font-size: 1.2rem;
  }
  .atl-main-content:first-child p {
    font-size: 0.7rem;
  }
  .atl-main-content:last-child img {
    width: 60%;
  }

  /*-------------------------------------------------------------- 
  About Us
  --------------------------------------------------------------*/
  .atl-aus-content:last-child h2 {
    font-size: 1rem;
  }
  .atl-aus-content:last-child h1 {
    font-size: 1.2rem;
  }

  /*-------------------------------------------------------------- 
  Package
  --------------------------------------------------------------*/
  .atl-pack-content:first-child h2 {
    font-size: 1rem;
  }
  .atl-pack-content:first-child h1 {
    font-size: 1.2rem;
  }

  /*-------------------------------------------------------------- 
  Services
  --------------------------------------------------------------*/
  .atl-services-head h1 {
    font-size: 1.2rem;
  }

  /*-------------------------------------------------------------- 
  International
  --------------------------------------------------------------*/
  .atl-inter-content:last-child h2 {
    font-size: 1rem;
  }
  .atl-inter-content:last-child h1 {
    font-size: 1.2rem;
  }

  /*-------------------------------------------------------------- 
  Footer
  --------------------------------------------------------------*/
  footer .atl-footer-content:first-child h2 {
    font-size: 1rem;
  }
  footer .atl-footer-content:first-child h1 {
    font-size: 1.2rem;
  }
  footer .atl-footer-content:first-child a {
    width: 100%;
  }
}
