:root {
    --main-color: #ed1c33;
    --text-color: #8d8d8d;
}

.brand-color {
    color: var(--main-color);
}

body {
    margin: 0;
    font-family: inter;
}

p {
    color: #8d8d8d;
}

h1,h2,h3,h4,h5,h6 {
    color: #585858;
}

.container {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: white;
}

.header {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 80px;
    box-shadow: 0px 0px 40px -15px gray;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    box-sizing: border-box;
    padding: 15px;
}

.header-brand {
    height: 100%;
    width: 170px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    box-sizing: border-box;
}

.header-brand-name {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-sizing: border-box;
}

.header-brand-name img {
    height: 40px;
    width: auto;
}

.header-brand-name-title {
    font-size: 25px;
 
}

.header-body {
    width: calc(100% - 180px);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    box-sizing: border-box;
    padding-right: 12px;
    padding-left: 12px;
}

.header-brand-logo {
    height: 100%;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-brand-logo img {
    height: 100%;
    width: auto;
}

.container-body {
    width: 100%;
    height: calc(100% - 80px);
    margin: auto;
    overflow-y: auto;
}

.container-body-section {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: row;
    box-sizing: border-box;
    padding: 30px;
    margin: auto;
}

.container-limit-width {
    max-width: 1200px;
}

.container-body-section .left {
    width: 50%;
    box-sizing: border-box;
    padding: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.container-body-section .right {
    width: 50%;
    box-sizing: border-box;
    padding: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    flex-direction: column;
}

.container-body-section-content {
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}

.container-content-box {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.style-underline{
    height: 3px;
    width: 200px;
    background-color: var(--main-color);
    margin-top: 15px;
}

.bg-light-gray {
    background-color: #f1f1f1;
}

.border-bottom {
    border-bottom: 2px solid #eee;
}

.border-left {
    border-left: 2px solid #eee;
}


.footer {
    width: 100%;
    background-color: #252525;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    box-sizing: border-box;
    padding: 30px;
}

.copy-rights {
    width: 100%;
    max-width: 1200px;
    color: white;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.footer-data {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: row;
    flex-wrap: wrap;
    box-sizing: border-box;
    padding: 30px;
    max-width: 1200px;
}

.footer-item {
    width: 30%;
    min-width: 300px;
    max-width: 340px;
    height: 150px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    box-sizing: border-box;
    padding: 20px;
    background-color: #333333;
    margin: 20px;
}

.footer-item-title {
    color: white;
    font-weight: 600;
    margin: 0;
    margin-bottom: 10px;
    font-size: 18px;
}

.footer-item a {
    margin-top: 5px;
    font-size: 15px;
    color: white;
}

.footer-item a:hover {
    color: var(--main-color);
}

a {
    text-decoration: none;
    color: rgb(71, 182, 247);
}

.educator-btn {
    margin-top: 20px;
    background-color: var(--main-color);
    width: 100%;
    height: 50px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: white;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    background-color: #595959;
    cursor: pointer;
}

.educator-btn img {
    width: 25px;
    height: 25px;
}

.educator-btn span {
     margin-left: 15px;
     font-size: 15px;
}




@media only screen and (max-width: 800px) {
    

    .header-brand-name {
        display: none;
    }

    .container-body-section {
        flex-wrap: wrap;
    }

    .topbbar {
        flex-wrap: wrap;
        flex-direction: column;
    }

    .container-body-section .left {

        min-width: 390px;
        max-width: 100%;
        text-align: center;
        justify-content: center;
        align-items: center;

    }

    .container-body-section .right {

        min-width: 390px;
        justify-content: center;
        align-items: center;
        margin-top: 50px;
        max-width: 100%;

    }

    .educator-btn span {
        margin-left: 13px;
        font-size: 13px;
   }

    
}










.checkbox {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 15px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Hide the browser's default radio button */
  .checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }
  
  /* Create a custom radio button */
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 3px;
  }
  
  /* On mouse-over, add a grey background color */
  .checkbox:hover input ~ .checkmark {
    background-color: #ccc;
  }
  
  /* When the radio button is checked, add a blue background */
  .checkbox input:checked ~ .checkmark {
    background-color: var(--main-color);
  }
  
  /* Create the indicator (the dot/circle - hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the indicator (dot/circle) when checked */
  .checkbox input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the indicator (dot/circle) */
  .checkbox .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }