@charset "UTF-8";
html {
  font-size: 100%;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Lato", sans-serif;
  color: #0A4396;
  line-height: 1.3;
  background-color: #F8F9FD;
}
body.noscroll {
  overflow: hidden;
}

a, a:visited, a:hover {
  text-decoration: none;
  color: #0A4396;
}

h1 {
  font-size: 2.875rem;
}

h2 {
  font-size: 1.75rem;
}
@media (min-width: 30em) {
  h2 {
    font-size: 1.875rem;
  }
}
@media (min-width: 64em) {
  h2 {
    font-size: 2.625rem;
  }
}

h3 a {
  text-decoration: none;
}

.page__title {
  text-align: center;
  padding-bottom: 3.125rem;
}
.page__title h1 {
  text-align: center;
  margin-bottom: 0.625rem;
}

.subheading {
  font-size: 0.9375rem;
}

.subtitle {
  font-size: 1.125rem;
  text-transform: uppercase;
}

.text-align-c {
  text-align: center;
}

.narrow-heading {
  max-width: 31.25rem;
}

.narrow-p {
  max-width: 43.75rem;
}
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.container {
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container--pall {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

section {
  padding-top: 1.25rem;
  padding-bottom: 3.125rem;
}
@media (min-width: 64em) {
  section {
    padding-bottom: 6.25rem;
  }
}

.bottom50 {
  margin-bottom: 3.125rem;
}

img {
  max-width: 100%;
  height: auto;
}

.flex {
  display: flex;
}
.flex-jc-sb {
  justify-content: space-between;
}
.flex-jc-c {
  justify-content: center;
}
.flex-ai-c {
  align-items: center;
}

button, .button {
  display: block;
  padding: 0.75rem 1.875rem;
  border-radius: 5px;
  color: #FFFFFF;
  background-color: #0A4396;
  border: 0;
  font-size: 0.875rem;
  text-transform: uppercase;
  font-weight: 400;
  cursor: pointer;
}

button2, .button2 {
  cursor: pointer;
}

@media (max-width: 63.9375em) {
  .hide-for-mobile {
    display: none;
  }
}

@media (min-width: 64em) {
  .hide-for-desktop {
    display: none;
  }
}

.header.open .header__toggle > span:first-child {
  transform: rotate(45deg);
}
.header.open .header__toggle > span:nth-child(2) {
  opacity: 0;
}
.header.open .header__toggle > span:last-child {
  transform: rotate(-45deg);
}
.header .overlay {
  opacity: 0;
  position: fixed;
  top: 0;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-image: linear-gradient(#0A4396, transparent);
  z-index: 1;
}
.header nav {
  position: relative;
  background-color: #F8F9FD;
  padding-top: 1.0625rem;
  padding-bottom: 1.0625rem;
  z-index: 2;
}
.header__logo {
  padding-top: 2px;
  padding-bottom: 2px;
}
.header__logo img {
  width: 3.6rem;
  height: 2.259375rem;
}
.header__toggle > span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: #0A4396;
  transition: all 300ms ease-in-out;
  transform-origin: 3px 1px;
}
.header__toggle > span:not(:last-child) {
  margin-bottom: 5px;
}
.header__menu {
  background-color: #FFFFFF;
  padding: 1.625rem;
  position: absolute;
  width: calc(100% - 3rem);
  margin-top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.header__menu a {
  display: block;
  padding: 0.625rem;
  color: #0A4396;
  text-align: center;
}
.header__links a {
  color: #0A4396;
  font-size: 1.125rem;
  position: relative;
}
.header__links a:not(:last-child) {
  margin-right: 3.25rem;
}
.header__links a:hover::before {
  content: "";
  display: block;
  position: absolute;
  height: 3px;
  left: 0;
  right: 0;
  bottom: -30px;
  background: #0A4396;
}

.has-fade {
  visibility: hidden;
}

@-webkit-keyframes fade-in {
  from {
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}

@keyframes fade-in {
  from {
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}
.fade-in {
  -webkit-animation: fade-in 200ms ease-in-out forwards;
          animation: fade-in 200ms ease-in-out forwards;
}

@-webkit-keyframes fade-out {
  from {
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}

@keyframes fade-out {
  from {
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}
.fade-out {
  -webkit-animation: fade-out 200ms ease-in-out forwards;
          animation: fade-out 200ms ease-in-out forwards;
}

.hero {
  display: flex;
  flex-direction: column;
}
@media (min-width: 64em) {
  .hero {
    flex-direction: row;
    align-content: center;
    align-items: center;
    z-index: 0;
  }
}
.hero__image {
  position: relative;
  background-image: url("/Images/hero.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 20.5rem;
  width: 100%;
}
@media (min-width: 30em) {
  .hero__image {
    min-height: 40rem;
    order: 1;
  }
}
@media (min-width: 64em) {
  .hero__image {
    order: 2;
    background-size: 150%;
    background-repeat: no-repeat;
    background-position: center center;
  }
}
.hero__intro {
  display: flex;
  align-items: center;
}
.hero__intro img {
  display: inline-block;
  padding-right: 0.625rem;
}
.hero__intro h2 {
  display: inline-block;
  padding: 0.3125rem;
  font-family: "EB Garamond", serif;
  font-size: 1.875rem;
}
.hero__text-section-container {
  order: 1;
}
@media (min-width: 30em) {
  .hero__text-section-container {
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 64em) {
  .hero__text-section-container {
    order: 1;
    width: 70%;
  }
}
.hero__icon {
  font-size: 3.5rem;
}
@media (min-width: 30em) {
  .hero__icon {
    font-size: 2.6rem;
  }
}
@media (min-width: 64em) {
  .hero__icon {
    font-size: 2.2rem;
  }
}
.hero__features {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
@media (min-width: 30em) {
  .hero__features {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.875rem;
    margin-bottom: 1.875rem;
    border: solid 0.125rem #0A4396;
    order: 2;
  }
}
.hero__feature {
  text-align: center;
  padding: 2.5rem;
}
.hero__feature h2 {
  font-size: 2.5rem;
  margin-top: 2rem;
  margin-bottom: 0;
}
@media (min-width: 30em) {
  .hero__feature h2 {
    font-size: 2rem;
    margin-top: 0.9735rem;
  }
}
@media (min-width: 64em) {
  .hero__feature h2 {
    font-size: 1.6rem;
    margin-top: 0.9735rem;
  }
}
.hero__feature p {
  margin: 0;
  font-weight: 300;
  font-size: 1.25rem;
}
@media (min-width: 30em) {
  .hero__feature p {
    font-size: 1.1rem;
  }
}
@media (min-width: 30em) {
  .hero__feature__icon-container {
    display: inline-block;
    vertical-align: middle;
    padding-right: 0.625rem;
  }
}
@media (min-width: 30em) {
  .hero__feature__icon-text-container {
    display: inline-block;
    vertical-align: middle;
  }
}
@media (min-width: 30em) {
  .hero__feature {
    padding: 0;
    width: 33%;
    min-width: 160px;
  }
  .hero__feature:not(:last-child) {
    border-right: dotted 0.125rem #0A4396;
  }
}
.hero__text {
  order: 1;
}
.hero__text h1 {
  font-size: 2.625rem;
  margin-top: 0.625rem;
}
@media (min-width: 30em) {
  .hero__text h1 {
    font-size: 2.875rem;
    order: 2;
  }
}

.history {
  background-color: #F2F5F8;
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.timeline::after {
  content: "";
  position: absolute;
  width: 6px;
  background-color: #0A4396;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
  margin-bottom: 15.563rem;
}
.timeline__container {
  padding: 0 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}
.timeline__container::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  right: -12px;
  background-color: white;
  border: 4px solid #0A4396;
  top: 120px;
  border-radius: 50%;
  z-index: 1;
}
.timeline__text-1::before {
  content: "In the 1900’s our founder, Abdul Kader Haji Sahib left for Sri Lanka, searching for opportunities to earn a living.";
  position: absolute;
  width: 18.75rem;
  top: 90px;
  right: -346px;
}
.timeline__text-2::before {
  content: "There he managed to find a job in a shop owned by some of his relatives.";
  position: absolute;
  width: 18.75rem;
  top: 90px;
  left: -346px;
  text-align: right;
}
.timeline__text-3::before {
  content: "Soon he learned the skill of making beedis—a traditional cigarette. Gradually he had his own shop. Later he developed his own brand, and then started to expand rapidly.";
  position: absolute;
  width: 18.75rem;
  top: 90px;
  right: -346px;
}
.timeline__image {
  max-width: 25rem;
  margin: 0 auto;
}

.logo__container {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 150px;
}
.logo__container::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  margin-right: auto;
  margin-left: auto;
  background-color: #0A4396;
  border: 4px solid #0A4396;
  top: 115px;
  border-radius: 50%;
  z-index: 1;
}
.logo__content {
  position: relative;
  margin-top: 6.25rem;
  max-width: 31.25rem;
  width: 50%;
}
.logo__text {
  text-align: center;
  max-width: 31.25rem;
  margin: 0 auto;
}

/* Place the container to the left */
.left {
  left: 0;
}

/* Place the container to the right */
.right {
  left: 50%;
}
.right::after {
  left: -12px;
}

@media (max-width: 63.9375em) {
  /* Place the timelime to the left */
  .timeline {
    /* Full-width containers */
  }
  .timeline::after {
    left: 3.25rem;
  }
  .timeline__container {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
    margin-bottom: 12.5rem;
  }
  .timeline__container::after {
    top: 4.0625rem;
  }
  .timeline__image {
    margin-left: 0;
    margin-right: auto;
  }
  .timeline__text-1::before {
    width: 18.75rem;
    top: 300px;
    right: 50px;
  }
  .timeline__text-2::before {
    width: 18.75rem;
    top: 300px;
    right: 50px;
    left: auto;
    text-align: left;
  }
  .timeline__text-3::before {
    width: 18.75rem;
    top: 300px;
    right: 50px;
  }
  /* Make sure all circles are at the same spot */
  .left::after, .right::after {
    left: 15px;
  }
  /* Make all right containers behave like the left ones */
  .right {
    left: 0%;
  }
  .logo__container::after {
    display: none;
  }
}
@media (max-width: 28.9375em) {
  /* Place the timelime to the left */
  .timeline__text-1::before {
    width: 18rem;
    top: 13.75rem;
    right: 0px;
    left: 2.5rem;
  }
  .timeline__text-2::before {
    width: 18rem;
    top: 13.75rem;
    right: 0px;
    left: 2.5rem;
  }
  .timeline__text-3::before {
    width: 18rem;
    top: 13.75rem;
    right: 0px;
    left: 2.5rem;
  }
  .timeline__container::after {
    top: 4.0625rem;
  }
}
* {
  transition: all 0.3s ease-out;
}

.companies h2 {
  text-align: center;
}
.companies .subheading {
  text-align: center;
}

.company__grid {
  margin-top: 4.375rem;
  display: grid;
  grid-template-columns: 1, 1fr;
}
@media (min-width: 30em) {
  .company__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 64em) {
  .company__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.company__item {
  margin: 0 auto 3.125rem auto;
}
@media (min-width: 30em) {
  .company__item {
    margin-bottom: 6.25rem;
  }
}
.company__content {
  position: relative;
  display: inline-block;
  width: 16.25rem;
  height: 20.3125rem;
  border: solid 2px #0A4396;
  overflow: hidden;
}
.company__content:hover {
  transition: all 0.2s ease-out;
  box-shadow: 0px 4px 8px rgba(38, 38, 38, 0.2);
  background-color: white;
  transform: scale(1.1);
}
.company__image {
  width: 100%;
  min-height: 10.9375rem;
  background-size: cover;
}
.company__text {
  position: absolute;
  bottom: 0;
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
  padding-bottom: 0.9375rem;
}

.vision {
  text-align: center;
}
.vision__container {
  max-width: 46.875rem;
  border: solid 2px #0A4396;
  margin: 0 auto 0 auto;
  padding-bottom: 2.5rem;
}

.footer {
  font-size: 15px;
  color: #FFFFFF;
  background-color: #0A4396;
  padding-bottom: 0.3125rem;
  padding-top: 25px;
}
.footer__logo {
  display: block;
  font-size: 20px;
  padding-top: 1.0625rem;
}
.footer__logo img {
  fill: #FFFFFF;
  width: 3.9rem;
  height: 2.259375rem;
}
.footer__logo h3 {
  display: block;
  margin-top: 0;
  margin-right: 0;
  margin-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
}
.footer__main {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 30em) {
  .footer__main {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer__right {
  max-width: 25.75rem;
}
@media (min-width: 30em) {
  .footer__right {
    padding-left: 30px;
    margin-top: 0;
  }
}
.footer__links {
  display: inline-block;
  margin-bottom: 1.5625rem;
}
.footer__links a, .footer__links a:visited {
  color: #FFFFFF;
  display: block;
  line-height: 30px;
}
.footer__description {
  max-width: 31.25rem;
  margin-bottom: 1.5625rem;
}
.footer__copyright {
  text-align: center;
}

.box .form-box {
  margin-bottom: 1.5625rem;
}
.box .form-box .button2 {
  display: block;
  margin-top: 15px;
  max-width: 150px;
  text-align: center;
  padding: 0.75rem 1.875rem;
  border-radius: 5px;
  color: #0A4396;
  background-color: #FFFFFF;
  border: 0;
  font-size: 0.875rem;
  text-transform: uppercase;
  font-weight: 400;
  cursor: pointer;
  opacity: 0.8;
}
@media (min-width: 30em) {
  .box .form-box .button2 {
    margin-left: 1.25rem;
  }
}
.box .form-box input {
  display: block;
  padding: 0.75rem 1.875rem;
  border-radius: 5px;
  border: none;
  opacity: 0.4;
}
@media (min-width: 30em) {
  .box .form-box {
    display: flex;
    align-items: flex-end;
  }
}

.page__image {
  min-height: 400px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 3.75rem;
  background-size: cover;
  background-repeat: no-repeat;
  border: solid 2px #0A4396;
  background-position: center center;
  box-shadow: inset 0 0 99999px rgba(0, 120, 255, 0.5);
}
.page__content {
  max-width: 53.125rem;
}
.page__content p, .page__content ul {
  color: #121316;
}

.company__card {
  max-width: 37.5rem;
  padding: 3.125rem;
  margin-top: 3.125rem;
  margin-bottom: 3.125rem;
  margin-left: auto;
  margin-right: auto;
  background: #FFFFFF;
  box-shadow: 0px 0px 30px 2px rgba(10, 67, 150, 0.1);
  border-radius: 5px;
}
.company__card h3 {
  display: inline-block;
}
@media (min-width: 30em) {
  .company__card {
    margin-top: 6.25rem;
    margin-bottom: 6.25rem;
  }
}

.icon--small {
  font-size: 1.5625rem;
  display: inline-block;
  padding-right: 0.3125rem;
}

.form__content {
  max-width: 500px;
  text-align: center;
}
.form__content input {
  width: 90%;
  display: block;
  margin: 1.25rem auto;
  padding: 0.625rem;
  border: solid 0.0625rem #0A4396;
  height: 3.125rem;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
}
.form__content textarea {
  width: 90%;
  margin: 0.3125rem auto;
  padding: 0.625rem;
  height: 9.375rem;
  border: solid 0.0625rem #0A4396;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
}
.form__content .button {
  margin-top: 1.875rem;
  width: 50%;
}
.form__content .g-recaptcha {
  margin: 1.5625rem 1.25rem;
}
.form__content .g-recaptcha iframe {
  margin-right: auto;
  margin-left: auto;
}

.status {
  font-size: 16;
  color: green;
  padding: 0.9375rem;
}
.status span {
  color: red;
}/*# sourceMappingURL=style.css.map */