@font-face {
    font-family: monserattRegular;
    src: url(../fonts/Montserrat-Regular.ttf);
    font-weight: bold;
}

@font-face {
    font-family: monserattLight;
    src: url(../fonts/Montserrat-Light.ttf);
    font-weight: bold;
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

section {
    padding: 5vw 4vw 5vw 4vw;
}

body {
    font-family: monserattRegular;
    color: white;
    background-color: #17263a;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  background-color: #17263a !important;
  -webkit-box-shadow: 0 0 0px 1000px #17263a inset !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: white !important;
  color: white !important;
}

h1, h2, h3 {
    margin-bottom: 0.5em;
    text-transform: uppercase;
}

h1 {
    margin-top: 0;
    font-size: 3.15vw;
}

h2 {
    font-size: 2vw;
}

h3 {
    font-size: 1.5vw;
}

h4 {
    font-size: 1.3vw;
    color: rgb(183, 182, 182);
}

h5 {
    font-size: 1.1vw;
}

p, caption, a:not(.logo-link) {
    font-family: monserattLight;
    text-decoration: none;
    font-size: 1.2vw;
    margin-bottom: 0.2em;
    color: rgb(183, 182, 182);
}

ul {
    list-style-type: none;
    padding-inline-start: 0;
}

a, button{
    cursor: pointer;
}

.header-wrapper {
    background-image: url('../images/home.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
}

header {
    background-color: transparent;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    transition: background-color 0.4s ease-in-out;
    padding: 0.8em 4vw;
    z-index: 3;
}

header.scrolled {
    background-color: #17263a;
    box-shadow: 1px 1px 5px #0e1d30;
}

.navigation nav{
    position: absolute;
    top: 3em;
    right: 50px;
    width: 250px;
}

.navigation{
    position: fixed;
    bottom: 0;
    right: -500px;
    width: 350px;
    height: 100%;
    background-color: #dcc18e;
    transition: 0.5s;
    z-index: 4;
}

.navigation ul {
    padding-top: 1em;
}

.navigation ul li{
    color: #fff;
    text-align: right;
    text-transform: uppercase;
    list-style-type: none;
    padding: 1em 0;
}

.navigation a {
    position: relative;
    font-size: 1.5em;
    color: #0e1d30;
}

.navigation a:after {
    content: "";
    position: absolute;
    background-color: #405f86;
    height: 2px;
    width: 0;
    left: 0;
    bottom: -8px;
    transition: 0.5s;
}

.navigation a:hover:after {
    width: 100%;
}

.hamburger{
    position: relative;
    z-index: 5;
    width: 2.5em;
    cursor: pointer;
    background: none;
    outline: none;
    border: none;
}

.hamburger .bar,.hamburger:after,.hamburger:before{
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: #FFF;
    margin: 6px 0px;
    transition: 0.4s;
}

.hamburger.is-active:before{
    transform: rotate(-45deg) translate(-4px, 7px);
        background-color: #0e1d30;
}
    
.hamburger.is-active:after{
    transform: rotate(45deg) translate(-4px, -7px);
    background-color: #0e1d30;
}

.hamburger.is-active .bar{ 
    opacity: 0;
}

.navigation.active{
    right: 0;
    bottom: 0;
}

header img {
    width: 4.2vw;
}

.header-title-container {
    padding: 4vw 4vw 2vw 4vw;
}

.header-title-container h1 {
    animation: textSlideIn .7s ease-out;
}

.small-slide-in h1 {
    animation: textSlideInSmall .5s ease-out;
}

main {
    background-color: #17263a;
}

.introduction-section {
    display: grid;
    grid-template-columns: 40% 60%;
}
  
.right-column {
    grid-column: 2;
    border-right: 2px solid #1c2f48;
    border-left: 2px solid #1c2f48;
}
  
.left-column {
    grid-column: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-left: 2px solid #1c2f48;
}
  
.right-column > article:first-child {
    padding: 10vw 2vw 4vw 2vw;
}
  
.right-column > article:last-child {
    border-top: 2px solid #1c2f48;
    padding: 4vw 2vw;
}

#animatedImg {
    padding-top: 10vw;
    max-width: 75%;
}

.members-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.members-block img {
    height: 4.5vw;
    padding-bottom: 1em;
    object-fit: scale-down;
}

.members-block div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.members-title {
    width: 50%;
    text-align: left;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 0;
}

.benefits-list li {
    border-right: 2px solid #405f86;
    border-top: 2px solid #405f86;
    padding: 3vw;
    background-color: #27394f;
}

.benefits-list h1 {
    color: #835d22;
}

.regulators-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.regulators-title {
    width: 25%;
}



  
.logos {
    width: 75%;
    overflow: hidden;
    padding: 5vw 0;
    background: #17263a;
    white-space: nowrap;
    position: relative;
}
  
.logos:before,
.logos:after {
    position: absolute;
    top: 0;
    width: 20vw;
    height: 100%;
    content: "";
    z-index: 2;
}
  
.logos:before {
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), #17263a);
}
  
.logos:after {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), #17263a);
}
  
.logos-slide {
    display: inline-block;
    animation: 12s slide infinite linear;
}
  
.logos-slide svg {
    height: 5vw;
    margin: 0 2vw;
}

.overview-section {
    padding: 8vw 4vw 8vw 4vw;
}

.overview-section ul {
    display: flex;
    justify-content: space-between;
    gap: 4vw;
}

.overview-section h1 {
    text-transform: none;
    padding-bottom: 1em;
}

.pricing-overview-section {
    background-color: white;
}

.pricing-overview-section p {
    color: black;
}

.pricing-overview-section h1 {
    color: #0e1d30;
}

.countries-section h1, .countries-section p {
    position: relative;
    z-index: 1;
}

.countries-section h1 {
    text-transform: none;
    font-size: 3vw;
    margin: 0 22vw 1vw 22vw;
}

.countries-section {
    height: 72vw;
    text-align: center;
    background-color: #27394f;
}

.countries-section svg {
    position: relative;
    z-index: 0;
    top: -15em;
    right: 50%;
    transform: translate(50%);
    width: 100%;
}

.pricing-info-title {
    text-transform: none;
    margin: 2vw 5em 5vw 5em;
}

.pricing-info-section {
    text-align: center;
    padding: 2vw 4vw 6vw 4vw;
}

.pricing-info-cards {
    display: flex;
    justify-content: space-between;
}

.pricing-info-card h2, span {
    text-align: left;
    text-transform: none;
    margin: 0;
}

.pricing-info-card {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2em;
    background-color: white;
    color: black;
    padding: 2.5vw;
    border-radius: 2%;
    box-shadow: 5px 5px 12px black;
}

.pricing-info-card a p, span {
    color: #835d22;
}

.pricing-info-card p {
    color: black;
}

.pricing-info-card div svg {
    width: 6vw;
}

.arrow-button {
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.pricing-info-card a p {
    font-size: 1.5vw;
}

.pricing-info-card div {
    display: flex;
    flex-direction: column;
    gap: 1.5vw;
}

.pricing-info-card ul {
    display: flex;
    justify-content: space-between;
}

.pricing-info-card ul li:first-child {
    width: 10em;
    text-align: left;
}

.pricing-info-card ul li:last-child {
    width: 10em;
    text-align: right;
}

.pricing-info-card ul li:last-child p {
    font-family: monserattRegular;
}

.investments-section {
    padding-top: 0;
}

.investment-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;   
    grid-gap: 2em; 
}

.investment-card {
    background-color: #405f86;
    padding: 1.2em;
    display: flex;
    justify-content: space-between;
    gap: 5vw;
}

.investment-card .arrow-button p {
    font-size: 1.2vw;
    color: white;
}

.investment-card .arrow-button svg {
    color: white;
}

.investment-card img {
    width: 15vw;
    margin-bottom: 0.5em;
}

.investment-card h4 {
    margin-bottom: 1.2em;
    color: white;
}

.investment-card h4:last-child {
    margin-bottom: 0;
}

.investment-card p {
    margin: 1vw 0 1vw 0;
    font-size: 0.8vw;
}

.investment-card h5 {
    font-size: 0.85vw;
}

.investment-card div:first-child {
    width: 60%;
}

.investment-card div:last-child {
    width: 40%;
}

.investment-card div:last-child p {
    margin-bottom: 0.4em;
}

.investment-card div:last-child p:first-child {
    margin-top: 0.3em;
}

.niche-cards {
    display: flex;
    gap: 0.2em;
    flex-wrap: wrap; 
}

.niche-cards li {
    background-color: #1c2f48;
    padding: 0.3em;
    display: flex;
    justify-content: space-between;
}

.niche-cards li:first-child {
    background-color: #835d22;
}

.niche-cards li p {
    margin: 0;
}

.application-section {
    margin: 0 4vw 6vw 4vw;
    padding: 0;
}

.application-container {
    display: flex;
    justify-content: space-between;
    border: 2px solid #1c2f48;
}

.application-image {
    width: 25vw;
    height: 20vw;
}

.application-container form {
    width: 60%;
    padding: 4vw 4vw 0 1vw;
}

.application-heading {
    margin-bottom: 2em;
    font-size: 2.5vw;
}

form h4 {
    margin-bottom: 3vw;
}

.double-input {
    display: flex;
    justify-content: space-between;
    gap: 2em;
}

.attach-cv {
    border: 1px dashed #405f86;
    width: 100%;
    margin: 2vw 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2em;
}

.attach-cv svg {
    width: 1.5vw;
}

.attach-cv input {
    opacity: 0;
    height: 1px;
    width: 100%;
}

#custom-cv-button {
    color: rgb(183, 182, 182);
    font-size: 1vw;
    cursor: pointer;
    background: none;
    border: none;
    font-family: monserattLight;
    text-decoration: none;
    outline: none;
}

#custom-cv-text {
    margin-left: 10px;
    font-size: 1vw;
    color: white;
}
  

.inputbox{
    position: relative;
    margin: 2vw 0;
    width: 100%;
}

.inputbox label{
    font-size: 0.8vw;
    transform: translateY(-50%);
    color: rgb(183, 182, 182);
    text-align: left;
}

.textarea-label {
    transform: translateY(-90%) !important;
}

.wrapper label {
    font-size: 0.8vw;
    color: rgb(183, 182, 182);
}

/* input:focus ~ label,
input:valid ~ label{
    top: 0.1vw;
    font-size: 0.7vw;
}

textarea:focus ~ label,
textarea:valid ~ label{
    top: 0.5vw;
    font-size: 0.7vw;
} */

.inputbox input {
    width: 100%;
    height: 2vw;
    background: transparent;
    border: none;
    border-bottom: 1px solid #405f86;
    outline: none;
    font-size: 0.9vw;
    color: #fff;
    padding-left: 5px;
    font-family: monserattRegular;
}

input[type="submit"] {
    color: #835d22;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1.5vw;
    margin-top: 1em;
    margin-bottom: 2em;
    cursor: pointer;
}

.submit-button {
    color: #835d22;
    background: none;
    border: none;
    outline: none;
    font-size: 1.5vw;
    margin-top: 1em;
    margin-bottom: 2em;
    cursor: pointer;
}

.contact-textarea {
    margin: 1vw 0 1vw 0;
}

.contact-textarea textarea {
    font-family: monserattRegular;
    padding:0 35px 0 5px;
    height: 1.5vw;
    font-size: 0.9vw;
    color: #fff;
    resize: none;
    width: 100%;
    background: none;
    outline: none;
    border: none;
    border-bottom: 1px solid #405f86;
    box-shadow: none;
    margin-top: 0.6vw;
}

/*#name-error, #email-error, #position-error, #phone-error, #message-error {*/
/*    font-size: 0.7vw;*/
/*    color: red;*/
/*}*/

/*#email.is-active, #name.is-active, .select-btn.is-active, #phone.is-active, #message.is-active {*/
/*    border-bottom: 1px solid red;*/
/*}*/

/*#name-error2, #email-error2, #phone-error2, #message-error2, #country-error {*/
/*    font-size: 0.7vw;*/
/*    color: red;*/
/*}*/

/*#name2.is-active, #email2.is-active, #phone2.is-active, #message2.is-active, #country.is-active {*/
/*    border-bottom: 1px solid red;*/
/*}*/

#position, #country {
    all: unset;
    width: 100%;
}

.wrapper {
    width: 100%;
}

.wrapper2 {
    width: 100%;
}

.select-btn, .options li {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.select-btn {
    height: 2vw;
    font-size: 0.9vw;
    justify-content: space-between;
    padding: 0 0 0 5px;
    border-bottom: 1px solid #405f86;
}

.select-btn span {
    color: rgb(183, 182, 182);
}

.selected-country {
    color: white !important;
}

.select-btn span::after {
    color: rgb(183, 182, 182);
}

.select-btn i {
    font-size: 2.5vw;
    transition: transform 0.3s linear;
    color: rgb(183, 182, 182);
}

.wrapper.active .select-btn i {
    transform: rotate(-180deg);
}

.wrapper2.active .select-btn i {
    transform: rotate(-180deg);
}

.content {
    display: none;
    padding: 1.5vw;
    margin-top: 15px;
    background: #17263a;
    border: 1px  solid #27394f;
    border-radius: 7px;
}

.wrapper.active .content {
  display: block;
}

.wrapper2.active .content {
    display: block;
}

.content .search {
  position: relative;
}

.search {
    margin-bottom: 1vw;
}

.search i {
  top: 46%;
  left: 1vw;
  color: #999;
  font-size: 1.2vw;
  pointer-events: none;
  transform: translateY(-50%);
  position: absolute;
}

.search input {
    background-color: #17263a;
    color: white;
    height: 2vw;
    width: 100%;
    outline: none;
    font-size: 0.9vw;
    border-radius: 5px;
    padding: 0 0 0 3vw;
    border: 1px solid #27394f;
}

.search input:focus {
    padding-left: 42px;
    border: 2px solid #405f86;
}

.search input::placeholder{
    color: #bfbfbf;
}

.content .options {
    max-height: 7vw;
    overflow-y: auto;
    padding-right: 7px;
}

.options::-webkit-scrollbar {
    width: 7px;
}

.options::-webkit-scrollbar-track {
    background: #17263a;
    border-radius: 25px;
}

.options::-webkit-scrollbar-thumb {
    background: rgb(183, 182, 182);
    border-radius: 25px;
}

.options li {
  height: 2.5vw;
  padding: 0 1vw;
  font-size: 0.9vw;
  margin-bottom: 0.8vw;
}

.options li:last-child {
    margin-bottom: 0;
}

.options li:hover, li.selected {
  border-radius: 5px;
  background: #405f86;
}

.email, .phone {
    margin: 2vw 0 0 0;
}

.linkedin, .cv {
    margin: 2vw 0 1vw 0;
}

.contact-section {
    padding-bottom: 0;
    padding-top: 7vw;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    border-top: 2px solid #1c2f48;
}

.contact-container form {
    width: 50%;
    padding: 4vw 0 0 4vw;  
}

.contact-info-container {
    width: 50%;
    padding: 4vw 4vw 0 0;  
}

.contact-email {
    color: #835d22 !important;
}

.contact-container h4 {
    margin-bottom: 2.5em;
    color: white;
}

.contact-container div p {
    margin-bottom: 1em;
}

.contact-info  {
    display: flex;
    gap: 2em;
    margin-bottom: 2vw;
}

.contact-info p {
    color: white;
}

.contact-info div:first-child {
    border-right: 2px solid #1c2f48;
}

.map iframe {
    width: 100%;
    height: 30vw;
    margin-bottom: 5vw;
}

.note {
    font-size: 0.8vw;
    color: white;
    margin-bottom: 3vw;
}

.pricing-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 10vw 4vw 0 4vw;
    height: 100vh;
    padding: 0;
}

.menu-tab {
    display: flex;
    border-top: 1px solid rgb(183, 182, 182);
    align-items: center;
    gap: 0.5em;
    margin-bottom: 2em;
}

.menu-tab a {
    border-top: 1px solid white;
    padding-top: 1.4vw;
    color: white;
    font-size: 1vw;
    margin-right: 1vw;
}

.menu-first-tab {
    color: rgb(183, 182, 182) !important;
    border-top: none !important;
}

.menu-first-tab:hover {
    border-bottom: 1px solid rgb(183, 182, 182);
}

.pricing-information-container {
    display: flex;
    justify-content: space-between;
    gap: 2vw;
    margin-bottom: 4vw;
}

.pricing-information-container h1 {
    text-transform: none;
    font-size: 2.5vw;
}

.pricing-information-container div:first-child {
    flex: 0 0 33%;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;   
    grid-gap: 1.5em; 
}

.pricing-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.758);
    margin-bottom: 0 !important;
}

.pricing-card div {
    display: flex;
    justify-content: space-between;
    padding: 0 0.5em 0.5em 0;
}

.pricing-card svg {
    width: 1.4vw;
    height: 1.4vw;
}

.pricing-card:hover {
    background-color: white;
}

.pricing-card h2 {
    text-align: center;
    margin-bottom: 0;
    border-top: 1px solid #0e1d30;
    border-bottom: 1px solid #0e1d30;
    color: #0e1d30;
    padding: 0.6em;
    margin: 1.5em 3em 0.5em 3em;
    font-family: monserattRegular;
}

.redirect-card  {
    background-color: white;
}

.redirect-card svg{
    width: 2.2vw;
    height: 2.2vw;
}

.redirect-card h2 {
    border: none;
    padding: 0;
}

.redirect-card p {
    color: #0e1d30;
    font-size: 0.9vw;
    text-align: center;
    margin: 0 6vw 0 6vw;
}

.circle-icon {
    width: 1.2vw;
    height: 1.2vw;
    border: 1px solid white;
    border-radius: 50%;
    display: flex;
    margin-top: 1.4vw;
    transform: rotate(180deg);
}

.circle-icon-redirect {
    border: 1px solid rgb(183, 182, 182);
}

.services-section {
    background-color: white;
}

.service-cards {
    display: flex;
    justify-content: space-between;
}

.service-card {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1em;
    color: black;
    padding: 2em;
}

.service-heading {
    text-align: center;
    border-bottom: 1px solid rgb(183, 182, 182);
    padding-bottom: 3vw;
    color: #0e1d30;
}

.service-card h3 {
    text-transform: none;
}

.service-card p {
    color: black;
}

.service-card li p {
    font-size: 1vw;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 1em;
    padding: 0 1em 0 1em;
}

.service-card ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-card ul svg {
    width: 0.8vw;
    margin-right: 1vw;
}

.service-card ul li:first-child {
    width: 25em;
    text-align: left;
    display: flex;
}

.service-card ul li:last-child {
    width: 10em;
    text-align: right;
}

.compliance-software-services {
    border-top: 1px solid rgb(183, 182, 182);
    padding-top: 2vw;
}

.compliance-software-services ul li:first-child {
    width: 28em;
}

.compliance-software-card {
    width: 67%;
}

.support-services-cards {
    grid-template-columns: repeat(3, 1fr);
}

.support-services-cards .pricing-card {
    width: 18vw;
}

.support-services-cards h2 {
    font-size: 1.3vw;
    margin: 3em 3em 1.5em 3em;
}

.company-registration-section {
    background-color: white;
    color: #0e1d30;
}

.company-registration-section .inputbox input, .company-registration-section textarea {
    color: #0e1d30;
}






.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: 100ms ease-in-out;
    border: 1px solid white;
    border-radius: 8px;
    z-index: 10;
    background-color: #17263a;
    width: 60%;
    max-width: 80%;
    padding: 2.5vw 2.5vw;
  }
  
  .modal.active {
    transform: translate(-50%, -50%) scale(1);
  }

  .modal-button {
    display: flex;
    align-items: center;
    gap: 0.5em;
    background: none;
    border: none;
    color: #835d22;
    font-family: monserattLight;
    cursor: pointer;
    text-decoration: none;
    outline: none;
    font-size: 1.5vw;
  }

  .modal-button span {
    margin-top: 0.2em;
  }
  
  .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    flex-direction: column;
  }

  .modal p {
    color: rgb(183, 182, 182);
    font-size: 1vw;
  }
  
  .modal-header .title {
    font-size: 2.5vw;
    font-weight: bold;
  }
  
  .modal-header .close-button {
    position: absolute;
    right: 1.5vw;
    top: 0.5vw;
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    font-size: 3vw;
    color: white;
  }
  
  .modal-body {
    padding: 0 2.5vw;
  }

  .modal-body h3 {
    text-align: left;
    text-transform: none;
    font-size: 1.4vw;
    color: white;
    margin-bottom: 1vw;
  }
  
  #overlay {
    position: fixed;
    z-index: 9;
    opacity: 0;
    transition: 100ms ease-in-out;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .5);
    pointer-events: none;
  }
  
  #overlay.active {
    opacity: 1;
    pointer-events: all;
  }

  .pricing-header-wrapper {
    height: 56vw;
    background-image: url('../images/pricing_information.png');
}

.support-header-wrapper {
    height: 56vw;
    background-image: url('../images/support_services.png');
    background-position: top;
}

.other {
    position: relative;
    bottom: -0.6em;
}

.website-development {
    position: relative;
    bottom: -0.6em;
}

.website-development-heading {
    margin: 3em 2em 1.5em 2em !important;
}

.pricing-card-active {
    padding: 0 0.5em 0 0;
}

.members-logos {
    display: flex;
    flex-direction: row !important;
}

.privacy-policy-main {
    color: black;
    background-color: white;
    padding: 12vw 5vw;
}

.privacy-policy-main h2 {
    color: #835d22;
    margin-top: 1.5em;
}

.privacy-policy-main p {
    color: black;
}

.privacy-policy-header {
    background-color: #17263a;
    box-shadow: 1px 1px 5px #0e1d30;
}

.form-success-section {
    text-align: center;
}

.form-success-section h1 {
    margin-bottom: 1vw;
}

.form-success-section a {
    text-decoration: underline;
}

.financial-modal-button {
    justify-content: center;
}

.compliance-modal-button {
    padding-left: 1em;
}


footer {
    background-color: #17263a;
    margin: 0 4vw;
    padding: 2vw 0;
    display: flex;
    justify-content: space-between;
    border-top: 2px solid #1c2f48;
}

.service-card ul li:last-child p {
    font-family: monserattRegular;
}

footer figure {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

footer figure p {
    font-size: 1vw;
}

.footer-nav {
    display: flex;
}

.footer-nav-item {
    margin: 0 2.5vw 0 2.5vw;
}

.footer-navigation {
    flex-direction: column;
}

.footer-logos {
    width: 15vw;
    height: 4vw;
}

.footer-navigation li {
    padding-bottom: 0.8vw;
}

.footer-bottom-container {
    display: flex;
    align-items: end;
}

.footer-bottom-container p {
    display: none;
}

.footer-navigation li:last-child {
    padding-bottom: 0;
}

.footer-navigation li a {
    font-size: 1vw;
    color: rgb(183, 182, 182);
}

footer h3 {
    text-transform: none;
    margin-bottom: 1.5vw;
    font-size: 1.2vw;
}

.footer-logo {
    width: 5vw;
    margin-bottom: 1.5vw;
}



@keyframes textSlideIn {
    0% {
        transform: translateX(-100%);
        opacity: 0.2;
    }
    25% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.6;
    }
    75% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.9;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
      }
}

@keyframes textSlideInSmall {
    0% {
        transform: translateX(-30%);
        opacity: 0.2;
    }
    25% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.6;
    }
    75% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.9;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
      }
}



@keyframes slide {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
}




@media only screen and (max-width: 1025px) {
    .header-wrapper {
        background-size: contain;
        background-repeat: no-repeat;
        background-position: top;
        height: 40vh;
        object-fit: cover;
    }
    
    .form-success-section h1 {
        font-size: 3em !important;
        margin-bottom: 1em !important;
    }
    
    .form-success-section a {
        font-size: 2em !important;
    }

    .footer-navigation li {
        padding-bottom: 0.5vw;
    }

    .countries-section svg { 
        top: -18em;
    }

    .pricing-information-container {
        flex-direction: column;
    }

    .pricing-card h2 {
        margin: 2em 5em 1.2em 5em;
        font-size: 2em;
    }

    .pricing-header-wrapper {
        height: 100vh;
    }

    .support-header-wrapper {
        height: 100vh;
    }

    .pricing-information-container div:first-child {
        flex: 0;
    }

    .pricing-container {
        justify-content: start;
    }

    .pricing-cards {
        grid-gap: 3em;
    }

    .support-services-cards .pricing-card { 
        width: auto;
    }

    .support-services-cards .pricing-card h2 {
        font-size: 1.5em;
        margin: 3em 4em 2em 4em;
    }

    .menu-tab {
        margin-bottom: 4em;
        margin-top: 1vw;
    }

    .pricing-information-container h1 {
        font-size: 3.5vw;
        margin-bottom: 2vw;
    }

    .support-header-wrapper {
        height: 100vh;
    }

    .support-services-cards {
        grid-gap: 2vw;
    }

    .other {
        position: relative;
        bottom: -1em;
    }
    
    .website-development {
        position: relative;
        bottom: -1em;
    }
    
    .website-development-heading {
        margin: 2.8em 4em 2em 4em !important;
    }

    .menu-tab a {
        font-size: 1.4vw;
    }

    .redirect-card p {
        font-size: 1.2vw;
    }

    .pricing-card-active svg {
        position: relative;
        bottom: -1vw;
    }
}


@media only screen and (max-width: 820px) {
    .countries-section svg { 
        top: -20em;
    }

    .modal {
        width: 80%;
    }
}

@media only screen and (max-width: 680px) {
    .countries-section svg { 
        top: -22em;
    }
}

@media only screen and (max-width: 600px) {
    .header-wrapper {
        background-size: contain;
        background-repeat: no-repeat;
        background-position: top;
        height: 40vh;
        object-fit: cover;
    }

    .header-title-container {
        position: relative;
        bottom: 0;
    }

    header img {
        width: 2.5em;
    }

    .left-column {
        display: none;
    }

    .introduction-section {
        display: block;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }

    .benefits-img {
        display: none;
    }

    .header-title-container h1 {
        font-size: 1.1em;
    }

    h1 {
        font-size: 1.2em !important;
    }

    h2 {
        font-size: 1em !important;
    }

    h4 {
        font-size: 0.8em !important;
    }

    p {
        font-size: 0.8em !important;
    }

    .modal-button {
        font-size: 1em !important;
    }

    .members-block {
        flex-direction: column;
    }

    .members-title {
        text-align: left !important;
    }

    .members-block img {
        height: 3em;
    }

    .members-logos {
        gap: 2em;
    }

    .regulators-section {
        flex-direction: column;
    }

    .regulators-title {
        width: 100%;
    }

    .logos {
        width: 100%;
    }

    .logos-slide svg {
        height: 2em;
        margin: 0 1.5em;
    }

    footer {
        flex-direction: column;
    }

    .footer-logo {
        width: 2.5em;
        margin-bottom: 0;
        margin-right: 1em;
    }

    .footer-nav {
        justify-content: space-between;
    }

    footer h3 {
        font-size: 0.6em;
    }

    .footer-navigation li a {
        font-size: 0.5em;
    }

    footer figure {
        margin-bottom: 1.2em;
        margin-top: 0.5em;
    }

    footer figcaption {
        display: none;
    }

    footer figure p {
        font-size: 0.6em;
        margin: 0;
    }

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

    .footer-logos {
        width: 6em;
        height: 1.5em;
    }

    .contact-info p {
        font-size: 0.4em;
    }

    .footer-bottom-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 1.5em;
    }

    .footer-bottom-container p {
        display: block;
        font-size: 0.4em !important;
        color: white;
    }

    .footer-bottom-container svg {
        position: relative;
        right: -1em;
    }

    .contact-info {
        display: block;
        margin-bottom: 0
    }

    .svg-mobile {
        width: 100px;
    }

    .svg-mobile-boi {
        width: 50px;
    }

    .overview-section ul {
        flex-direction: column;
    }

    .custom-header-wrapper {
        background-size: contain;
        height: 30vh !important;
        object-fit: cover;
    }

    .overview-section h1 {
        padding-bottom: 0;
    }

    .regulators-section {
        padding-top: 3em;
    }

    .pricing-info-cards {
        flex-direction: column;
        gap: 2em;
    }

    .pricing-info-card {
        width: 100%;
        padding: 1em;
    }

    .pricing-info-card div svg {
        width: 4em;
    }

    .pricing-info-card p {
        font-size: 0.9em;
    }

    .pricing-info-card h2 {
        font-size: 1.5em !important;
        margin-bottom: 1em;
    }

    .investment-cards {
        grid-template-rows: auto auto auto;
        grid-template-columns: auto;
    }

    .investment-card {
        flex-direction: column;
    }

    .investment-card img {
        width: 7em !important;
    }

    .investment-card div:first-child {
        width: 100%;
    }

    .investment-card div:last-child {
        width: 100%;
    }

    .investment-card h5 {
        font-size: 0.9em;
        margin-bottom: 1em;
    }

    .niche-cards {
        margin-top: 1em;
    }

    .investment-card h4 {
        font-size: 1em;
    }

    .application-container {
        flex-direction: column;
        border-right: none !important;
    }

    .application-container form {
        width: 100%;
        padding: 4vw 4vw 0 4vw;
        border-right: 2px solid #1c2f48;
    }

    .application-image-container {
        display: flex;
        justify-content: space-between;
        border-bottom: 2px solid #1c2f48;
        padding-bottom: 1em !important;

    }

    .double-input {
        flex-direction: column;
        gap: 0;
    }
    
    .application-image {
        width: 8em;
        height: 7em;
    }

    .inputbox label, .wrapper label, #custom-cv-button, #custom-cv-text {
        font-size: 0.7em;
    }
    
    .careers-label {
        font-size: 0.9em !important;
    }

    #custom-cv-button {
        padding: 1em 0;
    }

    .attach-cv svg {
        width: 1em;
    }

    .inputbox input, .select-btn  {
        height: 3em;
        font-size: 0.7em;
    }

    .cv {
        margin-bottom: 1em;
    }

    .content {
        height: 6em;
        max-height: none !important;
    }

    .options {
        height: 4em;
        max-height: none !important;
    }

    .options {
        margin-top: 0.5em;
    }

    .contact-textarea textarea {
        height: 2.5em;
        font-size: 0.7em;
    }

    .select-btn i {
        font-size: 2em;
    }

    .options li {
        font-size: 0.8em;
        padding: 1em 2em;
        margin-bottom: 1em;
    }

    input[type="submit"] {
        font-size: 1.2rem;
        margin-bottom: 1em;
    }
    
    .submit-button {
        font-size: 3vw !important;
    }

    #name-error, #email-error, #position-error, #phone-error, #message-error {
        font-size: 0.6em;
    }

    .contact-container {
        flex-direction: column;
    }

    .contact-info-container, .contact-container form {
        width: 100%;
    }

    .contact-info {
        display: flex;
    }

    .contact-info-container, .contact-container form {
        padding: 4vw 0;
        border-right: none !important;
    }

    .contact-container form p {
        margin-bottom: 2em;
    }

    .note {
        margin-top: 1.5em;
        margin-bottom: 1em !important;
    }

    .contact-info div:first-child {
        padding-right: 1em;
    }

    .map iframe {
        height: 20em;
    }
    
    .pricing-cards {
        grid-template-columns: repeat(1, 1fr);
        gap: 1em;
    }

    .pricing-header-wrapper {
        background-size: cover !important;
        min-height: 75em;
    }

    .support-header-wrapper {
        height: 115vh !important;
        background-size: auto;
    }

    .pricing-card h2 {
        font-size: 5em !important;
        margin: 2em 3em 1.6em 3em
    }

    .pricing-information-container h1 {
        font-size: 1.5em !important;
        margin-bottom: 1em;
    }

    .menu-tab {
        margin-top: 4em;
        margin-bottom: 3em;
    }

    .menu-tab a {
        font-size: 0.7em;
    }

    .circle-icon {
        width: 0.7em;
        height: 0.7em;
    }

    .redirect-card p {
        font-size: 3em !important;
        margin: 0 3em 1.5em 3em !important; 
    }
    
    .redirect-card h2 {
        margin-bottom: 0.8em;
    }

    .redirect-card svg {
        width: 5em !important;
        height: 5em !important;
        padding: 0 1em 1em 0;
    }

    .pricing-card svg {
        width: 4em;
        height: 4em;
        padding: 0 1em 1em 0;
    }

    .service-cards {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }

    .support-services-cards .pricing-card h2 {
        font-size: 4em !important;
    }

    .service-heading {
        font-size: 1.8em !important;
    }

    .service-list h3 {
        font-size: 1em !important;
    }

    .support-header-wrapper {
        background-size: cover !important;
        min-height: 110em;
    }

    .service-card ul svg {
        width: 0.5em;
    }

    .privacy-policy-main {
        padding-top: 5em;
    }

    .modal-body h3 {
        font-size: 1em;
        margin-top: 1em;
        margin-bottom: 1em;
    }
    

    .modal {
        padding: 2em;
        width: 80%;
    }

    .modal-header .close-button {
        font-size: 2em;
    }

    .modal p {
        margin: 0 0.9em 0.5em 0.9em;
        font-size: 0.8em !important;
    }

    .modal-header .title {
        margin-bottom: 0;
    }

    .modal input {
        height: 2em;
    }

    .modal label {
        margin-top: 1em;
    }

    /* .navigation {
        width: 100%;
        display: flex;
        text-align: center;
    }

    .navigation nav ul li{
        text-align: center;
    } */
}



@media only screen and (max-width: 580px) {
    .countries-section svg { 
        top: -23rem;
    }

    .home-wrapper {
        background-size: auto 40%;
    }
}

@media only screen and (max-width: 530px) {
    .countries-section svg { 
        top: -24rem;
    }

    .countries-section h1, .pricing-info-title {
        font-size: 0.8em !important;
    }

    .countries-section p {
        font-size: 0.5em !important;
    }

    .pricing-info-title {
        margin: 2vw 0 5vw 0;
    }
}

@media only screen and (max-width: 510px) {
    .countries-section svg { 
        top: -25rem;
    }

    .support-header-wrapper {
        background-size: cover !important;
        min-height: 97em;
    }
}

@media only screen and (max-width: 450px) {

    .home-wrapper {
        background-size: auto 40%;
    }

    .countries-section svg { 
        top: -27rem;
    }

    .pricing-header-wrapper {
        background-size: cover !important;
        min-height: 57em;
    }

    .support-header-wrapper {
        background-size: cover !important;
        min-height: 88em;
    }
}

@media only screen and (max-width: 340px) {
    .countries-section svg { 
        top: -29rem;
    }

    .pricing-header-wrapper {
        background-size: cover !important;
        min-height: 50em;
    }

    .support-header-wrapper {
        background-size: cover !important;
        min-height: 70em;
    }
}