* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lora', sans-serif; 
    padding-top: 95px;
}

a,a:hover {
    text-decoration: none;
    outline: none;
}


.swal2-title{
    font-size:25px !important;
}

label {
    color: #FFF;
    opacity: .9;
    cursor: pointer;
}

.btn:focus {
    box-shadow: none;
}

.btn:hover {
    color: unset;
}


.form-control {
    border-radius: 0;
    padding: 20px;
    background-color: #3e3e3e99;
    font-size: 14px;
    color:#FFF;
}

.form-control::placeholder {
    color: #7e7e7e;
}

.form-control,
textarea.form-control {
    box-shadow: none;
    border: 1px solid #ffffff99;
    transition: all 0.2s ease-in-out;
}

.form-control:hover,
textarea.form-control:hover {
    color:#FFF;
    border-color: #FFF;
}

.form-control:focus,
textarea.form-control:focus {
    background-color: #3e3e3e99;
    box-shadow: none;
    border-color: #ffffff99;
}

textarea.form-control {
    resize: none;
    height: 312px;
}


.modal {
    z-index:1075;
    background-color: rgba(0,0,0,0.8);
}

.modal-content {
    border-radius: 3px;
    outline: 0;
    border: 0;
    box-shadow: none;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.6);
}

.formobile {
    display: none;
}

.formobile img {
    margin-right: 5px;
    height: 15px;
}


.navbar {
    background-color: #212121;
    padding: 23px 0;
    top: 0;
    box-shadow: 0 1px 16px rgba(0, 0, 0, .12);
    transition: top 0.5s ease-in-out 0s;
}


.navbar-collapse {
    justify-content: right;
}

#navbarContent::-webkit-scrollbar {
    width: 0px;
    background-color: transparent;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    color: #FFF !important;
    font-size: 18px;
    padding: 0.5rem 1rem;
    margin-right: 3px;
    background-color: transparent;
    transition: all 0.2s ease-in-out;
}

.navbar-light .navbar-nav .nav-link.active::before,
.navbar-light .navbar-nav .nav-link:hover::before {
    content: "";
    position: absolute;
    margin: 0 auto;
    bottom: 3px;
    left: 0;
    right: 0;
    min-width: 32px;
    width: calc(100% - 24px);
    max-width: 100%;
    border-bottom: 2px solid #004c40;
}

.navbar-light .navbar-nav .active>.nav-link,
 .navbar-light .navbar-nav .nav-link.active,
  .navbar-light .navbar-nav .nav-link.show,
   .navbar-light .navbar-nav .show>.nav-link {
    color: #FFF !important;
    background-color: transparent;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: #FFF !important;
    background-color: #ffffff1a;
}

.navbar-toggler {
    padding: .25rem .75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: none;
    border-radius: 0;
}

.navbar-light .navbar-toggler-icon {
    background-image: url('../images/menu-button.svg');
}

.navbar-light .navbar-toggler {
    position: fixed;
    right: 4%;
    top: 26px;
    z-index: 1;
    font-size: 14px;
}

.navbar-toggler:focus, .navbar-toggler:hover {
    box-shadow: none;
    outline: none;
}

.navbar-toggler>.close {
    display:inline-block;
    color: #000;
    opacity: 1;
    text-shadow: none;
    margin: 0 !important;
}

.navbar-toggler>.close img {
    width: auto;
    height: 14px;
}
.navbar-toggler.collapsed>.close, 
.navbar-toggler:not(.collapsed)>.navbar-toggler-icon {
    display:none;
}

.close:not(:disabled):not(.disabled):focus, 
.close:not(:disabled):not(.disabled):hover {
    opacity: 1;
}

.navbar-brand {
    outline: none;
    text-decoration: none;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
    padding: 0;
    transition: all 0.2s ease-in-out;
}

.navbar-brand:hover {
    background-color: #ffffff1a;
}

.navbar-brand h1 {
    color: #48a999;
    font-weight: 400;
    font-size: 42px;
    margin-bottom: 0;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>a:after {
    content: "\f0da";
    float: right;
    border: none;
    font-family: 'FontAwesome';
    position: absolute;
    right: 15px;
}

.dropdown-menu {
    padding: 0;
    border-radius: 15px;
    background-color: #5DB7BE;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: 0px;
    margin-left: 0px;
}

.dropdown-item {
    padding: 10px 0px;
    padding-right: 30px;
    padding-left: 20px;
    color: #FFF;
    font-size: 13px;
    transition: all 0.2s ease-in-out;
}

.dropdown-item.firstDrop,
.dropdown-item.SubfirstDrop {
    border-radius: 15px 15px 0 0;
}

.dropdown-item.lastDrop,
.dropdown-item.SublastDrop {
    border-radius: 0 0 15px 15px;
}



.dropdown-item.active, .dropdown-item:active,
.dropdown-item:focus, .dropdown-item:hover {
    background-color: #85CFD8;
    color: #FFF;
} 


.navbar .call a {
    color: #000;
    background-color: #48a999;
    border-radius: 32px;
    padding: 15px 24px;
    font-weight: 400;
    transition: all 0.2s ease-in-out;
}

.navbar .call a:hover {
    background-color: #5bb2a4;
}



/* Main */
#Main {
    position: relative;
    background-image: url('../images/mainBG.jpg');
    background-size: cover;
    background-position: center center;
    height: 100vh;
}

#Main .overlay {
    background-color: #5050507d;
    z-index: 0;
}

#Main .content {
    position: absolute;
    left: 35%;
    top: 55%;
    transform: translate(-50%,-50%);
    width: 40%;
    font-family: "Nunito Sans", "Open Sans", sans-serif; 
}

#Main .content .title {
    margin-bottom: 40px;
}

#Main .content .title h2 {
    font-weight: 700;
    font-size: 30px;
    color: #FFF;
    text-shadow: rgb(0 0 0 / 70%) 0px 1px 3px;
}

#Main .content .desc {
    width: 82%;
    margin-bottom: 10px;
}

#Main .content .desc p {
    color: #FFF;
    font-size: 16px;
    opacity: .9;
    line-height: 1.6;
    text-shadow: rgb(0 0 0 / 70%) 0px 1px 3px;
}

#Main .content .moreBtn a {
    background: transparent;
    display: inline-block;
    text-align: center;
    border: 1px solid #FFF;
    box-shadow:inset 0 0 0 2px #FFF;
    padding: 15px 7px;
    width: 120px;
    border-radius: 3px;
    color: #FFF;
    outline: none;
    box-shadow: none;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
    text-shadow: rgb(0 0 0 / 70%) 0px 1px 3px;
}

#Main .content .moreBtn a:hover {
    box-shadow:inset 0 0 0 4px #FFF;
    background-color: #ffffff1a;
}



/* Welcome */
#Welcome {
    padding: 60px 0;
    background-color: #004c40;
    font-family: "Nunito Sans", "Open Sans", sans-serif; 
}

#Welcome .content .image {
    width: 100%;
    height: 396px;
}

#Welcome .content .image img {
    width: 100%;
    height: 100%;
}

#Welcome .content .title {
    margin-bottom: 20px;
}

#Welcome .content .title h4 {
    color: #FFF;
    font-weight: 600;
    font-size: 35px;
    text-shadow: rgb(0 0 0 / 70%) 0px 1px 3px;
}

#Welcome .content .desc {
    width: 85%;
}

#Welcome .content .desc p {
    font-size: 16px;
    color: #FFF;
    line-height: 1.5;
    opacity: .9;
    text-shadow: rgb(0 0 0 / 70%) 0px 1px 3px;
}


/* Items */
#Items {
    padding: 60px 0;
    background-color: #212121;
    font-family: "Nunito Sans", "Open Sans", sans-serif; 
}

#Items .Maindesc {
    margin-bottom: 60px;
    width: 80%;
}

#Items .Maindesc p {
    font-size: 18px;
    color: #FFF;
    line-height: 1.5;
    opacity: .9;
    text-shadow: rgb(0 0 0 / 70%) 0px 1px 3px;
}

#Items .Item {
    width: 100%;
    margin-bottom: 30px;
}

#Items .Item .image {
    width: 100%;
    height: 227px;
    margin-bottom: 30px;
}

#Items .Item .image img {
    width: 100%;
    height: 100%;
}

#Items .Item .title {
    margin-bottom: 10px;
}

#Items .Item .title h5 {
    font-weight: bold;
    color: #FFF;
}

#Items .Item .desc {
    width: 90%;
}

#Items .Item .desc p {
    font-size: 80.1%;
    color: #FFF;
    line-height: 24px;
    opacity: .9;
}



/* Goals */
#Goals {
    padding: 40px 0;
    background-color: #2d2d2d;
    font-family: "Nunito Sans", "Open Sans", sans-serif; 
}

#Goals .MainTitle {
    margin-bottom: 40px;
}

#Goals .MainTitle h2 {
    color: #7bc7ba;
    font-weight: bold;
}

.goalItem {
    text-align: center;
}

.goalItem .bar {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #ddd;
    margin: 40px auto;
  }
  .goalItem  .bar .Baroverlay {
    border-radius: 50%;
    width: 130px;
    height: 130px;
    margin: auto;
    background: #2d2d2d;
    color: #48a999;
    text-align: center;
    padding-top: 30%;
    font-size: 30px;
    font-weight: 500;
    font-family: 'Lora', sans-serif; 
  }
  
  .goalItem  .progress-20 {
    background-image: linear-gradient(18deg, #364542 50%, transparent 50%), 
                        linear-gradient(90deg, #48a999 50%, #364542 50%);
  }

  .goalItem  .progress-60 {
    background-image: linear-gradient(90deg, #48a999 50%, transparent 50%), 
                        linear-gradient(54deg, #48a999 50%, #364542 50%);
  }

  .goalItem  .progress-80 {
    background-image: linear-gradient(90deg, #48a999 50%, transparent 50%), 
                        linear-gradient(-18deg, #48a999 50%, #364542 50%);
  }

  .goalItem .title h5 {
    color: #FFF;
    font-size: 1.2rem;
  }


/* Subscribe */
#Subscribe {
    padding: 40px 0;
    background-color: #212121;
    font-family: "Nunito Sans", "Open Sans", sans-serif; 
}

#Subscribe .content {
    width: 50%;
    margin: auto;
    background-color: #323232;
    padding: 2rem;
}

#Subscribe .content .icon {
    margin-bottom: 20px;
}

#Subscribe .content .icon i {
    color: #FFF;
    font-size: 35px;
}

#Subscribe .content .desc {
    margin-bottom: 20px;
}

#Subscribe .content .desc h5 {
    color: #FFF;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

#Subscribe .content .desc span {
    color: #FFF;
    font-size: 18px;
    opacity: .9;
}

#Subscribe .newsteller .email-box .subscribeInp {
    width: 100%;
    padding: 25px;
    border-radius: 3px;
    background-color: #F2F2F2;
    text-align: center;
    border: none;
    font-size: 16px;
    margin-bottom: 10px;
    transition: all 0.2s ease-in-out;
}

#Subscribe .newsteller .subscribeButton button {
    width: 120px;
    background-color: #48a999;
    color: #000;
    border-radius: 3px;
    padding: 12px 5px;
    font-size: 16px;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

#Subscribe .newsteller .subscribeButton button:hover {
    background-color: #65BDAF;
}

#Subscribe .content .bottomDesc {
    margin-top: 20px;
}

#Subscribe .content .bottomDesc p {
    margin-bottom: 0;
    padding: .25rem 0 .5rem;
    font-size: .875rem;
    color: #FFF;
    opacity: .9;
    line-height: 1.1;
    font-family: 'Lora', sans-serif; 
}


/* footer */
footer {
    padding: 40px 0;
    background-color: #004C40;
    font-family: "Nunito Sans", "Open Sans", sans-serif; 
}

footer .links {
    margin-bottom: 40px;
}

footer .links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer .links ul li {
    display: inline-block;
    margin-right: 15px;
}

footer .links ul li a {
    color: #ffffffbf;
    font-size: 16px;
    text-decoration: none;
}

footer .links ul li a:hover {
    text-decoration: underline;
    color: #FFF;
}

footer .logo {
    text-align: right;
    margin-bottom: 40px;
}

footer .logo h1 {
    color: #FFF;
    font-size: 28px;
    font-weight: 600;
}

footer .address h2 {
    color: #FFF;
    font-weight: 600;
    font-size: 26px;
}

footer .address p {
    font-size: 16px;
    color: #FFF;
    opacity: .9;
    width: 50%;
}

.FooterBottom {
    padding: 15px 0;
    background-color: #00453A;
}

.FooterBottom a {
    font-size: 14px;
    color: #FFF;
    text-decoration: underline;
    opacity: .9;
}

.FooterBottom a:hover {
    opacity: 1;
}



/* FollowUs */
#FollowUs {
    background-color: #212121;
    padding: 50px 0;
}

#FollowUs .title h2 {
    font-family: "Nunito Sans", "Open Sans", sans-serif; 
    color: #7bc7ba;
    margin-bottom: 0;
    font-weight: 600;
    font-size: 28px;
}


/* AboutUs */
#AboutUs {
    padding: 60px 0;
    font-family: "Nunito Sans", "Open Sans", sans-serif; 
}

#AboutUs .content .image {
    background-position: center center;
    background-repeat: no-repeat;
/*    background-image: url('../images/AboutIMG.jpg');*/
    height: 100%;
    width: 100%;
    background-size: cover;
    /*padding-bottom: 125%;*/
}

#AboutUs .content .title {
    margin-bottom: 20px;
}

#AboutUs .content .title h4 {
    color: #7bc7ba;
    font-weight: 700;
    font-size: 32px;
}

#AboutUs .content .desc {
    width: 85%;
}

#AboutUs .content .desc p {
    font-size: 16px;
    color: #212121;
    line-height: 1.5;
    opacity: .9;
}

#AboutUs .content h5 {
    font-family: 'Lora', sans-serif; 
    color: #212121;
    font-size: 18px;
    margin: 20px 0;
}

#AboutUs .moreBtn {
    margin-top: 30px;
}

#AboutUs .moreBtn a {
    background: #004c40;
    display: inline-block;
    text-align: center;
    border: none;
    padding: 15px 7px;
    width: 120px;
    border-radius: 3px;
    color: #FFF;
    outline: none;
    box-shadow: none;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
}


#AboutUs .moreBtn a:hover {
    background-color: #007A66;
}



/* Contact */
#Contact {
    padding: 60px 0;
    background-color: #2d2d2d;
    font-family: "Nunito Sans", "Open Sans", sans-serif; 
}


#Contact .title {
    margin-bottom: 40px;
}

#Contact .title h2 {
    color: #7bc7ba;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
}

#Contact .title p {
    font-size: 16px;
    color: #FFF;
    line-height: 1.5;
    opacity: .9;
}

#Contact  .MyLabel {
    display: block;
    position: relative;
    pointer-events: auto;
    padding-left: 25px;
    left: 0;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    opacity: .9;
    color: #FFF;
}

#Contact  .MyLabel a {
    text-decoration: none;
    outline: none;
    color: #000;
}

#Contact  .MyLabel input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  #Contact .MyLabel .checkmark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 15px;
    width: 15px;
    border-radius: 1px;
    background-color: #FFF;
    border: 1px solid #ececec;
}
  
  
  #Contact  .MyLabel input:checked ~ .checkmark {
    background-color: #004C40;
    border-color: #004C40;
  }
  
  #Contact  .MyLabel .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  #Contact .MyLabel input:checked ~ .checkmark:after {
    display: block;
  }
  
  #Contact .MyLabel .checkmark:after {
    left: 5px;
    top: 1px;
    width: 5px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }




  #Contact .SendBtn {
    margin-top: 20px;
}

#Contact .SendBtn a {
    width: 120px;
    background-color: #48a999;
    color: #000;
    border-radius: 3px;
    padding: 13px 15px;
    font-size: 16px;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

#Contact .SendBtn a:hover {
    background-color: #65BDAF;
}


/* Business */
#Business {
    padding: 60px 0;
    background-color: #212121;
    font-family: "Nunito Sans", "Open Sans", sans-serif;
}

#Business .title {
    margin-bottom: 40px;
}

#Business .title h2 {
    color: #7bc7ba;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
}

#Business .day {
    margin-bottom: 30px;
}

#Business .day h4 {
    font-size: 18px;
    font-weight: 600;
    position: relative;
    opacity: .9;
}

#Business .day h4 span {
    padding-right: 18px;
    background-color: #212121;
    z-index: 1;
    position: relative;
    color: #FFF;
    font-size: 18px;
}

#Business .day h4::after {
    content: "";
    width: 100%;
    height: 0px;
    border-bottom: 1px solid #7d7d7d;
    position: absolute;
    display: block;
    top: 13px;
    left: 0;
}


#Business .day p {
    font-size: 16px;
    color: #ffffffbf;
    line-height: 1.5;
    opacity: .9;
    font-family: 'Lora', sans-serif; 
}



/* Brochure */
#Brochure {
    padding: 60px 0;
    background-color: #2d2d2d;
}

#Brochure .image {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    /*background-image: url('../images/BrochureIMG_0.png');*/
    min-height: 400px;
    height: 100%;
    width: 100%;
    padding-bottom: 100%;
}

#Brochure .content {
    width: 122%;
    margin-right: -50%;
    box-shadow: 0 4px 12px #00000033;
    background-color: #3e3e3e;
    padding: 40px;
    z-index: 1;
    position: relative;
}

#Brochure .content h4 {
    color: #FFF;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: "Nunito Sans", "Open Sans", sans-serif;
}

#Brochure .content p {
    color: #212121;
    font-size: 16px;
    line-height: 1.5;
    opacity: .9;
}

#BrochureIMG {
    padding: 80px 0;
    background-color: #212121;
}

#BrochureIMG.Two {
    background-color: #2d2d2d;
}

#BrochureIMG .image {
    width: 63%;
    margin: auto;
    height: auto;
}

#BrochureIMG .image img {
    width: 100%;
    height: 100%;
}

#AboutBrochure {
    padding: 60px 0;
    background-color: #2d2d2d;
    font-family: "Nunito Sans", "Open Sans", sans-serif;
}

#AboutBrochure .content .image {
    border-radius: 34px;
    border: 8px solid #004C40;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 0;
    min-height: 20rem;
    height: 100%;
    width: 100%;
    background-image: url('../images/BrochureIMG_14.jpg');
}

#AboutBrochure .content .image:hover {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

#AboutBrochure .content .line {
    display: block;
    width: 35px;
    height: 5px;
    background-color: #7bc7ba;
    margin-bottom: 10px;
}

#AboutBrochure .content .title {
    margin-bottom: 20px;
    width: 80%;
}

#AboutBrochure .content .title h4 {
    color: #7bc7ba;
    font-weight: 700;
    font-size: 32px;
}

#AboutBrochure .content .desc {
    width: 85%;
    margin-bottom: 20px;
}

#AboutBrochure .content .desc p {
    font-size: 16px;
    color: #FFF;
    line-height: 1.5;
    opacity: .9;
}

#AboutBrochure .content h5 {
    font-family: 'Lora', sans-serif; 
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
}


#VersionBrochure {
    padding: 60px 0;
    background-color: #212121;
    background-image: url('../images/versionBG.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 509px;
    position: relative;
}

#VersionBrochure .border-content {
    border: 4px solid #ffffffcc;
    padding: 20px;
    width: 600px;
    margin: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

#VersionBrochure .content {
    background-color: #ffffffcc;
    backdrop-filter: blur(20px) saturate(125%);
    padding: 40px;
}

#VersionBrochure .content .desc {
    margin-bottom: 10px;
}

#VersionBrochure .content .desc p {
    font-size: 16px;
    color: #212121;
    line-height: 1.5;
    opacity: .9;
}

#VersionBrochure .content .title {
    margin-bottom: 20px;
}

#VersionBrochure .content .title h2 {
    color: #212121;
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: "Nunito Sans", "Open Sans", sans-serif;
}

#VersionBrochure .content .moreBtn a {
    background: #004c40;
    display: inline-block;
    text-align: center;
    border: none;
    padding: 12px 7px;
    width: 120px;
    border-radius: 3px;
    color: #FFF;
    outline: none;
    box-shadow: none;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
}

#VersionBrochure .content .moreBtn a:hover {
    background-color: #007A66;
}




/*Scroll To Top */

.scroll_top {
    width: 40px;
    height: 40px;
    color: #FFF;
    background-color: #004c40;
    text-align: center;
    position: fixed;
    right: 0px;
    bottom: 30px;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    border-radius: 3px;
    z-index: 999;
    transition: all 0.5s ease-in-out;
}

.scroll_top i {
    position: absolute;
    top: 9px;
    right: 13px;
    font-size: 22px;
    transition: all 0.2s ease-in-out;
}

.scroll_top:hover {
    background-color: #212121;
}


@media only screen and (max-width: 600px) {
    body {
        padding-top: 75px;
    }
    .formobile {
        display: block;
    }
    .navbar {
        padding: 15px 0;
    }
    .navbar-brand h1 {
        font-size: 18px;
    }
    .navbar-brand h1 span {
        display: block;
    }
    .navbar .call {
        position: absolute;
        top: -32px;
        right: 90px;
    }
    .navbar .call a {
        padding: 10px 15px;
        font-size: 14px;
    }
    #navbarContent {
        height: 100vh;
        padding-bottom: 100px;
        padding-top: 20px;
        overflow: scroll;
        overflow-x: hidden;
    }
    .navbar-nav {
        text-align: center;
    }
    .navbar-light .navbar-nav .nav-link {
        border: none;
        margin: 5px 0;
        font-size: 22px;
    }

    .navbar-light .navbar-nav .active>.nav-link, 
    .navbar-light .navbar-nav .nav-link.active, 
    .navbar-light .navbar-nav .nav-link.show, 
    .navbar-light .navbar-nav .show>.nav-link {
        color: #004c40 !important;
    }

    .navbar-light .navbar-nav .nav-link.active::before, 
    .navbar-light .navbar-nav .nav-link:hover::before {
        content: none;
    }



    #Main .content {
        left: 50%;
        top: 55%;
        width: 90%;
    }
    #Main .content .title h2 {
        font-size: 25px;
    }
    #Main .content .desc {
        width: 100%;
    }



    #Welcome .content .image {
        height: auto;
    }



    #Items .Maindesc {
        margin-bottom: 60px;
        width: 100%;
    }
    #Items .Item .image {
        height: 85px;
    }
    #Items .Item .title h5 {
        font-size: 16px;
    }


    .goalItem .bar .Baroverlay {
        width: 100px;
        height: 100px;
        font-size: 23px;
    }
    .goalItem .bar {
        width: 110px;
        height: 110px;
    }



    #Subscribe .content {
        width: 95%;
    }



    footer .logo {
        text-align: left;
    }
    footer .address p {
        width: 100%;
    }





    #AboutUs .content .desc {
        width: 100%;
    }
    #AboutUs .content .image {
        margin-top: 20px;
    }




    textarea.form-control {
        height: 150px;
    }
    #Contact .MyLabel {
        font-size: 12px;
    }



    #Brochure .content {
        width: 100%;
    }
    #Brochure .content p {
        color: #fff;
    }




    #VersionBrochure .border-content {
        padding: 10px;
        width: 90%;
    }
    #VersionBrochure {
        height: 709px;
    }
    #BrochureIMG .image {
        width: 90%;
    }
    #AboutBrochure .content .title h4 {
        font-size: 28px;
    }
    #AboutBrochure .content .image {
        margin-top: 30px;
    }
   
}


@media only screen and (min-width: 601px) and (max-width: 767px) {
    body {
        padding-top: 75px;
    }
    .formobile {
        display: block;
    }
    .navbar {
        padding: 26px 0;
    }
    .navbar-brand h1 {
        font-size: 18px;
    }
    .navbar .call {
        position: absolute;
        top: -22px;
        right: 90px;
    }
    .navbar .call a {
        padding: 10px 15px;
        font-size: 14px;
    }
    #navbarContent {
        height: 100vh;
        padding-bottom: 100px;
        padding-top: 20px;
        overflow: scroll;
        overflow-x: hidden;
    }
    .navbar-nav {
        text-align: center;
    }
    .navbar-light .navbar-nav .nav-link {
        border: none;
        margin: 5px 0;
        font-size: 22px;
    }

    .navbar-light .navbar-nav .active>.nav-link, 
    .navbar-light .navbar-nav .nav-link.active, 
    .navbar-light .navbar-nav .nav-link.show, 
    .navbar-light .navbar-nav .show>.nav-link {
        color: #004c40 !important;
    }

    .navbar-light .navbar-nav .nav-link.active::before, 
    .navbar-light .navbar-nav .nav-link:hover::before {
        content: none;
    }



    #Main .content {
        left: 48%;
        top: 55%;
        width: 60%;
    }
    #Main .content .title h2 {
        font-size: 25px;
    }
    #Main .content .desc {
        width: 100%;
    }



    #Welcome .content .image {
        height: 173px;
    }
    #Welcome .content .desc {
        width: 95%;
    }



    #Items .Maindesc {
        margin-bottom: 60px;
        width: 100%;
    }
    #Items .Item .image {
        height: 157px;
    }
    #Items .Item .title h5 {
        font-size: 20px;
    }


    .goalItem .bar .Baroverlay {
        width: 100px;
        height: 100px;
        font-size: 23px;
    }
    .goalItem .bar {
        width: 110px;
        height: 110px;
    }



    #Subscribe .content {
        width: 95%;
    }



    footer .logo {
        text-align: left;
    }
    footer .address p {
        width: 100%;
    }





    #AboutUs .content .desc {
        width: 100%;
    }
    #AboutUs .content .image {
        margin-top: 20px;
    }
  



    textarea.form-control {
        height: 150px;
    }
    #Contact .MyLabel {
        font-size: 14px;
    }



    #AboutBrochure .content .title h4 {
        font-size: 24px;
    }
    #Brochure .content {
        width: 100%;
    }
    #Brochure .content p {
        color: #fff;
    }
}


@media only screen and (min-width: 768px) and (max-width: 991px){
    body {
        padding-top: 75px;
    }
    .formobile {
        display: block;
    }
    .navbar {
        padding: 26px 0;
    }
    .navbar-brand h1 {
        font-size: 18px;
    }
    .navbar .call {
        position: absolute;
        top: -22px;
        right: 90px;
    }
    .navbar .call a {
        padding: 10px 15px;
        font-size: 14px;
    }
    #navbarContent {
        height: 100vh;
        padding-bottom: 100px;
        padding-top: 20px;
        overflow: scroll;
        overflow-x: hidden;
    }
    .navbar-nav {
        text-align: center;
    }
    .navbar-light .navbar-nav .nav-link {
        border: none;
        margin: 5px 0;
        font-size: 22px;
    }

    .navbar-light .navbar-nav .active>.nav-link, 
    .navbar-light .navbar-nav .nav-link.active, 
    .navbar-light .navbar-nav .nav-link.show, 
    .navbar-light .navbar-nav .show>.nav-link {
        color: #004c40 !important;
    }

    .navbar-light .navbar-nav .nav-link.active::before, 
    .navbar-light .navbar-nav .nav-link:hover::before {
        content: none;
    }



    #Main .content {
        left: 43%;
        top: 55%;
        width: 60%;
    }
    #Main .content .desc {
        width: 95%;
    }



    #Welcome .content .image {
        height: 240px;
    }
    #Welcome .content .desc {
        width: 95%;
    }



    #Items .Maindesc {
        margin-bottom: 60px;
        width: 100%;
    }
    #Items .Item .image {
        height: 157px;
    }
    #Items .Item .title h5 {
        font-size: 20px;
    }


    .goalItem .bar .Baroverlay {
        width: 100px;
        height: 100px;
        font-size: 23px;
    }
    .goalItem .bar {
        width: 110px;
        height: 110px;
    }



    #Subscribe .content {
        width: 95%;
    }



    footer .logo {
        text-align: left;
    }
    footer .address p {
        width: 100%;
    }
    footer .logo h1,
    footer .address h2 {
        font-size: 22px;
    }




    #AboutUs .content .image {
        height: 55%;
    }



    #Brochure .content p {
        color: #fff;
    }
  
}


@media only screen and (min-width: 992px)and (max-width: 1199px) {
    body {
        padding-top: 96px;
    }
    .navbar {
        padding: 27px 0;
    }
    .navbar .call a {
        padding: 12px 17px;
    }
    .navbar-brand h1 {
        font-size: 32px;
    }


    #Welcome .content .image {
        height: 330px;
    }




    #AboutUs .content .image {
        height: 90%;
    }


    #BrochureIMG .image {
        width: 75%;
    }
    #Brochure .content p {
        color: #fff;
    }
}




