@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

@font-face {
    font-family: 'FoundersGrotesk';
    src: url('../fonts/FoundersGrotesk-Regular.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
.floating-element-1{
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  display:none !important;
}
br{
  content: "";
  margin: 2em;
  display: block;
  font-size: 24%;
}
@font-face {
    font-family: 'DroidKufi';
    src: url('../fonts/DroidKufi.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'DroidKufiBold';
    src: url('../fonts/DroidKufiBold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'FoundersGroteskBold';
    src: url('../fonts/FoundersGrotesk-Bold.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --theme-blue: #0a426a;
    --dark-blue: #0F0A42;
    --light-blue: #64AED3;
    --gray-text: #757575;
    --black: #121D28;
    --primary-font: 'DroidKufi', "Manrope", sans-serif;
    --secondary-font: 'DroidKufi', "FoundersGrotesk", sans-serif;
    --secondary-font-bold: 'DroidKufiBold', "FoundersGroteskBold", sans-serif;
}

/* --- MAIN COMPONENTS --- */
*, *::before, *::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html {
    font-size: 100%;
    box-sizing: inherit;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}

body {
    font-family: var(--primary-font);
    font-size: .95rem;
    font-weight: 500;
    height: -webkit-fill-available;
    color: #fff;
    background-color: #F6FAFE;
    min-height: calc(100vh - 89px);
    line-height: 1.5;
}

a, button {
    cursor: pointer;
    text-decoration: none;
    color: #000;
    transition: 200ms;
}

a:hover {
    color: var(--theme-blue);
}

img, video, iframe {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

img.cover-fit, video.cover-fit, iframe.cover-fit {
    object-fit: cover;
}

.btn:focus {
    box-shadow: unset;
    outline: unset;
}

::selection {
    background: var(--light-blue);
    color: #fff;
}

.text-black {
    color: #000;
}

.text-black-1 {
    color: #101828;
}

.theme-color {
    color: var(--theme-blue);
}

.theme-light-blue {
    color: var(--light-blue);
}

h1.theme-light-blue,
h2.theme-light-blue,
h3.theme-light-blue,
h4.theme-light-blue,
h5.theme-light-blue,
h6.theme-light-blue,
p.theme-light-blue,
a.theme-light-blue {
    font-weight: bold !important;
}

.text-gray-1 {
    color: #6D849D;
}

.text-gray {
    color: #757575;
}

.text-light-gray {
    color: #96A2AF;
}

.text-lighter-gray {
    color: #B3B3B3;
}

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

section {
    position: relative;
    overflow: hidden;
}

.page-content {
    min-height: calc(100vh - 180px);
}

.top-space {
    height: 89px;
    background: transparent;
    width: 100%;
}

.pointer {
    cursor: pointer;
}

.btn:hover {
    color: inherit;
}

.theme-btn, .slide-btn, .theme-btn-2 {
    background: var(--theme-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    line-height: 1.5;
    color: #fff;
    min-width: 172px;
    font-weight: 500;
    padding: 16px 0;
    height: 55px;
    border: 1px solid var(--theme-blue);
    transition: 300ms;
}

footer {
    padding: 95px 0 40px 0;
}

.footer-link {
    color: #fff;
    font-size: 16px;
    opacity: .75;
    transition: 300ms;
    font-weight: 300;
}

.footer-link.text-white {
    opacity: 1;
}

.footer-item {
    margin-bottom: 15px;
}

.footer-link:hover {
    color: #fff;
    opacity: 1;
    text-decoration: underline;
}

.footer-mail-icon {
    height: 21px;
    width: auto;
    margin-right: 7px;
    transform: translateY(-1px);
}

.footer-lower-section {
    margin-top: 50px;
}

.footer-email-link {
    margin-right: 10px;
}

.footer-phone-icon {
    height: 21px;
    width: auto;
    margin-right: 7px;
    transform: translateY(-1px);
}

.footer-title {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 7px;
}

@media screen and (min-width: 597px) {
    .border-start-sm-0 {
        border-left: 0 !important;
    }
}

.lang-selector {
    margin-right: 20px;
    border: 1px solid var(--light-blue);
    padding: 5px;
    border-radius: 50%;
    height: 34px;
    width: 34px;
    font-size: 12px;
    position: relative;
    transition: 300ms;
    cursor: pointer;
}

@media screen and (max-width: 597px) {
    .lang-selector {
        margin-left: 20px;
    }
}

.lang-selector span {
    position: absolute;
    top: 50%;
    font-size: 12px;
    font-weight: 700;
    color: var(--light-blue);
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 300ms;
}

.lang-selector:hover {
    background: var(--theme-blue);
    border: 1px solid var(--theme-blue);
}

.lang-selector:hover span {
    color: #fff;
}

.theme-btn-2 {
    border: 1px solid #c3c5c7;
    color: #323B4B;
    background: linear-gradient(to left, transparent 50%, var(--light-blue) 50%);
    background-size: 200% 100%;
    background-position: right bottom;
}

.theme-btn-2:hover {
    border: 1px solid var(--light-blue);
    background-position: left bottom;
}

.slide-btn {
    background: linear-gradient(to left, var(--theme-blue) 50%, #f6f6f6 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    border: unset;
}

.slide-btn:hover {
    background-position: left bottom;
    color: var(--theme-blue);
    box-shadow: 0 0 18px 0 #d4d4d4;
}

.white-btn {
    background: linear-gradient(to left, #fff 50%, var(--theme-blue) 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    border: unset;
    color: var(--theme-blue);
}

.white-btn:hover {
    background-position: left bottom;
    color: #fff;
}

.disabled {
    opacity: .6;
    cursor: default !important;
}

.fw-bolder {
    font-weight: 800 !important;
}


.text-gray-2 {
    color: #667085;
}

.ff-secondary-bold {
    font-family: var(--secondary-font-bold);
}

/*--- Titles ---*/
h1 {
    font-size: 3rem;
    font-family: var(--secondary-font-bold);
    color: var(--black);
}

h1.dark-blue {
    color: var(--dark-blue);
}

h2 {
    font-size: 52px;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1.125rem;
    line-height: 1.5;
}

/*--- Margins ---*/
.mb-8 {
    margin-bottom: .5rem;
}

.mb-16 {
    margin-bottom: 1rem;
}

.mb-20 {
    margin-bottom: 1.25rem;
}

.mt-70 {
    margin-top: 4.375rem;
}

.bg, .dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.dark-overlay {
    background: #000000d9;
    z-index: 1;
}

@media screen and (max-width: 700px) {
    
}
