@import url('https://fonts.googleapis.com/css2?family=Archivo&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Gotu&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap')

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', 'Gotu', sans-serif;
}


body{
    font-family:'Montserrat','Gotu', sans-serif;
    color: #333;
    overflow: hidden;
}

/* Sticky navbar fix */
.sticky-top {
    position: sticky;
    /* ensure sticky */
    top: 0;
    /* stick at the top */
    z-index: 1030;
    /* above content */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* subtle shadow */
}

/* Ensure wrapper does not block sticky */
.some-wrapper {
    overflow: visible;
    /* was hidden, now allows sticky */
}
.extranav{
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: flex-end;
    background-color: #121d50;
    color: #fff;
    font-size: 16px;
    height: 50px;
}

.extranav a{
        text-decoration: none;
        color: #fff;
}

/* Main Navigation */
.logo{
    height: 100px;
    width: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    margin: 0 10px;
    flex: 1;
}

.main-nav{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    flex: 2;
    
}

.main-nav ul li{
    text-decoration: none;
    list-style: none;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    
}

.main-nav ul li a{
    text-decoration: none;
    color: #333;
    font-family: 'Montserrat', 'Gotu';
}

.main-nav ul li a:hover {
    color: #0033cc;
}

#b-img-text{
      display: flex;
      align-items: center;
      justify-content: center;
      align-content: center;
      background-color: RGBA(17, 136, 238, 0.85);
      border-radius: 7px;
      color: white;
      font-size: 2vw;
      text-align: center;
      height: 300px;
      width: 300px;
}

/* Section */
.showcase{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
     background: url(img/child.jpg) no-repeat center center/cover;
    height: 500px;
    overflow: hidden;
}

.showcase-text{
    align-self: center;
    color: #fff;
    text-align: center;
    font-size: 60px;
    margin: 30px auto;
    font-family: 'Montserrat','Gotu','Satisfy','sans-serif','arial';
}


.showcase-button a{
    display: flex;
    justify-content: center;
    align-content: center;
    color: #fff;
    background-color: #060e30;
    padding: 20px;
    margin: 30px auto;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}

.showcase-button a:hover{
    background-color: #121d50;
}

/* section : Story */
.story{
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: row;
    padding: 20px;
    margin: 10px;
}

.story-header{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    align-items: center;
    padding: 20px auto;
    margin: 20px auto;
    font-size: 24px;
    background-color: #121d50;
    height: 150px;
    color: #fff;
}
.story-img{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    padding: 10px;
    margin: 10px;
}

.story-body{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-content: center;
    text-align: justify;
    padding: 0 10px;
    margin: 20px;
    line-height: 2.5rem;
    font-size: 18px;
}

.story-body a{
    text-decoration: none;
    color: #333;
}

.story-body a:hover {
    text-decoration: none;
    color: #0033cc; 
}

/* Section: Contact */
.contact-header{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    align-items: center;
    padding: 20px auto;
    margin: 20px auto;
    font-size: 24px;
    background-color: #121d50;
    height: 150px;
    color: #fff;
}

.contact {
    display: flex;
    text-align: justify;
    padding: 20px;
    margin: 10px auto;
    color: #333;
}

.contact .contact-form {
    flex: 1;
    align-content: center;
    align-items: center;
}

.contact .contact-form .form-group {
    margin: 0.75rem;
}

.contact .contact-form label {
    display: block;
}

.contact .contact-form input,
.contact .contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    /* border-radius: 3px;
    border-style: hidden; */
    border-style: none;
    border-bottom: 1px solid;
}

.contact .contact-form input[type="submit"]{
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    background-color: #060e30;
    color: #fff;
    text-align: center;
    width: 200px;
    border-radius: 5px;
}
/* Footer */

.footer-logo {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
}

.footer-logo >img:hover{
	transition: 1s ease-out;
	animation: shake 0.5s 0.4s;
	animation-iteration-count: 1;
}


@keyframes shake {
  0% { transform: translateX(1px); }
  100% { transform: translateX(8px); }
}

.footer{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    align-content: center;
    height: 250px;
    padding: 10px auto;
    margin-top: 25px;
    background-color: #222;
    color: #fff;
}

.footer-container{
    padding: 10px;
}

.footer-main-nav{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: justify;
    line-height: 1.2rem;
}

.footer-main-nav ul li {
    list-style: none;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
}

.footer-main-nav ul li a {
    text-decoration: none;
    color: #fff;
}
.footer-main-nav ul li a:hover{
    color: #1cddff;
}

.footer-vertical-line{
    height: 150px;
	margin-bottom: 20px;
    border: 1px #fff solid;
}

.footer-contact-content{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    line-height: 2rem;
}

.footer-contact-content p a{
    text-decoration: none;
    color: #fff;
}

.footer-contact-content p a:hover{
    color: #1cddff;
}
}

/* Gallery */
/* .container{
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: row;
}
.container .gallery a img {
    width: 360px;
    height: auto;
    padding: 16px 16px;
    -webkit-transition: -webkit-transform .15s ease;
    -moz-transition: -moz-transform .15s ease;
    -o-transition: -o-transform .15s ease;
    -ms-transition: -ms-transform .15s ease;
    transition: transform .15s ease;
}

.container .gallery a:hover img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    z-index: 5;
}

/* .single-gallery-image {
    margin-top: 30px;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: cover !important;
    height: 200px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.single-gallery-image:hover {
    opacity: .8;
} */ 

.row>.column {
    padding: 0 8px;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

.column {
    float: left;
    width: 25%;
    margin: 20px 0;
}

/* The Modal (background) */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: black;
}

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    width: 50%;
    max-width: 680px;
}

/* The Close Button */
.close {
    color: white;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
}

.mySlides {
    display: none;
    padding: 10px;
}

.cursor {
    cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

img {
    margin-bottom: -4px;
}

.caption-container {
    text-align: center;
    background-color: black;
    padding: 2px 16px;
    color: white;
}

.demo {
    opacity: 0.6;
}

.active,
.demo:hover {
    opacity: 1;
}

img.hover-shadow {
    transition: 0.3s;
}

.hover-shadow:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.basic-gallery{
    display: flex;
    margin: 40px;
    padding: 30px;
}

/* About US Page */
.about{
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: row;
    padding: 20px;
    margin: 10px;
    font-family: 'montserrat', 'gotu', 'Courier New', Courier, monospace;
}

.about-header{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    align-items: center;
    padding: 20px auto;
    margin: 20px auto;
    font-size: 20px;
    background-color: #121d50;
    height: 100px;
    color: #fff;
}
.about-img{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    padding: 10px;
    margin: 10px;
}

.about-body{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-content: center;
    text-align: justify;
    padding: 0 10px;
    margin: 20px;
    line-height: 2.2rem;
    font-size: 20px;
}

.about-body a{
    text-decoration: none;
    color: #333;
}

.about-body a:hover {
    text-decoration: none;
    color: #0033cc; 
}
	
.ourteam-header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    align-items: center;
    padding: 20px auto;
    margin: 20px auto;
    font-size: 20px;
    background-color: #121d50;
    height: 100px;
    color: #fff;
}

.team-row{
    display: flex;
	flex-direction:row;
    justify-content: space-evenly;
    align-items: center;
    padding: 10px;   
}
.member-text{
    
}
/* Media Queires*/

@media (max-width: 600px){
	
	/* Main Navigation */
.logo{
    height: 100px;
    width: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    margin: 0 10px;
    flex: 1;
}

.main-nav{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    flex: 2;
}

.main-nav ul li{
    text-decoration: none;
    list-style: none;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
}

.main-nav ul li a{
    text-decoration: none;
    color: #333;
}

.main-nav ul li a:hover {
    color: #0033cc;
}

/* Section */
.showcase{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: url(img/1.JPG) no-repeat center center/cover;
    height: 500px;
    overflow: hidden;
}

.showcase-text{
    align-self: center;
    color: #fff;
    text-align: center;
    font-size: 60px;
    margin: 30px auto;
    font-family: 'Gotu','Satisfy','Montserrat','sans-serif','arial';
}


.showcase-button a{
    display: flex;
    justify-content: center;
    align-content: center;
    color: #fff;
    background-color: #060e30;
    padding: 20px;
    margin: 30px auto;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}

.showcase-button a:hover{
    background-color: #121d50;
}

/* section : Story */
.story{
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: row;
    padding: 20px;
    margin: 10px;
}

.story-header{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    align-items: center;
    padding: 20px auto;
    margin: 20px auto;
    font-size: 24px;
    background-color: #121d50;
    height: 150px;
    color: #fff;
}
.story-img{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    padding: 10px;
    margin: 10px;
}

.story-body{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-content: center;
    text-align: justify;
    padding: 0 10px;
    margin: 20px;
    line-height: 2.5rem;
    font-size: 18px;
}

.story-body a{
    text-decoration: none;
    color: #333;
}

.story-body a:hover {
    text-decoration: none;
    color: #0033cc; 
}

/* Section: Contact */
.contact-header{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    align-items: center;
    padding: 20px auto;
    margin: 20px auto;
    font-size: 24px;
    background-color: #121d50;
    height: 150px;
    color: #fff;
}

.contact {
    display: flex;
    text-align: justify;
    padding: 20px;
    margin: 10px auto;
    color: #333;
}

.contact .contact-form {
    flex: 1;
    align-content: center;
    align-items: center;
}

.contact .contact-form .form-group {
    margin: 0.75rem;
}

.contact .contact-form label {
    display: block;
}

.contact .contact-form input,
.contact .contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    /* border-radius: 3px;
    border-style: hidden; */
    border-style: none;
    border-bottom: 1px solid;
}

.contact .contact-form input[type="submit"]{
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    background-color: #060e30;
    color: #fff;
    text-align: center;
    width: 200px;
    border-radius: 5px;
}
/* Footer */

.footer-logo {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
}

.footer{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    align-content: center;
    height: 250px;
    padding: 10px auto;
    margin-top: 20px;
    background-color: #222;
    color: #fff;
}

.footer-container{
    padding: 10px;
}

.footer-main-nav{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: justify;
    line-height: 2rem;
}

.footer-main-nav ul li {
    list-style: none;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
}

.footer-main-nav ul li a {
    text-decoration: none;
    color: #fff;
}
.footer-main-nav ul li a:hover{
    color: #1cddff;
}

.footer-vertical-line{
    height: 150px;
    border: 1px #fff solid;
}

.footer-contact-content{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    line-height: 2rem;
}

.footer-contact-content p a{
    text-decoration: none;
    color: #fff;
}

/* Gallery */
/* .container{
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: row;
}
.container .gallery a img {
    width: 360px;
    height: auto;
    padding: 16px 16px;
    -webkit-transition: -webkit-transform .15s ease;
    -moz-transition: -moz-transform .15s ease;
    -o-transition: -o-transform .15s ease;
    -ms-transition: -ms-transform .15s ease;
    transition: transform .15s ease;
}

.container .gallery a:hover img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    z-index: 5;
}

/* .single-gallery-image {
    margin-top: 30px;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: cover !important;
    height: 200px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.single-gallery-image:hover {
    opacity: .8;
} */ 

.row>.column {
    padding: 0 8px;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

.column {
    float: left;
    width: 25%;
    margin: 20px 0;
}

/* The Modal (background) */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: black;
}

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    width: 50%;
    max-width: 680px;
}

/* The Close Button */
.close {
    color: white;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
}

.mySlides {
    display: none;
    padding: 10px;
}

.cursor {
    cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

img {
    margin-bottom: -4px;
}

.caption-container {
    text-align: center;
    background-color: black;
    padding: 2px 16px;
    color: white;
}

.demo {
    opacity: 0.6;
}

.active,
.demo:hover {
    opacity: 1;
}

img.hover-shadow {
    transition: 0.3s;
}

.hover-shadow:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.basic-gallery{
    display: flex;
    margin: 40px;
    padding: 30px;
}

/* About US Page */
.about{
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: row;
    padding: 20px;
    margin: 10px;
}

.about-header{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    align-items: center;
    padding: 20px auto;
    margin: 20px auto;
    font-size: 18px;
    background-color: #121d50;
    height: 80px;
    color: #fff;
}
.about-img{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    padding: 10px;
    margin: 10px;
}

.about-body{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-content: center;
    text-align: justify;
    padding: 0 10px;
    margin: 20px;
    line-height: 1.5rem;
    font-size: 16px;
}

.about-body a{
    text-decoration: none;
    color: #333;
}

.about-body a:hover {
    text-decoration: none;
    color: #0033cc; 
}
	
.ourteam-header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    align-items: center;
    padding: 20px auto;
    margin: 20px auto;
    font-size: 16px;
    background-color: #121d50;
    height: 80px;
    color: #fff;
}

.team-row{
    display: flex;
	flex-direction:row;
    justify-content: space-evenly;
    align-items: center;
    padding: 10px;   
}	
}	

