
:root {
  --color-primary: #87BC25;
  --color-secondary: #e95b29;
  --color-black: #404A3D;
  --color-blue: #332C5C;
  --color-primarytwo: #32C3CF;
  --color-white: #fff;
  --color-yellow: #f7b10b;
  --color-gray: #666666;
  --color-bggray: #F4F2F0;
}

:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: initial;
  background-color: initial;
  font-family: "Rethink Sans", sans-serif;
}

a {
  color: initial;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: initial;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: initial;
  font-family: "Rethink Sans", sans-serif;
}

ul{
  list-style: none;
  margin: 0;
  padding: 0;
}

.gap-y25{
  gap: 25px 0;
}

.image_top{
  position: absolute;
  top: 10px;
  left: 10px;
}
.image_top img{
  max-width: 100px;
  animation: leftRight 2s ease-in-out infinite;
}

.bg_color{
  background-color: var(--color-bggray);
}


@keyframes leftRight {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(50px);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes upDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-200px);
  }
  100% {
    transform: translateY(0);
  }
}

p {
	font-size: 16px;
	font-weight: 400;
	color: var(--color-gray);
	margin-bottom: 0;
	text-transform: capitalize;
}

.call_details {
	background-color: var(--color-primary);
	color: var(--color-white);
	font-size: 18px;
	font-weight: 500;
	padding: 4px 20px;
	display: inline-flex;
	align-items: center;
	border-radius: 4px;
	border: 1px solid var(--color-primary);
	text-transform: capitalize;
}
.call_details:hover{
  color: var(--color-white);
}
.call_details i{
  font-size: 20px;
  color: var(--color-white);
  margin-left: 7px;
}

.section_heading h2 {
	font-size: clamp(28px, 5vw, 46px);
	font-weight: 600;
	color: var(--color-blue);
	margin-bottom: 20px;
	display: inline-block;
	position: relative;
	text-transform: capitalize;
}
.section_heading h2::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 5px;
	border-radius: 30px;
	background-color: var(--color-primary);
	left: 50%;
	bottom: -6px;
	transform: translateX(-50%);
}
.section_heading h2::before {
	content: "";
	position: absolute;
	width: 8px;
	height: 10px;
	border-radius: 4px;
	background-color: var(--color-secondary);
	left: 50%;
	bottom: -8px;
	transform: translateX(-50%);
	z-index: 1;
  animation: moveDot 5s linear infinite;
}

/* Animation Keyframes */
@keyframes moveDot {
  0% {
    left: 0;
    transform: translateX(0);
  }
  50% {
    left: 100%;
    transform: translateX(-100%);
  }
  100% {
    left: 0;
    transform: translateX(0);
  }
}


.bg_secondary{
  background-color: var(--color-secondary) !important;
}

main section{
  padding: 50px 0px;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--color-black);
  background-color: transparent;
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .header-container {
	background: var(--color-white);
	border-radius: 50px;
	padding: 5px 25px 5px 30px;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
    max-height: 60px;
    margin-right: 8px;
}

.header .logo h1 {
  font-size: 20px;
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-blue);
}

.btn_contact {
    border: 1px solid var(--color-secondary);
    background-color: var(--color-secondary);
    color: var(--color-white) !important;
    font-size: 18px;
    font-weight: 500;
    box-shadow: none;
    outline: none;
    padding: 6px 13px 6px 6px !important;
    border-radius: 4px;
    transition: all .5s;
    display: flex;
    align-items: center;
}
.btn_contact:hover{
  background-color: transparent;
  color: var(--color-secondary) !important;
}

.btn_contact i {
    font-size: 18px !important;
    margin-right: 7px;
}

.d_lgblock{
  display: block;
}

.d_lgnone{
  display: none;
}

@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

  .header .btn_getstarted {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

.navmenu a, .navmenu a:focus {
	color: var(--color-blue);
	padding: 18px 15px;
	font-size: 18px;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: space-between;
	white-space: nowrap;
	transition: 0.3s;
}

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover > a, .navmenu .active, .navmenu .active:focus {
	color: var(--color-primary);
}

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
	padding: 10px 20px;
	font-size: 15px;
	text-transform: none;
	color: var(--color-blue);
}

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--color-primary);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .d_lgblock{
  display: none !important;
}

.d_lgnone{
  display: block !important;
}
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
	display: none;
	list-style: none;
	position: absolute;
	inset: 60px 20px 20px 20px;
	padding: 10px 0;
	margin: 0;
	border-radius: 6px;
	background-color: var(--color-white);
	overflow-y: auto;
	transition: 0.3s;
	z-index: 9998;
	box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}

.navmenu a, .navmenu a:focus {
	padding: 10px 20px;
	font-family: "Rethink Sans", sans-serif;
	font-size: 17px;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: space-between;
	white-space: nowrap;
	transition: 0.3s;
	display: inline-block;
}

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--color-black), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--color-black);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--color-black);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--color-black);
    color: var(--color-secondary);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--color-white);
    border: 1px solid color-mix(in srgb, var(--color-secondary), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--color-primary);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--color-white);
  line-height: 0;
}

.scroll-top:hover {
  background-color: var(--color-primary);
  color: var(--color-secondary);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.herobanner {
	background: url(../images/banner.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top;
	padding-top: 221px;
	padding-bottom: 100px;
}
.herobanner .banner_heading h1 {
	font-size: clamp(30px, 5vw, 68px);
	font-weight: 600;
	color: var(--color-white);
	margin-bottom: 10px;
}
.herobanner .banner_heading h2 {
	font-size: clamp(28px, 5vw, 42px);
	font-weight: 600;
	color: var(--color-white);
	margin-bottom: 10px;
	text-transform: uppercase;
}
.herobanner .banner_heading h2 span{
  color: var(--color-primary);
}
.herobanner .banner_heading p{
  font-size: clamp(16px, 5vw, 18px);
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 0px;
}

.herobanner .banner_heading .tag_highlight{
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  gap: 20px 20px;
}
.herobanner .banner_heading .tag_highlight li{
  font-size: 20px;
  font-weight: 600;
  color: var(--color-yellow);
  margin-bottom: 6px;
  position: relative;
}
.herobanner .banner_heading .tag_highlight li::after{
  content: "";
  position: absolute;
  height: 100%;
  width: 2px;
  background-color: var(--color-white);
  right: -9px;
  top: 0;
}
.herobanner .banner_heading .tag_highlight li:last-child:after{
  content: "";
  display: none;
}
.herobanner .banner_heading .contatus_buttons {
	display: flex;
	align-items: center;
	gap: 20px 20px;
	flex-wrap: wrap;
}
.herobanner .banner_heading .contatus_buttons li > a{
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 18px;
  font-weight: 500;
  border: 0;
  display: flex;
  align-items: center;
  padding: 7px 26px; 
  border-radius: 4px;
}
.herobanner .banner_heading .contatus_buttons li > a > i{
  font-size: 20px;
  color: var(--color-white);
  margin-right: 7px;
}


.about .about_point{
  display: grid;
  gap: 30px 0px;
}
.about .about_point .cardsss {
  display: flex;
  align-items: start;
}
.about .about_point .cardsss .icon {
	background-color: transparent;
	width: 70px;
	height: 70px;
	border-radius: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	border: 1px solid var(--color-yellow);
	min-width: 70px;
	min-height: 70px;
}

.about .about_point .cardsss .icon i {
  font-size: 32px;
  color: var(--color-yellow);
}

.about .about_point .cardsss:nth-child(3n+1) .icon {
  border-color: var(--color-yellow);
}
.about .about_point .cardsss:nth-child(3n+1) .icon i {
  color: var(--color-yellow);
}

.about .about_point .cardsss:nth-child(3n+2) .icon {
  border-color: var(--color-primary);
}
.about .about_point .cardsss:nth-child(3n+2) .icon i {
  color: var(--color-primary);
}

.about .about_point .cardsss:nth-child(3n) .icon {
  border-color: var(--color-primarytwo);
}
.about .about_point .cardsss:nth-child(3n) .icon i {
  color: var(--color-primarytwo);
}


.about .content h5 {
	font-size: 22px;
	font-weight: 500;
	color: var(--color-black);
	margin-bottom: 5px;
  text-transform: capitalize;
}

.service .service_card {
	background: linear-gradient(238deg, rgba(22, 22, 22, 0.37) 0%, rgb(10, 10, 10) 100%), url(../images/tiffincenter1.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top;
	padding: 30px 16px;
	border-radius: 10px;
	height: 100%;
}
.service .service_card.two{
	background: linear-gradient(238deg, rgba(22, 22, 22, 0.37) 0%, rgb(10, 10, 10) 100%), url(../images/tiffincenter2.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top;
	padding: 30px 16px;
	border-radius: 10px;
	height: 100%;
}
.service .service_card.three{
	background: linear-gradient(238deg, rgba(22, 22, 22, 0.37) 0%, rgb(10, 10, 10) 100%), url(../images/tiffincenter3.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top;
	padding: 30px 16px;
	border-radius: 10px;
	height: 100%;
}
.service .service_card.four{
	background: linear-gradient(238deg, rgba(22, 22, 22, 0.37) 0%, rgb(10, 10, 10) 100%), url(../images/tiffincenter4.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top;
	padding: 30px 16px;
	border-radius: 10px;
	height: 100%;
}
.service .service_card h6 {
	font-size: clamp(20px, 5vw, 30px);
	font-weight: 500;
	color: var(--color-white);
	display: flex;
	align-items: center;
	text-transform: capitalize;
	margin-bottom: 4px;
}
.service .service_card h5 {
	font-size: clamp(20px, 5vw, 30px);
	font-weight: 500;
	color: var(--color-primary);
	text-transform: capitalize;
	margin-bottom: 10px;
}
.service .service_card h5 span{
  color: var(--color-white);
}
.service .service_card p {
	font-size: 18;
	font-weight: 500;
	color: var(--color-white);
  text-transform: capitalize;
  margin-bottom: 10px;
}

.service .service_card ul{
  display: grid;
  gap: 1px 0px;
}
.service .service_card ul strong{
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 0px;
  color: var(--color-white);
}
.service .service_card ul li{
  font-size: 16px;
  font-weight: 400;
  color: var(--color-white);
  text-transform: capitalize;
  padding-left: 20px;
  position: relative;
}
.service .service_card ul li::after {
	content: "";
	position: absolute;
	width: 14px;
	height: 2px;
	background-color: var(--color-white);
	left: 0;
	top: 10px;
}

/* .location .list_location{
  background-color: var(--color-bggray);
  border-radius: 10px;
  padding: 14px 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
} */
.location .list_location ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 15px;
}
.location .list_location ul li{
  position: relative;
  font-size: 18px;
  font-weight: 500;
  display: inline-block;
  text-transform: capitalize;
}
.location .list_location ul li::after {
	content: "";
	position: absolute;
	width: 2px;
	height: 100%;
	background-color: var(--color-black);
	right: -6px;
	top: 0;
}
.location .list_location ul li:nth-child(5n+1) {
  color: var(--color-yellow);
}
.location .list_location ul li:nth-child(5n+2) {
  color: var(--color-primary);
}
.location .list_location ul li:nth-child(5n+3) {
  color: var(--color-primarytwo);
}
.location .list_location ul li:nth-child(5n+4) {
  color: var(--color-blue);
}
.location .list_location ul li:nth-child(5n) {
  color: var(--color-secondary);
}

.plan .plans_card {
	padding: 26px 13px;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
	border-radius: 4px;
	background-color: var(--color-white);
  text-align: center;
}
.plan .plans_card .price {
    font-size: 30px;
    font-weight: 500;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    margin-bottom: 0;
}
.plan .plans_card .thaliname{
  font-size: 18px;
  font-weight: 500;
  color: var(--color-blue);
  margin-bottom: 10px;
    text-align: center;
}
.plan .plans_card .call_but {
  display: grid;
  gap: 15px;
}
.plan .plans_card .call_but .callss{
  background-color: var(--color-secondary);
  border: 1px solid var(--color-secondary);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-white);
  border-radius: 4px;
  width: 100%;
  padding: 10px 10px;
}
.plan .plans_card .call_but .whatsappp{
  background-color: transparent;
  border: 1px solid var(--color-primary);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-primary);
  border-radius: 4px;
  width: 100%;
  padding: 10px 10px;
}
.plan .plans_card .plan_list {
    margin-top: 12px;
    display: grid;
    gap: 4px 0;
}
.plan .plans_card .plan_list .border_coustem {
    border-bottom: 1px solid #959595;
    padding-bottom: 8px;
}
.plan .plans_card .plan_list .dayplan h6 {
    display: flex;
    font-size: 20px;
    width: 100%;
    font-weight: 500;
    color: var(--color-black);
    white-space: nowrap;
    margin-bottom: 0;
}
.plan .plans_card .plan_list .priceday {
    font-size: 20px;
    width: 100%;
    font-weight: 500;
    color: var(--color-black);
    display: flex;
    justify-content: end;
}
.plan .plans_card .plan_list .priceday b{
  font-size: 12px;
  font-weight: 400;
  color: var(--color-gray);
}
.plan .plans_card .freehome {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-gray);
    margin-bottom: 0;
    margin-top: 20px;
    text-transform: capitalize;
}

.footer {
  padding: 20px 0px;
}
.footer .footeriocn{
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: center;
}
.footer .footeriocn li > a {
    background-color: transparent;
    border: 1px solid var(--color-secondary);
    width: 60px;
    height: 60px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer .footeriocn li > a > i{
  font-size: 27px;
  color: var(--color-secondary);
}
.footer .footeriocn li > a.face {
    background-color: transparent;
    border: 1px solid var(--color-primary);
    width: 60px;
    height: 60px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer .footeriocn li > a.face > i{
  font-size: 27px;
  color: var(--color-primary);
}
.footer .footeriocn li > a.insta {
    background-color: transparent;
    border: 1px solid var(--color-yellow);
    width: 60px;
    height: 60px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer .footeriocn li > a.insta > i{
  color: var(--color-yellow);
}

.footer .logo img{
  max-width: 300px;
}


/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/

@media(max-width:767px){
  .herobanner {
	padding-top: 121px;
	padding-bottom: 48px;
}
}
@media(max-width:480px){
 .image_top img {
	max-width: 76px;
}
.image_top {
	top: 0px;
	left: 2px;
}
.herobanner .banner_heading .tag_highlight li {
	font-size: 14px;
}

.herobanner .banner_heading .tag_highlight {
	gap: 8px 20px;
}

.btn_contact {
    font-size: 12px;
    padding: 4px 10px 4px 4px !important;
}
.btn_contact i {
    font-size: 13px !important;
    margin-right: 4px;
}
.footer .logo img {
    max-width: 183px;
}
.header .logo img {
    max-height: 24px;
    margin-right: 8px;
}

.plan .plans_card .plan_list .dayplan h6 {
    font-size: 16px;
}
.plan .plans_card .plan_list .priceday {
    font-size: 16px;
}

}




