*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
  scroll-behavior: smooth;
}
body{
  min-height:150vh;
  background: #f8f8f8;
}
header{
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: 0.5s;
}
header.sticky{
  padding: 10px 50px;
}
.logo{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  color: #111;
  background: url('../img/L3C.jpg');
  background-repeat: no-repeat;
  background-size: 50px;
  background-position: center;
}
.menuToggle{
  position: relative;
  width: 60px;
  height: 60px;
  background: url("../img/menu.webp");
  background-size: 50px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointor;
}
.menuToggle.active{
  background: url("../img/close.webp");
  background-size: 30px;
  background-repeat: no-repeat;
  background-position: center;
}
.navigation{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 900;
  transition: 0.25s;
  opacity: 0;
  visibility: hidden;
}
.navigation.active{
  opacity: 1;
  visibility: visible;
}
.navigation li{
  list-style:none;
  margin: 10px 0;
}
.navigation li:hover a{
  background: orange;
}
.navigation li a{
  color: #111;
  font-size: 1.2em;
  letter-spacing: 4px;
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
}
section{
  position: relative;
  padding: 100px;
  width: 100%;
  min-height: 100vh;
  background: #fff;
}
.cover{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner{
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner .col-2{
  position: relative;
  flex-basis: 60%;
  display: flex;
  align-items: center;
}
.col-2 .big-logo{
  width: 90%;
}
.color-box{
  position: absolute;
  right: 0;
  top: 0;
  background: linear-gradient(#ff54a2, #ff575a);
  border-radius: 20px 0 0 20px;
  height: 100%;
  width: 80%;
  z-index: 1;
  transform: translateX(150px);
}
/*.banner .contentBox{
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.7);
  padding: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.banner .contentBox h2{
  font-size: 6em;
  font-weight: bolder;
  color: orange;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
}
.banner .contentBox p{
  font-weight: 0.4em;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
}
.banner .contentBox h4{
  font-size: 2em;
  font-weight: bold;
  color: #111;
  letter-spacing: 4px;
  text-align: center;
  text-transform: uppercase;
}*/
.btn{
  position: relative;
  display: inline-block;
  padding: 8px 20px;
  margin-top: 20px;
  border: 2px solid #111;
  color: #111;
  background: #fff;
  text-decoration: none;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  transition: 0.25s;
}
.btn:hover{
  color: #fff;
  background: #111;
  border: 2px solid #fff;
}
.title{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.title h2{
  position: relative;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 1.4em;
  color: #111;
}
.title p{
  margin-top: 40px;
  max-width: 700px;
  text-align: center;
}
.title h2:before{
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translate(-50%);
  width: 40px;
  height: 6px;
  background: orange;
}
p{
  color: #111;
  font-weight: 300;
  text-align: justify;
}
.about .contentBox{
  position: relative;
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px;
}
.about .contentBox .content{
  position: relative;
}
.about .contentBox .imgBox{
  min-height: 400px;
}
.news,
.events{
  position: relative;
}
.news .contentBox,
.events .contentBox{
  position: relative;
  /*display: grid;
  grid-template-columns: auto auto auto;*/
}
.news .contentBox .postColumn,
.events .contentBox .postColumn{
  position: relative;
  display: grid;
  grid-template-columns: auto auto auto;
  grid-gap: 10px;
}
.news .contentBox .postColumn .postBox,
.events .contentBox .postColumn .postBox{
  position: relative;
  width: 100%;
  height: 400px;
  margin-top: 20px;
}
/*.news .contentBox .postColumn .postBox.extraWidth{
  width: 400px;
}*/
.news .contentBox .postColumn .postBox .textBox,
.events .contentBox .postColumn .postBox .textBox{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  padding: 20px;
  display: flex;
  justify-content:L flex-end;
  align-items: flex-start;
  flex-direction: column;
  transition: 0.25s;
  opacity: 0;
  visibility: hidden;
}
.news .contentBox .postColumn .postBox:hover .textBox,
.events .contentBox .postColumn .postBox:hover .textBox{
  opacity: 0.95;
  visibility: visible;
}
.news .contentBox .postColumn .postBox .textBox h3,
.events .contentBox .postColumn .postBox .textBox h3{
  font-weight: 100px;
  font-size: 1em;
  letter-spacing: 1px;
  color: #111;
}
.news .contentBox .postColumn .postBox .textBox .btn,
.events .contentBox .postColumn .postBox .textBox .btn{
  padding: 4px 10px;
  background: #111;
  color: #fff;
  border: 1px solid #fff;
  font-weight: 100;
  font-size: 1em;
}
.benefits .contentBox{
  position: relative;
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px;
}
.benefits .contentBox .content{
  position: relative;
}
.benefits .contentBox .content ul{
  position: relative;
}
.benefits .contentBox .content li{
  position: relative;
  left: 0;
  color: #111;
  list-style: none;
  margin: 4px 0;
  border-left: 2px solid orange;
  transition: 0.5s;
  cursor: pointer;
}
.content ul li::before{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: orange;
  transform-origin: left;
  transform: scaleX(0);
  transition: 0.5s;
}
.content ul li:hover::before{
  transform: scaleX(1);
}
.content ul li:hover{
  left: 10px;
}
.content ul li span{
  position: relative;
  padding: 8px;
  display: inline-block;
  z-index: 1;
  transition: 0.5s;
}
/*-----------------Contact--------------------*/
.contact{
  display: flex;
  flex-direction: column;
}
.contact .contactBox{
  position: relative;
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
}

.contact .contactBox .contactForm{
  position: relative;
}
.contact .contactBox .contactForm .row{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  grid-gap: 20px;
  margin-top: 20px;
}
.contact .contactBox .contactForm .row2{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.contact .contactBox .contactForm .row input,
.contact .contactBox .contactForm .row2 input,
.contact .contactBox .contactForm .row2 textarea{
  width: 100%;
  padding: 10px;
  border: 1px solid #111;
  outline: none;
  background: #fff;
  color: #111;
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.contact .contactBox .contactForm .row2 textarea{
  resize: none;
  height: 150px;
}
.contact .contactBox .map .imgBox{
  min-height: 400px;
}
.contact .contactBox .map{
  padding: 10px;
}
.contact .contactBox .imgBox iframe{
  width: 100%;
  height: 100%;
}

/*Team*/
.contentBox .containerTeam{
  width: 1200px;
  min-height: 600px;
  display: flex;
  flex-wrap: wrap;
}
.cardteam{
  position: relative;
  width: calc(50% - 20px);
  min-height: 300px;
  background: #fff;
  margin: 10px;
  box-sizing: border-box;
}
.cardteam .imgBoxteam{
  position: absolute;
  width: 50%;
  height: 100%;
}
.cardteam .imgBoxteam img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cardteam .detailsteam{
  position: absolute;
  right: 0;
  width: 50%;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cardteam .detailsteam .contentteam{
  padding: 20px;
  box-sizing: border-box;
}
.cardteam .detailsteam .contentteam h2{
  margin: 0;
  padding: 0;
  font-size: 24px;
  line-height: 0.85em;
  font-weight: 600;
}
.cardteam .detailsteam .contentteam h2 span{
  font-size: 14px;
  color: #777;
}
.cardteam .detailsteam .contentteam ul{
  margin: 0;
  padding: 0;
  display: flex;
}
.cardteam .detailsteam .contentteam ul li{
  list-style: none;
  margin-left: 2px;
}
.cardteam .detailsteam .contentteam ul li a{
  color: #fff;
  border: none;
}
.cardteam .detailsteam .contentteam ul li:nth-child(1) a{
  background: #3b5995;
}
.cardteam .detailsteam .contentteam ul li:nth-child(2) a{
  background: #262626;
}
.cardteam .detailsteam .contentteam ul li:nth-child(3) a{
  background: #55acee;
}
.cardteam .detailsteam .contentteam ul li:nth-child(4) a{
  background: #b31217;
}
.cardteam .detailsteam .contentteam a{
  display: inline-block;
  text-decoration: none;
  padding: 5px 10px;
  margin-top: 10px;
  border: 2px solid #262626;
  color: #262626;
  font-weight: 500;
}
.cardteam .detailsteam .contentteam a:hover{
  color: #fff;
  background: #262626;
}

/*Ministries*/
.contentBoxMin{
  position: relative;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr))
}
.cardmin{
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
}
.contentBoxMin .cardmin:nth-child(even){
  flex-direction: column-reverse;
}
.contentBoxMin .cardmin .imgBoxmin{
  position: relative;
  width: 250px;
  height: 250px;
  backgroud: #000;
}
.contentBoxMin .cardmin .imgBoxmin img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contentBoxMin .cardmin .contentmin{
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contentBoxMin .cardmin .contentmin div{
  padding: 20px;
  text-align: center;
}







.textBox h2{
  font-weight: 600;
  color: #fff;
  background: rgba(170, 51, 106, 0.9);
  border-top-right-radius: 5px;
  padding: 20px;
}
/*footer*/
footer{
  position: relative;
  border-top: 2px solid #111;
  width: 100%;
  height: auto;
  padding: 50px 100px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .containerF{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row;
}
footer .containerF .sec{
  margin-right: 30px;
}
.aboutus{
  width: 40%;
}
footer .containerF h2{
  position: relative;
  color: #111;
  font-weight: 500;
  margin-bottom: 15px;
}
footer .containerF h2:before{
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 2px;
  background: blue;
}
footer p{
  color: #111;
}
.sci{
  margin-top: 20px;
  display: flex;
}
.sci li{
  list-style: none;
}
.sci li a{
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #222;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  text-decoration: none;
  border-radius: 4px;
}
.sci li a:hover{
  background: blue;
}
.sci li a .fa{
  color: #fff;
  font-size: 20px;
}
.quickLinks{
  position: relative;
  width: 25%;
}
.quickLinks ul li{
  list-style: none;
}
.quickLinks ul li a{
  color: #111;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 10px;
}
.quickLinks ul li a:hover{
  color: blue;
}
.galleryF{
  width: calc(35%- 60px);
  margin: 0 !important;
}
.galleryFContainer{
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-gap: 20px;
  margin-top: 20px;
}
.galleryFContainer .images{
  background: #fff;
  height: 60px;
  width: 60px;
  border-radius: 10px;
}
.galleryFContainer .images:hover{
  opacity: 0.6;
}
.galleryFContainer .images img{
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.mapFContainer{
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}
.mapFContainer iframe{
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.mapFContainer iframe:hover{
  opacity: 0.6;
}
.contactF{
  width: calc(35%- 60px);
  margin: 0 !important;
}
.contactF .info{
  position: relative;
}
.contactF .info li{
  display: flex;
  margin-bottom: 16px;
}
.contactF .info li span:nth-child(1){
  color: #fff;
  font-size: 20px;
  margin-right: 10px;
}
.contact .info li span{
  color: #999;
}
.contact .info li a{
  color: #999;
  text-decoration: none;
}
.contact .info li a:hover{
  color: #fff;
}
.copyrightText{
  width: 100%;
  background: #181818;
  padding: 8px 100px;
  text-align: center;
  color: #fff;
}
.copyrightsText{
  color: #111;
  text-align: center;
  letter-spacing: 1px;
  bottom: 0;
}
/*responsive*/
@media (max-width: 990px) {
  header{
    padding: 20px 20px;
  }
  header .sticky{
    padding: 10px 20px;
  }
  section{
    padding: 20px;
  }
  .title{
    margin-top: 100px;
  }
  .banner .contentBox{
    padding: 40px 30px;
  }
  .about .contentBox{
    grid-template-columns: repeat(1,1fr);
  }
  .news .contentBox .postColumn,
  .events .contentBox .postColumn{
    grid-template-columns: repeat(1,1fr);
  }
  .news .contentBox .postColumn .postBox,
  .news .contentBox .postColumn .postBox.extraHeight,
  .events .contentBox .postColumn .postBox,
  .events .contentBox .postColumn .postBox.extraHeight{
    height: 300px;
  }
  .benefits .contentBox{
    grid-template-columns: repeat(1,1fr);
  }
  .contact .contactBox{
    grid-template-columns: repeat(1,1fr);
  }
  .contact .contactForm .row{
    grid-template-columns: repeat(1,1fr);
  }
  footer{
    padding: 40px;
  }
  footer .containerF{
    flex-direction: column;
  }
  footer .containerF .sec{
    margin-right: 0;
    margin-bottom: 40px;
    width: 100%;
  }
  footer .containerF .quickLinks{
    width: 100%;
  }
  .copyrightText{
    padding: 8px 100px;
  }
}
