:root {
      /* font sizes */
    --text-md: 1.25rem;   /* font sizes 20px */
    --text-lg: 1.5rem;  /* font sizes 24px */
    --text-xl: 2.25rem;  /* font sizes 36px */

    --white-color: #fff;
    --black-color: #000;
    --grey-color: #D9D9D9;
    --grey-block-bg: rgba(217, 217, 217, 0.8);

    --border-radius: 24px
}

/* Inter Font Family */
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter/Inter_18pt-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter/Inter_18pt-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter/Inter_18pt-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


html {
    font-size: 16px;
}


body {
    font-family: 'Inter', sans-serif;
    background-image: url('../images/main-bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


input:focus,
textarea:focus,
select:focus {
    outline: none;
}
  
a {
    outline: none;
}

img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

ul {
    padding-left: 20px;
}

li {
    font-size: var(--text-md);
}

.mt-5 {
    margin-top: 2.5rem;
}
.mt-6 {
    margin-top: 4.0625rem;
}

.main-wraper {
    width: 100%;
    overflow-x: hidden;
}

.main {
    padding: 150px 0 60px;
    position: relative;
}

/* .main::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: url(../images/first-schedule.png) no-repeat center center;
    background-size: contain;
    z-index: 1;
    pointer-events: none;
} */

.bg-img {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 30px;
    width: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
}


.section {
    position: relative;
    padding: 100px 0 70px;
}

.main-title {
    position: relative;
    margin-bottom: 34px;
    font-size: var(--text-xl);
    font-weight: 700;
    z-index: 2;
}

.section-title {
    position: relative;
    margin-bottom: 52px;
    font-size: var(--text-lg);
    font-weight: 600;
    z-index: 2;
}

.text {
    font-size: var(--text-lg);
}

.small-text {
    font-size: var(--text-md);
}

.grey-block {
    position: relative;
    padding: 50px 35px;
    height: 100%;
    border-radius: 56px;
    background-color: var(--grey-block-bg);
    overflow: hidden;
    z-index: 2;
}

.grey-block .section-title {
    margin-bottom: 40px;
}

.hand-img {
    position: absolute;
    bottom: 0;
    left: 0;
}

.table-wraper {
    max-width: 100%;
    margin-top: 50px;
    padding: 0 15px;
    border-radius: 56px;
    background-color: var(--white-color);
    overflow-x: auto;
}

table {
    font-size: var(--text-md);
}

.table td, .table th {
    padding: 30px 35px;
    min-width: 250px;
}



.footer {
    padding: 50px 0;
    background-color: var(--grey-color);
}

