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

/** 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;
    will-change: transform;
    transform: translateZ(0);
}

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

.hero-container {
  height: 40vw;
  background-color: rgba(0,85,130,0.4);
  background-image: url("https://taxdebts.co.uk//wp-content/uploads/2020/05/mediensturmer-aWf7mjwwJJo-unsplash-1.jpg");
  background-position: top;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.hero-title {
  padding-top: 10vw;
  margin: 0;
}

.hero-paragraph {
  margin: 0;
}

.btns-wrapper {
  display: flex;
  justify-content: left; /* This centers the buttons horizontally */
  margin: 0.5vw 13vw;
  gap: 5vw;
}

.column-wrapper {
  margin: 0; /* Adjust the margin between buttons */
}

.btn {
  font-size: 1vw;
  color: #ffffff;
  display: inline-block;
  text-decoration: none;
  padding: 1vw 2vw;
}

.btn:hover, .btn:focus, .btn:active {
  border-radius: 2vw;
  background: #005582;
  color: #ffffff;
}

.btn:active {
  background: #ffffff;
  color: #005582;
}

.two-columns-wrapper {
  display: flex;
  justify-content: center; /* This centers the buttons horizontally */
  align-items: center; /* Vertically align items */
  margin: 2vw 5vw;
  gap: 5vw;
}

.slider-image {
  margin: 5vw 0;
  width: 52vw;
  border-radius: 2vw;
}

.article-slider-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.article-slider-h5 {
  color: #A0D3CE;
  font-size: 0.8vw;
  font-family: Arial;
  font-weight: bold;
  letter-spacing: 0.1vw;
  margin: 0.1vw 0;
  padding-left: 0.3vw;
}

.article-slider-h2 {
  width: 26vw;
  color: #333;
  font-size: 3.8vw;
  font-family: inter;
  font-weight: 800;
  margin: 1.4vw 0;
}

.article-slider-hr {
  border: none;
  background-color: #A0D3CE;
  border-radius: 1vw;
  padding: 0.17vw 0;
  width: 8vw;
  margin: 0;
}

.article-slider-h4 {
  width: 36vw;
  color: #292D34;
  font-size: 1.1vw;
  font-family: inter;
  font-weight: normal;
  line-height: 1.6vw;
  margin: 1.4vw 0;
  padding-left: 0.3vw;
}

.article-slider-btn {
  background-color: #0D5680;
  border-radius: 1.1vw;
  color: white;
  padding: 1.1vw 2.9vw;
  font-size: 1.1vw;
}

.article-slider-btn a{
  text-decoration: none;
  font-style: normal;
  color: white;
}

.article-slider-btn:hover {
  background-color: #0d4d73;
}

/*SERVICES SECTION*/

.services-section {
  background: linear-gradient(to bottom right, #1F70D4, #101F52);
  color: white;
  width: 100%;
  padding: 2vw 0vw;
}

.services-title {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 2.5vw;
  padding: 0 4vw;
  margin: 0vw;
  font-weight: normal;
}

.services-title strong {
  font-weight: 600;
}

.services-container {
  display: grid;
  grid-template-columns: max-content max-content; /* Two columns with equal width */
  justify-content: center;
  width: 100%;
  margin-top: 2vw;
}

.services-column-main {
  display: grid;
  place-items: center;
}

.services-column-second {
  display: grid;
  place-items: center;
  justify-items: start;
}

.services-main-up {
  display: grid;
  grid-template-columns: max-content max-content max-content; /* Two columns with equal width */
  justify-items: start;
  width: 100%;
}

.services-main-down {
  display: grid;
  grid-template-columns: max-content max-content; /* Two columns with equal width */
  justify-items: start;
  width: 100%;
}


.services-card-small {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin: 1vw 1vw;
  background: linear-gradient(to bottom right, rgb(255 255 255 / 22%), #101f5233);
  border: 0.1vw solid rgba(159, 159, 159, 0.226);
  border-radius: 0.7vw;
  padding: 2vw;
  width: 18vw;
  height: 16vw;
  transition: transform 0.3s ease-in-out;
}

.services-card-small:hover{
  transform: scale(1.1);
}

.services-card-medium {
  display: flex;
  grid-template-columns: max-content max-content;
  align-items: flex-start;
  justify-items: start;
  justify-content: space-between;
  margin: 1vw 1vw;
  background: linear-gradient(to bottom right, rgb(255 255 255 / 22%), #101f5233);
  border: 0.1vw solid rgba(159, 159, 159, 0.226);
  border-width: 0.1vw;
  border-radius: 0.7vw;
  padding: 2vw;
  width: 42vw;
  height: 16vw;
  transition: transform 0.3s ease-in-out;
}

.services-card-medium:hover{
  transform: scale(1.1);
}

.card-medium-left-column{
  width: 15vw;
}

.services-card-large {
  display: block;
  justify-items: start;
  justify-content: start;
  margin: 1vw 1vw;
  background: linear-gradient(to bottom right, rgb(255 255 255 / 22%), #101f5233);
  border: 0.1vw solid rgba(159, 159, 159, 0.226);
  border-width: 0.1vw;
  border-radius: 0.7vw;
  padding: 2vw;
  width: 18vw;
  height: 38vw;
  transition: transform 0.3s ease-in-out;
}

.services-card-large:hover{
  transform: scale(1.1);
}

.services-img{
  width: 3vw; /* Width of the container */
  height: 3vw; /* Height of the container */
  border: 0.5vw solid #fff;
  border-radius: 0.5vw;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.services-img span{
  color: #111;
  font-size: 2vw;
}

.services-medium-img{
  width: 16vw;
  height: 16vw;
  border-radius: 0.5vw solid #fff;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.services-large-img{
  width: 18vw;
  height: 19vw;
  margin-top: 3vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(https://topclasslaw.com/wp-content/uploads/2013/05/drew-mock-court.jpg);
}

.services-h2{
  width: fit-content;
  height: fit-content;
  font-size: 1.1vw;
  line-height: 1.6vw;
  margin-top: 2vw ;
}

.services-p{
  color: #d1d1d1;
  width: fit-content;
  height: fit-content;
  font-family: inter;
  font-size: 0.9vw;
  line-height: 1.2vw;
  margin-top: 0.5vw ;
  text-align: center;
}

.services-p2{
  color: #d1d1d1;
  width: fit-content;
  height: fit-content;
  font-family: inter;
  font-size: 0.9vw;
  line-height: 1.2vw;
  margin-top: 0.5vw ;
}

.services-btn{
  visibility: hidden;
  display: block;
  width: fit-content;
  height: fit-content;
  font-size: 0.8vw;
  font-family: inter;
  font-style: normal;
  color: white;
  background-color: #00000015;
  border: none;
  border-radius: 1vw;
  padding: 1vw 2vw;
  text-decoration: none;
  margin-top: 1vw;
}

.services-btn:hover{background-color: #00000030;}

.services-btn:active{background-color: #00000060;}

.services-card-small:hover .services-btn,
.services-card-medium:hover .services-btn,
.services-card-large:hover .services-btn {
  visibility: visible;
}

/*TESTEMONIALS SECTION*/

.testemonials-section {
  width: 100%;
  padding: 2vw 0vw;
}

.testem-c1{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.testem-c1-h5{
  color: #514B81;
  background-color: #F1F1F9;
  font-size: 0.8vw;
  font-family: inter;
  font-weight: 600;
  padding: 0.6vw 3vw;
  border-radius: 100vw;
}

.testem-c1-h1{
  font-family: Arial;
  color: #24223E;
  font-size: 2.8vw;
  font-weight: bold;
  margin: 1vw 0;
}

.testem-c1-p{
  font-family: Arial;
  color: #24223E;
  font-size: 1.1vw;
  line-height: 1.5vw;
  text-align: center;
  margin: 0.2vw 0;
  width: 32vw;
}

.testem-c2{
  display: flex;
  justify-content: center;
  margin: 6vw 0;
}

.testem-card{
  width: 90vw;
  height: 20vw;
  border-radius: 2vw;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  color: #fff;
  background: linear-gradient(to bottom right, #1F70D4, #101F52);
}


.testem-card-img {
  width: 24vw;
  height: 24vw;
  margin: 0 3vw;
  border: 0.4vw solid #fff;
  border-radius: 1vw;
  box-shadow: 0 0.5vw 1vw rgba(0, 0, 0, 0.2);
  transform: rotate(-2deg);
  position: relative;
}



.testem-card-hsp{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-bottom: 5vw;
}

.testem-card-hs{
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: flex-start;
  gap: 1vw;
}

.testem-card-h2{
  font-family: Arial;
  font-size: 1.9vw;
}

.testem-card-stars span{
  font-size: 1.9vw;
  color: #FFD700;
  font-variation-settings:
  'FILL' 1,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}

.testem-card-p{
  font-family: inter;
  font-size: 1vw;
  line-height: 1.7vw;
  width: 25.5vw;
  margin: 0;
}

.testem-card-btn{
  display: block;
  width: fit-content;
  height: fit-content;
  font-family: inter;
  font-size: 0.8vw;
  font-style: normal;
  color: white;
  background-color: #00000015;
  border: none;
  border-radius: 1vw;
  padding: 1vw 2vw;
  text-decoration: none;
  margin-top: 1vw;
}

.testem-card-btn:hover{background-color: #00000030;}

.testem-card-btn:active{background-color: #00000060;}

.testem-c3{
  display: flex;
  justify-content: center;
  gap: 1vw;
}

.testem-c3 img{
  width: 10vw;
  height: 2.5vw;
  object-fit: fill;
}

/*FAQ SECTION*/

.faq-section{
  width: 100%;
  padding: 6vw 0vw;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative; 
  gap: 4vw;
}

.faq-left{
  margin: 5vw 0;
}

.faq-title{
  color: #252432;
  font-family: raleway;
  font-weight: bold;
  font-size: 5vw;
  width: 50vw;
}

.faq-right{
  display: flex;
  flex-direction: column;
  width: 40vw;
  gap: 2vw;
}

.faq-question{
  margin: 1vw 0;
}

.faq-question:hover{
  cursor: pointer;
}

.faq-qs{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-q{
  display: contents;
  color: #252432;
  font-size: 1.1vw;
  font-family: raleway;
  font-weight: bold;
}

.faq-p b{
  color: #252432;
}

.ui-accordion .ui-accordion-header {
  display: flex;
  cursor: pointer;
  position: relative;
  margin: 2px 0 0 0;
  padding: .5em .5em .5em .7em;
  font-size: 100%;
  flex-direction: row-reverse;
}

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

.nav-hidden {
    transform: translateY(-100%);
}

.nav-scrolled {
    transform: translateY(0);
}
