*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

body{
    background-color:#000; 
}

.scroll-down {
  position: absolute;
  left: 50%;
  bottom: 40px;
  display: block;
  text-align: center;
  font-size: 30px;
  z-index: 100;
  text-decoration: none;
  text-shadow: 0;
  width: 20px;
  height: 20px;
  border-bottom: 4px solid #5B7C99;
  border-right: 4px solid #5B7C99;
  z-index: 9;
  left: 50%;
  -webkit-transform: translate(-50%, 0%) rotate(45deg);
  -moz-transform: translate(-50%, 0%) rotate(45deg);
  transform: translate(-50%, 0%) rotate(45deg);
  -webkit-animation: fade_move_down 3s ease infinite;
  -moz-animation:    fade_move_down 3s ease infinite;
  animation:         fade_move_down 3s ease infinite;
}

@-webkit-keyframes fade_move_down {
  0%   { -webkit-transform:translate(0,-10px) rotate(45deg); opacity: 0;  }
  80%  { opacity: 1;  }
  100% { -webkit-transform:translate(0,10px) rotate(45deg); opacity: 0; }
}
@-moz-keyframes fade_move_down {
  0%   { -moz-transform:translate(0,-10px) rotate(45deg); opacity: 0;  }
  80%  { opacity: 1;  }
  100% { -moz-transform:translate(0,10px) rotate(45deg); opacity: 0; }
}
@keyframes fade_move_down {
  0%   { transform:translate(0,-10px) rotate(45deg); opacity: 0;  }
  80%  { opacity: 1;  }
  100% { transform:translate(0,10px) rotate(45deg); opacity: 0; }
}

#loading-screen {
    font-size: 30px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #262626;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: left;
    flex-direction: column;
}
  
#loading {
    position: fixed;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: left;
    margin-left: 700px;
}

#loading-text {
    margin-right: 120px; 
    font-size: 25px; 
    font-weight: bold; 
    margin-left: 600px;
    background: linear-gradient(to bottom, #f29962, #ff6b5d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#loading::after {
  content: "...";
  animation: loading-dots 1s 3;
  font-size: 30px;
  background: linear-gradient(to bottom, #f29962, #ff6b5d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes loading-dots {
  0% {
    content: "";
  }
  25% {
    content: ".";
  }
  50% {
    content: "..";
  }
  75% {
    content: "...";
  }
  100% {
    content: "";
  }
}

  
.container2 {
    padding: 5px 5%; 
}

.container2 h1 span {
    font-size: 45px;
}

.floating-arrow a {
    font-size: 25px;
    text-decoration: none;
    color: white;
}

.floating-arrow a:hover {
    margin-left: -10px; 
}

.pure-container {
	display: flex;
}

.pure-container.brochure {
    margin-top: 475px;
}

.pure-container.logo {
    margin-top: 750px;
}

.pure-container.handbook {
    margin-top: 500px;
}


.column {
	flex-basis: 100%;
}

.column-left {
	flex-basis: 40%;
	padding-right: 20px;
}

.column-right {
    flex-basis: 60%;
    padding-left: 25px;
}

.column-middle {
    flex-basis: 33.3%;
    padding-right: 20px;
}

.column-left-2 {
    flex-basis: 33.3%;
    padding-right: 20px;
}

.column-right-2 {
    flex-basis: 33.3%;
    padding-right: 20px;
}

@media screen and (max-width: 600px) {
    .column {
      width: 100%;
    }
}

html{
    scroll-behavior: smooth;
}

body {
    background: #262626;
    color: #fff;
}

#header {
    width: 100%;
    height: 120vh;
    background: linear-gradient(#ff914d, #fd786c);
}

.header-logo {
    width: 100px;
    height: 25px;
}

.container {
    padding: 10px 10%;
}

nav {
    display: flex;
    align-items: center;
    justify-content: right;
    flex-wrap: wrap;
    padding: 0;
}

nav ul {
    list-style: none;
    text-align: center;
}

nav ul li {
    display: inline-block;
}

nav ul li a {
    display: block;
    padding: 15px;
    text-decoration: none;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 10px;
}

nav ul li a,
nav ul li a:after,
nav ul li a:before {
    transition: all .5s;
}

nav.shift ul li a {
    position:relative;
    z-index: 1;
}

nav.shift ul li a:hover {
    color: #fff;
}

nav.shift ul li a:after {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 1 px;
    content: '.';
    color: transparent;
    background: #5B7C99;
    border-radius: 10px;
    visibility: none;
    opacity: 0;
    z-index: -1;
}

nav.shift ul li a:hover:after {
    opacity: 1;
    visibility: visible;
    height: 100%;
}

#aka {
    color: skyblue;
}

.header-text {
    margin-top: 20%; 
    font-size: 30px;
}

.header-test h1{
    font-size: 60px;
    margin-top: 20px;
}

.header-text h1 span {
    color: #fff;

}

.header-text p {
    font-size: 25px;
    color: #fff;
}

.header-text p span {
    font-size: 17px;
    color: #262626;
    line-height: 1.5em;
    min-height: 1em; 
    display: block; 
    padding-left: 1px;
}

.btn.btn3 {
    display:inline-block;
    background-color:rgba(255, 255, 255, 0.5); 
    border: 2px solid #262626;
    color: #262626;
    margin-top: 25px;
}

.btn.btn4 {
    display:inline-block;
    background-color:rgba(255, 255, 255, 0.5); 
    border: 2px solid #fff;
    color: #262626;
    margin-left: 10px; 
    margin-top: -5px;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 20px;
    padding-right: 20px;
}

/* about section */

#about {
    background-color: #262626;
    padding: 80px 0;
    color: #fff;
}

.row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-col-1 {
    flex-basis: 60%;
}

.about-col-2 {
    flex-basis: 35%;
}

.about-col-2 img{
    width: 93%;
    border-radius: 15px;
    margin-top: 100px;
    margin-left: 30px;
    border: 3px solid #e7bcff;
}

.sub-title {
    font-size: 60px;
    font-weight: 600;
    color: #e7bcff;
}

.tab-titles {
    display: flex;
    margin: 20px 0 40px;
}

.tab-links {
    margin-right: 50px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}

.tab-links::after {
    content: '';
    width: 0;
    height: 3px;
    background: #e7bcff;
    position: absolute;
    left: 0;
    bottom: -8px;
    transition: 0.5s;
}

.tab-links.active-link::after {
    width: 60%;
}

.tab-contents ul {
    line-height: 1em; 
}

.tab-contents p {
    line-height: 1em; 
}

.tab-contents span ul li {
    list-style-type: circle;

    padding-left: 1em;
    text-indent: -1em;
    list-style-position: inside;
}

.tab-contents span {
    font-size: 16px;
    line-height: 1.2em; 
}

.tab-contents ul li {
    list-style: none;
    margin: 10px 0;
}

.tab-contents ul li span {
    color: #e7bcff;
    font-size: 16px;
}

.tab-contents {
    display: none;
}

.tab-contents.active-tab {
    display: block;
}

.recognition ul li span {
    color: rgb(255, 255, 148);
}

/* projects */
#lately {
    background-color: #5B7C99;
    padding: 30px 0;
    color: #fff;
}

.sub-sub-title {
    font-size: 30px;
    color: #5B7C99; 
}

.ongoing {
    font-size: 30px;
    color: #ff914d;
}

.lately-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 90px;
    margin-top: 10px;
}

.lately-list div {
    padding: 20px;
    font-size: 12px;
    font-weight: 300;
    border-radius: 10px;
    transition: background 0.5s, transform 0.5s;
}

.lately-list div i{
    font-size: 50px;
    margin-bottom: 30px;
}

.lately-list div h2 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.15em;
}
.lately-list div h3 {
    font-weight: 500;
}

.lately-list p {
    font-size: 14px;
}

.lately-list span {
    font-size: 15px;
    padding-left: 3px;
}

.lately-list div a{
    text-decoration: none;
    color: #fff;
    font-size: 12px;
    margin-top: 20px;
    display: inline-block;
}

.lately-list div:hover{
    background: linear-gradient(#6B6B6B, #5B7C99);
    transform: translateY(-10px);
}

.lately-list div.ongoing-hover:hover{
    background: linear-gradient(#ff914d, #6B6B6B);
    transform: translateY(-10px);
}

.lately-list span:hover {
    color: #ff914d;
    margin-left: 10px; 
}

.lately-list span {
    color: #ff914d;
    margin-left: -4px;
}

/* contact */

.contact-left {
    flex-basis: 35%;
}
.contact-right {
    flex-basis: 60%;
}

.contact-left p {
    margin-top: 30px;
}

.contact-left p i{
    color: #e7bcff;
    margin-right: 15px;
    font-size: 25px;
}

.contact-right button {
    font-size: 15px; 
}

.social-icons {
    margin-top: 30px;
}

.social-icons a{
    text-decoration: none;
    font-size: 30px;
    margin-right: 15px;
    color:#ababab;
    display: inline-block;
    transition: transform 0.5s;
}

.social-icons a:hover {
    color: #e7bcff;
    transform: translateY(-5px);
}

.social-icons a:hover i.fab.fa-linkedin {
    color: #0077B5;
}
  
.social-icons a:hover i.fa-brands.fa-github {
    color: #ccc;
}
  
.social-icons a:hover i.fab.fa-instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D, #ff914d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn.btn2 {
    display:inline-block;
    border: 2px solid #fff;
    color: #e7bcff;
}

.btn {
    display: block;
    margin: 50px auto;
    width: fit-content;
    border: 1px solid #fff;
    padding: 14px 50px;
    border-radius: 6px;
    text-decoration: none;
    color: #e7bcff;
    transition: background 0.5s;
}

.btn:hover {
    background: #5B7C99;
    color: #fff;
}

.contact-right form{
    width: 100%; 
}
form input, form textarea{
    width:90%;
    border: 3px solid #e7bcff;
    
    outline: none;
    background: #e5e5e5;
    padding: 10px;
    margin: 10px;
    color: #262626;
    font-size: 18px;
    border-radius: 6px;
}

form .btn2 {
    padding: 10 40px;
    font-size: 18px;
    margin-top: 20px;
    position: center;
    cursor: pointer;
}

.copyright{
    width: 100%;
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(#fd786c, #ff914d);
    font-weight: 300;
    margin-top: 20px;
    color: #262626
}

/* TODO: Modify CSS to be compatible with samller screeners e.g. mobile devices */

/*
@media only screen and (max-width: 600px) {
    #header {
       background-image: url();
    }
    .header-text {
        margin-top: 100%;
        font-size: 16px;
    }
    .header-text h1 {
        font-size: 30px; 
    }
} */

#msg{
    margin-top: -40px;
    margin-left: 10px;
    display: block;
}



