@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-bottom-left-radius: 1vw;
    border-bottom-right-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: relative;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    text-align: center;
}

.navlinks {
  margin: 0;
}

.nav div.main_list {
    width: 100vw;
    float: right;
    background-color: #0D5680;
}

.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;
}

/**section 1**/

.section1{
    margin: 6vw;
    display: grid;
    grid-template-columns: auto auto;
    justify-items: center;
}

.sec1l-h1{
    color: #292D34;
    font-size: 4.7vw;
    font-weight: bold;
    font-family: Roboto, Arial;
    max-width: 50vw;
}

.sec1l-p{
    color: #7C828D;
    font-size: 1.1vw;
    font-weight: normal;
    font-family: Roboto, Arial;
    max-width: 45vw;
    margin: 0;
}

.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: 0px 0.5vw 1vw 0vw #aeaeae66;
  filter: drop-shadow(0 0.1vw 0 #efefef)
    drop-shadow(0 0.1vw 0.05vw rgba(239, 239, 239, 0.5));
  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;
    box-shadow: 0 0.5vw 1vw 0 #1576b666;
}

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

.sec1l-social{
    display: grid;
    grid-template-columns: auto auto;
    justify-content: start;
    align-items: end;
    column-gap: 1vw;
}

.sec1l-h4{
    color: #292D34;
    font-size: 1.2vw;
    font-family: Roboto, Arial;
    font-weight: normal;
    margin: 1vw 0.5vw;
}

.sec1l-social_container .wrapper{
    padding: 0;
}

.sec1l-social_container .wrapper li{
    color: #1F70C1;
}

/**card 3**/

.card3{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 35vw;
    height: 33vw;
    justify-content: space-evenly;
    margin: 2vw;
}

.card3r{
    width: 100%;
    height: 60%;
    background-image: url(https://www.tremark.co.uk/wp-content/uploads/2023/10/Advice-on-winding-up-petitions.jpg);

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 1vw 1vw 0 0;
}

.card3l{
    display: flex;
    align-items: flex-start;
    width: 100%;
    height: 40%;
    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);
    z-index: -1;
}

.card3l-top{
    padding: 1vw 2vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

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

.card3l-bottom{
    display: flex;
    justify-content: space-between;
}

.card3l-bottom .writer{
    display: flex;
    column-gap: 1vw;
    flex-direction: row;
    align-items: center;
    padding: 0vw;
}

/**section 3**/

.section3{
    margin: 2vw 6vw;
    display: flex;
    justify-items: center;
    flex-direction: column;
    align-items: center;
    gap: 3vw;
}

.sec3t{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
}

.sec3t-left{
  display: flex;
  align-items: center;
  gap: 1vw;
}

.sec3t-left span{
  color: #fff;
  margin-left: 0.4vw;
  background-color: #A0D3CE;
  padding: 0.7vw;
  font-size: 2.1vw;
  border-radius: 1.2vw;
  box-shadow: 0px 6px 18px -1px #a0d3ce70;
  -webkit-box-shadow: 0px 6px 18px -1px #a0d3ce70;
}

.sec3t-h3{
  color: #292D34;
  font-size: 1.5vw;
  font-family: Roboto, Arial;
  font-weight: bold;
}

.sec3t-right{
  display: flex;
  align-items: center;
  gap: 1vw;
}

.sec3t-h4-active{
  color: #1F70C1;
  font-size: 0.7vw;
  font-family: Roboto, Arial;
  font-weight: bold;
}

.sec3t-hr{
  margin: 0 1vw;
  height: 2vw;
  width: 0.1vw;
  border: none;
  background-color: #dadfea;
}

.sec3t-h4{
  color: #B9BEC7;
  font-size: 0.7vw;
  font-family: Roboto, Arial;
  font-weight: bold;
  margin-right: 2vw;
}

.sec3b {
    display: grid;
    grid-gap: 2.52vw;
    grid-template-columns: repeat(auto-fill, minmax(20.5vw, 1fr));
    width: 80%;
  }

.writer{
    display: flex;
    column-gap: 1vw;
    flex-direction: row;
    align-items: center;
    padding: 1vw 2vw;
}

.writer img{
    width: 2.5vw;
    height: 2.5vw;
    border-radius: 50vw;
}

.writer h5{
    margin: 0;
    color: #292D34;
    font-size: 0.85vw;
    font-family: Roboto;
    font-weight: bold;
    width: max-content;
}

/**card 1**/

.card1{
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    width: 45.5vw;
    height: 35vw;
    justify-content: space-evenly;
    grid-column-end: span 2;
}

.card1r{
    width: 47%;
    height: 100%;
    background-image: url(uploads/card5-img.jpeg);
    background-repeat: no-repeat;
    background-position: right;
    background-size: cover;
    border-radius: 0 1vw 1vw 0;
}

.card1l{
    display: flex;
    align-items: flex-start;
    width: 53%;
    height: 100%;
    justify-content: space-between;
    background-image: url(media/card1-bg.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    flex-direction: column;
    z-index: -1;
}

.card1l-top{
    padding: 1vw 2vw;
}

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

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

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

.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;
}

.writer{
    display: flex;
    column-gap: 1vw;
    flex-direction: row;
    align-items: center;
    padding: 1vw 2vw;
}

.writer img{
    width: 2.5vw;
    height: 2.5vw;
    border-radius: 50vw;
}

.writer h5{
    margin: 0;
    color: #292D34;
    font-size: 0.85vw;
    font-family: Roboto, Arial;
    font-weight: bold;
    width: max-content;
}

/**card 2**/

.card2{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 21.5vw;
    height: 35vw;
    justify-content: space-evenly;
    z-index: 1;
}

.card2r{
    width: 100%;
    height: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 1vw 1vw 0 0;
}

.card2l{
    display: flex;
    align-items: flex-start;
    width: 100%;
    height: 50%;
    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);
    z-index: -1;
}

.card2l-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;
}

/**card 4**/

.card4{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 21.5vw;
  height: 35vw;
  justify-content: flex-start;
  justify-content: space-between;
  z-index: 1;
}

.card4-top{
  padding: 2vw;
  gap: 1vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 82%;
}

.card4 span{
    color: #fff;
    margin-left: 0.4vw;
    background-color: #A0D3CE;
    padding: 0.7vw;
    font-size: 2.1vw;
    border-radius: 1.2vw;
    box-shadow: 0px 6px 18px -1px #a0d3ce70;
    -webkit-box-shadow: 0px 6px 18px -1px #a0d3ce70;
}

.card4-h2{
  color: #292D34;
  font-size: 2vw;
  font-family: Roboto, Arial;
  font-weight: bold;
  line-height: 3vw;
  margin: 1vw 0 0 0.7vw;
}

.card4-p{
  color: #7C828D;
  margin: 0;
  font-size: 0.85vw;
  font-family: Roboto, Arial;
  font-weight: normal;
  margin: 0 0 0 0.7vw;
}

.card4-bottom{
  padding: 1vw 0vw 1vw 1.5vw;
  width: 89%;
  display: flex;
  flex-direction: column;
  gap: 0.5vw;
}

.card4-bottom .input_field{
  width: auto;
  color: #fff;
}

.card4-bottom .input_field::placeholder{
  color: #d5d5d5;
}

.card4-btn{
  color: #fff;
  font-size: 0.9vw;
  font-family: Roboto, Arial;
  background-color: #A0D3CE;
  border: none;
  border-radius: 0.4vw;
  padding: 1vw 2vw;
  box-shadow: 0 0.5vw 1vw 0 #a0d3ce85;
  z-index: 1;
}

.card4-btn:hover{
  cursor: pointer;
  background-color: #86b4af;
}


/** 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;
  }