@import url('https://fonts.googleapis.com/css2?family=Inter:wght@700&family=Montserrat:wght@200;300;400;700&family=Oswald:wght@200;400;500;700&display=swap');

* {
  box-sizing: border-box;
}

:root {
  --primary-color: #3b86ff;
  --secondary-color: #003acc;
  --lighter-secondary-color: #002e89;
  --normal-text-color: #001847;
  --primary-heading-text-color: #3b86ff;
  --white: #ffffff;
  --gray: #979797;
  --light-gray: #f8f8f8;
  --gradient: #530d9e;
  --table-heading-color: #474747;
  --danger-color: #ff3800;
  --success-color: #01a79d;
}

body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

p,
h1,
h2,
h3,
h4 {
  margin: 0;
}

input:focus,
button:focus {
  outline: none;
}

main {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

main.hide {
  display: none !important;
}

/* success page */
.success-container {
  display: none;
  height: 100%;
  align-items: center;
  justify-content: center;
  width: 650px;
  margin: 0 auto;
}

.success-container.show {
  display: flex !important;
}

.success-content {
  padding: 5%;
}

.success-content p,
.success-content h2 {
  text-align: center;
}

.success-content h2 {
  font-family: 'Oswald', sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 40px;
  line-height: 44px;
  text-align: center;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-top: 40px;
}

.success-content p.message {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 22px;
  line-height: 27px;
  margin-top: 20px;
  color: var(--normal-text-color);
}

.success-content p.message span.bold {
  font-family: 'Oswald', sans-serif;
  font-size: 25px;
  font-weight: bold;
}

.success-content button {
  padding: 20px 50px;
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 22px;
  line-height: 27px;
  margin-top: 20px;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 40px;
  background: transparent;
  cursor: pointer;
  margin-top: 30px;
}
/* end success page */

/* header section */
header {
  background: transparent;
  width: 100%;
  height: 107px;
  position: relative;
  z-index: 1;
}

header.sticky {
  position: fixed;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 0;
  background: var(--normal-text-color);
}

header.sticky .horizontal-rule {
  display: none;
}

header.hide {
  display: none !important;
}

header .header-content {
  width: 100%;
  height: 100%;
  padding: 34px 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .header-content .mobile-menu {
  display: none;
}

header .header-content .mobile-menu .burger-menu {
  width: 30px;
  height: 30px;
  cursor: pointer;
}

header .header-content .social-link {
  display: flex;
  align-items: center;
}

a.navigation-link {
  color: var(--white);
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 30px;
  text-transform: uppercase;
  cursor: pointer;
}

header .header-content .social-link a:hover {
  text-decoration: none;
}

img#turnvc {
  padding-right: 40px;
}

header .header-content .social-link a::after {
  content: '';
  width: 0px;
  height: 2px;
  display: block;
  background: var(--white);
  transition: 300ms;
}

header .header-content .social-link a:hover::after {
  width: 100%;
}

header .header-content .social-link a:not(:first-child) {
  margin-left: 32px;
}

.switch-language {
  display: flex;
}

.switch-language .switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 29px;
}

.switch-language .switch input {
  opacity: 0;
  width: 100%;
  height: 100%;
}

.switch-language .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
  border: 1px solid var(--white);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.switch-language .slider span {
  z-index: 1;
  font-size: 11px;
  line-height: 11px;
  font-family: 'Oswald', sans-serif;
}

.switch-language .slider span:first-child {
  margin-left: 9px;
  color: var(--primary-color);
}

.switch-language .slider span:last-child {
  margin-right: 10px;
  color: var(--white);
}

.switch-language .slider:before {
  position: absolute;
  content: '';
  height: 21px;
  width: 21px;
  left: 4px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.switch-language input:checked + .slider {
  background-color: transparent;
}

.switch-language input:focus + .slider {
  box-shadow: 0 0 1px transparent;
}

.switch-language input:checked + .slider span:first-child {
  margin-left: 9px;
  color: var(--white);
}

.switch-language input:checked + .slider span:last-child {
  margin-right: 10px;
  color: var(--primary-color);
}

.switch-language input:checked + .slider:before {
  -webkit-transform: translateX(29px);
  -ms-transform: translateX(29px);
  transform: translateX(29px);
}

.switch-language .slider.round {
  border-radius: 34px;
}

.switch-language .slider.round:before {
  border-radius: 50%;
}

.horizontal-rule {
  max-width: 100%;
  height: 1px;
  /* width: 100%; */
  background: linear-gradient(93.58deg, #2574fb 0.98%, #530d9e 99.18%);
}

.vertical-rule {
  height: 500px;
  width: 2px;
  background: linear-gradient(93.58deg, #2574fb 0.98%, #530d9e 99.18%);
}

header .horizontal-rule {
  margin: 0 10%;
}

header .logo {
  width: 129px;
  height: 40px;
}

/* end header section */

/* sidenav section */
.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  background-color: var(--normal-text-color);
  overflow-x: hidden;
  padding-top: 70px;
  transition: 0.1s;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 30px;
  color: var(--white);
  display: block;
  text-transform: uppercase;
}

/* .sidenav .navigation-link {
} */

.sidenav a:hover {
  color: var(--primary-color);
}

.sidenav .closebtn {
  position: absolute;
  top: 11px;
  right: 5%;
  font-size: 50px;
}

/* end sidenav section */

/* hero section */
.hero-wrapper {
  width: 100%;
  background-image: url('../images/bghero.jpeg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.hero-wrapper .hero-content {
  padding: 188px 10% 103px 10%;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: center;
}

.timer-wrapper {
  display: flex;
  justify-content: center;
}

.timer-wrapper .item {
  margin: 0 20px;
}

.hero-content {
  height: fit-content;
}

.hero-wrapper h1.title {
  font-family: 'Oswald', sans-serif;
  font-style: normal;
  font-weight: 200;
  font-size: 48px;
  line-height: 56px;
  text-align: center;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 10px;
}

.hero-wrapper h1.title#total-iro-contribution {
  font-size: 60px;
  line-height: 72px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 8px;
}

.hero-wrapper {
  width: 100%;
  background-image: url(../images/bghero.jpeg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.hero-wrapper .hero-content {
  padding: 188px 10% 103px 10%;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: center;
}

.hero-wrapper h2.sub-title {
  font-family: 'Oswald', sans-serif;
  font-style: normal;
  font-weight: 200;
  font-size: 40px;
  line-height: 40px;
  letter-spacing: 10px;
  color: #2574fb;
  text-transform: uppercase;
  margin-top: 30px;
}

.hero-wrapper h1.highlight {
  color: var(--primary-color);
  margin-top: 40px;
}

.timer-wrapper p {
  font-family: 'Oswald', sans-serif;
  font-style: normal;
  font-weight: 200;
  font-size: 15px;
  line-height: 72px;
  letter-spacing: 8px;
  color: #ffffff;
}

.hero-wrapper .timer-wrapper h2 {
  font-family: 'Oswald', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 60px;
  line-height: 72px;
  letter-spacing: 8px;
  margin-top: 60px;
  color: #ffffff;
}

.hero-wrapper .hero-content .hero-text .title {
  margin-top: 0;
  /* margin-right: 20px; */
}

.hero-wrapper a.launch-app-link .launch-app-btn {
  background-color: var(--secondary-color);
  text-align: center;
  margin-top: 40px;
  border-radius: 6px;
  border: none;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 18px;
  color: var(--white);
  text-transform: uppercase;
  cursor: pointer;
  background: linear-gradient(91.34deg, #003acc -0.56%, #530d9e 99.44%);
  width: 280px;
  height: 56px;
  box-sizing: border-box;
}

.hero-wrapper a.launch-app-link:hover {
  text-decoration: none;
}

main[citadao-lang='vi'] .hero-wrapper h1 {
  line-height: 80px;
}

p.description {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 29px;
  color: var(--white);
  margin-top: 40px;
}
/* end hero section */

/* waitlist section */
.waitlist-wrapper {
  width: 100%;
  text-align: center;
  padding: 80px 25%;
}

.waitlist-wrapper.bottom {
  background-color: var(--normal-text-color);
}

h2.title {
  font-family: 'Oswald', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 60px;
  line-height: 60px;
  text-transform: uppercase;
}

main[citadao-lang='vi'] h2.title {
  line-height: 55px;
}

.highlight {
  color: var(--primary-color);
  margin-top: 40px;
  display: inline;
}

.waitlist-wrapper .description {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 23px;
  line-height: 28px;
  color: #222222;
  margin-top: 40px;
  padding: 0 20%;
}

main[citadao-lang='vi'] .waitlist-wrapper .description {
  padding: 0 10%;
}

.waitlist-wrapper.bottom .description {
  color: var(--white);
}

.waitlist-wrapper .form {
  width: 100%;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.waitlist-wrapper .form input {
  background: var(--white);
  border: 1px solid #dadada;
  box-sizing: border-box;
  border-radius: 4px;
  width: 70%;
  height: 56px;
  padding: 19px 16px;
}

.waitlist-wrapper .form input::placeholder {
  color: var(--primary-color);
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
}

.waitlist-wrapper .form button {
  width: 27%;
  height: 56px;
  background: var(--secondary-color);
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  color: var(--white);
  margin-left: 20px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.waitlist-wrapper .waitlist-error {
  text-align: center;
  width: 100%;
  color: var(--danger-color);
  margin: 10px 0;
}

.waitlist-wrapper .form button:disabled {
  opacity: 0.5;
}

.loading {
  pointer-events: none;
  cursor: default !important;
  opacity: 0.5;
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 30px;
  height: 30px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 24px;
  height: 24px;
  margin: 2px;
  border: 2px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* end waitlist section */

/* diversify section */
.diversify-wrapper,
.productive-wrapper,
.liquidity-wrapper {
  width: 100%;
  background-color: var(--light-gray);
  padding: 100px 25%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.diversify-wrapper > div,
.productive-wrapper > div,
.liquidity-wrapper > div {
  width: 50%;
}

.small-description {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  color: #222222;
  margin-top: 60px;
}
/* end diversify section */

/* diversify section */
.productive-wrapper {
  background-color: var(--normal-text-color);
}

.productive-wrapper .title:not(.highlight),
.productive-wrapper .small-description {
  color: var(--white);
}
/* end diversify section */

/* advantage section */
.advantage-wrapper {
  width: 100%;
  background-color: var(--normal-text-color);
  padding: 80px 10%;
  text-align: center;
}

.advantage-wrapper .title:not(.highlight),
.advantage-wrapper .small-description {
  color: var(--white);
}

.advantage-items {
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: flex-start;
}

.advantage-items .item {
  margin: 0 20px;
}
.advantage-wrapper .advantage-items h2.title {
  font-family: 'Oswald', sans-serif;
  font-style: normal;
  font-weight: 200;
  font-size: 28px;
  line-height: 32px;
  margin: 30px 0;
  height: 40px;
}
.advantage-items .horizontal-rule {
  display: none;
}
/* end advantage section */

/* contributor section */
.contributor-wrapper {
  width: 100%;
  background-color: var(--white);
  padding: 80px 10%;
  text-align: center;
}

.contributor-wrapper .title:not(.highlight),
.contributor-wrapper .small-description {
  color: var(--white);
}

.contributor-cards {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.contributor-card .profile-pic {
  width: 200px;
  height: 200px;
}

.contributor-card .linkedin {
  margin-top: 10px;
  width: 65.54px;
  height: 16px;
  text-align: center;
}

.contributor-card .twitter {
  margin-top: 10px;
  height: 16px;
  text-align: center;
}

.contributor-card .horizontal-rule {
  margin: 16px 0 16px 0;
}

.contributor-card .horizontal-rule-wrapper {
  width: 200px;
  margin: 0 auto;
}

.contributor-wrapper .contributor-cards h2.title {
  font-family: 'Oswald', sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 32px;
  line-height: 32px;
  color: #002e89;
  text-transform: none;
}
.contributor-card {
  flex: 1 0 calc(25%);
  margin: 20px 30px;
}
/* end advantage section */

/* upcoming section */
.upcoming-wrapper {
  width: 100%;
  position: relative;
}

.upcoming-wrapper .upcoming-feature {
  position: absolute;
  top: 140px;
  left: 12%;
  border-radius: 16px;
  padding: 80px 70px;
  max-width: 720px;
  width: auto;
  background: rgba(0, 15, 44, 0.85);
  backdrop-filter: blur(20px);
}

.upcoming-wrapper h2.light {
  font-family: 'Oswald', sans-serif;
  font-style: normal;
  font-weight: 200;
  font-size: 32px;
  line-height: 40px;
  color: #ffffff;
  margin-top: 30px;
}

.upcoming-wrapper .horizontal-rule {
  margin-top: 30px;
}

.upcoming-wrapper .upcoming-feature .highlight {
  margin-top: 0;
}

.upcoming-wrapper .upcoming-feature .title:not(.highlight) {
  color: var(--white);
}

.upcoming-wrapper .upcoming-feature .feature-wrapper {
  display: flex;
  margin-top: 40px;
}

.upcoming-wrapper .upcoming-feature .feature-wrapper .left {
  margin-right: 80px;
}

.upcoming-wrapper .upcoming-feature .feature-wrapper .item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.upcoming-wrapper .upcoming-feature .feature-wrapper .item:not(:last-child) {
  margin-bottom: 20px;
}

.upcoming-wrapper .upcoming-feature .feature-wrapper .item img {
  margin-right: 20px;
}

.upcoming-wrapper .upcoming-feature .feature-wrapper .item p {
  font-family: 'Montserrat', sans-serif;
  color: var(--white);
}

.upcoming-wrapper .upcoming-feature .feature-wrapper .item .detail .name {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
}

.upcoming-wrapper .upcoming-feature .feature-wrapper .item .detail .status {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  margin-top: 10px;
}

.upcoming-wrapper .upcoming-feature .iro-detail-btn {
  background-color: var(--secondary-color);
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
  border-radius: 16px;
  border: none;
  width: 100%;
}

.upcoming-wrapper .upcoming-feature .iro-detail-btn a {
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 20px;
  color: var(--white);
}

.upcoming-wrapper .upcoming-feature .iro-detail-btn a:hover {
  text-decoration: none;
}

.upcoming-wrapper .bg-image {
  background-image: url('../images/property2.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 1000px;
}
.participating .card-item br {
  display: none;
}
/* participating section */
.participating {
  width: 100%;
  padding: 0 20% 0 20%;
  margin: 80px 0 40px 0;
  text-align: center;
}

.participating .highlight {
  color: var(--primary-color);
}

.participating p {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #222222;
  margin-top: 40px;
}

.participating .participate-iro-btn {
  background-color: var(--secondary-color);
  text-align: center;
  padding: 20px 80px;
  margin-top: 40px;
  border-radius: 16px;
  border: none;
}

.participating .participate-iro-btn a {
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 20px;
  color: var(--white);
  align-items: center;
}

.participating .participate-iro-btn a:hover {
  text-decoration: none;
}

.participating .card-item {
  width: 100%;
  background: var(--white);
  box-shadow: 0px 4px 40px rgba(153, 155, 168, 0.15);
  border-radius: 12px;
  margin-top: 40px;
}

.participating .card-item p {
  margin-top: 0;
}

.participating .card-item .card-image {
  width: 100%;
  height: 300px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.participating .card-item .card-content {
  padding: 20px;
  text-align: center;
}

.participating .card-item br {
  display: none;
}

.participating .card-item .card-content .card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  line-height: 28px;
  font-style: normal;
  font-weight: 500;
  color: var(--normal-text-color);
  text-decoration: none !important;
}
.participating .wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
}
.participating .wrapper img {
  margin-right: 10px;
}

.participating .wrapper p {
  font: weight 400px;
}

.participating .wrapper .icon-item {
  display: flex;
  margin: 0 40px 0 0;
  align-items: center;
}

.participating .wrapper .tab-item {
  display: flex;
  margin: 0 40px 0 0;
  align-items: center;
  background: #fbfbfb;
  padding: 8px 20px;
  border-radius: 100px;
}

.participating .wrapper .tab-item p {
  font-weight: 600;
  color: var(--normal-text-color);
}
.participating .soft-bar {
  padding: 4px 0px 4px 0px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 100px 0px 0px 100px;
  width: 50%;
}

.participating .hard-bar {
  padding: 4px 0px 4px 0px;
  background: #979797;
  border-radius: 0px 100px 100px 0px;
  width: 50%;
}
.participating .cap-wrapper {
  display: inline;
  text-align: left;
}

.participating .cap-wrapper p {
  margin-top: 5px;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 8px;
  line-height: 10px;
  display: inline;
  position: relative;
  color: #979797;
}

.participating .cap-wrapper .align-left {
  float: left;
}
.participating .cap-wrapper .align-right {
  float: right;
}

.participating .cap-wrapper .align-center {
  position: absolute;
  left: 50%;
}
/* end participating section */

/* investor section */
.investor-wrapper {
  background: #00153e;
  padding: 60px 17% 100px 17%;
  text-align: center;
}

.investor-wrapper .investor-title {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 19px;
  line-height: 26px;
  text-align: center;
  letter-spacing: 10px;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 60px;
}

.investor-wrapper .investor-hr {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #8310ff 0%, #5a97ff 100%);
  margin-top: 20px;
}

.investor-wrapper .investor-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.investor-wrapper .investor-list div {
  margin-top: 60px;
}

.investor-wrapper .investor-list div {
  margin-right: 75px;
}

.investor-wrapper .investor-list div:last-child,
.investor-wrapper .investor-list div:nth-child(4),
.investor-wrapper .investor-list div:nth-child(8) {
  margin-right: 0;
}

.investor-wrapper .investor-list.individual-list div {
  width: 18%;
}

/* end investor section */

/* medium post section */
.medium-list-wrapper {
  width: 100%;
  padding: 60px 10%;
  text-align: center;
  display: none;
}

.medium-list-wrapper .highlight {
  color: var(--primary-color);
}

.medium-list-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.medium-list-wrapper .medium-card-item {
  width: 390px;
  background: var(--white);
  box-shadow: 0px 4px 40px rgba(153, 155, 168, 0.15);
  border-radius: 12px;
  margin-top: 40px;
}

.medium-list-wrapper .medium-card-item:not(:last-child) {
  margin-right: 30px;
}

.medium-list-wrapper .medium-card-item .card-image {
  width: 100%;
  height: 200px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.medium-list-wrapper .medium-card-item .card-content {
  padding: 20px;
  text-align: left;
}

.medium-list-wrapper .medium-card-item .card-content .card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  line-height: 22px;
  font-style: normal;
  font-weight: normal;
  color: var(--normal-text-color);
  text-decoration: none !important;
}

.medium-list-wrapper .medium-card-item .card-content .card-description {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 17px;
  font-style: normal;
  font-weight: normal;
  color: var(--normal-text-color);
  margin-top: 20px;
  text-decoration: none !important;
}

.medium-list-wrapper .medium-card-item .card-content .card-publish-time {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 17px;
  font-style: normal;
  font-weight: normal;
  color: var(--normal-text-color);
  margin-top: 20px;
  text-decoration: none !important;
}
/* end medium post section */

/* footer section */
footer {
  background-color: var(--normal-text-color);
  min-height: 394px;
  display: flex;
  flex-direction: column;
}

footer .footer-info {
  display: flex;
  align-items: center;
  min-height: 314px;
  justify-content: space-around;
  padding: 0 10%;
}

footer .footer-item p {
  margin: 0;
}

footer .footer-logo {
  width: 143px;
  height: 134px;
}

footer .footer-item {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
}

footer .footer-item .footer-link-wrapper p {
  text-align: center;
}

footer .footer-item:not(:last-child) {
  border-right: 1px solid #002e89;
  width: 30%;
}

footer .footer-item:last-child {
  width: 39%;
  flex-direction: column;
  margin-top: 30px;
}

footer .footer-item:nth-child(2) p:not(:last-child) {
  margin-bottom: 52px;
}

footer .footer-item a {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 22px;
  color: #fff;
  text-decoration: none;
}

footer .footer-item a:hover {
  color: #fff;
  text-decoration: underline;
}

footer .footer-item a svg {
  margin-right: 12px;
  width: 34px;
  height: 34px;
}

footer .footer-channel-wrapper {
  justify-content: flex-start;
  flex-wrap: wrap;
  display: flex;
  width: 90%;
}

footer .footer-channel-wrapper .footer-channel-item {
  width: 23%;
  justify-content: center;
}

footer .footer-channel-wrapper .footer-channel-item:first-child svg,
footer .footer-channel-wrapper .footer-channel-item:nth-child(2) svg {
  width: 30px;
  height: 30px;
}

footer .footer-channel-wrapper .footer-channel-item:nth-child(3) svg {
  width: 33px;
  height: 30px;
}

footer .footer-channel-wrapper .footer-channel-item:last-child svg {
  width: 42px;
  height: 30px;
}

footer .footer-copyright {
  background: #00153e;
  height: 80px;
  text-align: center;
  padding: 30px 0;
}

footer .footer-copyright span {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: -0.1px;
  color: #6790d6;
}

img.footer-abdk-logo {
  width: 143px;
  margin-left: 5px;
}

footer .footer-abdk p {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 15px;
  color: #ffffff;
  margin-bottom: 5px;
}

.footer-abdk {
  margin-top: 20px;
  width: 90%;
}

/* end footer section */

/* youtube modal section */

.youtube-modal,
.select-language-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 5%;
  background: rgb(0 0 0 / 88%);
}

.youtube-modal.show {
  display: block;
  overflow: hidden;
}

.youtube-modal.show .modal-content {
  width: 100%;
  height: 100%;
  background-color: #000;
  position: relative;
}

.youtube-modal.show .modal-content button,
.select-language-modal.show .modal-content button {
  color: var(--white);
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  background: none;
  border: none;
  position: absolute;
  right: 0;
  top: -65px;
  cursor: pointer;
}

body.hidden {
  overflow: hidden;
}

/* end youtube modal section */

/* language select modal */
.select-language-modal {
  padding: 0;
  background: rgba(34, 34, 34, 0.8);
  backdrop-filter: blur(15px);
}

.select-language-modal.show {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
}

.select-language-modal.show .modal-content {
  background-color: #ffffff;
  position: relative;
  border-radius: 8px;
  min-width: 300px;
}

.select-language-modal.show .modal-content button {
  top: -50px;
}

.select-language-modal.show .modal-content .modal-panel {
  background: var(--normal-text-color);
  color: var(--white);
  padding: 40px;
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 25px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  text-align: center;
}

.select-language-modal.show .modal-content ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.select-language-modal.show .modal-content ul li {
  padding: 30px;
  border-bottom: 1px solid var(--normal-text-color);
  color: var(--primary-color);
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 17px;
  line-height: 22px;
  cursor: pointer;
}
/* end language select modal */
