/*
media query manager
0 - 600px       phone
600 - 900px     tablet portrait
900 - 1200px    tablet landscape
[1200 - 1800px] normal styles
1800px +        big desktops
*/
@keyframes moveFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem); }
  80% {
    transform: translateX(1rem); }
  100% {
    opacity: 1;
    transform: translate(0); } }

@keyframes moveFromRight {
  0% {
    opacity: 0;
    transform: translateX(10rem); }
  80% {
    transform: translateX(-1rem); }
  100% {
    opacity: 1;
    transform: translate(0); } }

@keyframes moveFromBottom {
  0% {
    opacity: 0;
    transform: translateY(2rem); }
  100% {
    opacity: 1;
    transform: translate(0); } }

* {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

html {
  font-size: 62.5%; }
  @media (max-width: 75em) {
    html {
      font-size: 62.5%; } }
  @media (max-width: 56.25em) {
    html {
      font-size: 56.25%; } }
  @media (min-width: 112.5em) {
    html {
      font-size: 75%; } }

body {
  box-sizing: border-box; }

@font-face {
  font-family: "meera";
  src: url(../../fonts/meera.woff); }

@font-face {
  font-family: "uroob";
  src: url(../../fonts/uroob.woff); }

@font-face {
  font-family: "keraleeyam";
  src: url(../../fonts/keraleeyam.woff); }

body {
  font-family: "keraleeyam";
  font-size: 1.8rem;
  font-weight: 100;
  line-height: 1.7;
  color: #777;
  padding: 1.5rem; }
  @media (max-width: 56.25em) {
    body {
      padding: 0; } }

.heading-primary {
  color: #fff;
  backface-visibility: hidden;
  margin-bottom: 4rem; }
  @media (max-width: 37.5em) {
    .heading-primary {
      margin-bottom: 2rem; } }
  .heading-primary--main {
    display: block;
    font-size: 6rem;
    font-weight: 500;
    letter-spacing: .2rem;
    animation: moveFromLeft 1s ease-out; }
    @media (max-width: 37.5em) {
      .heading-primary--main {
        font-size: 4rem;
        letter-spacing: 0; } }
  .heading-primary--sub {
    margin-top: -3rem;
    display: block;
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: 1.1rem;
    animation: moveFromRight 1s ease-out; }
    @media (max-width: 37.5em) {
      .heading-primary--sub {
        font-size: 2rem;
        letter-spacing: 0.3rem;
        margin-top: -1rem; } }

.heading-secondary {
  font-size: 4rem;
  font-weight: 600;
  display: inline-block;
  background-image: linear-gradient(to right, #3352ff, #1644AD);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: 2px;
  transition: all .2s; }
  .heading-secondary:hover {
    text-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2); }

.heading-tertiary {
  font-size: 2rem;
  font-weight: 500; }

.heading-tab {
  font-size: 2rem;
  font-weight: 500;
  display: inline-block;
  color: #f7f7f7;
  letter-spacing: 2px;
  transition: all .2s; }
  .heading-tab:hover {
    text-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2); }
  @media (max-width: 37.5em) {
    .heading-tab {
      font-size: 1.7rem;
      letter-spacing: 1px; } }

.linkout:link, .linkout:visited {
  color: #3352ff; }

.linkout:hover, .linkout:active {
  color: #ec454f; }

.u-center-text {
  text-align: center !important; }

.u-right-text {
  text-align: right !important; }

.u-left-text {
  text-align: left !important; }

.u-margin-bottom-small {
  margin-bottom: 1.5rem !important; }

.u-margin-bottom-medium {
  margin-bottom: 4rem !important; }

.u-margin-bottom-big {
  margin-bottom: 6rem !important; }
  @media (max-width: 37.5em) {
    .u-margin-bottom-big {
      margin-bottom: 3rem !important; } }

.u-margin-top-big {
  margin-top: 8rem !important; }

.u-margin-top-medium {
  margin-top: 6rem !important; }
  @media (max-width: 37.5em) {
    .u-margin-top-medium {
      margin-top: 4rem !important; } }

.u-margin-top-huge {
  margin-top: 10rem !important; }

.btn, .btn:link, .btn:visited {
  text-decoration: none;
  display: inline-block;
  padding: .5rem 4rem;
  border-radius: 10rem;
  transition: all .2s;
  position: relative;
  font-size: 2rem;
  letter-spacing: 1px; }
  @media (max-width: 37.5em) {
    .btn, .btn:link, .btn:visited {
      font-size: 2rem;
      padding: 0.2rem 3rem 0.1rem 3rem; } }

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.4); }
  .btn:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0; }

.btn:active, .btn:focus {
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.4); }

.btn--white {
  background-color: #fff;
  color: #ec454f; }

.btn--blue {
  background-color: #637BFF;
  color: #fff; }
  .btn--blue:hover {
    background-color: #1644AD;
    color: #ec454f;
    font-weight: 600; }
  .btn--blue::after {
    background-color: #637BFF; }

.btn--wide {
  text-align: center;
  padding: .5rem 8rem; }

.btn::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 10rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all .4s; }

.btn--animated {
  animation: moveFromBottom .5s ease-out .75s;
  animation-fill-mode: backwards; }

.btn__container {
  text-align: center; }

.testimonial {
  max-width: 100rem !important; }
  @media (max-width: 37.5em) {
    .testimonial {
      max-width: 50rem !important; } }
  @media (max-width: 37.5em) {
    .testimonial__col {
      margin-bottom: .5rem !important; } }
  .testimonial__box {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 7rem 1rem 3rem 1rem;
    text-align: center;
    border-radius: 3px; }
    @media (max-width: 56.25em) {
      .testimonial__box {
        min-height: 23rem; } }
    @media (max-width: 37.5em) {
      .testimonial__box {
        min-height: 0;
        padding: 0rem; } }
    .testimonial__box__imagecontainer {
      position: relative; }
      @media (max-width: 37.5em) {
        .testimonial__box__imagecontainer {
          float: left;
          transform: translate(-1rem, -1rem); } }
    .testimonial__box__image {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 12rem;
      height: 12rem;
      clip-path: circle(50% at 50% 50%);
      transform: translate(-50%, -120%); }
      @media (max-width: 37.5em) {
        .testimonial__box__image {
          width: 8rem;
          height: 8rem;
          position: relative;
          left: 0;
          top: 0;
          transform: none; } }
    .testimonial__box__heading {
      color: #ec454f; }
    .testimonial__box__text {
      font-size: 1.7rem;
      color: #ec454f;
      text-align: center; }

.tab {
  max-width: 114rem;
  margin: 0 auto;
  overflow: hidden;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px; }
  .tab__nav {
    background-color: #fff; }
    .tab__nav::after {
      content: "";
      display: table;
      clear: both; }
  .tab__link {
    background-color: #637BFF;
    cursor: pointer;
    float: left;
    width: 50%;
    text-align: center;
    text-decoration: none;
    transition: all .2s ease-in; }
    .tab__link--active {
      background-color: #fff;
      color: #1644AD;
      border-bottom-color: transparent;
      cursor: default;
      padding-top: 2rem; }
      .tab__link--active h2 {
        font-size: 3.5rem;
        font-weight: 600;
        background-image: linear-gradient(to right, #3352ff, #1644AD);
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
        text-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2); }
        @media (max-width: 37.5em) {
          .tab__link--active h2 {
            font-size: 2.5rem; } }
  .tab__content {
    background-color: #fff;
    padding: 1rem 0; }
    .tab__content__point {
      display: inherit;
      font-size: 1.8rem;
      margin: 2rem 8rem; }
      @media (max-width: 37.5em) {
        .tab__content__point {
          margin: 1rem; } }

.card {
  perspective: 150rem;
  -moz-perspective: 150rem;
  position: relative;
  height: 14rem; }
  .card__side {
    height: 14rem;
    transition: all .8s;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    backface-visibility: hidden;
    border-radius: 3px;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15); }
    .card__side--front {
      background-color: rgba(255, 255, 255, 0.6); }
    .card__side--back {
      background-image: linear-gradient(to right bottom, rgba(244, 72, 129, 0.6), rgba(236, 69, 79, 0.6));
      transform: rotateY(-180deg); }
  .card:hover .card__side--front {
    transform: rotateY(180deg); }
  .card:hover .card__side--back {
    transform: rotateY(0deg); }
  .card__container {
    width: 100%;
    padding: 2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center; }
  .card__heading {
    font-size: 2rem;
    font-weight: 500;
    color: #1644AD; }
  .card__details {
    color: #fff; }
  @media (max-width: 37.5em) {
    .card {
      height: auto; }
      .card__side {
        height: auto;
        position: relative;
        border-radius: 0;
        box-shadow: none; }
        .card__side--front {
          background-color: rgba(255, 255, 255, 0.6);
          padding: 2rem 1rem 1rem 1rem; }
        .card__side--back {
          background-image: none;
          background-color: rgba(255, 255, 255, 0.6);
          transform: rotateY(0);
          padding: 0 1rem 2rem 1rem; }
      .card:hover .card__side--front {
        transform: rotateY(0); }
      .card__container {
        width: 100%;
        padding: 0;
        position: relative;
        top: 0;
        left: 0;
        transform: translate(0); }
      .card__button {
        font-size: 1.7rem !important; } }

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  opacity: .2;
  overflow: hidden; }
  .bg-video__content {
    height: 100%;
    width: 100%;
    object-fit: cover; }

.composition__photo {
  position: relative;
  width: 33.333333%;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.4);
  border-radius: 3px;
  z-index: 10;
  transition: all .2s;
  outline-offset: 1rem;
  float: left; }
  .composition__photo--p1 {
    transform: translate(2rem, 2rem); }
  .composition__photo--p2 {
    z-index: 15; }
  .composition__photo--p3 {
    transform: translate(-2rem, 2rem); }
  .composition__photo:hover {
    outline: 1rem solid #1644AD;
    transform: scale(1.05) translateY(-0.5rem);
    box-shadow: 0 2.5rem 4rem rgba(0, 0, 0, 0.5);
    z-index: 20; }

.composition:hover .composition__photo:not(:hover) {
  transform: scale(0.95); }

.tile {
  width: 75%;
  margin: 0 auto;
  box-shadow: 0 3rem 6rem rgba(0, 0, 0, 0.1);
  background-color: #fff;
  border-radius: 3px;
  padding: 2rem 4rem 4rem 4rem; }
  @media (max-width: 37.5em) {
    .tile {
      width: 100%;
      padding: 1rem 2rem 2rem 2rem; } }
  .tile__head {
    color: #ec454f;
    text-align: center;
    padding: 1.5rem; }
  .tile__para {
    text-align: justify; }
  .tile__line {
    word-wrap: break-word; }

.tile-skew {
  transform: skew(-12deg);
  text-align: center;
  padding: 4rem; }
  @media (max-width: 37.5em) {
    .tile-skew {
      transform: skew(0);
      padding: 2rem; } }
  .tile-skew > * {
    transform: skew(12deg); }
    @media (max-width: 37.5em) {
      .tile-skew > * {
        transform: skew(0); } }

.header {
  font-family: "uroob";
  position: relative;
  height: 95vh;
  background-image: linear-gradient(to right, rgba(22, 68, 173, 0.8), rgba(99, 123, 255, 0.8)), url(../../img/header-image.jpg);
  background-size: cover;
  background-position: top;
  border-bottom-left-radius: 50% 10%;
  border-bottom-right-radius: 50% 10%; }
  @media (max-width: 37.5em) {
    .header {
      height: 82vh; } }
  .header__logo-box {
    padding: 3rem 3rem;
    display: inline-block; }
  .header__logo {
    height: 5rem; }
  .header__nav {
    font-size: 2rem;
    letter-spacing: 1px;
    float: right;
    padding-top: 4rem;
    margin-right: 1rem; }
    @media (max-width: 75em) {
      .header__nav {
        display: none; } }
  .header__list {
    list-style: none; }
  .header__item {
    display: inline-block; }
    .header__item:not(:last-child) {
      margin-right: 7rem; }
  .header__link:link, .header__link:visited {
    color: #f7f7f7;
    text-decoration: none;
    display: inline-block;
    transition: all .2s; }
  .header__link:hover, .header__link:active {
    border-bottom: 2px solid #ec454f; }
  .header__text-box {
    white-space: nowrap;
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center; }
    @media (max-width: 37.5em) {
      .header__text-box {
        top: 55%; } }

.header-all {
  font-family: "uroob";
  background-color: #1644AD; }
  .header-all__logo-box {
    padding: 2.8rem 2rem 2rem 2rem;
    display: inline-block; }
  .header-all__logo {
    height: 5rem; }
  .header-all__nav {
    font-size: 1.8rem;
    letter-spacing: 1px;
    float: right;
    padding-top: 4rem;
    margin-right: 1rem; }
    @media (max-width: 75em) {
      .header-all__nav {
        display: none; } }
  .header-all__list {
    list-style: none; }
  .header-all__item {
    display: inline-block; }
    .header-all__item:not(:last-child) {
      margin-right: 3rem; }
  .header-all__link:link, .header-all__link:visited {
    color: #f7f7f7;
    padding: .1rem .3rem;
    text-decoration: none;
    display: inline-block;
    transition: all .2s; }
  .header-all__link:hover, .header-all__link:active {
    border-bottom: 2px solid #ec454f; }

.mob-navigation {
  display: none; }
  @media (max-width: 75em) {
    .mob-navigation {
      display: block; } }
  .mob-navigation__checkbox {
    display: none; }
  .mob-navigation__button {
    height: 5rem;
    width: 5rem;
    border-radius: 100%;
    position: fixed;
    top: 4rem;
    right: 4rem;
    background-color: #fff;
    z-index: 300;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
    text-align: center;
    cursor: pointer; }
    @media (max-width: 56.25em) {
      .mob-navigation__button {
        top: 2.5rem;
        right: 2.5rem; } }
  .mob-navigation__background {
    height: 4rem;
    width: 4rem;
    border-radius: 100%;
    position: fixed;
    top: 4.5rem;
    right: 4.5rem;
    background-image: radial-gradient(#637BFF, #1644AD);
    z-index: 100;
    transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1); }
    @media (max-width: 56.25em) {
      .mob-navigation__background {
        top: 3rem;
        right: 3rem; } }
  .mob-navigation__nav {
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    overflow: hidden;
    opacity: 0;
    width: 0;
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .mob-navigation__list {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    list-style: none;
    text-align: center;
    width: 100%; }
  .mob-navigation__item {
    margin: 1rem; }
  .mob-navigation__link:link, .mob-navigation__link:visited {
    display: inline-block;
    font-size: 3rem;
    color: #fff;
    text-decoration: none;
    padding: 1rem 2rem; }
  .mob-navigation__link:hover, .mob-navigation__link:active {
    background-color: #fff;
    color: #1644AD; }
  .mob-navigation__checkbox:checked ~ .mob-navigation__background {
    transform: scale(80); }
  .mob-navigation__checkbox:checked ~ .mob-navigation__nav {
    opacity: 1;
    width: 100%; }
  .mob-navigation__icon {
    position: relative;
    margin-top: 2.5rem; }
    .mob-navigation__icon, .mob-navigation__icon::before, .mob-navigation__icon::after {
      width: 2rem;
      height: 2px;
      background-color: #333;
      display: inline-block; }
    .mob-navigation__icon::before, .mob-navigation__icon::after {
      content: "";
      position: absolute;
      left: 0;
      transition: all .2s; }
    .mob-navigation__icon::before {
      top: -.6rem; }
    .mob-navigation__icon::after {
      top: .6rem; }
  .mob-navigation__checkbox:checked + .mob-navigation__button .mob-navigation__icon {
    background-color: transparent; }
  .mob-navigation__checkbox:checked + .mob-navigation__button .mob-navigation__icon::before {
    top: 0;
    transform: rotate(135deg); }
  .mob-navigation__checkbox:checked + .mob-navigation__button .mob-navigation__icon::after {
    top: 0;
    transform: rotate(-135deg); }

.row {
  max-width: 114rem;
  margin: 0 auto; }
  .row:not(:last-child) {
    margin-bottom: 8rem; }
    @media (max-width: 37.5em) {
      .row:not(:last-child) {
        margin-bottom: 4rem; } }
  @media (max-width: 37.5em) {
    .row {
      max-width: 50rem;
      padding: 0 1rem; } }
  .row::after {
    content: "";
    display: table;
    clear: both; }
  .row [class^="col-"] {
    float: left; }
    .row [class^="col-"]:not(:last-child) {
      margin-right: 6rem; }
      @media (max-width: 37.5em) {
        .row [class^="col-"]:not(:last-child) {
          margin-right: 0;
          margin-bottom: 4rem; } }
    @media (max-width: 37.5em) {
      .row [class^="col-"] {
        width: 100% !important; } }
  .row .col-1-of-2 {
    width: calc((100% - 6rem) / 2); }
  .row .col-1-of-3 {
    width: calc((100% - 2*(6rem)) / 3); }
  .row .col-2-of-3 {
    width: calc(2* ((100% - 2*(6rem)) / 3) + 6rem); }
  .row .col-1-of-4 {
    width: calc((100% - 3*(6rem)) / 4); }
  .row .col-2-of-4 {
    width: calc(2 * ((100% - 3*(6rem)) / 4) + 6rem); }
  .row .col-3-of-4 {
    width: calc(3 * ((100% - 3*(6rem)) / 4) + 2 * 6rem); }

@media (max-width: 37.5em) {
  .header-row {
    max-width: 114rem !important;
    padding: 0 !important; } }

@media (max-width: 37.5em) {
  .header-col {
    margin-bottom: 0 !important; } }

@media (max-width: 37.5em) {
  .footer-col {
    margin-bottom: 2rem !important; } }

.footer {
  background-color: #1644AD;
  padding: 2.5rem 0;
  font-size: 1.7rem;
  letter-spacing: 1px;
  color: #f7f7f7; }
  .footer__logo-box {
    text-align: center;
    margin-bottom: 2rem; }
  .footer__logo {
    width: 10rem;
    height: auto; }
  .footer__nav {
    border-top: 1px solid #f7f7f7;
    padding-top: 2rem;
    display: inline-block; }
    @media (max-width: 75em) {
      .footer__nav {
        margin-left: 2rem; } }
    @media (max-width: 37.5em) {
      .footer__nav {
        margin-left: 0;
        width: 100%;
        text-align: center; } }
  .footer__list {
    list-style: none; }
  .footer__item {
    display: inline-block; }
    .footer__item:not(:last-child) {
      margin-right: 1.5rem; }
  .footer__link:link, .footer__link:visited {
    color: #f7f7f7;
    background-color: #1644AD;
    text-decoration: none;
    display: inline-block;
    transition: all .2s; }
  .footer__link:hover, .footer__link:active {
    color: #ec454f;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.4);
    transform: rotate(5deg) scale(1.3); }
  .footer__copyright {
    border-top: 1px solid #f7f7f7;
    padding-top: 2rem;
    float: right; }
    @media (max-width: 75em) {
      .footer__copyright {
        margin-right: 2rem; } }
    @media (max-width: 37.5em) {
      .footer__copyright {
        float: none;
        margin-right: 0;
        width: 100%;
        text-align: center; } }

.section-testimonial {
  background-color: #f7f7f7;
  padding: 20rem 2rem 6rem 2rem;
  margin-top: -10vh; }
  @media (max-width: 37.5em) {
    .section-testimonial {
      padding: 11rem 1rem 2rem 1rem; } }

.section-tab {
  background-color: #f7f7f7;
  padding: 7rem 2rem; }
  @media (max-width: 37.5em) {
    .section-tab {
      padding: 3rem 1rem; } }

.section-scheme {
  position: relative;
  padding: 7rem 2rem 10rem 2rem; }
  @media (max-width: 37.5em) {
    .section-scheme {
      padding: 2rem 1rem 3rem 1rem; } }

.section-aboutus-page {
  background-color: #f7f7f7;
  padding: 5rem 2rem; }
  @media (max-width: 37.5em) {
    .section-aboutus-page {
      padding: 5rem 1rem; } }

.aboutus__heading {
  padding: 1rem; }

.aboutus__text {
  text-align: center; }

.section-scheme-page {
  background-color: #f7f7f7;
  padding: 5rem 2rem; }
  @media (max-width: 37.5em) {
    .section-scheme-page {
      padding: 5rem 1rem; } }

.scheme__heading {
  padding: 1rem; }

.section-service-page {
  background-color: #f7f7f7;
  padding: 5rem 2rem; }
  @media (max-width: 37.5em) {
    .section-service-page {
      padding: 5rem 1rem; } }

.service__heading {
  padding: 1rem; }

.section-contactus-page {
  background-color: #f7f7f7;
  padding: 5rem 2rem; }
  @media (max-width: 37.5em) {
    .section-contactus-page {
      padding: 5rem 1rem; } }

.contactus__heading {
  padding: 1rem; }

.section-link-page {
  background-color: #f7f7f7;
  padding: 5rem 2rem; }
  @media (max-width: 37.5em) {
    .section-link-page {
      padding: 5rem 1rem; } }

.link__heading {
  padding: 1rem; }
