html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Neue Haas Grotesk Display Pro';
    font-weight: 400;
    font-style: normal;
    margin: 0px;
    padding: 0px;
    font-size: 16px;  
    color: #000;
    overflow-x: hidden;
  
}


@font-face {
    font-family: 'Neue Haas Grotesk Display Pro';
    src: url('../fonts/NeueHaasDisplay-Light.woff2') format('woff2'),
        url('../fonts/NeueHaasDisplay-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Haas Grotesk Display Pro';
    src: url('../fonts/NeueHaasDisplay-Black.woff2') format('woff2'),
        url('../fonts/NeueHaasDisplay-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Haas Grotesk Display Pro';
    src: url('../fonts/NeueHaasDisplay-Bold.woff2') format('woff2'),
        url('../fonts/NeueHaasDisplay-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Haas Grotesk Display Pro';
    src: url('../fonts/NeueHaasDisplay-BoldItalic.woff2') format('woff2'),
        url('../fonts/NeueHaasDisplay-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Haas Grotesk Display Pro';
    src: url('../fonts/NeueHaasDisplay-LightItalic.woff2') format('woff2'),
        url('../fonts/NeueHaasDisplay-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Haas Grotesk Display Pro';
    src: url('../fonts/NeueHaasDisplay-Mediu.woff') format('woff2'),
        url('../fonts/NeueHaasDisplay-Mediu.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Neue Haas Grotesk Display Pro';
    src: url('../fonts/NeueHaasDisplay-Thin.woff2') format('woff2'),
        url('../fonts/NeueHaasDisplay-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Haas Grotesk Display Pro';
    src: url('../fonts/NeueHaasDisplay-Roman.woff2') format('woff2'),
        url('../fonts/NeueHaasDisplay-Roman.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}





ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
    font-family: 'Neue Haas Grotesk Display Pro';
   
}

p {
    font-family: 'Neue Haas Grotesk Display Pro';
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 19px;
    line-height: 32px;
    color: #000;
}

img {
    max-width: 100%;
    border: 0;
    height: auto;
    /* border-radius: 8px; */
}

.clear {
    clear: both;
    float: none;
    width: 100%;
}

.clearfix::after {
    display: block;
    content: "";
    clear: both;
}

a {
    text-decoration: none !important;
    transition: all 0.2s ease-in;
    color: #000;
    font-family: 'Neue Haas Grotesk Display Pro';
   
}

h1,
h2,
h3,
h4,
h5,
h6 {
     font-family: 'Neue Haas Grotesk Display Pro';
}

a:hover {
    color: #000;
}

a,
span {
    display: inline-block;
}

:focus {
    box-shadow: none !important;
    outline: none !important;
}

@media (min-width: 1366px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1250px;
    }
}

@media (min-width: 1440px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1350px;
    }
}

@media (min-width: 1600px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1500px;
    }
}




/*css start*/


.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 1px;
    background: #f47620;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .5s cubic-bezier(.77, 0, .175, 1);
}

.navbar-nav .nav-link:hover::after{
    transform: scaleX(1);
    transform-origin: left;
}


.navpage-header {
    position: relative;
    top: 0;
    right: 0;
    left: 0;
    z-index: 999;   
    background-image: url(../images/header-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
}


/* STICKY STYLES */
.navpage-header.is-sticky {
    position: fixed;
    box-shadow: 0 5px 16px rgb(238 230 230 / 23%);
    padding: 0px 0;
    backdrop-filter: blur(10px);
    animation: slideDown 0.5s ease-out;
    background: #00000054;
    z-index: 9999;
    color: #000;
}

.navpage-header.is-sticky .logo-box img {
    max-width: 70%;
}


@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

i.fa.fa-bars {
    color: #000;
}

.navbar-toggler {
    background-color: #000;
}

.navbar {
    align-items: center;
    padding: 0;
    border-top: 1px solid #afc8ad;
    text-align: center;
    justify-content: center;
}

.navbar-expand-lg .navbar-collapse {
    justify-content: center;
}

.btn-secondary {
    font-size: 19px;
    color: #fff;
    font-weight: 400;
    background-color: transparent;
    border-color: transparent;
}

.btn-secondary:hover {
    color: #000;
    background-color: transparent;
    border-color: transparent;
    transition: 0.5s ease-in-out;
}

.navbar .nav-link {
    font-size: 22px;
    color: #000;
    font-weight: 500;
    transition: 0.5s ease-in-out;
    position: relative;
    padding: 0;
}

.nav-item {
    padding: 15px 20px 15px 20px;
    display: flex;
    align-items: center;
    color: #000;
    border-radius: 100px;
    background: transparent;
    transition: 0.6s ease-in-out;
}



.dropdown-item:focus,
.dropdown-item:hover {
    background-color: transparent;
}

.dropdown-item {
    padding: 8px;
    position: relative;
}


.dropdown-menu li:hover {
    background: #00589c;
    transition: 0.7s ease-in-out;
}

.dropdown-menu li:hover a {
    color: #fff;
    transform: translateX(5px);
    transition: 0.3s ease-in-out;
}

.btn-secondary:focus {
    transition: 0.5s ease-in-out;
    background-color: transparent;
    border-color: transparent;
    box-shadow: none;
}


.sub-menu {
    /* padding: 10px; */
    background-color: #fff;
    color: #000;
    border-radius: 5px;
}

.dropdown-menu {
    padding: 0;
}


@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);

    }

    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
        margin-top: 0;
    }
}


.navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
    top: 40px;
}



.nav-link:hover {
color: #f47620;
}


.nav-links.social-links {
    padding-left: 50px;
}
.nav-num.text-end {
    padding-right: 50px;
}


/* ------------home-page-css------------- */

.owl-dots span {
    background: #fff;
    width: 15px;
    height: 15px;
    border-radius: 100px;
}

 .owl-dot.active span {
    background: #f47620;
}

.owl-dots {
    text-align: center;
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 0;
    position: absolute;
    bottom: 35px;
    right: 0;
    left: 0;
}


 .owl-carousel .owl-nav.disabled {
    display: none;
}

.owl-nav i{
    display: none;
}

.owl-nav {
    display: none;
}



.banner-title {
    font-size: 72px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 20px;
        position: relative;
    z-index: 11;
}

.home-banner-content {
    position: absolute;
    bottom: 25%;
    width: 50%;
    left: 50px;
    z-index: 9;
}

.home-banner-section{
    position: relative;
    z-index: 1;
       
}

/* #bannerslider {
    display: block !important;
    min-height: 845px; 
    overflow: hidden;
}

#bannerslider .item {
    min-height: 845px;
}

#bannerslider img {
    width: 100%;
    height: 845px;
    object-fit: cover;
} */

.banner-img{
    position: relative;
    z-index: -1;
}

 .banner-img::before {
    height: 100%;
    width: 100%;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    background-image: url(../images/banner-overlay.webp);
    width: 100%; 
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: 2;
} 


.nav-num a {
    font-size: 24px;
    color: #000;
    font-weight: 400;
}
.nav-num a:hover {
    color: #f47620;
}
.nav-num img {
    padding-right: 15px;
}



.cmn-btn { 
  background-color: #f47620;
  border-radius: 5px;
  /* box-shadow: #0c93c5 0px 6px 0 0, #0c93c5 -4px 5px 0 1px; */
 box-shadow: #b55615 0px 4px 0 0, #b55615 -4px 5px 0 2px;
  color: #fff;
  font-size: 18px;
  font-weight: 500; 
  padding: 10px 30px;
  text-align: center;
  transition: 0.5s ease-in-out;
}

.cmn-btn:focus {
  text-decoration: none;
}

.cmn-btn:hover {
    transition: 0.5s ease-in-out;
    color: #fff;
    background: #034827;  
    box-shadow: #3f634a 0px 0px 0 0, #3f634a -4px -4px 0 2px;
}

.cmn-btn:active {
  box-shadow: rgba(0, 0, 0, .125) 0 3px 5px inset;
  outline: 0;
}

.cmn-btn:not([disabled]):active {
  box-shadow: #fff 2px 2px 0 0, #000 2px 2px 0 1px;
  transform: translate(2px, 2px);
}




.banner-btn {
    padding-top: 15px;
    display: flex;
    gap: 20px;
}


.home-title {
    color: #093717;
    font-size: 55px;
    font-weight: 400;   
}


.inner-main-container {
    padding: 50px 50px;
    background: #ddedd9;
    margin: 100px 50px;
    border-radius: 10px;
    overflow: hidden;
}

.img-r img{
    border-radius: 10px;
    overflow: hidden;
}

.img-r{
    border-radius: 10px;
    overflow: hidden;
}




/* -----scrolling image-css-------- */


.container-inview.hide {
    display: none;
}

.container-scroll {
    padding: 0;
    height: 100%;
}

.reveal {
    visibility: hidden;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}


/* ----------end------------ */


.calendar-content {
    display: flex;
}

.calendar-content {
    display: flex; 
    justify-content: space-between;
    align-items: center;
}

.calendar-text {
    width: 70%;
}

.calendarinfo span {
    color: #093717;
    font-size: 18px;
    font-weight: 300;
}

.calendarinfo h6 {
    color: #093717;
    font-size: 22px;
    font-weight: 400;
}

.calendarinfo {
    text-align: center;
    background: #ddedd9;
    border-radius: 10px;
    padding: 15px 0px;
}

.home-sec2 .inner-main-container {
    background: #093717;
}

.home-sec2 p{
    color: #fff;
}

.calendar-box {
    background: #3f634a;
    padding: 12px;
    border-radius: 10px;
    transition: 0.7s ease-in-out;
    border: 1px solid transparent;
}

.calendar-box:hover {
 transition: 0.7s ease-in-out;
border: 1px solid #ddedd9;
background: transparent;
}

.calendarbox-title{
    font-size: 24px;
    color: #fff;
    font-weight: 400;
}

.calendar-text p {
    font-size: 17px;
    line-height: 29px;
    margin: 0;
}

.home-place-img {
    height: 100%;
    object-fit: cover;
}

.home-place-img img{
    height: 100%;
    object-fit: cover;
}

.calendar-btn span {
    font-size: 22px;
    font-weight: 300;
    color: #ddedd9;
    border-bottom: 1px solid #ddedd9;
    margin-right: 15px;
    transition: 0.7s ease-in-out;
}

.calendar-btn:hover img{
  left: 15px;
  transition: 0.7s ease-in-out;
}

.calendar-btn img {
    position: relative;
    left: 0px;
      transition: 0.7s ease-in-out;
}

.home-sec3-inner{
    background-image: url(../images/home-sec3-bg.webp);
    padding: 100px 50px;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 0px 50px;
    border-radius: 10px;
}

.meaningful-topcontent {
    text-align: center;
}

.meaningful-box {
    background: #fff;
    padding: 30px 10px;
    height: 100%;
    border-radius: 10px;
    text-align: center;
  transition: 0.7s ease-in-out;

}

.meaningful-box:hover {
 transition: 0.7s ease-in-out;
 background-color: #034827;
 transform: translate(0px,5px);
}

.meaningful-box:hover p{
color: #fff;
}

.meaningful-box:hover .meaningful-title{
color: #fff;
}


.meaningful-box  p{
  margin: 0;
  font-size: 18px;
  line-height: 29px;
}

.meaningful-box .meaningful-title {
    color: #093717;
    font-size: 22px;
    font-weight: 400;
}

.home-sec4 .inner-main-container {
    background: #093717;
    padding: 70px 50px;
}

.member-text p{
    color: #fff;

}

.member-text {
    border-left: 1px solid #53735d;
    padding-left: 40px;
    margin-left: 40px;
    height: 100%;
}

.home-sec5{
    padding: 0px 50px 100px 50px;
}

.insight-title{
    color: #093717;
    font-size: 24px;
    font-weight: 400;
    margin-top: 20px;
}

.insight-text a{
     color: #093717;
}
.insight-text a:hover{
     color: #f47620;
}

.insight-card a{
    display: block;
}


.insight-card {   
    padding: 0px;
    border-radius: 10px;
    transition: 0.7s ease-in-out;
   height: 100%;
    overflow:hidden;
  
}

.insight-card:hover img{
    transform:scale(1.08);
    transition: 0.7s ease-in-out;
   
}
.insight-img img{   
    transition: 0.7s ease-in-out;
}

.insight-img {   
    transition: 0.7s ease-in-out;
}












/* ----------------------blog-listing-css-------------------------- */


.inner-banner-section {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.inner-banner-img{
    overflow: hidden;
}

.inner-banner-img img{
    overflow: hidden;
}

.inner-banner-section::before {
    height: 100%;
    width: 100%;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    background-image: url(../images/banner-overlay.webp);
    width: 100%;
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: 2;
}


.inner-banner-text {
    position: absolute;
    top: 50%;
  
}

.inner-banner-title {
    font-size: 72px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    padding-left: 50px;
    position: relative;
    z-index: 9;
}



.home-blog-img img {
    border-radius: 10px;
}


.blog-section {
    padding: 100px 50px 50px 50px;
}

.blog-img a {
    width: 100%;
}
.blog-text p {
    padding: 10px 0px;
}
.blog-search .blog-submit {
    position: absolute;
    right: 0px;
    top: 0px;
}

.blog-img {
    border-radius: 8px;
    transition: 0.7s ease-in-out;
    overflow: hidden;
}


.blog-title {
    font-size: 28px;
    color: #333333;
    font-weight: 500;
}

.blog-search button {
    font-size: 22px;
    color: #000;   
    transition: 0.5s ease-in-out;
    font-weight: bold;
    border: 0;
    background: none;
}

.blog-search input {
    width: 90%;
}

.blog-listing-title {
    color: #333333;
    font-size: 31px;
    font-weight: 500;
}


.inner-blog-card-text {
    padding: 30px;
    transition: 0.5s ease-in-out;
    border: 1px dashed #fff;
}

.blog-search-box {
    padding: 25px 25px 200px 25px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.blog-search {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 12px;
    margin-right: 10px;
}


.blog-search input{   
    border: none;  
}


.blog-categories-list {
    margin-top: 20px;
}

.blog-categories ul li {
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    border-bottom: 1px solid #999999;
    padding: 20px 0px 20px 0px;
    position: relative;
    list-style: none !important;
}

.blog-categories ul {
padding: 0 !important;
}



.inner-blog-img {
    border-radius: 8px;
}

.inner-blog-img img {
    border-radius: 8px;
}

.home-blog-text p {
    font-size: 18px;
    line-height: 28px;
}

.blog-categories ul li a {
    display: inherit !important;
    transition: 0.5s ease-in-out;
}

.blog-categories a:hover {
    color: #7a9e8b;
    transition: 0.5s ease-in-out;
}

.blog-banner-text h1 {
    font-size: 30px;
    font-weight: 400;
}

.blog-banner-text h3 {
    font-size: 30px;
    font-weight: 600;
    padding-top: 15px;
}

.blog-banner-text li {
    padding-bottom: 5px;
    font-size: 18px;
}

.blog-detail-btn a {
    text-transform: lowercase;
}




/* -----------------blog-detail-csss------------------- */

.blog-banner-text {
    margin: 30px 0px;
}

.blog-detail-title {
    color: #000;
    font-size: 26px;
    font-weight: 500;
}

.blog-contact-title {
    color: #000;
    font-size: 26px;
    font-weight: 500;
}

.blog-detail ul li{
list-style-type: disc;
}

.blog-detail ul{
padding-left: 20px;
}

.blog-detail ol{
padding-left: 20px;
}

.blog-detail ol li{
list-style: number;
}


.blog-detail  h2{
font-size: 32px;
font-weight: 600;
}

.blog-detail  h3 {
font-size: 28px;
font-weight: 600;
}

.blog-detail  h4 {
font-size: 22px;
font-weight: 600;
}

.blog-detail  h5 {
font-size: 22px;
font-weight: 600;
}

.blog-detail  h6 {
font-size: 20px;
font-weight: 600;
margin-top: 20px;
}


.blog-detail p a {
color: #da090f;
}




/* -------------------end---------------------- */


/* -------------------------error-page---------------------- */


.error-title {
    color: #ddedd9;
    font-weight: 500;
    font-size: 80px;
    text-align: center;
    margin-top: 10px;  
    -webkit-text-stroke: 1px #F8F8F8;
    text-shadow: 0px 1px 4px #093717;
    color: #093717;
}


.error {
    text-align: center;
    position: relative;
}

.error .code {
    font-size: 15rem;
    letter-spacing: 2px;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #093717;
    text-shadow: 0px 0px #f47620, 11px 9px #093717;
    line-height: 220px;
}

.error p {
  font-weight: 400;
  font-size: 24px;
  padding-bottom: 20px;
  color: #000;
}


/* --------------thanku-page-css---------------- */

.no-banner-pad {
    padding: 100px 0px 100px 0px;
   
}

.message {
    padding: 80px 50px;
    text-align: center;
    max-width: 800px;
    margin: auto;
    transition: 0.7s ease-in-out;
    position: relative;
    box-shadow: #b55615 9px 8px 0 0, #f47620 -7px -5px 0 2px;
    background-color: #ffffff;
    border-radius: 20px;
}

.thanku-text {
    font-size: 105px;
    color: #f47620;
      text-shadow: -2px 2px 0 #f47620, 3px 3px 0 #f9b178, 6px 6px 0 #f6a05d, 6px 6px 0 #f18d41, 0px 0px 0 #eb7a26;
    font-weight: bold;
    /* text-shadow: -0.0075em 0.0075em 0 #fffaf7, 0.005em 0.005em 0 #f8b988, 0.01em 0.01em 0 #f7ac71, 0.015em 0.015em 0 #f69f59, 0.02em 0.02em 0 #f59242, 0.025em 0.025em 0 #f4862b, 0.03em 0.03em 0 #ef7b21; */
}

.message p{
  font-size: 25px;
  color: #093717;
  font-weight: 600;
  padding: 10px 0px 20px 0px;
  letter-spacing: 2px;
}



/* ---------------------------end-------------------------- */



/* ----------------------footer-section------------------------- */



.footer {
    padding: 0px 40px;
}

.footer-left {
    background: #093717;
    height: 100%;
    border-radius: 10px;
    padding: 30px;
}

.footer-right {
    background: #ddedd9;
    padding: 30px;
    border-radius: 10px;
    height: 100%;
}

.footer-left p {
    color: #fff;
    font-size: 19px;
}

.footer-btn .cmn-btn{
    border: 0;
}

.footer-btn {
    margin-top: 20px;
    margin-left: 10px;
}

.footer input[type=email] {
    width: 100%;
    box-sizing: border-box;
    border-radius: 10px;   
    background: #ddedd9;
    padding: 15px;
    color: #000;
    border: none;
    font-size: 19px;
}

.footer input::placeholder{  
    color: #000;
    font-size: 19px;
    font-weight: 500;
}

.footer-content .footitl{
font-size: 32px;
font-weight: 400;
color: #093717;
margin: 0px 0px 20px 0px;
}


.footer-email {
    font-size: 18px;
    color: #fff;
    font-weight: 500;  
    width: 100%;
    background: transparent;   
    
}
.footer-content li{
    font-size: 19px;
    color: #000;
    font-weight: 300;
    padding-bottom: 10px;
}

.footer-timings li{
    padding-bottom: 5px;
}
.footer-email{
    position: relative;
}
.footer-email img {
    position: absolute;
    top: 15px;
    right: 20px;
}
.social-icons{
    margin-top: 20px;
}
.footer-content a {
    font-size: 19px;
    color: #000;
    font-weight: 300;
    transition: 0.7s ease-in-out;
}
.social-title{
    font-size: 20px;
    padding-top: 10px;
    color: #fff;
    text-transform: uppercase;
}

.social-links ul li i {
    color: #fff;
    font-size: 25px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    background-color: #093717;
    border-radius: 50px;
    text-align: center;
    align-items: center;
    margin-right: 5px;
    transition: 0.5s ease-in-out;
}

.social-links ul li i:hover{
background-color: #f47620;
transition: 0.5s ease-in-out;
}

.social-header {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    padding-bottom: 0px;
    padding-top: 20px;
}

.copy-right {
    display: flex;
    justify-content: space-between;
    padding: 40px 0px;
}
.copy-right p{
   color: #000;
   font-size: 19px;
   margin: 0;
}

.copy-right i {
    color: #bb0203;
}
.copy-right a {color: #000;}

.copy-right a:hover {color: #f47620;}

.footer-content li a:hover  {
    color: #f47620;   
    transition: 0.7s ease-in-out;
}











/* ------media-query----- */


@media (max-width:1600px){
.logo-box { max-width: 80%;}
.navbar .nav-link { font-size: 20px;}
.banner-title { font-size: 65px;}
.inner-main-container { margin: 80px 50px;}
.home-title { font-size: 50px;}
.calendarinfo h6 {  font-size: 18px;}
.calendarinfo span {  font-size: 16px;  }
.calendarinfo { padding: 10px 0px;}
.calendarbox-title { font-size: 22px;}
.home-sec3-inner { padding: 80px 50px;}
.meaningful-box .meaningful-title { font-size: 20px;}
.insight-title { font-size: 22px; margin-top: 20px;}
.home-sec5 {padding: 0px 50px 80px 50px;}
.footer-content .footitl { font-size: 28px;  margin: 0px 0px 15px 0px;}
.footer-content a { font-size: 18px;}
.footer-content li  { font-size: 18px;}
.copy-right p{ font-size: 18px;}
.copy-right a{ font-size: 18px;}
.footer input[type=email] {padding: 10px 15px;}
.footer input::placeholder{ font-size: 17px;}
p { font-size: 18px;}
.no-banner-pad { padding: 80px 0px 80px 0px;}
.error .code { font-size: 13rem;    line-height: 200px;}
.error-title { font-size: 60px;}
.thanku-text { font-size: 85px;}
.message p { font-size: 22px;  padding: 0px 0px 10px 0px; }
.message {max-width: 700px;}


}


@media (max-width:1440px){
.nav-num a { font-size: 22px;  }
.banner-title { font-size: 60px; }
.home-title { font-size: 45px; }
.calendarinfo h6 { font-size: 15px;  }
.calendarinfo span { font-size: 14px;}
.calendar-text p {  font-size: 16px;    line-height: 27px;}
.calendarbox-title { font-size: 20px;     margin-bottom: 5px;    }
.calendar-btn span { font-size: 20px;  }
.calendar-btn img { width: 22px;}


}

@media (max-width:1366px){
.social-links ul li i { font-size: 20px;  width: 40px;  height: 40px;  line-height: 40px;}
.nav-num img {  padding-right: 10px;  width: 32px;}
.nav-num a { font-size: 20px;}
.navbar .nav-link { font-size: 18px; }
.logo-box {max-width: 75%;}
.nav-item { padding: 10px 20px 10px 20px;}
.banner-title { font-size: 52px; }
.cmn-btn {font-size: 16px; padding: 10px 30px;}
.inner-main-container {margin: 70px 35px;}
.inner-main-container { padding: 40px 35px;}
.home-title {font-size: 40px;}
p { font-size: 17px; line-height: 30px; }
.calendar-btn span { font-size: 18px;  }
.calendar-btn:hover img { left: 5px;  }
.calendar-text p { font-size: 15px; line-height: 26px; }
.home-sec3-inner { padding: 70px 35px;  margin: 0px 35px;}
.meaningful-box p { font-size: 16px;  line-height: 27px;}
.meaningful-box {  padding: 25px 10px;}
.meaningful-box .meaningful-title { font-size: 18px; }
.home-sec4 .inner-main-container { padding: 60px 35px;}
.insight-title {font-size: 20px; margin-top: 15px;}
.home-sec5 { padding: 0px 35px 60px 35px; }
.footer { padding: 0px 30px;}
.footer-content .footitl { font-size: 26px; margin: 0px 0px 10px 0px;}
.footer-left p { font-size: 17px;}
.footer-left { padding: 30px 20px;}
.footer-content a {font-size: 16px; }
.footer-content li {font-size: 16px; }
.copy-right p {font-size: 16px;}
.copy-right a {font-size: 16px;}
.copy-right { padding: 30px 0px;}
.no-banner-pad { padding: 60px 0px 60px 0px;}
.error p { font-size: 22px;}
.thanku-text {font-size: 70px;}
.message p {font-size: 18px;}
.message {padding: 55px 50px; max-width: 600px;}








}