@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* ------ GENERAL ------ */
* {
    scroll-behavior: smooth;
    transition: 0.5s ease-in;
}

:root {
    --primary: #F09154;
    --secondary: #F53569;
    --dark: #313131;
    --grey: #636363;
    --light: #FBE1D0;
    --white: #fff;
    --primaryfont: "Montserrat", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--primaryfont);
    background-color: var(--bg);
    overflow-x: hidden;
}
main{
  overflow: hidden;
}

a {
    color: var(--secondary);
    text-decoration: none !important;
    font-family: var(--primaryfont);
}

a:hover {
    color: var(--primary);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--titlefont);
}

ul,
li {
    list-style: none;
}
p{
    font-size: 16px;
    font-weight: 500;
    line-height: 28px; 
    letter-spacing: 3px;
    text-align: justify;
    font-family: var(--primaryfont);
}
.padding-section{
    padding: 120px 0;
}
.padding-section-secondary{
  padding: 40px 0;
}

.scrolled-offset {
    margin-top: 100px;
}
.bg-gradiant{
  background: linear-gradient(0deg, var(--primary), var(--secondary));
}
.bg-dark-fcs{
  background: var(--dark);
  color: var(--white);
}
.bg-dark-fcs .title span, .bg-gradiant .title span{
  background-color: #fff;
}
.bg-light-fcs{
  background-color: var(--light);
}

/* ------ HEADER ------ */

.top-header{
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}
.top-header img {
  width: 22px;
}

.logo img {
  width: 200px;
}
header {
  position: fixed;
  top: -1px;
  z-index: 999;
  width: 100%;
  transition: top 1s;
}
.main-header{
  background:
    linear-gradient(
      to left, 
      var(--secondary)  0%,
      var(--primary)  100%
    )
    left 
    bottom
    var(--white)   
    no-repeat; 
  background-size:100% 3px ;
  padding: 10px 0px;
}
.main-header ul.nav {
  border: 2px solid var(--light);
  padding: 7px;
}
.main-header a.nav-link {
  font-size: 16px;
  letter-spacing: 1px;
  padding: 4px 20px;
  color: var(--grey);
  font-weight: 600;
}
a.fcs-btn.mobile-menu{
  padding: 10px;
}
.mobile-menu img {
  width: 20px;
}
a.nav-link.active{
  background: linear-gradient(45deg, color-mix(in srgb, var(--primary), transparent 70%), color-mix(in srgb, var(--secondary), transparent 70%));
  color: var(--secondary);
}
a.nav-link:hover {
  background: linear-gradient(45deg, color-mix(in srgb, var(--secondary), transparent 70%), color-mix(in srgb, var(--primary), transparent 70%));
  color: var(--secondary);
}
.offcanvas-body .nav{
  flex-direction: column;
}
.border-gradient {
  height: 1%;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  width: 100%;
  position: absolute;
  bottom: 0px;
}
.why-choose-us-box .border-gradient{
  height: 2%;
}
.form-control {
    border-radius: 0px !important;
}

/* ------ BUTTONS ------ */
a.fcs-btn, button.fcs-btn {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  padding: 8px 20px;
  font-weight: 600;
  border: 0px;
  color: var(--white);
}
a.fcs-btn:hover, button.fcs-btn:hover {
  background: linear-gradient(45deg, var(--secondary), var(--primary));
  color: var(--white);
  border: 0px;
  box-shadow: color-mix(in srgb, var(--primary), transparent 50%) 0px 7px 29px 0px;
}
.fcs-btn.fcs-btn-single{
  background: var(--primary);
}
.fcs-btn.fcs-btn-single:hover{
  background: color-mix(in srgb, var(--primary), transparent 25%);
}
.fcs-btn-secondary{
  color: var(--white);
  border: 2px solid var(--white);
  padding: 8px 20px;
  font-weight: 500;
}
.fcs-btn-secondary:hover{
  background: var(--white);
  color: var(--dark);
}

/* ------ TITLE ------ */
.title span{
  background: linear-gradient(45deg, color-mix(in srgb, var(--primary), transparent 70%), color-mix(in srgb, var(--secondary), transparent 70%));
  padding: 5px 20px;
  margin-bottom: 20px;
}
.title h5 {
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(to right, var(--primary), var(--secondary)); 
  -webkit-text-fill-color: transparent; 
  -webkit-background-clip: text; 
  display: inline;
}
.title h3{
  color: var(--dark);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 2px;
  margin-top: 10px;
}

.title.associates h5 {
    font-size: 54px;
}

/* ------ CAROUSEL ------ */
.carousel{
  margin-top: 100px;
}
.carousel-item img{
  height: 86vh;
  object-fit: cover;
}
.carousel .carousel-caption {
  right: 10%;
  bottom: 15%;
  top: 15%;
  left: 10%;
  color: var(--dark);
  /* text-align: start ; */
}
.carousel .carousel-caption h5{
  font-size: 22px;
  letter-spacing: 2px;
}
.carousel .carousel-caption h2{
  font-size: 46px;
  font-weight: 900;
  letter-spacing: 6px;
}

/* ------ ABOUT MORE ------ */
.about-more-one{
  background-image: url("../assets/img/analyze-your-business.webp");
  object-fit: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.about-more-two{
  background-image: url("../assets/img/on-time-service.webp");
  object-fit: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.about-more-three{
  background-image: url("../assets/img/a-team-of-professionals.webp");
  object-fit: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.about-more-one-bg{
  background: linear-gradient(180deg, color-mix(in srgb, var(--primary), transparent 30%), color-mix(in srgb, var(--secondary), transparent 30%));
  padding: 60px 40px;
  height: 100%;
}
.about-more-one-bg .about-more-icon {
  background: #00000075;
  min-height: 180px;
  padding: 20px;
}
.about-more-two-bg{
  background: linear-gradient(0deg, color-mix(in srgb, var(--primary), transparent 30%), color-mix(in srgb, var(--secondary), transparent 30%));
  padding: 60px 40px;
  height: 100%;
}
.about-more-two-bg .about-more-icon {
  background: #011c51b9;
  min-height: 180px;
  padding: 20px;
}
.about-more-three-bg{
  background: #3b5ea5a8;
  padding: 60px 40px;
  height: 100%;
}
.about-more-three-bg .about-more-icon {
  background: #3b5ea5a8;
  min-height: 180px;
  padding: 20px;
}
.about-more-content {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.about-more-icon img {
  width: 55px;
  height: 55px;
}
.about-more h3{
  font-size: 24px;
  font-weight: 600;
}
.about-more p{
  text-align: left;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 1px;
}

.about-more-count-section img{
  width: 100px;
  margin-bottom: 10px;
}

.about-more-count-section .about-more-count-one{
  order: 1;
}
.about-more-count-section .about-more-count-two{
  order: 2;
}
.about-more-count-section .about-more-count-three{
  order: 3;
}
.about-more-count-section .about-more-count-four{
  order: 4;
}
.about-home h6{
  color: var(--primary);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
}
.more-about-fcs-box {
  box-shadow: color-mix(in srgb, var(--primary), transparent 70%) 0px 13px 27px -5px, color-mix(in srgb, var(--secondary), transparent 70%) 0px 8px 16px -8px;
  background: var(--white);
  overflow: hidden;
  border-radius: 10px;
}
.more-about-fcs-one{
  background-image: url("../img/church-front-view.png");
  object-fit: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}

.contact-form{
  background-image: url("/assets/img/contact.webp");
}
.about-content-one{
  background-image: url("/assets/img/a-team-of-professionals.webp");
}
.more-about-fcs-two{
  background-image: url("../img/church-interior.png");
  object-fit: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}
.more-about-fcs ul li{
  list-style-type: square;
}
.more-about-fcs ul li{
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 3px;
  text-align: justify;
  font-family: var(--primaryfont);
}
.about-more-count .about-more-two{
  height: 300px;
}
.about-more-count h2{
  font-size: 60px;
  font-weight: 700;
}
.about-more-count h6{
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
}
.about-more-count-one{
  background-image: url("../img/banner/parish-hall.png");
}
.about-more-count-two{
  background-image: url("../img/banner/mini-annexe-hall.png");
}
.about-more-count-three{
  background-image: url("../img/banner/filial.png");
}
.about-more-count-four{
  background-image: url("../img/banner/shopping-complex.png");
}

.why-choose-us-box {
  box-shadow: rgb(252 219 206 / 65%) 0px 10px 15px -3px, rgb(252 200 210 / 27%) 0px 4px 6px -2px;
}
.why-choose-us-content h6{
  text-transform: uppercase;
  font-weight: 700;
  color: var(--dark);
  font-size: 16px;
  letter-spacing: 1px;
}
.why-choose-us-content p {
  text-align: center;
  font-size: 14px;
  margin-bottom: 0px;
  line-height: 20px;
  letter-spacing: 1px;
}
.why-choose-us-content img {
  width: 80px;
  margin-bottom: 10px;
}

.services-home-box{
  
}
.services-home-img img {
  height: 275px;
  object-fit: cover;
  border-radius: 60px 0px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.services-home-content {
  background: var(--white);
  text-align: center;
  font-weight: 600;
  padding: 18px;
  text-transform: uppercase;
  border-radius: 0px 60px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.services-home-content a{
  color: var(--secondary);
  font-size: 16px;
}

/* FOOTER */
.apply-now{
  background-image: url("/assets/img/banner/graph_chart_with_moving_up_arrow_stock_market.webp");
  object-fit: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 22;
  position: relative;
}
.bg-light-footer{
  position: absolute;
  top: 0px;
  height: 125px;
  background-color: var(--light);
  width: 100%;
  z-index: 11;
}
footer{
  background-image: url("../img/footer-bg.png");
  object-fit: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--white);
}
.footer-bg{
  background: linear-gradient(45deg, color-mix(in srgb, var(--primary), transparent 40%), color-mix(in srgb, var(--secondary), transparent 40%));
  width: 100%;
}
.footer-logo{
  width: 150px;
}

.footer-section p, .footer-section a{
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--white);
}
.footer-section p b{
  font-size: 12px;
}
.footer-section .social img{
  width: 26px;
}
.footer-section .social a:hover{
  background: var(--secondary);
}
.footer-copyrights{
  padding: 10px 0px;
  background-color: var(--primary);
}
.footer-copyrights a, .footer-copyrights{
  font-size: 12px;
  line-height: 20px;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--white);
}
.footer-copyrights-tp{
  justify-content: end;
}

/* BREADCRUMB */
.breadcrumb-section {
  margin-top: 170px;
  object-fit: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("/assets/img/banner/banner-one.png");
}
.breadcrumb-section.about-page{
  background-image: url("/assets/img/banner/banner-one.png");
}
.breadcrumb-content {
  position: absolute;
  width: 100%;
  background: linear-gradient(to right, var(--primary), var(--secondary)); 
  display: flex;
  justify-content: space-between;
  align-items: center;
  bottom: 0px;
}
.breadcrumb-content h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--white);
}
.breadcrumb-content a{
  color: var(--white);
  font-weight: 600;
}
.breadcrumb-content .breadcrumb-item+.breadcrumb-item::before, .breadcrumb-content .breadcrumb-item.active {
  color: var(--white);
}

.why-choose-us-content a {
  color: var(--secondary);
  font-weight: 500;
}
a.whastaspp img {
    width: 55px;
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 99;
}

.team-section{
  position: relative;
  margin-bottom: 30px;
}
.team-section img {
  width: 100%;
  overflow: hidden;
  height: 420px;
  object-fit: cover;
  border-radius: 30px;
}
.team-content {
  position: absolute;
  bottom: -24px;
  left: 0px;
  right: 0px;
  text-align: center;
  margin: auto;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  width: 87%;
  border-radius: 60px 60px 10px 10px;
  padding: 10px;
  box-shadow: color-mix(in srgb, var(--primary), transparent 50%) 0px 7px 29px 0px;
}
.team-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}
.team-content h6{
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--white);
}
.team-section:hover .team-content{
  background: linear-gradient(45deg, var(--secondary), var(--primary));
  width: 90%;
  border-radius: 20px;
  bottom: 30px;
  }

.ezhuthiniruthal {
    background-image: url("../img/EZHUTHINIRUTHAL-Registration.png");
    min-height: 700px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .apply-now{
    background: rgb(0 0 0 / 66%);
    border-radius: 0px 0px 30px 30px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }
  .associates{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .ezhuthiniruthal .typing {
    width: 100%;
    animation: typing 3s steps(22) 5s infinite, blink .5s step-end infinite alternate;
    white-space: nowrap;
    overflow: hidden;
    font-family: monospace;
    text-align: center;
}
  @keyframes typing {
    from {
      width: 0
    }
  }
  .zoom-in-zoom-out {
    animation: zoom-in-zoom-out 2s ease-out infinite;
  }
  @keyframes zoom-in-zoom-out {
    0% {
      transform: scale(1, 1);
    }
    50% {
      transform: scale(1.06, 1.06);
    }
    100% {
      transform: scale(1, 1);
    }
  }

  .contact-form .form-control, .contact-form  .form-check-input {
    border-color: var(--secondary);
}
.contact-form .form-check-input:checked {
  background-color: var(--secondary);
  border-color: var(--primary);
}
.contact-form .form-check-input:focus {
  border-color: color-mix(in srgb, var(--primary), transparent 50%);
  outline: 0;
  box-shadow: 0 0 0 .25rem color-mix(in srgb, var(--primary), transparent 50%);
}

  .contact-form .form-control:focus {
    color: var(--primary);
    background-color: #fff;
    border-color: var(--primary);
    outline: 0;
    box-shadow: 0 0 0 .25rem color-mix(in srgb, var(--primary), transparent 50%);
}
.ezhuthiniruthal-form .input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
  flex-direction: column;
}
.ezhuthiniruthal-form .input-group>.form-control,.ezhuthiniruthal-form .input-group>.form-floating,.ezhuthiniruthal-form .input-group>.form-select {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
}
      
@media only screen and (max-width: 1000px) {
  .about-more-count-section .about-more-count-one{
    order: 1;
  }
  .about-more-count-section .about-more-count-two{
    order: 2;
  }
  .about-more-count-section .about-more-count-three{
    order: 4;
  }
  .about-more-count-section .about-more-count-four{
    order: 3;
  }
  .apply-now {
    background-attachment: initial;
  }
}

@media only screen and (max-width: 770px) {
  .logo img {
    width: 125px;
  }
  .apply-now {
    background-attachment: initial;
  }
  .footer-copyrights a, .footer-copyrights {
    font-size: 10px;
  }
  .footer-copyrights{
    text-align: center;
  }
  .footer-copyrights-tp{
    justify-content: center;
  }
  p, .more-about-fcs ul li {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 1px;
  }
  .title h3 {
    font-size: 26px;
  }
  .title h5 {
    font-size: 12px;
  }
  .title span {
    padding: 2px 12px;
  }
  .services-home-content a, a.fcs-btn, .fcs-btn-secondary {
    font-size: 14px;
  }
  .about-more-count h2 {
    font-size: 40px;
  }
  .about-more-count h6 {
    font-size: 12px;
  }
  .carousel .carousel-caption h5 {
    font-size: 16px;
    letter-spacing: 1px;
  }
  .carousel .carousel-caption h2 {
    font-size: 30px;
  }
  .carousel-item img {
    height: 55vh;
  }
  .fcs-btn-secondary, a.fcs-btn {
    padding: 5px 13px;
  }
  .breadcrumb-section {
      margin-top: 100px;
      height: 200px;
  }
  .breadcrumb-content h2 {
    font-size: 16px;
  }
  .breadcrumb-content a, .breadcrumb-content{
   font-size: 12px;
  }
  .team-section img {
    height: 250px;
  }
  .team-content h3 {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 20px;
  }
  .team-content h6 {
    font-size: 10px;
  }
  .about-more-count .about-more-two {
    height: 250px;
  }
  .about-more-count-section img {
    width: 60px;
  }
  .about-more-one-bg{
    padding: 10px;
  }
  .breadcrumb-content{
    flex-direction: column;
  }
}