/* Generic styles */
@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&display=swap');
:root{
  --text-color: #f0f0f0;
  --accent-color: #006aff;
  --white:#ffffff;
  --black:#000;
  --grey:#dbdada;
  --oxford:#000022;
  --lapis:#014463;
  --highlt:#ff8b3e;
  --gunmetal:#141618;
  --rosewood:#570000;
  --verdgris:#48a0a6;
  --tawny:#d45500;
  --lightlapis:#f0faff;
  --curve: 7;
}

html{
  font-size:62.5%;
}

* {
  box-sizing: border-box;
}

html, body {
  overflow-x:hidden;
  }

body{
  margin:0;
  padding:0;
  width:100vw;
  background-color:var(--white);
  font-family:'Segoe UI','Open Sans','Roboto';
}

img{
  width:100%;
}

p{
  font-size: 1.7em;
  line-height:1.6;
}

h1 {
  font-size:4rem;
  font-weight: 200;
}

h2{
  font-size:3rem;
  font-weight: 200;
}

h3{
  font-size:2rem;
  padding-left:0;
}

h4{
  font-size:1.6rem;
  padding-left:0;
}

h5{
  font-size:1.3rem;
}

.bg-grey{
  background-color: var(--grey);
}

.bg-light-grey{
  background-color: #f8f8f8;
}

.bg-white{
  background-color: var(--white);
}

.bg-gunmetal{
  background-color: var(--gunmetal);
}

.bg-rosewood{
  background-color: var(--rosewood);
}

.bg-oxford{
  background-color: var(--oxford);
}

.bg-lapis{
  background-color: var(--lapis);
}

.bg-black{
  background-color: var(--black);
}

.bg-darker-grey{
  background-color: #dadada;
}

.bg-business{
  background-image: url(bg-business4.webp);
}

.bg-lightlapis{
  background-color: var(--lightlapis);
}

.footer-logo{
width:48px;
}

p{
  font-size: 1.6rem;
}

form{
   font-size: 1.6rem;
   color:var(--white);
}


/************ Pg-Index Mobile Version ************/
.col, .wrapper .align-items-center, .d-block, .w-100, .carousel-height, .row{
  margin:0px;
  padding:0px;
}

.banner {
  background-color:hsl(24, 100%, 42%); 
  min-height:5vh;
  display: flex;
  flex-direction: row;
  flex-wrap:wrap;
  justify-content:space-between;
  align-items:center;
  color:var(--white);
  padding:0 2em;
}

.small-icons{
  width:32px;
  padding:0.5em 0.5em;
}

.roboto-bold {
  font-family: 'Open Sans', "Roboto";
  font-size:1.4rem;
  font-weight: 500;
  font-style: normal;
  color:var(--white);
  text-decoration: none;
}

a > span{
  padding-right: 0.5em;
}

.new-row {
  display: flex;
  align-items: center;
  width: 100%;
}

.right{
  display:none;

}

.right span{
  align-content: center;

}

.right a .icon {
  transition: transform 0.3s ease, fill 0.3s ease; 
}

.right a:hover .icon {
  transform: translateY(-7px);
  fill: #48a9a6;
}

/*************************************************/
.links-container{
  background-color: #035e89;
  display:flex;
  flex-direction: column;
  align-items: flex-start;
  height:100%;

  position: fixed;
  top: 0;
  right: -100%;
  z-index: 10;
  width: 65vw;

  box-shadow: -5px 0 5px rgba(0, 0, 0, 0.25);
  transition: 0.75s ease-out;
}

nav{
  height: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin:0;

}

.dropdown{
  display:flex;
  flex-direction: column;
}
 
nav a{
  box-sizing: border-box;
  height: auto;
  width: 100%;
  padding: 20px 30px;
  justify-content: flex-start;

  color: var(--white);
  text-decoration: none;
  font-size: 1.6rem;
}

.dropdown-content {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  background-color: #306f8b;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.4);
  z-index: 1;
  min-width: 160px;
  overflow: hidden;
  left:75px;
  top:44px;
  border-radius: 0 0 5px 5px;
  transform: translateY(10px);
  transition: opacity 0.35s ease-out, transform 0.35s ease-out, visibility 0.5s linear 0.35s; 
}

.dropdown-content a {
  font-size: 1.2rem !important;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
}

#arrow{
  width:24px;
  fill:var(--white);
}

.dropdown:hover .dropdown-content, 
.dropdown:focus-within .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.35s ease-out, transform 0.35s ease-out, visibility 0s linear;
}

.oval-button:hover, .oval-button3:hover{
  background-color:#acfcf9;
  color: var(--oxford);
}

.stroke-anim {
    position: relative; 
}

.stroke-anim::after {
    content: '';
    position: absolute;
    top: 100%; 
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #48a9a6;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.2s ease-in-out;
    margin-top: 5px; 
}

.stroke-anim:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

nav .home-link{
  margin-right: auto;
}

#sidebar-active{
  display: none;
}

.open-sidebar-button, .close-sidebar-button{
  padding: 20px;
  display: block;
}

#sidebar-active:checked ~ .links-container{
  right: 0;
}

#sidebar-active:checked ~ #overlay{
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
}

.logo-img{
  max-width:155px;
  padding:2em;
}

.middle{
  order:3;
}

.right{
  order:2;
  margin-left:auto;
  display: none;
}

.overlay-box {
  width:100%;
  height:100%;
  top:0;
  left:0;
  position: absolute;
  text-align: center;
  padding:0.1em 0.3em;
  background-color: var(--lapis);
  opacity: 0.9;
}

.overlay-text {
  color: var(--white); 
  font-size: 1.8rem;
  font-weight: 100;
  box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.7);

}

.oval-button {
  position: absolute;
  bottom:50px;
  text-align: center;
  border-radius: 50px; 
  padding: 1rem 2rem; 
  font-size: 1.5rem; 
  font-family: "Open Sans", sans-serif;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  font-weight: 400;
  border:0;
  background-color:var(--tawny);
  color:var(--white);
  display: inline-block;
}

.oval-button2 {
  border-radius: 50px; 
  padding: 1rem 2rem; 
  font-size: 1.5rem; 
  font-family: "Open Sans", sans-serif;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  justify-content: center;
  /* transition: background-color 0.3s ease, color 0.3s ease; */
  font-weight: 700;
  border:0;

  background-color: var(--gunmetal);
  color: var(--white);
  display: flex;
}

.oval-button2 a {
  color:var(--white);
}

.oval-button3{
  background-color: var(--tawny);
  border-radius: 50px;
  color: var(--white);
  display: flex;
  justify-content: center;
  padding: 1rem 4rem;
  font-size: 1.5rem;
  font-weight: 500;
}

.oval-button4 {
  border-radius: 50px; 
  padding: 1rem 2rem;
  margin-top:1.5em;
  font-size: 1.5rem; 
  font-family: "Open Sans", sans-serif;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  font-weight: 700;
  border:0;
  background-color: var(--gunmetal);
  color: var(--white);
  display: inline-block;
}

  .msicons{
    width:40px;
  }

/* **************** */
.stroke-anim1 {
  position: relative;
  display: inline-block;
  overflow: hidden; /* Ensure pseudo-elements stay contained */
}

.stroke-anim1::before, .stroke-anim1::after {
  content: '';
  position: absolute;
  top: 0; 
  background-color: #d45500;
  width: 50.5%;
  height: 100%;
  transform: scaleX(0); /* Initial state */
  transition: transform 0.4s ease-in;
}

.stroke-anim1::before {
  left: 0;
  transform-origin: right;
}

.stroke-anim1::after {
  left: 50%;
  transform-origin: left;
}

.stroke-anim1.in-view::before,
.stroke-anim1.in-view::after {
  transform: scaleX(1); 
}

.overlay-text2 {
  width:100%;
  position: absolute;
  top: 10%;
  left: 0%;
  color: var(--white); 
  font-size: 1.4rem; 
  font-weight: bold; 
  text-align: center;
  padding:0.5em 0.5em;
  z-index:10;
  opacity: 0;
}

/* ******************* */

.carousel a{
  width:24px;
  margin:1.5em;
}

.jumbotron{
  color:var(--black);
  width:100%;
  margin:0;
}

h2.text-center{
  font-weight: 300;
  color:var(--white);
}

.jumbotron2{
  width:100%;
  margin:0;
  background-color: var(--lapis);
  color:var(--white);
  display:flex;
  height:60vh;
  align-items:center;
  justify-content: center;
}

.centred-heading h2{
  font-weight: 200;
}

.highlt2{
  color:var(--highlt);
  font-style: italic;
  font-weight: 400;

}

.sm-text{
  font-size: 1.6rem !important;
  font-weight: 300 !important;
  color:var(--grey);
  padding:0 1em;
}

.ticker {
  padding-block: 8px;
  overflow: hidden;
  user-select: none;
  --gap:1em;
  display: flex;
  gap: var(--gap);
}

.ticker ul {
  font-size:3rem;
  font-weight: 100;
  list-style: none;
  flex-shrink: 0;
  min-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--gap);

  animation: scroll 70s linear infinite;
}

.ticker:hover ul {
  animation-play-state: paused;
}

@keyframes scroll {
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

.ticker .company,
.ticker .price {
  font-weight: bold;
}

.jumbotron2 p {
  font-size: 2rem;
  font-weight:100;
  padding:0 0.75em;
}

.oval-button4:hover{
  background-color: var(--highlt);
}

.highlt{
  color:var(--tawny);
}

.highlt3{
  color:var(--highlt);
  font-style:italic;
}


/**************** Animations ****************/
.animated{
  opacity: 0;
}

.fadeintop{
  animation:fadeintop 3s both;
}

@keyframes fadeintop{
  0%{
    opacity:0;
    transform:translateY(-100px)};
  100%{
    opacity:1;
    transform:translateY(0);
  }
}

.fadeinbot{
  animation:fadeinbot 2.5s both;
}

@keyframes fadeinbot{
  0%{
    opacity:0;
    transform:translateY(30px);}
  100%{
    opacity:1;
    transform:translateY(0);
  }
}

.fadeinbot2{
  animation:fadeinbot2 0.35s both;
}

@keyframes fadeinbot2{
  0%{
    opacity:0;
    transform:translateY(55px);}
  100%{
    opacity:1;
    transform:translateY(0);
  }
}

.fadeinright{
  animation:fadeinright 2.5s both;
}

@keyframes fadeinright{
  0%{
    opacity:0;
    transform:translateX(75px);}
  100%{
    opacity:1;
    transform:translateX(0);
  }
}

.fadeinbot3 {
  animation: fadeinbot3 0.5s both;
}

@keyframes fadeinbot3 {
  0% {
    transform: translateY(1000px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  
}

.fadeinbot4{
  animation:fadeinbot4 2.5s both;
}

@keyframes fadeinbot4{
  0%{
    opacity:0;
    transform:translateY(30px);}
  100%{
    opacity:0.92;
    transform:translateY(0);
  }
}

.fadeinleft{
  animation:fadeinleft 2.5s both;
}

@keyframes fadeinleft{
  0%{
    opacity:0;
    transform:translateX(-100px);}
  100%{
    opacity:1;
    transform:translateX(0);
  }
}

.fadein {
  animation: fadein 1s linear 0.5s forwards;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.flyinleft {
  animation: flyinleft .5s ease-in 2.6s forwards;
}

@keyframes flyinleft {
  0% {
    transform: translateX(-1600px);
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.flyinright {
  animation: flyinright .5s ease-in 2.6s forwards;
}

@keyframes flyinright {
  0% {
    transform: translateX(1600px);
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}


.parachute{
  animation:parachute 1.5s ease-in  4s forwards;
  opacity: 0;
}

@keyframes parachute{
  0%{
    transform:translateY(-100px);
  }

  100%{
    transform:translateY(0);
    opacity:1;
  }
}

.stroke-anim2 {
  position: relative;
  transition: transform 4s cubic-bezier(1, 1, 0.15, 2), opacity .2s ease;

}

.stroke-anim2::after, 
.stroke-anim2::before {
  content: '';
  position: absolute;
  top: 0; 
  width: 50.5%;
  height: 100%;
  background-color: var(--tawny);
  transform: scaleX(0);
  transition: transform 0.4s ease-in;
}

.stroke-anim2::before {
  left: 0%;
  transform-origin: left;
}

.stroke-anim2::after {
  left: 50%;
  transform-origin: right;
}

/* New class that triggers animation */
.stroke-anim2.visible::before {
  transform: scaleX(1);
  transform-origin: right;
}

.stroke-anim2.visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

/**************** Plain Card Styles ****************/

.white-card{
  width:100%;
  height:95%;
  margin:1em auto;
  padding:3em 0;
  color:var(--oxford);
  font-size: 1.6rem;
}

.plain-card{
  color:var(--oxford);
  border-radius:2%;
  max-width:300px;
  box-shadow: 3px 5px 11px -1px rgba(0,0,0,1);
  background: linear-gradient(180deg, rgb(244, 251, 255) 31%, rgb(121, 164, 184) 100%);

}

.plain-card h3{
  font-size: 3rem;
  font-weight: 350;
}


/************** What We Offer/About Us **************/

.wwo h2::after{
  content:'';
}

.row-container {
  height:300px;
}

.white-trapezium, .white-trapezium2 {
  display:flex;
  position: relative;
  height: 100%; 
  align-items: center;
  opacity: 0;
} 

.white-trapezium{
  background-image:linear-gradient(110deg, var(--white) 52.5%, transparent 0%);
}

.white-trapezium2 {
  background-image:linear-gradient(290deg, var(--white) 52.5%, transparent 0%);
}

.bg-image, .bg-image2{
  background-image:url('media-wall.webp');
  background-repeat: no-repeat;
  opacity: 0;
  position: relative;
  z-index: 1;
}

.bg-image{
  background-position-x: right;
}

.bg-image2{
  background-position-x: left;
  padding:0;
}

.centred-heading{
  justify-content: left;
  width:50%;
  padding-left:6%;
  opacity:0;

}

.centred-heading h2, .about-us h2{
  color:var(--tawny);
  font-size: 3.5rem;
}

.centred-heading h2::after{
  content:'';
}

.center-right{
  padding-left:60%;
  align-items: center;
}

/**************** Animated Cards *****************/
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  /* margin: 3rem; */
  padding: 0;
  list-style-type: none;
}

.card {
  position: relative;
  display: block;
  height: 100%;  
  border-radius: calc(var(--curve) * 1px);
  overflow: hidden;
  text-decoration: none;
  width:85%;
  margin:0 auto;
}

.card__image {      
  width: 100%;
  height: auto;
}

.card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;      
  border-radius: calc(var(--curve) * 1px);    
  background-color: var(--white);      
  transform: translateY(100%);
  transition: .2s ease-in-out;
}

.card:hover .card__overlay {
  transform: translateY(0);
}
  
.card__header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2em;
  padding: 2em;
  background-color: var(--white);
  transform: translateY(-100%);
  transition: .2s ease-in-out;
}
      
.card__arc {
  width: 80px;
  height: 80px;
  position: absolute;
  bottom: 100%;
  right: 0;      
  z-index: 1;
}

.card:hover .card__header {
  transform: translateY(0);
}
  
.card__thumb {
  flex-shrink: 0;
  width: 50px;
  height: 50px;      
  border-radius: 20;      
}
        
.card__title {
  font-size: 1.9rem;
  font-weight:400;
  margin: 0 0 0.3em;
  color: #000022;
  height:1em;
}
        
.card__description {
  padding: 0 2em 3em;
  margin: 0;
  color: #000000;
  font-family: Arial, Helvetica, sans-serif;   
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  line-height: 1.25em;
  font-size: 1.4rem;
}


footer{
  color:white;
  font-size:1.1rem;
  padding:0 0em;
}
  
footer ul {
  list-style: none;
  padding:0;
  margin:0;
  font-size: 1.3rem;
}
        
footer li > a{
  text-decoration:none;
  color:var(--white);
  justify-content:center;
}

footer li > a:hover{
  color:var(--tawny);
  font-weight: 400;
}
  
        
footer li, h4{
  text-align: left;
  margin:0;
  padding:0.15em;
}

.colour{
  fill:var(--tawny);
}

footer h4{
  color:var(--grey);
  font-weight: 600;
  padding:1em 0em 0.5em;
}

footer svg{
  width:100px;
}

.foot-child{
  justify-content:center;
}
          
.ft-icon {
  width:40px;
  fill:#4d4d4d;
  padding-top: 0.25em;
}

.text-center a{
  text-decoration: none;
}

footer p{
  font-size: 1.2rem;
}

.bg-white a {
  color: #000000; 
  text-decoration: none; 
  /* font-weight: bold;  */
}

/********** Pg-Training/CS Mobile Version ***********/

.training-overlay-text {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--white); 
  padding:0.5em 0.7em;
}

.training-overlay-text h1{
  font-size: 1.5rem;
}

.lapis-strip{
  clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 0% 50%);
  background:#003355;
  height:75px;
}

.short-para{
  width:80%;
}

table{
  background-color: --white;
  width:100%;
  font-size: 1.3rem;
}

#off365 h4, #off365 p {
  display: inline;
  margin: 0;
}

#off365 {
  text-align: left;
}

.table-overflow{
  overflow-x:auto !important;
  background-color: --white;
  width:100%;
  font-size: 1.3rem;
  table-layout: fixed;
}

tbody tr:nth-child(odd) {
  background-color: var(--grey); 
}

thead tr {
  background-color:var(--oxford); 
  color: white; 
}

th, td {
  text-align: left; 
  white-space: nowrap; 
  overflow: hidden; 
  text-overflow: ellipsis; 
  border: 1px solid #ddd; 
  padding:0.125em 1em;
}

.heading-text{
  color:var(--white);
  font-weight: 600;
  font-size: 1.3rem;
}

.round-img-sm, .round-img-md, .round-img-lg{
  border-radius: 50%;
  border-width:5px;
  border-style:solid;
  border-color: #ffffff;
  position: absolute;
}

.round-img-sm{
  top:-25px;
  left:98px;
  z-index:9;
  width:140px;
}

.round-img-md {
  top:31px;
  left:-10px;
  z-index:8;
  width:150px;
}

.round-img-lg {
  top:90px;
  left:73.6px;
  z-index:10;
  width:225px;
}

.overlay-image {
  width:300px;
  position: relative;
  height:270px;
  padding:0;
  z-index:1;
  overflow: visible;
  margin:0 auto;
}

.bc-highlt{
  font-weight: 450;
  color:var(--highlt);
}

.bc-norm{
  color: #92cde9;
}

.col.p-3 h4 {
  font-weight: 500;
}

ul {
  font-size: 1.6rem;
}

.little-icons{
  width:20px;
  height:24px;
  margin:0.25em 0.5em;
}

.icon-format{
  display:block;
  font-size: 1.6rem;
  padding-left:1rem;
}

.form-group{
  padding:0.5em;
}

form label{
  padding:0.5em;
  font-weight: 500;
}

ul.tcc-list {
  list-style: none;
  padding-left: 0;
}

ul.tcc-list li {
  position: relative; 
  padding-left: 2.5em;  
  margin-bottom: 0.25em;
  font-size:1.6rem;
  font-weight: 300;
}

ul.tcc-list li::before {
  content: '';
  position: absolute;
  left: -2%;
  top: 55%; 
  transform: translateY(-50%); 
  width: 0.8em;
  height: 0.8em;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left:1em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50' viewBox='0 0 50 50'%3E%3Crect width='25' height='24' fill='%23035389'/%3E%3Crect width='25' height='24' x='12' y='12' fill='%23d45500'/%3E%3Crect width='25' height='24' x='24' y='24' fill='%23000000'/%3E%3C/svg%3E");

}

/***************Contact Us****************/

.bg-lightlapis a{
  text-decoration: none;
  color:black;
}

  @media(min-width: 450px){
    .overlay-box {
      padding:3em 1em;
    }

  }

/************* Pg-Index Tablet Version **************/
@media(min-width: 768px){
  ul.tcc-list li::before {
    left: -1%;
  }
  
  .sm-text{
    font-size: 2.5rem !important;
    font-weight: 300 !important;
    color:var(--grey);
    padding:0 2em;
  }
  
  ul.tcc-list li {
    padding-left: 2.5em;  
    margin-bottom: 0.25em;
    font-size:2.2rem;
    font-weight: 300;
  }
  
  .overlay-box {
    top: 10%;
    left: 53%;
    width:40%;
    padding:1em;
    height:35vh;
  }

  .oval-button {
    font-size: 1.25rem;
    padding: 0.75rem 2rem; 
    bottom:20px;
  }

  .footer-height{
    height:20vh;
  }

  .logo-img{
    max-width:175px;
  }

  .overlay-box > h1{
    font-size: 2.6rem;
  }

  .overlay-box > .fadeinright  {
    font-size:1.5rem;
  }

  .row-container {
    height:400px;
  }

  .col.p-3 h4 {
    font-size: 1.9rem;
  }

  .ticker ul {
    animation: scroll 40s linear infinite;
  }
  

  /* ****** Pg-Training/CS Tablet Version  ******** */

  .training-overlay-text h1{
    font-size: 2.5rem;
  }
  .training-overlay-text span {
    font-size: 1.4rem;
  }

  .round-img-sm{
    top:5px;
    left:68px;
    width:145px;
  }
  
  .round-img-md {
    top:50px;
    left:-55px;
    width:160px;
  }
  
  .round-img-lg {
    top:115px;
    left:33.6px;
    width:250px;
  }

  .table-overflow{
    overflow-x:auto;
    -webkit-overflow-scrolling: touch; 
  }

  .bg-oxford{
    background-color: var(--oxford);
  }
  
  .heading-text{
    color:var(--white);
    font-weight: 600;
    font-size: 1.3rem;
  }

   .lapis-strip{
    height:100px;
  }
  
  .msicons{
    width:50px;
  }
}

/************ Pg-Index Desktop Version *************/
@media(min-width: 1200px){
  p {
    font-size: 1.7rem;
  }

  .overlay-box {
    top: 10%;
    left: 57%;
    width:38%;
    font-size: 1.4rem; 
    padding:2em;
    height:80%;
  }

  .ticker ul {
    animation: scroll 40s linear infinite;
  }
  
  .oval-button {
    font-size: 1.5rem;
    padding: 1rem 2rem; 
    bottom:2.5em;
    margin-top:9%;
  
  }
  
  .logo-img{
    max-width:200px;
  }
    
  .right{
    display: flex;
    font-size:1.6rem;
    justify-content: flex-end;
    padding-right:2em;
    gap: 0.5em;
  }
  
  .links-container {
    background-color:var(--white);
    position: static;
    flex-direction: row;
    width: 100%;
    height: 100%;
    box-shadow: none;
    transition: none;
    justify-content: center;
    font-size: 1.4rem;
  }

  nav a {
    display:flex;
    padding: 0px 20px;
    height: 100%;
    width: auto;
    justify-content: center;
    align-items: center;
    color: var(--gunmetal);
    font-size: 1.6rem;
  }

  nav .home-link{
    margin-right: auto;
  }

  .open-sidebar-button, .close-sidebar-button{
    display: none;
  }
  .middle{
    order:2;
  }
  
  .right{
    order:3
  }
  
  .left, .middle, .right {
    flex: 1; 
  }
  
  .left, .right {
    flex: 1; 
  }
  
  .middle {
    flex: 2;
  }

  .icon {
    width:40px;
    fill:#4d4d4d;
    padding-top: 0.25em;
  }

  .show{
    display:block;
  }

   .jumbotron h2{
    font-size: 3rem;
    font-weight: 300;

  }
  
  .jumbotron2 p {
    font-size: 4.5rem;
    font-weight:100;
  }
  
  .about-us {
    opacity:0;
   }
  
  .wwo::after, .about-us::after {
    display:block;
    font-size: 1.6rem;
    line-height: 1.5em;
    padding-top:1em;
    color:var(--black);
    white-space: pre-wrap; 
  }

  .wwo{
    opacity:0;
  }
  
  .wwo h3, .about-us h3, h3{
    font-size:2.5rem;
    font-weight:300;
  }

  .about-us h2{
   display:flex;
   justify-content: start;
  }

  .centred-heading{
    justify-content: left;
    width:45%;
    padding-left:6%;
  }

  .carousel a{
    margin:3em;
  }
  
  .banner {
    justify-content:flex-end;
    align-items:center;
    padding:0 2em;
  }
  
  .banner > span{
    margin-right: 1em;
  }

  .overlay-box > h1{
    font-size: 4.5rem;
  }

  .overlay-box > .fadeinright  {
    font-size:2rem;
  }

  .row-container {
    height:500px;
  }

  .training-overlay-text {
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--white); 
    padding:0.5em 1em;
  }

  .training-overlay-text span {
    font-size: 1.6rem;
  }

  .training-overlay-text h1{
    font-size: 3rem;
  }

  .lapis-strip{
    height:150px;
  }

  .plain-card p{
    padding:0 1.8em;
    font-size: 1.6rem;
    font-weight: 300;
  }

  .round-img-sm{
    top:-50px;
    left:18px;
    width:220px;
  }

  .round-img-md {
    top:30px;
    left:-155px;
    width:245px;
  }

  .round-img-lg {
    top:95px;
    left:23.6px;
    width:300px;
    z-index:10;
  }

  .new-h2 {
    color:var(--gunmetal);
    font-weight: 400;
    padding-bottom: 0.25em;
  }
  
  .new-h3{
    font-size: 3rem;
    font-weight: 400;

  }

  .full-screen{
    height:100.5vh;
  }

  .squeeze{
    width:80%;
  }


  /* #training{
    font-size: 1.6rem;
  }

  #training p{
    font-weight: bold;
  } */

  .custom-rounded{
    border-radius:1%;
    border-style: solid;
    border-width: 1px;
    border-color:var(--oxford);
  }

  .dropdown {
    position: relative;
    display: inline-block;
  }

  .dropdown-content {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px); 
    transition: opacity 0.5s ease-out, transform 0.5s ease-out, visibility 0s linear 0.5s; 
    position: absolute;
    background-color: #fff;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.4);
    z-index: 1;
    min-width: 160px;
    overflow: hidden;
    left: 10px;
    top: 24px;
    border-radius: 0 0 5px 5px; 
  }

  .dropdown-content a {
      font-size: 1.4rem !important;
      padding: 8px 30px;
      text-decoration: none;
      display: block;
  }

  .dropdown:hover .dropdown-content, 
  .dropdown:focus-within .dropdown-content {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      transition: opacity 0.35s ease-out, transform 0.35s ease-out, visibility 0s linear;
  }

  #arrow{
    display:inline;
    fill:var(--gunmetal);
    width:20px;
  }

  .vertical-spacer{
    margin:4em 0;
  }

  footer li{
    text-align: left;
    margin:0;
    padding:0.4em;
  }


}
