@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Quicksand:400,500,700');

.main-menu-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0px;
}

#main-logo-navbar {
  margin: 0 3vw;
}

#logo-navbar {
  width: 11.2vw; /* Adjust width based on viewport width */
  height: 5vw;
  max-width: 100vw;
}

@media (max-width: 768px) {
  #main-logo-navbar {
    margin: 0 3vw; /* Adjust margin for smaller screens */
  }
}

.main-textbtn-navbar {
  display: flex;
  align-items: center;
  margin: 0 4vw;
}

#main-text-navbar {
  font-family: Arial;
  font-size: 1.2vw;
  font-weight: normal;
  color: #0D5680;
  margin: 0 10vw;
  padding: 0;
}


.main-btn-navbar {
  background-color: #0D5680;
  border-radius: 0.8vw;
  border: none;
  color: white;
  padding: 0.7vw 1.7vw;
  margin: 0.9vw 0;
  text-align: center;
  text-decoration: none;
  font-size: 0.9vw;
  box-shadow: 0vw 1vw 2vw #0d568060;
}

.main-btn-navbar:hover {
  background-color: #0d4d73;
}

a{
    color: #fff;
    text-decoration: none;
}

/** TD Portal**/

.tooltip-container {
  color: #fff;
  background: rgb(13, 86, 128);
  background: linear-gradient(
    138deg,
    rgba(13, 86, 128, 1) 15%,
    rgba(13, 86, 128, 1) 65%
  );
  position: relative;
  cursor: pointer;
  padding: 0.7vw 0.7vw;
  border-radius: 50vw;
  box-shadow: 0 0.5vw 1vw rgba(0, 0, 0, 0.1);
}

.tooltip-container:hover {
  color: #0d4d73;
  background: #fff;
  transition: all 0.6s;
}
.tooltip-container .text {
  display: flex;
  align-items: center;
  justify-content: center;
  fill: #fff;
  transition: all 0.2s;
}
.tooltip-container:hover .text {
  fill: rgb(3, 169, 244);
  transition: all 0.6s;
}

.tooltip-container a .material-symbols-outlined,
.tooltip-container a svg{
    font-size: 1.4vw;
}


.tooltip1 {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  background: #fff;
  fill: #03a9f4;
  padding: 0.7vw;
  border-radius: 5vw;
  transition: opacity 0.3s, visibility 0.3s, top 0.3s, background 0.3s;
  z-index: 1;
  box-shadow: 0 0.2vw 0.4vw rgba(0, 0, 0, 0.2);
}

.tooltip-container:hover .tooltip1 {
  top: 150%;
  opacity: 1;
  visibility: visible;
  background: #fff;
  border-radius: 5vw;
  transform: translate(-50%, -0.5vw);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tooltip-container:hover .tooltip1:hover {
  background: #03a9f4;
  fill: #fff;
}

.tooltip7 {
  position: absolute;
  top: 100%;
  left: 39%;
  transform: translateX(70%);
  opacity: 0;
  visibility: hidden;
  background: #fff;
  fill: #000;
  padding: 0.7vw;
  border-radius: 5vw;
  transition: opacity 0.3s, visibility 0.3s, top 0.3s, background 0.3s;
  z-index: 1;
  box-shadow: 0 0.2vw 0.4vw rgba(0, 0, 0, 0.2);
}

.tooltip-container:hover .tooltip7 {
  top: 104%;
  opacity: 1;
  visibility: visible;
  background: #fff;
  transform: translate(70%, -0.5vw);
  border-radius: 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tooltip-container:hover .tooltip7:hover {
  color: #fff;
  background: #000;
  fill: #fff;
}

.tooltip8 {
  position: absolute;
  top: 100%;
  left: -183%;
  transform: translateX(70%);
  opacity: 0;
  visibility: hidden;
  background: #fff;
  fill: #ff4500;
  padding: 0.7vw;
  border-radius: 5vw;
  transition: opacity 0.3s, visibility 0.3s, top 0.3s, background 0.3s;
  z-index: 1;
  box-shadow: 0 0.2vw 0.4vw rgba(0, 0, 0, 0.2);
}

.tooltip-container:hover .tooltip8 {
  top: 104%;
  opacity: 1;
  visibility: visible;
  background: #fff;
  transform: translate(70%, -0.5vw);
  border-radius: 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tooltip-container:hover .tooltip8:hover {
  background: #ff4500;
  fill: #fff;
}



  .menu-list {
    display: flex;
    margin-right: 90px;
    align-items: start;
    gap: 30px;
    justify-content: space-between;
  }

  @media (max-width: 991px) {
    .menu-list {
      margin-right: 10px;
      white-space: initial;
    }
  }


  .menu-link {
    display: flex;
    align-items: center;
  }


  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown .menu-link span {
    font-size: 1.5vw;
    transform: rotate(90deg);transform: scale(0.5) rotate(90deg);
  }

  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #105583;
    box-shadow: 0px 6px 16px 0px rgba(13,86,128,60);
    border-radius: 1vw;
    right: -2.3vw;
    z-index: 1;
  }
  
  .dropdown-content a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    width: max-content;
    padding: 0 3vw;
  }
  
  .dropdown-content span {
    display: none;
    padding: 0 0.5vw;
    transform: scale(0.5);
    color: #A0D3CE;
    align-items: center;
  }
  
  .dropdown-content a:hover span {
    display: inline-block;
    color: #A0D3CE;
  }
  
  .dropdown:hover .dropdown-content {
    display: grid; /* Use grid layout */
    grid-template-columns: repeat(3, auto); /* Create two columns */
  }
  
  
  @keyframes parallax-background {
    from {
      top: 0;
      filter: blur(0px);
    }
    to {
      top: calc(var(--hero-height) * var(--parallax-background-speed) * -1);
      filter: blur(10px) brightness(33%);
    }
  }
  
  @keyframes parallax-foreground {
    from {
      top: 0;
    }
    to {
      top: calc(var(--hero-height) * var(--parallax-foreground-speed) * -1);
      filter: blur(2px) brightness(75%);
    }
  }
  
  main {
    background: white;
    position: relative;
    top: -1rem;
    border-radius: 1rem;
    padding-block: 3rem;
    font-size: 1.5rem;
    width: 100%;
  }
  
  p,
  li,
  ul {
    margin: 0 auto;
    line-height: 2;
    list-style-type: none;
  }
  
  hr {
    max-width: 800px;
    margin: 0 auto;
    margin-block: 4rem;
  }
  
  img {
    object-fit: cover;
  }
  
  .hero-title {
    font: 3vw Arial, Helvetica, sans-serif;
    font-weight: bold;
    margin: 0;
    color: white;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.618);
    padding-inline: 2rem;
    line-height: 1.6;
    text-align: left;
    max-width: 40vw;
    padding-bottom: 1.5vw;
    padding-left: 12vw;
  }
  
  .hero-paragraph {
    font: 1.5vw PTSansRegular,Arial,Helvetica,sans-serif;
    font-weight: bold;
    margin: 0;
    color: white;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.13);
    padding-inline: 2rem;
    line-height: 1.6;
    text-align: left;
    max-width: 47vw;
    padding-bottom: 1.5vw;
    padding-left: 12vw;
  }
  
  kbd {
    background: #ccc;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-inline: 0.5rem;
    font-size: 1.25rem;
    border-radius: 4px;
  }

html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Quicksand", sans-serif;
    font-size: 62.5%;
    font-size: 10px;
    scroll-behavior: smooth;
}

/* Navbar section */

.nav {
  position: absolute;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  text-align: center;
  top: 7vw;
  z-index: 1;
}

.navlinks {
  margin: 0;
}

.nav div.main_list {
    width: 99vw;
    float: right;
}

.nav div.main_list ul {
  float: right;
  display: flex;
  list-style: none;
  gap: 2vw;
  margin: 0 4vw;
}

.nav div.main_list ul li {
  padding-right: 2.5vw;
}

.nav div.main_list ul li a {
  text-decoration: none;
  color: #fff;
  line-height: 4vw;
  font-size: 1.1vw;
}

.nav div.main_list ul li a:hover {
    color: #A0D3CE;
}


/* Home section */

.home {
    width: 100%;
    height: 100vh;
    background-position: center top;
	  background-size:cover;
}

.navTrigger {
    display: none;
}


/* Media qurey section */

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .container {
        margin: 0;
    }
}

@media screen and (max-width:768px) {
    .navTrigger {
        display: block;
    }

    .nav div.main_list {
        width: 100%;
        height: 0;
        overflow: hidden;
    }
    .nav div.show_list {
        height: auto;
        display: none;
    }
    .nav div.main_list ul {
        flex-direction: column;
        width: 100%;
        height: 100vh;
        right: 0;
        left: 0;
        bottom: 0;
        background-color: #111; /*same background color of navbar*/
        background-position: center top;
    }
    .nav div.main_list ul li {
        width: 100%;
        text-align: right;
    }
    .nav div.main_list ul li a {
        text-align: center;
        width: 100%;
        font-size: 3rem;
        padding: 20px;
    }
    .nav div.media_button {
        display: block;
    }
}


/* Animation */
/* Inspiration taken from Dicson https://codemyui.com/simple-hamburger-menu-x-mark-animation/ */

.navTrigger {
  position: absolute;
  width: 5vw;
  right: 5vw;
  top: 3vw;
}

.navTrigger i {
  background-color: #fff;
  border-radius: 2vw;
  display: block;
  width: 6vw;
  height: 0.4vw;
}

.navTrigger i:nth-child(1) {
  margin: 0.75vw 0;
  -webkit-animation: outT 0.8s backwards;
  animation: outT 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

.navTrigger i:nth-child(2) {
  margin: 0.75vw 0;
  -webkit-animation: outM 0.8s backwards;
  animation: outM 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

.navTrigger i:nth-child(3) {
  width: 6vw;
  height: 0.4vw;
  margin: 0.56vw 0;
  -webkit-animation: outBtm 0.8s backwards;
  animation: outBtm 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

.navTrigger.active i:nth-child(1) {
  visibility: hidden;
  margin: 0.56vw 0;
  -webkit-animation: inT 0.8s forwards;
  animation: inT 0.8s forwards;
}

.navTrigger.active i:nth-child(2) {
  margin: 0.75vw 0;
  -webkit-animation: inM 0.8s forwards;
  animation: inM 0.8s forwards;
}

.navTrigger.active i:nth-child(3) {
  margin: 0.75vw 0;
  -webkit-animation: inBtm 0.8s forwards;
  animation: inBtm 0.8s forwards;
}

@-webkit-keyframes inM {
    50% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes inM {
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes outM {
    50% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes outM {
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes inT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes inT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(9px) rotate(0deg);
    }
    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes outT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes outT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(9px) rotate(0deg);
    }
    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes inBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes inBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-9px) rotate(0deg);
    }
    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

@-webkit-keyframes outBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes outBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-9px) rotate(0deg);
    }
    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

.affix {
    top: 0;
    padding: 0;
    background-color: #005582;
}

/**Hero Section**/

.hero-section{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  color: #fff;
  background: linear-gradient(to right, #667db6, #005582, #005582, #667db6);
}

.hero-right{
  width: 100%;
  height: 48vw;
  clip-path: ellipse(91% 97% at 100% 50%);
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-left{
  width: 50%;
  margin: 0 0 0 4vw;
}

.hero-left h1{
  color: #fff;
  font-size: 3.7vw;
  font-weight: bold;
  font-family: Roboto, Arial;
}

.hero-left p{
  color: #fff;
  font-size: 1.1vw;
  font-weight: normal;
  font-family: Roboto, Arial;
}

.sec1l-subscribe{
  display: grid;
  grid-template-columns: auto auto;
  justify-content: start;
  align-items: center;
  column-gap: 0.5vw;
  margin: 1vw 0;
}

.input_container {
width: 100%;
height: fit-content;
position: relative;
display: flex;
flex-direction: column;
}

.input_field {
width: 18vw;
height: 2vw;
font-size: 1vw;
color: #e5e5e5;
padding: 0.5vw 1vw;
border-radius: 0.5vw;
outline: none;
border: 0.1vw solid #e5e5e5;
box-shadow: 0 0.5vw 1vw 0vw #667db6;
transition: all 0.3s cubic-bezier(0.15, 0.83, 0.66, 1);
}

.input_field:focus {
border: 0.1vw solid transparent;
box-shadow: 0 0 0 0.1vw #caccd1;
background-color: transparent;
}

.input_field::placeholder{
color: #bcbcbc;
}

.sec1l-btn{
  color: #fff;
  font-size: 0.9vw;
  font-family: Roboto, Arial;
  background-color: #1F70C1;
  border: none;
  border-radius: 0.4vw;
  padding: 1vw 2vw;
}

.sec1l-btn:hover{
  cursor: pointer;
  background-color: #1b60a6; 
}

/**Article**/

.article-sidebar{
  display: grid;
  justify-items: center;
  grid-template-columns: 70% 30%;
}

.article-content{
  padding: 3vw 6vw;
}

.article-content p{
  font-size: 1.4vw;
}

.article-content h2 {
  background: linear-gradient(to right, #667db6, #005582, #005582, #667db6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2.7vw;
  font-weight: bold;
  font-family: Roboto, Arial;
  margin: 2vw 0 1.7vw 0;
}

.article-content img{
  width: 100%;
  height: 30vw;
  margin: 2vw 0;
}

.article-content ul li{
  list-style-type: disc;
  font-size: 1.2vw;
}

.article-content ol{
  padding: 2vw 3vw;
  color: #fff;
  border-radius: 2vw;
  background: linear-gradient(to bottom right, #4b6cb7, #182848);
}

.article-content ol li{
  list-style-type: decimal;
  font-size: 1.2vw;
}

/**sidebar**/

.sidebar{
  display: grid;
  height: max-content;
  padding: 2vw;
  gap: 2vw;
}

.sidebar-h2{
  color: #222;
  font-size: 1.7vw;
  font-weight: bold;
  font-family: Roboto, Arial;
  margin: 1vw;
}

/**card 2**/

.card2{
  display: flex;
  flex-direction: column;
  width: 21.5vw;
  height: 15vw;
  justify-content: space-evenly;
  z-index: 1;
  align-items: flex-start;
  justify-content: space-between;
  background-image: url(media/card1-bg.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  box-shadow: 0px 3px 18px 4px rgba(0, 0, 0, 0.10);
  -webkit-box-shadow: 0px 3px 18px 4px rgba(0, 0, 0, 0.10);
}

.card2-top{
  height: 50%;
  padding: 1vw 2vw;
}

.card2-h4{
  color: #EB3DAE;
  font-size: 0.8vw;
  font-family: Roboto, Arial;
  font-weight: 700;
}

.card2-h2{
  color: #292D34;
  font-size: 1.34vw;
  font-family: Roboto, Arial;
  font-weight: bold;
  margin: 0;
}

.card2-bottom{
  width: 17.5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  padding: 1vw 2vw;
}

.read-time{
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #7C828D;
  column-gap: 0.2vw;
}

.read-time h5{
  margin: 0;
  font-size: 0.85vw;
  font-family: Roboto, Arial;
  font-weight: normal;
  width: max-content;
}

.read-time span{
  font-size: 1.5vw;
}

.read-more{
  visibility: hidden;
  color: #EB3DAE;
  font-size: 0.9vw;
  font-family: Roboto, Arial;
  font-weight: 700;
}

.card2:hover .read-more {
  visibility: visible;
}

.read-more:hover{
  text-decoration: underline;
}

/**Footer**/

.footer{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 2vw;
    color: white;
    background-color: #0D5680;
  }
  
  .footer-up{
    display: flex;
    flex-direction: row;
    gap: 8vw;
  }
  
  .footer-upl{
    display: grid;
    margin-bottom: 3vw;
  }
  
  .footer-upl img{
    object-fit: fill;
    width: 11vw;
    margin: 1vw;
  }
  
  .footer-upl p{
    width: 17vw;
    font-size: 0.8vw;
    font-weight: normal;
    font-family: inter;
  }
  
  .footer-upr{
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  
  .footer-upr ul{
    margin: 0 3vw;
    padding: 0 1vw;
    font-size: 0.7vw;
  }
  
  .footer-upr-h4{
    font-family: inter;
    font-weight: normal;
    font-size: 0.75vw;
    color: #A0D3CE;
  }
  
  .footer-upr ul li{
    margin: 1.3vw 0;
  }
  
  .footer-upr ul li:hover{
    cursor: pointer;
    color: #A0D3CE;
  }
  
  .footer-hr{
    margin: 1vw;
    padding: 0.03vw 43vw;
    background-color: #fff;
    border: none;
  }
  
  .footer-down{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 53vw;
    margin: 0;
  }
  
  .footer-dl{
    font-size: 1vw;
    font-family: inter;
    font-weight: normal;
    font-size: 0.7vw;
  }
  
  
  .wrapper {
    display: inline-flex;
    list-style: none;
    font-family: "Poppins", sans-serif;
    justify-content: center;
    color: #160042;
  }
  
  a{
    font-style: normal;
    text-decoration: none;
    color: unset;
  }
  
  
  .wrapper .icon {
    position: relative;
    background: #fff;
    border-radius: 50vw;
    margin: 0.6vw;
    width: 2.5vw;
    height: 2.5vw;
    font-size: 1.1vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 1vw 1vw rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  .wrapper .tooltip {
    position: absolute;
    top: 0;
    width: max-content;
    font-size: 0.8vw;
    background: #fff;
    color: #fff;
    padding: 0.5vw 0.8vw;
    border-radius: 0.5vw;
    box-shadow: 0 1vw 1vw rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  .wrapper .tooltip::before {
    position: absolute;
    content: "";
    height: 0.8vw;
    width: 0.8vw;
    background: #fff;
    bottom: -0.3vw;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  .wrapper .icon:hover .tooltip {
    top: -3.2vw;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  
  .wrapper .icon:hover span,
  .wrapper .icon:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
  }
  
  .wrapper .scrollTop span.material-symbols-outlined{
    font-size: 1.5vw;
    font-weight: bold;
  }
  
  .wrapper .scrollTop:hover,
  .wrapper .scrollTop:hover .tooltip,
  .wrapper .scrollTop:hover .tooltip::before {
    background: #160042;
    color: #fff;
  }
  
  .wrapper .facebook:hover,
  .wrapper .facebook:hover .tooltip,
  .wrapper .facebook:hover .tooltip::before {
    background: #1877f2;
    color: #fff;
  }
  
  .wrapper .twitter:hover,
  .wrapper .twitter:hover .tooltip,
  .wrapper .twitter:hover .tooltip::before {
    background: #1da1f2;
    color: #fff;
  }
  
  .wrapper .instagram:hover,
  .wrapper .instagram:hover .tooltip,
  .wrapper .instagram:hover .tooltip::before {
    background: linear-gradient(to bottom right, #f9ce34, #ee2a7b, #6228d7);
    color: #fff;
  }