/* 

Breakpoints

// Small devices (landscape phones, 576px and up)
@media (min-width: 576px) { 
  
}

// Medium devices (tablets, 768px and up)
@media (min-width: 768px) { 
  
}

// Large devices (desktops, 992px and up)
@media (min-width: 992px) { 
  
}

// X-Large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { 
  
}

// XX-Large devices (larger desktops, 1400px and up)
@media (min-width: 1400px) { 
  
}
=== */


:root {

/* ====
  CSS Variables 
=== */

  --MedicoGreen: #56D18A;
  --MedicoBlue: #01337E;

  --colorWhite: #FFF;
  --colorBlack: #000;
  --colorRed: #dc3545;
  --colorLightGrey: #f9f9f9;
  --colorDarkGrey: #3b3b3b;

  --headerHeight: 50vh;
  --headerPadding: 5vh;

  --font-S-P-size: 14px;
  --font-S-P-lineh: 22px;
  --font-S-P-padding: 0 0 15px 0;

  --font-M-P-size: 16px;
  --font-M-P-lineh: 24px;
  --font-M-P-padding: 0 0 15px 0;

  --font-S-h2-size: 18px;
  --font-S-h2-lineh: 26px;
  --font-S-h2-padding: 0 0 25px 0;
  --font-S-h2-margin: 0 0 25px 0;

  --font-M-h2-size: 28px;
  --font-M-h2-lineh: 40px;
  --font-M-h2-padding: 0 0 35px 0;
  --font-M-h2-margin: 0 0 35px 0;

}
  
html {

  scroll-behavior: smooth;

}

body {

  font-family: 'Plus Jakarta Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  color: #4e4e4e;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  left: 0;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  background: #334453;

}

a {

  text-decoration: none !important;
  outline: none;
  
}

.hidden {

  display: none;

}

section {

  position: relative;
  width: 100%;
  float: left;

}

#mainSectionHP {
 
  min-height:100vh;
  width:100vw;
  height: 100vh; /* Use vh as a fallback for browsers that do not support Custom Properties */
  height: calc(var(--vh, 1vh) * 100);

}

#mainSectionHP .row {
 
  display: flex;
  align-content: center;
  height:100vh;
  height: 100vh; /* Use vh as a fallback for browsers that do not support Custom Properties */
  height: calc(var(--vh, 1vh) * 100);

}

h1 {

  width:100%;
  text-align:center;
  background:url(./holdingsrc/rt-education-logo.svg) center center no-repeat;
  background-size:contain;
  text-indent:-4000px;
  overflow:hidden;
  height: 60px;
 
}

@media (min-width: 768px) { 

  h1 {
      
    height: 100px;
   
  }
  
}

h2 {

  width:100%;
  text-align:center;
  text-transform:uppercase;
  font-size:14px;
  letter-spacing:3px;
  padding:20px 0;
  color: #c9c9c9;

}
