:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

:root { 
  --background-color: #ffffff; 
  --default-color: #444444; 
  --heading-color: #282828; 
  --accent-color: #009961; 
  --surface-color: #ffffff; 
  --contrast-color: #ffffff; 
}

:root {
  --nav-color: #ffffff;  
  --nav-hover-color: #009961; 
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff; 
  --nav-dropdown-color: #444444; 
  --nav-dropdown-hover-color: #009961; 
}

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .cta-btn,
.header .cta-btn:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 50px;
  transition: 0.3s;
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .logo h1 {
    font-size: 24px;
  }

  .header .cta-btn {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(40, 40, 40, 0.9);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: color-mix(in srgb, var(--nav-color), transparent 30%);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -27px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}

.footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 30px 0;
}

.footer .social-links {
  margin: 0 0 30px 0;
}

.footer .social-links a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  line-height: 1;
  margin: 0 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  text-decoration: none;
}

.footer .credits {
  font-size: 13px;
  padding-top: 5px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 15px 0 15px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 72px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 57px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: white;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: cyan;
  left: 0;
  right: 0;
  bottom: 0;
}

.section-title p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color) 90%, white 50%);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  padding: 60px 30px;
  transition: all ease-in-out 0.3s;
  border-radius: 18px;
  border-bottom: 5px solid var(--surface-color);
  height: 100%;
}

.services .service-item .icon {
  color: var(--contrast-color);
  background: var(--accent-color);
  margin: 0;
  width: 64px;
  height: 64px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

@media (min-width: 1365px) {
  .services .service-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
  }

  .services .service-item:hover h3 {
    color: var(--accent-color);
  }
}

.btn-get-started {
  background-color: orange;
  border-radius: 50px;
  padding: 15px;
  cursor: pointer;
  min-width: 200px;
}

.btn-get-started:hover {
  background-color: green;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  position: relative;
  padding: 50px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 10px 0 20px 0;
  font-size: 24px;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
  }
}


/*--------------------------------------------------------------
# others
--------------------------------------------------------------*/
input[type=date], input[type=datetime-local], input[type=password], input[type=text], input[type=number], input[type=email] {
    width: 100%;
    padding: .5rem 1rem;
    border-radius: .3rem;
    height: 50px;
    font-size: 16px;
    font-weight: bold;
    border: 1px solid blue;
    transition: 0.9s;
}

input[type=date]:focus, input[type=password]:focus, input[type=text]:focus, input[type=number]:focus,input[type=email]:focus, textarea:focus, select:focus {
    border-color: blue;
    box-shadow: 0 0 1px 3px rgba(59, 153, 252, .7);
    box-shadow: 0 0 0 3px -moz-mac-focusring;
    color: #222;
    outline: none;
    width: 100%;
}

input[type=submit], input[type=reset], button {
    padding: .5rem 1rem;
    border-radius: .3rem;
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
    border: 0;
    min-height: 50px;
    height: auto;
    font-size: 16px;
    text-align:center;
    margin-top: 10px;
    white-space: normal;
    word-wrap: break-word;
    transition: 0.9s;
}

input[type=file] {
    width: 100%;
    padding: .5rem 1rem;
    border-radius: .3rem;
    color: white;
    height: 50px;
    height: auto;
    font-size: 16px;
    font-weight:bold;
    text-align:center;
    margin-top: 10px;
    white-space: normal;
    word-wrap: break-word;
    border-bottom: 4px solid black;
    background-color: #98FB98;
    transition: 0.9s;
}

textarea[name=message], select {
    padding: 12px;
    font-family: "Consolas";
    background: white;
    font-size: 14px;
    border-radius: 5px;
    border-bottom: 2px solid black;
}

ul {
    text-align: left;
}

select {
  width: 100%;
  height: 50px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  background-color: white;
  border: thin solid blue;
  border-radius: 4px;
  display: inline-block;
  font: inherit;
  line-height: 1.5em;
  padding: 0.5em 3.5em 0.5em 1em;
  transition: 0.9s;
  margin: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, blue 50%),
    linear-gradient(135deg, blue 50%, transparent 50%),
    linear-gradient(to right, skyblue, skyblue);
  background-position:
    calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px),
    100% 0;
  background-size:
    6px 7px,
    6px 7px,
    2.5em 3.5em;
  background-repeat: no-repeat;
}

select:focus {
  background-image:
    linear-gradient(45deg, white 50%, transparent 50%),
    linear-gradient(135deg, transparent 50%, white 50%),
    linear-gradient(to right, #FF69B4, #FF69B4);
  background-position:
    calc(100% - 15px) 1em,
    calc(100% - 20px) 1em,
    100% 0;
  background-size:
    6px 7px,
    6px 7px,
    2.5em 3.5em;
  background-repeat: no-repeat;
  border-color: grey;
  outline: 0;
}

select option:hover {
  cursor: pointer;
}

select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}


/*--------------------------------------------------------------
# Modal css
--------------------------------------------------------------*/
.mymodal {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100vw;
    height: 100vh;
    display: none;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4); 
    border-radius: 0;
}

.mymodalmsg {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    display: none;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
    border-radius: 0;
}

.modal-content {
    background-color: cyan;
    margin: auto;
    border: 1px solid #000;
    width: 100%;
    max-width: 500px;
    animation: mymoveleft 2s;
    max-height: calc(100% - 1rem);   
}

.modal-contentmsg {
    background-color: #fefefe;
    border: 1px solid #000;
    width: 100%;
    max-width: 500px;
    animation: mymovebottom 2s;
    max-height: calc(100% - 1rem);
    right: 2px;
    border-radius: 0px;
    position: absolute;
}

.pdfmodal {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    border-radius: 0;
    animation: mymoveleft 2s;
}

.pdfmodal h5 {
  color: #FFFFFF;
}

.pdfmodal .modal-header{
  background-color: grey;
  padding: 10px 20px 10px 10px;
  border-radius: 0;
}

.pdfmodal .modal-title{
  font-size: 12px;
}

.pdfmodal .modal-body {
  background-color: black;
  width: 100%;
  height: 100%;
}

.left {
    animation: mymoveleft 2s;
}

.right {
    animation: mymoveright 2s;
}

.top {
    animation: mymovetop 2s;
}

.bottom {
    animation: mymovebottom 2s;
}

@keyframes mymoveleft {
  from {
    transform: translatex(130%);
  }
  to {
    transform: translatex(0);
  }
}

@keyframes mymoveright {
  from {
    transform: translatex(-130%);
  }
  to {
    transform: translatex(0);
  }
}

@keyframes mymovetop {
  from {
    transform: translatey(130%);
  }
  to {
    transform: translatey(0);
  }
}

@keyframes mymovebottom {
  from {
    transform: translatey(-130%);
  }
  to {
    transform: translatey(0);
  }
}

.modal-body {
    overflow: auto;
}

.btn-close {
    color: #aaaaaa;
    float: right;
    font-weight: bold;
}

.btn-close:hover, .btn-close:focus {
    background-color: red;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
  margin: 0;
  background-color: grey !important;
} 

.modal-title {
  color: white !important;
}

.modal-title ul {
  list-style: none;
  padding: 0;
}

.modal-title ul li {
  margin-left: 20px;
}

.modal-title ul i {
  padding-right: 4px;
  color: red;
}

.newmodal {
  display: block;
  position: fixed; /* Stay in place */
  z-index: 999; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.autoclosemodal {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100vw;
    height: 100vh;
    display: none;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
    border-radius: 0;
}

.modal-contentauto {
    background-color: #fefefe;
    margin: auto;
    border: 1px solid #000;
    width: 100%;
    max-width: 500px;
    max-height: calc(100% - 1rem);   
}

.error .modal-header{
    background-color: #F08080;
    color: white;
}

.error .modal-body{
    background-color: #FF0000;
    color: white;
}

.success .modal-header{
    background-color: #3CB371;
    color: white;
}

.success .modal-body{
    background-color: #228B22;
    color: white;
}

.confirm-area {
    background-color: #F08080;
    font-weight: bold;
    text-align: center;
}

.buttoncomfirm {
    width: 100%;
    text-align: center;
}

.buttoncomfirm .cancel {
    width: 100%;
    max-width: 120px;
    background-color: #483D8B;
}

.buttoncomfirm .cancel:hover {
    background-color: #4B0082;
}

.buttoncomfirm .ok {
    width: 100%;
    max-width: 120px;
    background-color: #B22222;
}

.buttoncomfirm .ok:hover {
    background-color: #DC143C;
}

.buttoncomfirm .okk {
    width: 100%;
    max-width: 120px;
    background-color: #483D8B;
}

.buttoncomfirm .okk:hover {
   background-color: #4B0082;
}

.searchbox{
  background-color: #FFEFD5;
  width: 100%;
  height: auto !important;
  border: 1px solid black !important;
  padding: 3px 5px 3px 5px !important;
  border-radius: 0 !important;
}

.name {
  width: 100%;
  font-size: 16px;
  font-weight: bold;
  color: black;
  text-align: left;
}

.name2 {
  width: 100%;
  font-size: 16px;
  font-weight: bold;
  color: white;
  text-align: left;
}

.checkbox-wrapper {
  --borderColor: #48c;
  --borderWidth: .125em;
  margin-right: 12px;
}

.checkbox-wrapper label {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.checkbox-wrapper input[type=checkbox] {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  background: #fff;
  font-size: 1.8em;
  border-radius: 0.125em;
  display: inline-block;
  border: var(--borderWidth) solid var(--borderColor);
  width: 0.8em;
  height: 0.8em;
  position: relative;
}
.checkbox-wrapper input[type=checkbox]:before,
.checkbox-wrapper input[type=checkbox]:after {
  content: "";
  position: absolute;
  background: var(--borderColor);
  width: calc(var(--borderWidth) * 3);
  height: var(--borderWidth);
  top: 50%;
  left: 10%;
  transform-origin: left center;
}
.checkbox-wrapper input[type=checkbox]:before {
  transform: rotate(45deg) translate(calc(var(--borderWidth) / -2), calc(var(--borderWidth) / -2)) scaleX(0);
  transition: transform 200ms ease-in 200ms;
}
.checkbox-wrapper input[type=checkbox]:after {
  width: calc(var(--borderWidth) * 5);
  transform: rotate(-45deg) translateY(calc(var(--borderWidth) * 2)) scaleX(0);
  transform-origin: left center;
  transition: transform 200ms ease-in;
}
.checkbox-wrapper input[type=checkbox]:checked:before {
  transform: rotate(45deg) translate(calc(var(--borderWidth) / -2), calc(var(--borderWidth) / -2)) scaleX(1);
  transition: transform 200ms ease-in;
}
.checkbox-wrapper input[type=checkbox]:checked:after {
  width: calc(var(--borderWidth) * 5);
  transform: rotate(-45deg) translateY(calc(var(--borderWidth) * 2)) scaleX(1);
  transition: transform 200ms ease-out 200ms;
}
.checkbox-wrapper input[type=checkbox]:focus {
  outline: calc(var(--borderWidth) / 2) dotted rgba(0, 0, 0, 0.25);
}

#contact {
  background-color: #008B8B;
}

.coursetable{
  border-collapse:collapse;
  font-size:18px;
  color:black;
  table-layout: fixed;
  min-width: 100%;
}

.coursetable tr{
  background: #b8d1f3;
}

.coursetable .back{
  background: grey;
  color: #FFFFFF;
  padding: 3px 5px;
  word-wrap:break-word;
  font-size: 14px;
}

.coursetable td{
  padding: 3px 5px;
  word-wrap:break-word;
  font-size: 14px;
}

.coursetable tr:nth-child(odd){
  background: #b8d1f3;
}

.coursetable tr:nth-child(even){
  background: #dae5f4;
}

.tit {
  font-weight: bold;
  color: green;
  margin-bottom: 12px;
}

.tit2 {
  font-weight: bold;
  color: green;
  margin-bottom: 12px;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  width: 100%;
  text-align: center;
  background-color: grey;
  color: white;
  padding: 15px
}

.view {
  color: green;
  font-weight: bold;
  font-size: 20px;
  cursor: pointer;
}

.delete {
  color: red;
  font-weight: bold;
  font-size: 20px;
  cursor: pointer;
}

.view:hover {
  color: grey;
}

#newbody {
  overflow: auto;
  max-height: 200px;
}

.sub-box {
  padding: 30px;
  text-align: justify;
  background-color: rgba(250,250,250,0.9);
  border-radius: 10px;
}

.mybtn {
  height: 200px;
  font-size: 20px;
  font-weight: bold;
}

.title21 {
  width: 100%;
  color: green;
  font-family: "Trebuchet MS";
  font-size: 20px;
  font-weight: bold;
  text-align: left;
  border-bottom: 2px solid blue;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.subtitl {
  background-color: #008000;
  border-radius: 20px;
  padding: 10px;
  width: 100%;
  color: white;
}

.subnumber {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.subnumber div:nth-child(1) {
  background-color: #1F6357;
  border-radius: 20px;
  padding: 7px;
  color: white;
  min-width: 100px;
  font-size: 12px;
}

.subnumber div:nth-child(2) {
  background-color: #8FB31D;
  border-radius: 20px;
  padding: 7px;
  color: white;
  min-width: 100px;
  font-size: 12px;
}

.number {
  background-color: white;
  color: white;
  padding: 20px;
  border-radius: 20px;
  width: 100%;
  text-align: center;
  height: 100%;
  margin:auto;
  border: 1px solid grey;
}

.totnumber {
  font-size: 20px;
  font-weight: bold;
  color: green; 
}

.male {
  background-color: #1F6357;
  border-radius: 20px;
  padding: 7px;
  color: white;
  min-width: 100px;
  font-size: 12px;
}

.female {
  background-color: #8FB31D;
  border-radius: 20px;
  padding: 7px;
  color: white;
  min-width: 100px;
  font-size: 12px;
}

.totmf {
  background-color: green;
  border-radius: 20px;
  padding: 7px;
  color: white;
  min-width: 100px;
  font-size: 12px;
}
.logout a{
  color: red;
  font-weight: bold;
}

   .mytable {
  width: auto;
  min-width: 100%;
  font-size: 14px;
}

.mytable .head {
  padding: 6px;
  background-color: grey;
  color: white;
  text-align: center;
  font-weight: bold;
}

.mytable .myhead {
  padding: 6px;
  background-color: grey;
  color: white;
  text-align: center;
  font-weight: bold;
  border: 1px solid white;
}

.mytable .myhead1 {
  padding: 6px;
  background-color: grey;
  color: white;
  text-align: left;
  font-weight: bold;
  border: 1px solid white;
}

.mytable .head1 {
  padding: 6px;
  background-color: grey;
  color: white;
  text-align: left;
  font-weight: bold;
}

.mytable td {
  color: black;
}

.mytable tr:nth-child(odd){
  background: #b8d1f3;
}

.mytable tr:nth-child(even){
  background: #dae5f4;
}

.mytable tr:hover {
  background-color: cyan;
}

.tablebox {
  width: 100%;
  max-height: 400px;
  overflow: auto;
}

#myInput {
  background-position: 10px 10px;
  background-repeat: no-repeat;
  background-color:white;
  width: 100%;
  font-size: 16px;
  padding: 12px 20px 12px 50px;
  border: 1px solid black;
  margin-bottom: 12px;
  border-radius: 5px;
  margin-top: 10px;
}

.low {
  background-color: red;
  color: white;
  padding: 10px;
  border-radius: 20px;
  text-align: center;
}

.little {
  background-color: yellow;
  color: black;
  padding: 10px;
  border-radius: 20px;
  width: auto;
  text-align: center;
}

.enough {
  background-color: green;
  color: white;
  padding: 10px;
  border-radius: 20px;
  width: auto;
  text-align: center;
}