html { 
      background:#fff url('../images/background1.svg') 
}

/***** NAVBAR STYLING *****/
.Navbar {
    overflow: hidden; /* This ensures that any content that overflows beyond the boundary of our nav bar is not displayed */
    background-color: #58b6c0; /* This colors the navbar black */
    position: fixed; /* This keeps the navbar at the top of the screen as we scroll */
    top: 0; /* This ensures no space is displayed above the navbar */
    left: 0;
    width: 100%; /* This makes the navbar span the entire width of the page */
    z-index: 1; /* This ensures other elements don't display over the navbar */
    text-align: center;
    box-shadow: 0 3px 13px -2px gray;
}

/* Navbar links */
.Navbar a {
    display: inline-block;
    color: white; /* This is the font color for text on our navbar */
    padding: 22px 45px; /* This adds padding around our text */
    text-decoration: none; /* This gets rid of the underlines under the text on our navbar */
    font-family: Avant Garde, Helvetica; /* This specifies the font family for text on our navbar */
    font-size: 20px; /* This specifies the font size for text on our navbar */
    text-align: center; /* This centers the text within its container */             
    position: relative; /* This sets the text relative to its normal positioning, allowing us to use the animation below */

}

.Navbar a:hover {
    background-color: #75bda7; /* Defines the background color that will display when you hover over the link */
    color:black; /* This defines the font color that will display when navbar a elements are hovered over */
   /* This makes the text on the navbar bold when hovered over */
}

/* BODY */
.c2 h1 {
    font-size: 3rem;
    padding-bottom: 15px;

}

.c2 h3 {
    padding-bottom: 15px;
    width: 95%;

}
.c2 h4 {
    font-size: 1.5rem;
    padding-top: 20px;
    padding-bottom: 10px;

}

.c2 p {
    padding-bottom: 10px;   
}

.cont {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.space {
  height: 80px;
}

.container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 30px;
}

.c2 {
    width: 650px;
}

.btn1 {
    margin-top: 10px;
    margin-bottom: 60px;
}

iframe {
    margin-top: 30px;
}
/* FOOTER*/
footer {
    height: 50px;
    margin-top: 0px;
    padding: 2px; /* This gives the footer padding that is equal to 2% of the width of the element's area */
    background-color: #58b6c0;;
}

#main-content {
  margin-top: 55px;
  min-height: calc(100vh - 162px);
}


.home{
    margin-top: 10px;
}

.f_center {
    padding-top: 15px;
    text-align: center;
    color: white;
}
footer p {
font-size: 1.1rem;
}
/* ABOUT */

.contabt {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

.abt {
    padding-top: 130px;
    width: 650px;
    text-align: center;
}
.vrimg {
     padding-top: 130px;
}

.abt h1 {
    font-size: 1.8rem;
    padding-bottom: 30px;
}

.abt p {
   width: 100%;
}


/* container */
.padded-boxes {
    display:flex;
    flex-wrap:wrap;
    justify-content: center;
    align-items: center;
    gap:2.5rem;
    margin-top: 50px;
}

/* boxes */
.padded-boxes > * {
    width: 350px;
    background:#eee;
    border-radius:.4rem;
    
}

/* headings */
.padded-boxes .heading {
    background:#58b6c0;
    margin:0;
    padding:1rem;
    border-top-left-radius:.4rem;
    border-top-right-radius:.4rem;
    text-align: center;
}

/* padded content */
.padded-boxes .padded {
    padding:1rem 1rem;
    text-align: center;
    
}

.padded {
    height: 170px;
    
}

/* tablet breakpoint 
@media (min-width:768px) {
    .padded-boxes > * {
        width:calc((100% - 4rem) / 3);
    }
}
*/

/* FORM */
.contact_title {
    margin-top: 120px;
    text-align: center;
}

.contact_title2 {
    margin-top: 120px;
    text-align: center;
}

.formc {
    width: 50%;
    transform: translate(53%, 16%);
}

/* FORM 2*/
.formcont {

  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 100px;
}



@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/** Variables **/

:root {
  --color-background: #e7e7e7;
  --color-background-alt: #888888;
  --color-border-active: #58b6c0;
  --color-border-default: #d1d1d1;
  --color-highlight: #fdcf4c;
  --color-primary: #58b6c0;
  --color-primary-active: #3494ba;
  --color-text-default: #262626;
  --color-text-muted: #4f4f4f;

  --font-family-body: "Figtree", system-ui, sans-serif;
  --font-family-display: "Poppins", system-ui, sans-serif;
}

/** Base **/

*,
::before,
::after {
  box-sizing: border-box;
}

* {
  border: 0;
  margin: 0;
  padding: 0;
}

body {
  -webkit-font-smoothing: antialiased;
  font-family: var(--font-family-body);
  font-optical-sizing: auto;
  font-style: normal;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}

[type="checkbox"],
[type="radio"],
[type="range"] {
  appearance: none;
  flex-shrink: 0;
  padding: 0;
  user-select: none;
}

[type="checkbox"]:focus,
[type="radio"]:focus,
[type="range"]:focus {
  outline: none;
}

/** Components **/


.fs-form {
  display: grid;
  row-gap: 1.5rem;
}

.fs-form:where(.fs-layout__2-column) {
  column-gap: 1.5rem;
  grid-template-columns: 1fr 1fr;
}

fieldset {
  display: grid;
  margin: 1.5rem 0;
  row-gap: 1.5rem;
}

.fs-form:where(.fs-layout__2-column) fieldset {
  column-gap: 1.5rem;
  grid-template-columns: 1fr 1fr;
  grid-column: 1 / -1;
}

.fs-fieldset-title {
  color: var(--color-text-default);
  font-family: var(--font-family-display);
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin-bottom: 1.5rem;
  grid-column: 1 / -1;
}

.fs-field {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}

.fs-label {
  color: var(--color-text-default);
  display: block;
  font-family: var(--font-family-display);
  font-size: 1rem;
  line-height: 1.25rem;
}

.fs-description {
  color: var(--color-text-muted);
  display: block;
  font-size: 1rem;
  line-height: 1.25rem;
}

.fs-button-group {
  display: flex;
  flex-direction: row-reverse;
  column-gap: 1.5rem;
}


.fs-form:where(.fs-layout__2-column) .fs-button-group {
  grid-column: 1 / -1;
}

.fs-button {
  background-color: var(--color-primary);
  border-radius: 9999px;
  color: white;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5rem;
  padding: 0.75rem 2rem;
  transition-duration: 200ms;
  transition-property: background-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.fs-button1 {
  background-color: var(--color-primary-active);
  border-radius: 9999px;
  color: white;
  cursor: pointer;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.5rem;
  padding: 1rem 2.2rem;
  transition-duration: 200ms;
  transition-property: background-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.fs-button1:hover {
  background-color: var(--color-primary);
}

.fs-button:hover {
  background-color: var(--color-primary-active);
}

.fs-button:focus-visible {
  background-color: var(--color-primary-active);
  outline: 4px solid var(--color-highlight);
}

.fs-input,
.fs-select {
  appearance: none;
  border-radius: 9999px;
  border-width: 0;
  box-shadow: var(--color-border-default) 0 0 0 1px inset;
  color: var(--color-text-default);
  font-size: 1rem;
  height: 3rem;
  line-height: 1.5rem;
  outline: none;
  padding-left: 1rem;
  padding-right: 1rem;
}

.fs-input:focus-visible,
.fs-select:focus-visible {
  box-shadow: var(--color-border-active) 0 0 0 1px inset;
}

.fs-input::placeholder {
  color: var(--color-text-muted);
}

.fs-checkbox-group,
.fs-radio-group {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}

.fs-checkbox-field,
.fs-radio-field {
  column-gap: 0.5rem;
  display: flex;
}

:is(.fs-checkbox-field, .fs-radio-field) .fs-label + .fs-description {
  margin-top: 0.25rem;
}

.fs-checkbox-wrapper,
.fs-radio-wrapper {
  align-items: center;
  display: flex;
  height: 1.25rem;
}

.fs-checkbox,
.fs-radio {
  background-color: #fff;
  border: 1px solid var(--color-border-default);
  height: 1.25rem;
  width: 1.25rem;
}

.fs-checkbox {
  border-radius: 0.25rem;
}

.fs-radio {
  border-radius: 100%;
}

.fs-checkbox:checked,
.fs-radio:checked {
  background-color: var(--color-primary);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-color: transparent;
}

.fs-checkbox:checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
}

.fs-radio:checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
}

.fs-checkbox:focus-visible,
.fs-radio:focus-visible {
  border-color: var(--color-border-active);
  outline: 4px solid var(--color-highlight);
  outline-offset: 0;
}

.fs-checkbox:checked:focus-visible,
.fs-radio:checked:focus-visible {
  border-color: transparent;
}

.fs-select {
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.75rem center;
  background-repeat: no-repeat;
  background-size: 1.625em 1.625em;
  padding-right: 2.875rem;
}

.fs-slider {
  background: transparent;
  cursor: pointer;
  height: 1.25rem;
  width: 100%;
}

.fs-slider::-moz-range-track {
  background-color: var(--color-background);
  border-radius: 0.5rem;
  height: 0.5rem;
}

.fs-slider::-webkit-slider-runnable-track {
  background-color: var(--color-background);
  border-radius: 0.5rem;
  height: 0.5rem;
}

.fs-slider::-moz-range-thumb {
  background-color: var(--color-primary);
  border: none; /* Removes extra border that FF applies */
  border-radius: 50%;
  height: 1.25rem;
  width: 1.25rem;
}

.fs-slider::-webkit-slider-thumb {
  appearance: none;
  background-color: var(--color-primary);
  border-radius: 50%;
  height: 1.25rem;
  margin-top: -0.375rem; /* Centers thumb on the track */
  width: 1.25rem;
}

.fs-slider:focus-visible::-moz-range-thumb {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.fs-slider:focus-visible::-webkit-slider-thumb {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.fs-switch {
  background-color: var(--color-background-alt);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2.75' fill='white'/%3e%3c/svg%3e");
  background-position: left center;
  background-repeat: no-repeat;
  border-radius: 1.25rem;
  cursor: pointer;
  height: 1.25rem;
  transition-duration: 200ms;
  transition-property: background-color, background-position;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  width: 2.5rem;
}

.fs-switch:checked {
  background-color: var(--color-primary);
  background-position: right center;
}

.fs-switch:focus-visible {
  outline: 4px solid var(--color-highlight);
  outline-offset: 0;
}

.fs-textarea {
  appearance: none;
  border-radius: 0.75rem;
  border-width: 0;
  box-shadow: var(--color-border-default) 0 0 0 1px inset;
  color: var(--color-text-default);
  font-size: 1rem;
  line-height: 1.5rem;
  outline: none;
  padding: 0.5rem 0.75rem;
  resize: vertical;
}

.fs-textarea:focus-visible {
  box-shadow: var(--color-border-active) 0 0 0 1px inset;
}

.fs-textarea::placeholder {
  color: var(--color-text-muted);
}

/** Utilities **/

.col-span-full {
  grid-column: 1 / -1;
}

.fs-textarea::placeholder {
  color: var(--color-text-muted);
}

.slider-label-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 0.25rem;
}

.slider-label-text {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-align: center;
  white-space: nowrap;
}


.contact_title a:visited {
  text-decoration: none;
}

.contact_title a:hover {
  text-decoration: underline;
}

.contact_title a:active {
  text-decoration: none;
}

/* unvisited link */
.contact_title a:link {
  color: #3494ba;
}

/* visited link */
.contact_title a:visited {
  color: #3494ba;
}

/* mouse over link */
.contact_title a:hover {
  color: #58b6c0;
}

/* selected link */
.contact_titlea:active {
  color: black;
}

.contact_title {
  font-size: 1.7rem;
}

.abt p {
  padding-left: 15px;
  padding-right: 15px;
}

/* MEDIA */
@media screen and (max-width: 831px) {

.cont {
  gap: 10%;
}
}


@media screen and (max-width: 576px) {
.Navbar a {
    padding: 22px 25px; /* This adds padding around our text */
    font-size: 18px; /* This specifies the font size for text on our navbar */
    
}

.cont {
  gap: 10%;
}

.cont .logo img{
    width: 350px;
}

.cont .logo1 img{
    width: 200px;
}

.vrimg img {
    width: 350px;
}

.c1 img{
    width: 350px;

}


.c2 img{
    width: 350px;
}

.c2 {
    text-align: center;
}

.c2 h3 {
    padding-bottom: 15px;
    width: 100%;

}
.formc {
    width: 70%;
    transform: translate(23%, 16%);
}

.abt {
    padding-top: 100px;
}

}

@media screen and (max-width: 360px) {
.Navbar a {
    padding: 22px 25px; /* This adds padding around our text */
    font-size: 15px; /* This specifies the font size for text on our navbar */
    
}
}

@media screen and (max-width: 1300px) {
.c2 {
    text-align: center;
}
.vrimg {
     padding-top: 50px;
}

.padded-boxes {
    margin-bottom: 60px;
}
}

@media screen and (max-height: 890px) {
.padded-boxes {
    margin-bottom: 60px;
}
}


@media screen and (min-width: 1250px) {
footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
}
}

@media screen and (max-width: 1250px){
.footersign {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
}
}

/* social */
.linked {
    text-align: center;
} 

.linked a {

font-size: 1.4rem;
font-weight: 700;

}


.linked a:link {
  text-decoration: none;
}

.linked a:visited {
  text-decoration: none;
}

.linked a:hover {
  text-decoration: none;
}

.linked a:active {
  text-decoration: none;
}

/* unvisited link */
.linked a:link {
  color: #3494ba;
}

/* visited link */
.linked a:visited {
  color: #3494ba;
}

/* mouse over link */
.linked a:hover {
  color: #58b6c0;
}

/* selected link */
.linked a:active {
  color: black;
}


