
/*header-start*/
@font-face {
	  font-family: 'Poppins';
	  src: url('../font/Poppins-Regular.ttf');
	}
	.row{
		margin:0px;
		padding:0px;
	}
:root {
  --header-height: 3.5rem;
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(220, 68%, 54%);
  --first-color-lighten: hsl(220, 68%, 97%);
  --title-color: hsl(220, 48%, 28%);
  --text-color: hsl(220, 12%, 45%);
  --body-color: hsl(220, 100%, 99%);
  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Poppins", sans-serif;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;
  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;
  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
body{
	 margin:0px;
	 padding:0px;
	 font-family: 'Poppins', sans-serif;
	 background-color: #f5f5f5;
    padding: 20px 0;

}
	

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
}
.nav{
	padding-left:25px;
}

/*=============== HEADER ===============*/
.nav-heading{
	font-size: 1.25rem;
    color: #00A946;
    font-weight: 600;
}
.nav-p{
	font-size: .75rem;
    font-weight: 600;
    color: #363c44;
	margin:0px;
}
.header-btn-1{
background: linear-gradient(to top, #00AF59, #00AF59);
    color: #fff;
    border: 0;
    padding: 9px 20px !important;
    font-size: 15px;	
}
.hover-nav{
	background: #fff;
    position: absolute !important;
    border-radius: 10px;
	width:150px;
	left: -36px !important;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 2px 8px hsla(220, 68%, 12%, 0.1);
  background-color: var(--body-color);
  z-index: var(--z-fixed);
      padding: 12px 0px;
}

/*=============== NAV ===============*/

.nav__data {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width:20%;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: 0.25rem;
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  transition: color 0.3s;
}
.nav__logo i {
  font-size: 1.25rem;
}
.nav__logo:hover {
  color: var(--first-color);
}
.nav__toggle {
  position: relative;
  width: 70px;
  height: 32px;
}
.nav__toggle .nav__toggle-menu, .show-icon .nav__toggle-menu {
	font-size: 24px
}
.nav__toggle-menu, .nav__toggle-close {
  font-size: 1.25rem;
  color: var(--title-color);
  position: absolute;
  display: grid;
  place-items: center;
  inset: 0;
  cursor: pointer;
  transition: opacity 0.1s, transform 0.4s;
}
.nav__toggle-close {
  opacity: 0;
}
.nav__menu{
	width:80%;
	margin: auto;
    justify-content: center;
    display: flex
}
@media screen and (max-width: 1082px) {
	.header-btn{
		margin:0px !important;
	}
	.nav__list {
		column-gap: 1rem !important;
	}
	.nav__list li a{
		font-size:13px !important;
	}
}
.hover-nav .dropdown__list{
	padding:0px;
}
@media screen and (max-width: 769px) {
   .nav__data,.nav__list{
	   width:100%;
   }
    .nav__data{
	    background: #fff;
    padding: 3px 0px;

  }
  .nav__menu {
    background-color: var(--body-color);
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    padding-block: 1.5rem 4rem;
    pointer-events: none;
    opacity: 0;
    transition: top 0.4s, opacity 0.3s;
  }
  .nav__menu::-webkit-scrollbar {
    width: 0.5rem;
  }
  .nav__menu::-webkit-scrollbar-thumb {
    background-color: hsl(220, 12%, 70%);
  }
}
.nav__link {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}
.nav__link:hover {
  background-color: var(--first-color-lighten);
}

/* Show menu */
.show-menu {
  opacity: 1;
  top: 3.5rem;
  pointer-events: initial;
  z-index:-1;
}

/* Show icon */
.show-icon .nav__toggle-menu {
  opacity: 0;
  transform: rotate(90deg);
}

.show-icon .nav__toggle-close {
  opacity: 1;
  transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__button {
  cursor: pointer;
}
.dropdown__arrow {
  font-size: 1.5rem;
  font-weight: initial;
  transition: transform 0.4s;
}
.dropdown__content, .dropdown__group, .dropdown__list {
  display: grid;
}
.dropdown__container {
  background-color: var(--first-color-lighten);
  height: 0;
  overflow: hidden;
  transition: height 0.4s;
}
.dropdown__content {
  row-gap: 1.75rem;
}
.dropdown__group {
  padding-left: 2.5rem;
  row-gap: 0.5rem;
}
.dropdown__group:first-child {
  margin-top: 1.25rem;
}
.dropdown__group:last-child {
  margin-bottom: 1.25rem;
}
.dropdown__icon i {
  font-size: 1.25rem;
  color: var(--first-color);
}
.dropdown__title {
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}
.dropdown__list {
  row-gap: 0.25rem;
}
.dropdown__link {
  font-size: var(--smaller-font-size);
  font-weight: var(--font-medium);
  color: var(--text-color);
  transition: color 0.3s;
}
.dropdown__link:hover {
  color: var(--title-color);
}

/* Rotate dropdown icon */
.show-dropdown .dropdown__arrow {
  transform: rotate(180deg);
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 300px) {
  .dropdown__group {
    padding-left: 1.5rem;
  }
}
/* For large devices */
.nav__list{
	margin:0px;
}
@media screen and (min-width: 769px) {
	.nav__toggle {
    display: none;
  }
 
}
@media screen and (min-width: 769px) {
  /* Nav */
  .nav {
    display: flex;
    justify-content: space-between;
  }
  
  .nav__list {
    display: flex;
    column-gap: 1.5rem;
  }
  .nav li {
    display: flex;
	height: 40px;
  }
  .nav__link {
    padding: 0;
  }
  .nav__link:hover {
    background-color: initial;
  }
  /* Dropdown */
  .dropdown__button {
    column-gap: 0.25rem;
    pointer-events: none;
  }
  .dropdown__container {
    height: max-content;
    position: absolute;
    left: 0;
    right: 0;
    top: 6.5rem;
    background-color: var(--body-color);
    box-shadow: 0 6px 8px hsla(220, 68%, 12%, 0.05);
    pointer-events: none;
    opacity: 0;
    transition: top 0.4s, opacity 0.3s;
  }
  .dropdown__content {
    grid-template-columns: repeat(4, max-content);
    column-gap: 6rem;
    max-width: 1120px;
    margin-inline: auto;
  }
  .dropdown__group {
    padding: 4rem 0;
    align-content: baseline;
    row-gap: 1.25rem;
  }
  .dropdown__group:first-child, .dropdown__group:last-child {
    margin: 0;
  }
  .dropdown__list {
    row-gap: 0.75rem;
  }
  .dropdown__icon {
    width: 60px;
    height: 60px;
    background-color: var(--first-color-lighten);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
  }
  .dropdown__icon i {
    font-size: 2rem;
  }
  .dropdown__title {
    font-size: var(--normal-font-size);
  }
  .dropdown__link {
    font-size: var(--small-font-size);
  }
  .dropdown__link:hover {
    color: var(--first-color);
  }
  .dropdown__item {
    cursor: pointer;
	font-size:15px;
  }
  .dropdown__item:hover .dropdown__arrow {
    transform: rotate(180deg);
	color:#00A946;
  }
  .dropdown__item:hover > .dropdown__container {
    top: 2.5rem;
    opacity: 1;
    pointer-events: initial;
    cursor: initial;
  }
}
  .dropdown__item:hover .dropdown__button {
	color:#00A946;
  }
.dropdown__button i{
	color:#363c44
}
.dropdown__button{
	color:#363c44
}
.nav__list li a{
	font-size:15px ;
	color:#363c44;
	font-weight:bold;
}
.nav__list li a:hover{
	color:#00A946;
}
.active{
	    background: linear-gradient(to top, #00AF59, #00AF59);
    padding: 0px 16px;
    border-radius: 10px;
}
.active a{
	color:#fff !important;
}
@media screen and (min-width: 1152px) {
  .container {
    margin-inline: auto;
  }
}
.nav-hover-link{
	padding:6px 0px;
	cursor:pointer;
}
.nav-hover-link:hover{
	background:#ECFDF5;
}
.nav-hover-link a{
    margin: auto;
}
.nav-hover-link:hover a{
	color: #00AF59;
}

/*header-end*/
/*body-start*/
/*body-top-section-start*/
.fancy-service:hover .ri-image-2-line{
	display:block;
}
.ri-image-2-line{
	display:none;
}
.saying-p{
	width:91.66666667% !important;
}
.cam-p{
	width:100% !important;
}
.body-top-content .hedding , .commitment .hedding{
	display: inline-block;
    padding: 7px 27px;
    background-color: #d1fae5;
    color: #047857;
    font-weight: 700;
    font-size: 14px;
    border-radius: 999px;
}
.body-top-content h1, .commitment h1{
	    font-size: 4.5rem;
    font-weight: bold;
	line-height: 6rem;
	    padding: 10px 0px;
	color:#0F172B;
}
.body-top-content p, .commitment p, .cam-p, .saying-p{
	color: rgb(68, 70, 117);
    font-size: 18px;
	padding-bottom:12px;
	width: 50%;
    margin: auto;
}
.body-top-content button{
    font-weight: bold;
    padding: 14px 23px;
    border-radius: 10px;
}
.body-top-content .btn-1{
    color: #fff;
	background-color: lab(55.0481% -49.9246 15.93);
    --tw-shadow: 0 20px 25px -5px var(--tw-shadow-color, #0000001a), 0 8px 10px -6px var(--tw-shadow-color, #0000001a);
    box-shadow: var(--tw-shadow);
	transition: transform 0.2s ease, box-shadow 0.3s ease;
    display: inline-block;
}
.body-top-content .btn-1:hover {
    transform: scale(1.05); 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); 
}
.body-top-content .btn-2{
	margin-left:15px;
	transition:.5s;
}
.body-top-content .btn-2:hover{
	background-color: #E2E8F0;
}
.body-top-img div{
	height: 560px;
    overflow: hidden;
    --tw-shadow: 0 20px 25px -5px var(--tw-shadow-color, #0000001a), 0 8px 10px -6px var(--tw-shadow-color, #0000001a);
    box-shadow: var(--tw-shadow);
    border: 4px solid #fff;
    border-radius: 23px;
	position:relative;

}
.body-top-img img{
	object-fit:cover;
	height:100%;
}
@media screen and (max-width: 375px) {
	.change-sec-btn{
		margin-left: 0px !important;
		margin-top: 20px;
	}
}
@media screen and (max-width: 767px) {
	.body-top-content{
		padding:32px 0px;
	}
}
/*body-top-section-end*/
/*body-commitment-section-start*/
.commitment{
	text-align:center
}
.commitment h1{
	font-size:3.75rem
	color:#0F172B;
}
.commitment-sec{
	margin-bottom:50px;
	margin-top:150px;
}
/*swiper-slide-start*/
.swiper-icon-div{
    text-align: center;
    padding: 16px 0px;
    border-radius: 16px;
    width: 77%;
}
.feature-icon i{
font-size: 2.25rem;
    color: #fff;
}
.feature-text h4{
	font-size: 1.5rem;
    font-weight: bold;
}
.feature-text p{
	font-size:1rem;
	color:rgb(68, 70, 117);
}
.feature-text a{
	font-size:1rem;
	font-weight:bold;
}
.swiper {
      width: 100%;
      height: 433px;
    }

.swiper-slide {
    height: 183px!important;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px 20px;
    margin-bottom: 20px;
	cursor:pointer;
    }
.swiper-div-video div{
height: 330px;
    overflow: hidden;
    --tw-shadow: 0 20px 25px -5px var(--tw-shadow-color, #0000001a), 0 8px 10px -6px var(--tw-shadow-color, #0000001a);
    box-shadow: var(--tw-shadow);
    border: 4px solid #fff;
    border-radius: 23px;	
}
.nav__list{
    padding-right:35px;
    
}
/*swiper-slide-end*/
/*body-commitment-section-end*/
/*body-camping gallary-section-start*/
.camping-heading{
	    background: linear-gradient(to right, #E37000, #EA6100, #F44B00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.camping-gallary h4{
color: #0F172B;
    font-size: 2.25rem;
    font-weight: 600;
}
.cam-span{
width: 30px;
    height: 30px;
    display: inline-block;
    background: linear-gradient(to right, #FE9500, #F65100);
    align-items: center;
    text-align: center;
    align-content: center;
    border-radius: 6px;
    color: #fff;
    font-size: 17px;
}	
.cam-cont{
	font-weight: 600;
    color: #0F172B;
    margin: 0px 10px;
}
.body-top-img         .glow-wrapper::before {
            content:"";
            position:absolute;
            inset:0;
            background:
                radial-gradient(circle at top left, #FEF7EC, transparent 80%),
                radial-gradient(circle at top right, #F0E3DD, transparent 80%),
                radial-gradient(circle at bottom left, #dcfce7, transparent 80%),
                radial-gradient(circle at bottom right, #E6E2F1, transparent 80%);
            filter: blur(40px);
            z-index:0;
        }
.glow-wrapper {
            position: relative;
        }
        .glow-wrapper::before {
            content:"";
            position:absolute;
            inset:0;
            background:
                radial-gradient(circle at top left, #FEF7EC, transparent 60%),
                radial-gradient(circle at top right, #F0E3DD, transparent 60%),
                radial-gradient(circle at bottom left, #dcfce7, transparent 60%),
                radial-gradient(circle at bottom right, #ede9fe, transparent 60%);
            filter: blur(40px);
            z-index:0;
        }
        .white-card {
            position: relative;
            background:#ffffff;
            border-radius:28px;
            padding:32px;
            box-shadow:
                0 30px 60px rgba(0,0,0,.12),
                0 8px 20px rgba(0,0,0,.08);
        }
        .gallery-item {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .gallery-item:hover:before{
			background-color:#ffb400;
			opacity:0.9;
			
		}
		
        .fancy-service:hover .gallery-item {
            transform: scale(1.03);
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        }
        .gallery-container {
            position: relative;
        }
        .more-images-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            font-weight: bold;
            border-radius: 8px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        .more-images-overlay:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }
        .carousel-item img {
            max-width: 100%;
            height: auto;
            max-height: 80vh;
            margin: auto;
        }
        
        /* নতুন স্টাইল: ইমেজ কাউন্টার এবং ক্যাপশনের জন্য */
        .carousel-caption-custom {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.6);
            color: white;
            padding: 15px;
            text-align: center;
            font-size: 1.1rem;
            font-weight: 500;
        }
        .carousel-counter {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            z-index: 10;
        }

		
		
	.fancy-service {
		position: relative;
		text-align: center;
		transition: transform 0.3s ease, box-shadow 0.3s ease;
		cursor:pointer;
	}
.fancy-service:hover:before{
	background: linear-gradient(to top, #FE9500, #F65100);
	opacity: 0.7;
	transform: scale(1.03);
	border-radius:8px;
}
.fancy-service:before {
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.6;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}
.fancy-service i{
    position: absolute;
    left: 43%;
    bottom: 40%;
    color: #fff;
    font-size: 32px;
    z-index: 10;
}
/*body-camping gallary-section-end*/
/*body-saying-section-start*/
.saying-heading{
	background: linear-gradient(to right, #5039F6, #772DF9, #9515FA);
}
.saying-heading, .legal-heading{
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.saying-p{
padding-top:15px;	
}
.saying-i i{
	color: #C6D2FF;
    font-size: 2.25rem;
}
.saying-cl-div{
	width: 100%;
    height: 3.5px;
    background: linear-gradient(to right, #685AFF, #9521FB);
    border-radius: 3.40282e38px;
	display:block;
	float:left;
}
.saying-name span{
    color: #5638F6;
    font-size: 16px;
    font-weight: bold;
}
/*body-saying-section-end*/
/*body-legal-section-start*/
.legal-heading{
	background: linear-gradient(to right, #0091BA, #0078E1, #145DFB);
	 -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.legal-icon i{
	font-size:2.25rem;
	color:#fff;
}
.legal-icon{
	width: 80px;
    height: 80px;
    align-items: center;
    display: inline-flex;
    margin: auto;
    justify-content: center;
    border-radius: 16px;
}
.legal-h4{
	padding-top:28px;
	padding-bottom:5px;
}
.legal-div{
    position: relative;
    cursor: pointer;
    transition: transform .4s ease;
}

.legal-div::before{
    content:"";
    position:absolute;
    inset:-20px;
    background:
        radial-gradient(circle at top left, #FDEDD3, transparent 60%),
        radial-gradient(circle at top right, #EFD6CC, transparent 60%),
        radial-gradient(circle at bottom left, #CFF4DC, transparent 60%),
        radial-gradient(circle at bottom right, #E0D9FF, transparent 60%);
    filter: blur(45px);
    opacity:0;
    transition: opacity .4s ease;
    z-index:-1;
}

.legal-div:hover{
    transform: translateY(-8px) scale(1.03);
}

.legal-div:hover::before{
    opacity:1;
}


.legal-div .fa-arrow-right{
    position: relative;
    left: 0;
    transition: left 0.3s ease;
}

.legal-div:hover .fa-arrow-right{
    left: 6px;
}
@media screen and (max-width: 767px) {
	.legal-div{
		padding:20px 0px;
	}	
	.body-saying-part{
		margin-top:10px;
		margin-bottom:50px;
	}
	.footer-link{
		margin-top:25px;
	}
	.footer-link-2{
		margin-top:200px !important;
	}
	.footer-link-4{
		margin-top:120px !important;
	}
	.footer-pad{
		padding-bottom:0px !Important;
	}
}
@media screen and (max-width: 991px) {
	.footer-link-2, .footer-link-4{
		margin-top:150px;
	}
}
/*body-legal-section-end*/
/*body-change-section-start*/
.body-top-content p{
	width:100%!important;
}
.change-sec{
	background-color:#00AF59;
	text-align:center;
	color:#fff;
	border-radius:20px;
	padding:66px 0px;
}
.change-sec h1{
	font-size:3.75rem;
	font-weight:bold;
}
.change-sec p{
    font-size: 1.5rem; 
    width: 75%;
    margin: auto;
	    padding-top: 10px;
    padding-bottom: 40px;
}
.change-sec .btn-1{
    background-color: #fff;
    color: #00AF59;
	
}
.change-sec .change-sec-btn{
    background-color: #006045;
    color: #fff;
	transition:transform 0.2s ease, box-shadow 0.3s ease;
	margin-left:15px;
	
}
.change-sec .btn-1,.change-sec .change-sec-btn{
    font-size: 18px;
    padding: 19px 32px;
	border:2px solid #fff;
}
.body-top-content .change-sec-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
/*body-change-section-end*/

/*body-end*/
/*footer-start*/
.footer-hori{
	width:100%;
	height:4px;
	background:#00AF59;
}
.footer-name-cont h5{
	font-size: 1.25rem;
    color: #018b47;
    font-weight: 600;
	margin-bottom:3px;
}
.footer-name-cont h6{
	font-size: .75rem;
    font-weight: 600;
    color: #363c44;

}
.footer-name-cont p{
	font-size:1rem;
	color:rgb(68, 70, 117);
}


.footer-icon {
    width: 42px;
    height: 42px;
    align-items: center;
    display: inline-flex;
    margin: auto;
    justify-content: center;
    border-radius: 10px;
	margin-right:6px;
}
.footer-icon i {
    font-size: 1.25rem; 
    color: #fff;
}
.footer-heading{
	font-size: 1.25rem;
    font-weight: 600;
    color: #0F172B;
}
.footer-link div{
	width: 100%;
    height: 2px;
    background: #00AA4B;
}
.footer-link-2 div{
	width: 100%;
    height: 2px;
    background: #297AF5;
}
.footer-link-3{
	width: 100%;
    height: 2px;
    background: #A829EA;
}
.footer-nav li{
	width:100%;
	line-height:20px;
}
.footer-nav li a{
	 position: relative;
    left: 0;
    transition: left 0.3s ease;
}
.footer-nav li a:hover{
	left:6px;
	color:#00AF59 !important;
}
.nav-1 li:hover a{
	
}
.footer-nav li a{
	font-size: 16px;
    font-weight: 600;
    color: #363c44;
	padding-left:0px;
}
.footer-nav li a span{
	font-size:23px;
}
.footer-icon-2 i{
	color:#fff;
}
.footer-loca{
	font-size: 16px;
    font-weight: 600;
    color: #363c44;
    padding-left: 0px;
}
.footer-icon-2{
	width: 35px;
    height: 35px;
    align-items: center;
    display: inline-flex;
    margin: auto;
    justify-content: center;
    border-radius: 7px;
    margin-right: 6px;
}
.footer .col-3{
	padding:0px 20px;
}
/*footer-end*/
/*details-start*/
.details-p{
	font-size: .875rem;
    font-weight: 600;
    color: #009E58;
}
.details h2{
	font-size: 3rem;
    font-weight: bold;
}
.details-i{
    font-size: 30px;
    color: #009E58;
    padding: 0px;
    margin: 0px;
}
.date-p{
	color: rgb(68, 70, 117);
    font-size: 17px;
    font-weight: 100;
}
.new-chap{
	background: #FFF2F2;
    padding: 36px 27px;
    border-radius: 15px;
    border-left: 4px solid #E7000B;
}
.commitment-icon-div{
	text-align: center;
    border-radius: 16px;
    width: 70px;
    height: 70px;
    align-content: center;
}
/*details-end*/
/*programss-start*/
.program-div {
	height: 435px;
    overflow: hidden;
    border-radius: 10px;
}
.program-div img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
}

.program-div:hover img{
    transform: scale(1.03);
}
.program-heading{
	background:linear-gradient(to right, #135FFA, #0080D7, #0091BA);
	-webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
	.program-div{
		margin-bottom:40px;
	}
	
}

/*programss-end*/
/*sugestion-start*/
.suggestion-div{
	background: linear-gradient(to right, #00BB79, #00A843);
}
.suggestion-div-2{
	background: linear-gradient(to right, #2681FF, #0091BC);
}
.suggestion-div{
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    padding: 3px 15px;
    border-radius: 16px;
}
.suggestion-h4{
    font-size: 1.25rem !important;
    font-weight: bold;
    margin-top: 20px;
	margin-bottom:12px;
	line-height:30px;
}
.bn-point{
	height:100%;
}
.bn-point .white-card{
	height: 100%;
    display: flex;
    flex-direction: column;
}
.bn-point .body-top-content{
	margin-top: auto;
}
.point{
	background: linear-gradient(to top, #FA322F, #F54700);
    font-size: 36px;
    color: #fff;
    font-weight: 600
}
.display-point{
	    display: inline-block !important;
}
.mail{
	background:linear-gradient(to right, #4F73FF, #922AFB);
	-webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.address{
	background:linear-gradient(to right, #B546F2, #E01287);
	-webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/*sugestion-end*/
/*contact-area-section-start*/
.contact-from{
    padding-bottom:100px;
}
.contact p{
	width: 65%;
    margin: auto;
    padding: 40px 0px;
}
.contact-area .section-title > h2 {
    color: #121212;
    line-height: 23px;
    margin-bottom: 19px;
    text-transform: capitalize;
}
.contact-from input:focus, .contact-from textarea:focus {
    border-color: #00A946;
    box-shadow: inherit;
    outline: 0 none;
}

.contact-from input {
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #dddddd;
    border-radius: 10px;
    color: #444;
    font-size: 14px;
    font-weight: normal;
    height: inherit;
    margin-bottom: 18px;
    padding: 16px 20px 15px;
    transition: all 0.3s 
ease 0s;
    width: 100%;
}
.contact-from textarea {
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #dddddd;
    border-radius: 10px;
    color: #444;
    font-size: 14px;
    font-weight: normal;
    height: 100px;
    padding: 16px 20px;
    transition: all 0.3s 
ease 0s;
    width: 100%;
}
.conatct-info {
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: -78px;
    padding: 52px 0;
    position: relative;
    z-index: 9;
}
.contact-icon {
    border: 1px solid #f3f3f3;
    border-radius: 10px;
    display: inline-table;
    height: 54px;
    margin-right: 18px;
    text-align: center;
    transition: all 0.3s 
ease 0s;
    width: 54px;
}
.single-contact-info:hover .contact-icon {
    background-color: #0091ea;
    border: 1px solid #0091ea;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.35);
}
.single-contact-info:hover .contact-icon i {
    color: #fff;
}
.contact-icon i {
    color: #666666;
    display: table-cell;
    font-size: 30px;
    vertical-align: middle;
}
.contact-text {
    display: inline-block;
    text-align: left;
}
.contact-text > span {
    color: #7a7a7a;
    font-size: 14px;
    font-weight: normal;
    line-height: 22px;
    font-family: "Exo 2", sans-serif;
}
.contact-text > span a{
    outline: medium none;
    color: #606060;
    -webkit-transition: all 0.5s 
ease-out 0s;
    transition: all 0.5s 
ease-out 0s;
text-decoration:none;
}
.contact-text > span a:hover {
    color: #0091ea;
}
.con-label{
	font-weight: 600;
    font-size: 15px;
    color: #363c44;
	padding-bottom:5px;
}
.con-icon{
	width: 55px;
    height: 55px;
    align-items: center;
    display: inline-flex;
    margin: auto;
    justify-content: center;
    border-radius: 11px;
}
.con-icon{
	font-size:22px;
}
@media only screen and (max-width: 768px) {
	.single-contact-info{
		margin-bottom:20px !important;
	}
}
.single-contact-info{
		width: 70%;
		margin: auto;
	}
	
/*contact-area-section-end*/