@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* --------------------------
Default Code 
-----------------------------*/
* {
    padding: 0;
    margin: 0;
    text-decoration: none;
    scroll-behavior: smooth;
}

body {
background-color: #fff;
}

.col_sm1 {
    width: 100%;
}

.col_sm2 {
    width: 48%;
    float: left;
    margin: 1%;
}

.col_sm22 {
	width: 50%;
	float: left;
	margin: 0%;
	margin-top: -8px;
}

.col_sm2-1 {
    width: 48%;
    float: left;
     margin: 0%; 
}

.col_sm3 {
    width: 31%;
    float: left;
    margin: 1%;
}

.col_sm3-1{
    margin: 0%;
    width: 18%;
    float: left;
}

.col_sm4 {
  width: 23%;
    margin: 1%;
    float: left;
}

.col_sm44 {
    width: 28%;
    margin: 1%;
    float: left;
}

.col_sm8 {
    width: 58%;
    float: left;
    margin: 1%;
}

.col_sm88 {
    width: 38%;
    float: left;
    margin: 1%;
}

.clear {
    clear: both;
}

.top {
    width: 98%;
    margin: 0 auto;
    max-width: 1600px;
}

.top2 {
	width: 95%;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}

.top3 {
    width: 85%;
    margin: 0 auto;
}

.logo img {
    width: 190px;
    float: left;
    margin: 0% 0;
}

.navbarrr {
    width: fit-content;
    float: right;
    margin: 2% 0.5%;
}


.fix_nav {
    position: static;
    background: #fff !important;
}

.img {
    width: 100%;
}

.logo_img {
    width: 100%;
}

.bg_clr222 {
    background: white;
}

.welcome-txt::after, .welcome-txt::after {
    content: "";
    display: block;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #1d8c42;
    margin-top: 7px;
}

.last-class{
    background-color:#1f8b43; 
    border-radius:10px; 
    padding:0 15px;
}

.last-class a{
    color:#fff !important;
}

.last-class:hover{
    background-color:#f07e01; 
    border-radius:10px; 
    padding:0 15px;
}

.last-class:hover a{
    color:#fff !important;
}

/*-----------------------------
Whatsapp up
-----------------------------*/

.whatsapp_float {
    text-decoration: none;
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 100px;
    right: 10px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.whatsapp-icon {
    margin-top: 16px;
}

/*--------------------------------------------------------------
top_arrow
--------------------------------------------------------------*/
.top_arrow {
	width: 45px;
	height: 45px;
	position: fixed;
	display: flex;
	right: 1%;
	bottom: 2.5%;
	transition-duration: 1s;
	font-size: 20px;
	cursor: pointer;
	color: #fff;
	z-index: 9999;
    background-color: #dd2928;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
}

.top_arrow:hover {
	background-color: #3f3f3f;
}











.whatsapp-form {
    flex: 0 0 420px;
}

.whatsapp-form form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-form input {
    width: 100%;
    height: 52px;
    padding: 0 18px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    outline: none;
}

.whatsapp-form button {
    height: 52px;
    padding: 0 25px;
    border: 0;
    border-radius: 6px;
    background: #25D366;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.whatsapp-form button:hover {
    background: #1ebe5d;
}


/* Mobile */
@media (max-width: 767px) {

    .ftr-box {
        flex-direction: column;
        align-items: stretch;
        padding: 25px 20px;
        gap: 20px;
    }

    .ftr-box .content-box h2 {
        font-size: 22px;
    }

    .whatsapp-form {
        flex: auto;
        width: 100%;
    }

    .whatsapp-form form {
        flex-direction: column;
        align-items: stretch;
    }

    .whatsapp-form input,
    .whatsapp-form button {
        width: 100%;
    }
}


/*------------------------------------------
footer
------------------------------------------*/



/*------------------------------------------
Main Code 
------------------------------------------*/
.banner-slider {
    position: relative;
    width: 100%;
    height: 83vh;
    overflow: hidden;
  }
  
  .banner-slider .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
  }
  
  .banner-slider .slide.active {
    opacity: 1;
    z-index: 1;
  }
  
  .banner-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Arrows */
  .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    font-size: 28px;
    padding: 10px 16px;
    cursor: pointer;
    z-index: 5;
  }
  
  .slider-arrow.prev { left: 20px; }
  .slider-arrow.next { right: 20px; }
  
  /* Dots */
  .slider-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 5;
  }
  
  .slider-dots .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 6px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
  }
  
  .slider-dots .dot.active {
    background: #de292a;
  }

  
.top-main{
    background: #F8F8F8;
}

.top-main-flex{
    display: flex;
    gap: 30px;
    margin: 10px;
}

.top-main-flex2{
    display: flex;
    gap: 26px;
    justify-content: end;
    margin: 10px;
}


.col_sm1 p {
     font-family: "Montserrat", sans-serif;
}

.top-main-flex p{
    font-family: "Open Sans", sans-serif;
    color: #8d8b8b;
    font-size: 16px;
    line-height: 140%;
}

.top-main-flex a{
    font-family: "Open Sans", sans-serif;
    color: #000;
    font-size: 16px;
    line-height: 140%;
}

.top-main-flex2 a i{
    color: #000;
    font-size: 16px;
}

.boxes {
	bottom: 191px;
	z-index: 99;
    display: flex;
}

.boxes-sub{
    padding: 19px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.boxes-sub h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 140%;
    color: #fff;
    text-align: center; 
}

.boxes-btn{
    margin: 17px 0;
}

.boxes-btn a{
    border: 1px solid #fff;
    padding: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    color: #ffffff;
    text-align: left !important;
    transition: all 0.5s ease-in-out;
}

.boxes-btn a:hover{
    background-color: #fff;
    color: #000;
}

.boxes-sub p {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 33px;
    color: #fff;
    line-height: 140%;
    text-align: center;
    min-height: 100px;
}

.iconss{
    margin: 0 auto;
    width: 80px;
}

.boxes-sub-bg1{
    background: #a1d99b;
}


.boxes-sub-bg2{
    background: #74c476;
}


.boxes-sub-bg3{
    background: #41ab5d;
}

.boxes-sub-bg4{
    background: #238b45;
}

.boxes-sub-bg5{
    background: #0e8133;
}


.wel-img-mrg {
  margin-top: 48px;
}

.pdg{
    padding: 40px 0 40px 0;
}

.welcome-txt h3{
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 140%;
    color: #000;
}

.welcome-txt h3 span{
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 140%;
    color: #1c8a41;
}

.welcome-head h3{
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 140%;
    color: #000;
    text-align: center;
}

.welcome-head h4{
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 140%;
    color: #000;
    text-align: center;
}

.welcome-head h3 span{
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 140%;
    color: #1c8a41;
}



.main-txt p{
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 140%;
    color: #000
}

.flexx{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

  .box-wrapper {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0;
    /* padding: 16px; */
    background: #f0f0f0;
}

    .box {
    min-width: 279px;
    background: #fff;
    padding: 19px;
    /* border-radius: 8px; */
    text-align: center;
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    }

  .box h3{
    margin-bottom:15px;
    font-size:20px;
    font-weight:600;
  }

  .box a{
    display:inline-block;
    padding:8px 15px;
    background:#333;
    color:#fff;
    text-decoration:none;
    border-radius:4px;
  }

  /*section2*/
  .box_txt{
    margin-left: 90px;
  }

  .box_txt h2{
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 140%;
    text-align: justify;
    float: left;
    color: #1f8b43;
  }

  .box_txt h3{
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 140%;
    color: #e24141;
    text-align: left;
  }

  .box_txt h4{
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 140%;
    color: #000;
  }

  .box_txt p{
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 140%;
    color: #000;
  }

.bullet {
  padding: 0;
  margin: 0;
  list-style: none; /* remove default bullets */
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #000;
}

.bullet li {
  position: relative;
  padding-left: 32px;     /* space for image bullet */
  margin-bottom: 12px;
  text-align: justify;
  font-size: 16px;
  font-weight: 400;
}

.bullet li::before {
  content: "";
  width: 20px;            /* bullet image width */
  height: 20px;           /* bullet image height */
  background: url('../images/icon1.png') no-repeat center center / contain;
  position: absolute;
  left: 0;
  top: 4px;               /* vertical alignment tweak */
}


/**/
.bullet1 {
  padding: 0;
  margin: 0;
  list-style: none; /* remove default bullets */
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #000;
}

.bullet1 li {
  position: relative;
  padding-left: 32px; 
  text-align: justify;
  font-size: 16px;
  font-weight: 400;
}

.bullet1 li::before {
  content: "";
  width: 20px;            /* bullet image width */
  height: 20px;           /* bullet image height */
  background: url('../images/icon1.png') no-repeat center center / contain;
  position: absolute;
  left: 0;
  top: 4px;               /* vertical alignment tweak */
}



.bg-sex{
    background: #fdfdfd;
}


.sec3-flex{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.sec3_head h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 140%;
    color: #000;
    text-align: center;
}

.sec3_head p {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 33px;
    color: #000;
    line-height: 140%;
    text-align: center;
    min-height: 100px;
}

.bg-wellness{
    background: url(../images/bg-wellness.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}


.vm-head h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 140%;
    color: #000;
    text-align: justify;
}

.vm-head p {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 140%;
    text-align: justify;
}

.vm-text {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.vm-text h2 {
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 24px;
	line-height: 120%;
	color: #fff;
	text-align: left;
	margin: 0 auto;
}

.vm-text p {
	font-family: "Montserrat", sans-serif;
	font-weight: 300;
	font-size: 17px;
	line-height: 140%;
	color: #fff;
	text-align: left;
}

.mission-box {
  position: absolute;
  background: #65b530;
  top: 12%;
  z-index: 999;
  width: 53px;
  padding: 1%;
  left: 6%;
}

.box-content {
	background-color: rgba(27, 26, 26, 0.86);
	position: absolute;
	top: 22%;
	left: 0;
	margin: 4%;
	padding: 3%;
	width: 86%;
	height: 75%;
}

.bg-clr{
    background: #258b42;
}

.wel-head2 h3{
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 140%;
    color: #fff;
    text-align: center;
}

.wel-head2 p{
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 140%;
    color: #fff;
    text-align: center;
}

.bullet-list {

  list-style-type: disc;
  margin-left: 25px;
  padding-left: 10px;
}

.bullet-list li {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    line-height: 150%;
    color: #000;
    margin: 0;
}

.level_head h2 {
	font-family: "Montserrat", sans-serif;
	font-size: 20px;
	font-weight: 600;
	line-height: 140%;
	color: #fff;
	text-align: left;
	background: #258b42;
	width: auto;
	padding: 5px;
	border-radius: 25px;
}

.level_head h3{
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 140%;
    color: #000;
    text-align: justify;
}


/*footer*/
.ftr-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ftr-box .content-box {
  width: 82%;
}

.ftr-box {
  background-color: #218a45;
  padding: 35px 70px;
  margin-bottom: -113px;
  position: relative;
}

.ftr-box h2 {
        font-family: "Montserrat", sans-serif;
    font-size: 30px;
    font-weight: 800;
    line-height: 140%;
    margin: 0 !important;
    color: #fff;
    text-align: justify;
}

.ftr-box p {
      font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: #fff;
  text-align: left;
  margin: 1% 0;
}


.button-6 a {
      font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #000;
  text-align: center;
}

.button-6 {
      font-family: "Montserrat", sans-serif;
  align-items: center;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: .25rem;
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
  box-sizing: border-box;
  color: rgba(0, 0, 0, 0.85);
  cursor: pointer;
  display: inline-flex;
  font-size: 16px;
  font-weight: 600;
  justify-content: center;
  line-height: 1.25;
  margin: 0;
  min-height: 3rem;
  padding: calc(.875rem - 1px) calc(1.5rem - 1px);
  position: relative;
  text-decoration: none;
  transition: all 250ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: baseline;
  width: auto;
  text-align: center;
}

.button-6:hover,
.button-6:focus {
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
  color: rgba(0, 0, 0, 0.65);
}

.button-6:hover {
  transform: translateY(-1px);
}

.button-6:active {
  background-color: #F0F0F1;
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
  color: rgba(0, 0, 0, 0.65);
  transform: translateY(0);
}



.footer-bg{
    background: #f9f9f9;
}

.txt-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top:80px;
  padding-left:0px;
  padding-right:0px;
  padding-bottom:30px;
  flex-wrap: wrap;
}

.txt-left {
  flex: 1;
  min-width: 300px;
}

.txt-left h2 {
	font-family: "Montserrat", sans-serif;
	font-size: 36px;
	line-height: 120%;
	font-weight: 600;
	color: #000;
	text-align: left;
}

.txt-right {
    flex: 1;
       font-family: "Montserrat", sans-serif;
    min-width: 300px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    color: #fff;
}

.txt-block {
  flex: 1;
  min-width: 250px;
}


.txt-block h3 {
        font-family: "Montserrat", sans-serif;
    font-size: 18px;
    margin-bottom: 10px;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
    color: #000;
    line-height: 140%;
}

.txt-block p,
.txt-block a {
        font-family: "Montserrat", sans-serif;
    font-size: 16px;
    color: #000;
    text-decoration: none;
    line-height: 140%;
}

.txt-block a:hover {
    color: #00aded;
}

.txt-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #333;
    padding: 30px 0px;
    font-size: 14px;
    flex-wrap: wrap;
}

.txt-footer-links {
        font-family: "Montserrat", sans-serif;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    color: #000;
    font-size: 16px;
}

.txt-footer-links a {
    color: #000;
    text-decoration: none;
}

.txt-footer-links a:hover {
    color: #000;
}

.txt-copyright {
      font-family: "Montserrat", sans-serif;
    color: #000;
    font-size: 16px;
    text-align: left;
    flex: 1;
}

.img-box{
    width: 26%;
}

/* Image hover */
.img-box img {
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 1px solid #ccc;
  }
  
  .img-box img:hover {
    transform: scale(1.05);
  }
  
  /* Lightbox overlay */
  #lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
  
  /* Lightbox image */
  #lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    animation: zoomIn 0.3s ease;
  }
  
  /* Close button */
  .lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
  }
  
  /* Animation */
  @keyframes zoomIn {
    from {
      transform: scale(0.7);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }


  .img-box2{
    width: 48%;
}

/* Image hover */
.img-box2 img {
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 1px solid #ccc;
  }
  
  .img-box2 img:hover {
    transform: scale(1.05);
  }


  .img-box3{
    width: 16%;
}

/* Image hover */
.img-box3 img {
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 1px solid #ccc;
  }
  
  .img-box3 img:hover {
    transform: scale(1.05);
  }

  .gallery-sub{
    border: 1px solid #ccc;
  }

  .brd img{
    border: 1px solid #ccc;
  }

  .lightbox-img{
    cursor: pointer;
  }


  

/*------------------------------------------
Responsive Code 
------------------------------------------*/
@media only screen and (max-width :1600px) {
    .txt-left h2 {
    font-size: 47px;
    }
    .banner-slider {
    height: 74vh;
    }
 }


@media only screen and (max-width :1500px) {
        .banner-slider {
        height: 70vh;
    }

    .top2 {
    width: 95%;
    }

    .txt-left h2 {
        font-size: 44px;
    }


 }

@media only screen and (max-width: 1460px) {
        .banner-slider {
        height: 66vh;
    }

    .vm-text {
height: 47vh;
}

.vm-text img {
height: 47vh;
}

.mission-box img{
    height: 100%;
}

.logo {
        margin: 0% auto;
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: center;
    }


    .logo img {
        width: 120px;
        float: left;
        margin: 0% 0;
    }

    .boxes-sub h2 {
        font-size: 18px;
        min-height: 53px;
    }

     .boxes-sub {
        padding: 14.6px;
    }

    .boxes-sub p {
        min-height: 115px;
    }

    .navbarrr {
        margin: 1% 0.5%;
    }


}

@media only screen and (max-width :1400px) {
        .txt-left h2 {
        font-size: 40px;
    }

 }

@media only screen and (max-width :1300px) { 
        .banner-slider {
        height: 61vh;
    }

    .ftr-box h2 {
    text-align: left;
}

    .txt-left h2 {
        font-size: 37px;
    }

    #cssmenu>ul>li>a {
        margin: 10px 12px !important;
    }

}



@media only screen and (max-width :1260px) {

    .top2 {
        width: 100%;
    }

    .boxes-sub {
        padding: 12.6px;
    }

    .boxes-sub p {
        min-height: 160px;
    }

    .box_txt {
        margin-left: 15px;
    }

        #cssmenu>ul>li>a {
        margin: 10px 9px !important;
    }

    .col_sm88 {
    width: 98%;

    }

    .col_sm8 {
    width: 98%;
    }

        .banner-slider {
        height: 56vh;
    }
}

@media screen and (max-width: 1100px) {}

@media only screen and (max-width :1000px) {
    .top-main-flex2 {
    margin: 9px;
}

    #cssmenu>ul>li>a {
        margin: 10px 14px;
        font-size: 13px;
    }

    .last-class{
        background-color: transparent;
        border-radius: 0;
        padding: 0 !important;
}
#cssmenu>ul>li>a {
        font-size: 13px !important;
    }

.last-class a{
    color:#000;
}

    .txt-left h2 {
        font-size: 29px;
    }


}


@media only screen and (max-width:960px) {
        .banner-slider {
        height: 45vh;
    }

        .navbarrr {
        width: 100% !important;
        float: none !important;
        margin: 0% auto !important;
        background-color: #009a50 !important;
    }

    .logo img{
        margin: 0.8% 1%;
        padding-top: 1%;
        float: none;
        width: 170px;
    }

        #cssmenu>ul>li>a {
        font-size: 14px !important;
    }

    .col_sm2-1 {
    width: 47%;
    }

        .boxes {
        display: flex;
        flex-wrap: wrap;
    }

    .col_sm3-1 {
    width: 98%;
    }

        .boxes-sub p {
        min-height: 0;
    }

        .txt-left h2 {
        font-size: 28px;
    }

}



@media only screen and (max-width:800px) {
        .banner-slider {
        height: 37vh;
    }
    .col_sm22 {
        width: 100%;
    }

    .flexx {
        flex-wrap: wrap;
    }

    .col_sm2 {
        width: 98%;
    }

        .col_sm2-1 {
        width: 98%;
    }

    .top-main-flex {
    justify-content: center;
}

.top-main-flex2 {
    justify-content: center;
}

.txt-left {
    min-width: 100%;
    margin-bottom: 2%;
}

.txt-right {
    min-width: 100%;
    margin-bottom: 2%;
}

.txt-footer-links {
    width: 100%;
}

.txt-copyright {
    width: 100%;
}

.ftr-box h2 {
        text-align: center;
    }

}




@media only screen and (max-width : 700px){
        .banner-slider {
        height: 32vh;
    }
}




@media only screen and (max-width:600px) {
        .banner-slider {
        height: 28vh;
    }

    .ftr-box {
    flex-wrap: wrap;
}

.ftr-box .content-box {
    width: 98%;
}
}

@media only screen and (max-width:500px) {
        .banner-slider {
        height: 24vh;
    }
}


@media only screen and (max-width:400px) {
    .banner-slider{
        height: 19vh;
    }

        .txt-left h2 {
        font-size: 23px;
    }

    .top-main {
    display: none;
    }

        .vm-text img {
        height: 67vh;
    }


        .vm-text {
        height: 67vh;
    }

        .mission-box img {
        height: 100%;
    }
}

@media only screen and (max-width:360px) {
        .txt-left h2 {
        font-size: 21px;
    }
}