/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/


/* stylefloat */


a{
	cursor:pointer;
}

p{
font-size:1.5rem;	
padding-bottom:1rem;
}

h5{
	font-weight:bold;
	color:#2b2b2b;
}

.box-shadow{
	-webkit-box-shadow: 0 1px 1px rgba(72,78,85,.6);
	box-shadow: 0 1px 1px rgba(72,78,85,.6);
	-webkit-transition: all .2s ease-out;
	-moz-transition: all .2s ease-out;
	-ms-transition: all .2s ease-out;
	-o-transition: all .2s ease-out;
	transition: all .2s ease-out;
}

.box-shadow:hover{
	-webkit-box-shadow: 0 20px 40px rgba(72,78,85,.6);
	box-shadow: 0 20px 40px rgba(72,78,85,.6);
	

	-webkit-transform: translateY(-15px);
	-moz-transform: translateY(-15px);
	-ms-transform: translateY(-15px);
	-o-transform: translateY(-15px);
	transform: translateY(-15px);

  
  
}

.card{
  border-top-right-radius: 25px;
	border-bottom-right-radius: 25px;
	border-top-left-radius: 25px;
	border-bottom-left-radius: 25px;
                width: auto;

	
}

.card img{
width:auto;
}

.card svg{
	position:absolute;
	top:19rem;
  -webkit-transition: all .2s ease-out;
	-moz-transition: all .2s ease-out;
	-ms-transition: all .2s ease-out;
	-o-transition: all .2s ease-out;
	transition: all .2s ease-out;
	filter:drop-shadow(2px -9px 4px rgba(0, 69, 134, 0.2));
}
.card:hover svg{
	filter:drop-shadow(2px -9px 4px rgba(0, 69, 134, 0.4));
}






* { 
  margin: 0;
  padding: 0;
  font-weight: normal;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  line-height: 1.5;
}

body {
  background-color: #fff;
  color: #333;
}

/* NEWSLIKE HEADER CP*/
p { 
  font-size: 1em; /* 16px */
  font-family: 'Open Sans', sans-serif; 
} 
h1 { 
  font-size: 3.375em; /* 54px */
  letter-spacing: -.03em; 
} 
h2 { 
  font-size: 2.25em; /* 36px */
} 
h3 { 
  font-size: 1.2em; /* px */
  font-weight:100;
} 

.post{
-webkit-column-count: 2;
-moz-column-count: 2;
column-count: 2;
-webkit-column-width: 250px;
-moz-column-width: 250px;
column-width: 250px;
text-align:justify;
-webkit-column-rule: thin dashed #9f2241;
-moz-column-rule: thin dashed #9f2241;
column-rule: thin dashed #9f2241;
column-gap: 30px;
display: inline-block;


}
.post {
  width: 100%;
  padding: 3% 3%;
  background-color: #f4f4f4;
  margin: 0px auto;
  text-align: justify;
  border-right: 1px solid #e4e4e4;
  border-left: 1px solid #e4e4e4;
}
.description {
  text-align: center;
  margin-bottom: 70px;
}
h1, h2, h3 {
  margin: 5px 0px;
  font-family: 'Merriweather', serif;
  color: #3d4c5c;
}
.post > p:first-of-type:first-letter {
  font-size: 4em;
  font-weight: bold;
  float: left;
  padding-right: 3px;
}
.post > p:first-of-type:first-line {
  line-height: 1;
}
.post > p {
  padding: 10px 0px 10px 40px;
  width:100%;
}

blockquote {
  background-color: #9f2241;
  color:#fff;
  font-family: 'Merriweather', serif;
  font-style: italic;
  padding-top: 15px;
  padding-bottom: 15px;
  margin: 12px 0 12px 40px;
  text-align: center;
  
}

figure {
  -moz-column-span: all;
  -ms-column-span: all;
  -o-column-span: all;
  -webkit-column-span: all;
  column-span: all;
  border-top: 1px dotted #ccc;
  display: block;
  margin: 2% 0;
  padding: 2% 0 0 0;
  position: relative;
}
.full_figure {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
}
figcaption {
  padding-left: 10px;
}
.pic-medium {
  max-width: 120%;
}

/*  UI UX Content Tabbable  */


.nav-tabs {
  display: inline-flex;
  width: 100%;
  overflow-x: auto;
  border-bottom: 2px solid #DDD;
  -ms-overflow-style: none; // IE 10+
  overflow: -moz-scrollbars-none; // Firefox}
  .nav-tabs>li.active>a,
  .nav-tabs>li.active>a:focus,
  .nav-tabs>li.active>a:hover {
      border-width: 0;
  }
  .nav-tabs>li>a {
      border: none;
      color: #666;
     
  }
  .nav-tabs>li.active>a,
  .nav-tabs>li>a:hover {
      border: none;
      color: #348F41 !important;
      background: transparent;
  }
  .nav-tabs>li>a::after {
      content: "";
      background: #348F41;
      height: 2px;
      position: absolute;
      width: 100%;
      left: 0px;
      bottom: 1px;
      transition: all 250ms ease 0s;
      transform: scale(0);
  }
  .nav-tabs>li.active>a::after,
  .nav-tabs>li:hover>a::after {
      transform: scale(1);  
  }
  .tab-nav>li>a::after {
      background: #21527d none repeat scroll 0% 0%;
      color: #fff;
  }
  .tab-pane {
      padding: 10px 0;
      max-height:500px;
      overflow: scroll;
      font-size:17px;
      background-color: #f4f4f4;
      border-top-left-radius: 15px;
      border-top-right-radius: 15px;
      border-bottom-left-radius: 15px;
      border-bottom-right-radius: 15px;
  }
  .tab-content {
      padding: 20px
  }
  .tab-pane .title {
font-size: 25px;
margin-bottom: 5px;
font-weight: 900;
color: #173b6c;  //orange

}
  .nav-tabs::-webkit-scrollbar {
      display: none; // Safari and Chrome
  }
  .card {
      background: #FFF none repeat scroll 0% 0%;
      box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
      margin-bottom: 30px;
      border-top-left-radius: 25px;
      border-top-right-radius: 25px;
      border-bottom-left-radius: 25px;
      border-bottom-right-radius: 25px;
  }

  .card1 {
    
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
    margin-left:5%;
    margin-right:5%;

}

 .nav-tabs {
  display: inline-flex;
  
  width: 100%;
  overflow-x: auto;
  border-bottom: 2px solid #DDD;
  -ms-overflow-style: none; // IE 10+
  overflow: -moz-scrollbars-none; // Firefox}
  .nav-tabs>li.active>a,
  .nav-tabs>li.active>a:focus,
  .nav-tabs>li.active>a:hover {
      border-width: 0;
  }
  .nav-tabs>li>a {
      border: none;
      color: #173b6c;
      font-size: 17px;
  }
  .nav-tabs>li.active>a,
  .nav-tabs>li>a:hover {
      border: none;
      color: #173b6c !important; // orange 
      background: transparent;
  }
  .nav-tabs>li>a::after {
      content: "";
      background: #be2500;
      height: 2px;
      position: absolute;
      width: 100%;
      left: 0px;
      bottom: 1px;
      transition: all 250ms ease 0s;
      transform: scale(0);
  }
  .nav-tabs>li.active>a::after,
  .nav-tabs>li:hover>a::after {
      transform: scale(1);  
  }
  .tab-nav>li>a::after {
      background: #21527d none repeat scroll 0% 0%;
      color: #fff;
  }
  .tab-pane {
      padding: 15px 0;
  }
  .tab-content {
      padding: 20px
  }

  .nav-tabs::-webkit-scrollbar {
      display: none; // Safari and Chrome
  }

 


    
/* Begin UI UX Front Grid CP*/




html body * {
  box-sizing: border-box;
  font-family: 'Open Sans', Arial, sans-serif;
}
.grid-contain div[class*=grid-x] {
  background: #eee;
  box-shadow: inset 0 0 0 1px #ddd;
  padding: 15px; float: left;
  position: relative;
}
.grid-contain .grid-x-1,
.grid-contain .grid-x-2,
.grid-contain .grid-x-22,
.grid-contain .grid-x-3 {
  overflow: hidden;}




@media screen and (max-width: 1024px) {
  .grid-contain .grid-y-2 {height: 200px;}
  .grid-contain {
    width: 100%;
  }
  .grid-contain .grid-x-2 {width: 50%;}
  .grid-contain .grid-x-22 {width: 50%;}
  .grid-contain .grid-x-1 {width: 50%;}
  .grid-contain .grid-x-3 {width: 50%;}
  .grid-contain .grid-y-0 {height: 200px;}
  .grid-contain .grid-y-1 {height: 200px;}
.grid-contain .grid-y-2 {height: 200px;}

.grid-contain .gridinfo p.grid-quote {
  width: 9%;
  margin: 0 0;
  font-size: 11px;
  line-height: 7px;
  margin-bottom: 2px;
  color: #fff;
  transition-delay: 0.5s;
}
  .grid-contain .gridinfo h3 {
    font-size: 11px;
    color: #fff;
    font-weight: thin;
    text-transform: uppercase;
    margin: 75px 0 1px;
    position: relative;
  }
  .grid-contain .gridinfo h3:after {
    content: '';
    width: 15px;
    border-top: 3px solid #fff;
    display: block;
    margin: 0 auto;
    margin-top: 1px;
    transform: scaleX(1);
    transition: transform 500ms ease;
  }
  .grid-contain .gridinfo:hover h3:after {
    content: '';
    width: 50px;
    border-top: 3px solid #fff;
    display: block;
    margin: 0 auto;
    margin-top:1px;
    transform: scaleX(2);
  }
  .grid-contain .gridinfo .grid-btn {
    color: #fff;
    text-decoration: none;
    margin: 0 auto;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 25px;
    border: 3px solid #fff; 
    display: block;
    overflow: hidden;
  }
  .grid-contain .gridinfo .grid-btn:hover {
    width: 75px;
    background: rgba(0,0,0,0.3);
  }
  .grid-contain .gridinfo .grid-btn span {
    opacity: 0;
    display: none;
    transition: opacity 0.8s;
  }
  .grid-contain .gridinfo .grid-btn:hover span {
    opacity: 1;
    display: inline;
    font-size: 15px;
  }
  .grid-contain .gridinfo .grid-btn:hover i {
    opacity: 0;
    display: none;
  }
  
  
  .grid-contain .gridinfo .grid-btn {
    color: #fff;
    text-decoration: none;
    margin: 0 auto;
    width: 25px;
    height: 25px;
    line-height: 25px;
    border-radius: 15px;
    border: 2px solid #fff; 
    display: block;
    overflow: hidden;
  }
  .grid-contain .gridinfo .grid-btn:hover {
    width: 55px;
    background: rgba(0,0,0,0.3);
  }
  .grid-contain .gridinfo .grid-btn span {
    opacity: 0;
    display: none;
    transition: opacity 0.8s;
  }
  .grid-contain .gridinfo .grid-btn:hover span {
    opacity: 1;
    display: inline;
    font-size: 11px;
  }
  .grid-contain .gridinfo .grid-btn:hover i {
    opacity: 0;
    display: none;
  }

 

}
@media screen and (min-width: 1024px) {
  .grid-contain .grid-x-1 {width: 60%;}
  .grid-contain .grid-x-2 {width: 40%;}
  .grid-contain .grid-x-22 {width: 40%;}
  .grid-contain .grid-x-3 {width: 30%;}

  .grid-contain .grid-y-0 {height: 220px;}
  .grid-contain .grid-y-1 {height: 220px;}
  .grid-contain .grid-y-2 {height: 440px;}

  .grid-contain .gridinfo h3 {
    font-size: 19px;
    color: #fff;
    font-weight: thin;
    text-transform: uppercase;
    margin: 75px 0 20px;
    position: relative;
  }
  .grid-contain .gridinfo h3:after {
    content: '';
    width: 25px;
    border-top: 3px solid #fff;
    display: block;
    margin: 0 auto;
    margin-top: 5px;
    transform: scaleX(1);
    transition: transform 500ms ease;
  }
  .grid-contain .gridinfo:hover h3:after {
    content: '';
    width: 50px;
    border-top: 3px solid #fff;
    display: block;
    margin: 0 auto;
    margin-top:5px;
    transform: scaleX(2);
  }
  .grid-contain .gridinfo .grid-btn {
    color: #fff;
    text-decoration: none;
    margin: 0 auto;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 25px;
    border: 3px solid #fff; 
    display: block;
    overflow: hidden;
  }
  .grid-contain .gridinfo .grid-btn:hover {
    width: 35px;
    background: rgba(0,0,0,0.3);
  }
  .grid-contain .gridinfo .grid-btn span {
    opacity: 0;
    display: none;
    transition: opacity 0.8s;
  }
  .grid-contain .gridinfo .grid-btn:hover span {
    opacity: 1;
    display: inline;
    font-size: 15px;
  }
  .grid-contain .gridinfo .grid-btn:hover i {
    opacity: 0;
    display: none;
  }
  
  
  .grid-contain .gridinfo .grid-btn {
    color: #fff;
    text-decoration: none;
    margin: 0 auto;
    width: 35px;
    height: 35px;
    line-height: 25px;
    border-radius: 25px;
    border: 3px solid #fff; 
    display: block;
    overflow: hidden;
  }
  .grid-contain .gridinfo .grid-btn:hover {
    width: 75px;
    background: rgba(0,0,0,0.3);
  }
  .grid-contain .gridinfo .grid-btn span {
    opacity: 0;
    display: none;
    transition: opacity 0.8s;
  }
  .grid-contain .gridinfo .grid-btn:hover span {
    opacity: 1;
    display: inline;
    font-size: 15px;
  }
  .grid-contain .gridinfo .grid-btn:hover i {
    opacity: 0;
    display: none;
  }
}

/*GRID styling*/
.grid-contain .gridimg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: visible;
  background-position: center center;
  background-size: cover;
  background-color:#1A5632;
  object-fit: contain;
}
.grid-contain .gridimg img {
  width: 100%;
  height: 100%;
}
.grid-contain .gridinfo {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 2px;
  left: 0;
  background: rgba(0,0,0,0.4);
  text-align: center;
  transition: all 0.8s;
}

.grid-contain .gridinfo .grid-5Ws {
  transition-delay: 0.25s;
}
.grid-contain .gridinfo .grid-5Ws p {
  display: inline-block;
  font-size: 12px;
  color: #fff;
  margin-bottom: -20px;
}
.grid-contain .gridinfo .grid-5Ws p i {
  margin-right: 5px;
}
.grid-contain .gridinfo .grid-5Ws p.gridwho {
  margin-left: 10px;
}
.grid-contain .gridinfo p.grid-quote {
  width: 100%;
  margin: 10px 10px;
  font-size: 13px;
  line-height: 10px;
  margin-bottom: 2px;
  color: #fff;
  transition-delay: 0.5s;
}

.grid-contain .gridinfo * {
  opacity: 0;
  transition: all 0.8s;
}
.grid-contain .gridinfo h3 {
  opacity: 1;
}



.card-btn {
  color: #fff;
  text-decoration: none;
  margin: 0 auto;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 25px;
  border: 3px solid #fff; 
  display: block;
  overflow: hidden;
}
.card-btn:hover {
  width: 75px;
  background: rgba(0,0,0,0.3);
}
.card-btn span {
  opacity: 0;
  display: none;
  transition: opacity 0.8s;
}
.card-btn:hover span {
  opacity: 1;
  display: inline;
  font-size: 15px;
}
.card-btn:hover i {
  opacity: 0;
  display: none;
}

.card-btn {
  color: #fff;
  text-decoration: none;
  margin: 0 auto;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 25px;
  border: 3px solid #fff; 
  display: block;
  overflow: hidden;
}
.card-btn:hover {
  width: 75px;
  background: rgba(0,0,0,0.3);
}
.card-btn span {
  opacity: 0;
  display: none;
  transition: opacity 0.8s;
}
.card-btn:hover span {
  opacity: 1;
  display: inline;
  font-size: 15px;
}
.card-btn:hover i {
  opacity: 0;
  display: none;
}


.grid-contain .gridinfo:hover * {
  opacity: 0.7;
}
.grid-contain .gridinfo:hover p {
  opacity: 1;
}
.grid-contain .gridinfo:hover {
  background: rgba(159, 34, 65, 0.7);
}
.grid-contain .gridinfo:hover h3 {
  margin-top: 20px;
  
  opacity: 1;
}

.intro {
  text-align: center;
  padding: 25px;
  background: #111;
  color: #ddd;
}
h1 {
  font-size: 48px;
  font-weight: 300;
  padding: 15px 0;
}
.intro p {
  opacity: 0.5;
  font-size: 12px;
}
.intro p a {
  color: #FA8CD3;
}



body {
  font-family: "Open Sans", sans-serif;
  color: #272829;
  
}

a {
  color: #FFF;
  text-decoration: none;
}

a:hover {
  color: #000;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}
 /*  SHADOW */

.shadow-4{box-shadow:0 1px 1px rgba(0,0,0,0.15),0 2px 2px rgba(0,0,0,0.15),0 4px 4px rgba(0,0,0,0.15),0 8px 8px rgba(0,0,0,0.15)}
.shadow-5{box-shadow:0 1px 1px rgba(0,0,0,0.12),0 2px 2px rgba(0,0,0,0.12),0 4px 4px rgba(0,0,0,0.12),0 8px 8px rgba(0,0,0,0.12),0 16px 16px rgba(0,0,0,0.12)}
.shadow-6{box-shadow:0 1px 1px rgba(0,0,0,0.11),0 2px 2px rgba(0,0,0,0.11),0 4px 4px rgba(0,0,0,0.11),0 8px 8px rgba(0,0,0,0.11),0 16px 16px rgba(0,0,0,0.11),0 64px 64px rgba(0,0,0,0.11)}
.shadow-sharp{box-shadow:0 1px 1px rgba(0,0,0,0.25),0 2px 2px rgba(0,0,0,0.2),0 4px 4px rgba(0,0,0,0.15),0 8px 8px rgba(0,0,0,0.1),0 16px 16px rgba(0,0,0,0.05)}
.shadow-diffuse{box-shadow:0 1px 1px rgba(0,0,0,0.08),0 2px 2px rgba(0,0,0,0.12),0 4px 4px rgba(0,0,0,0.16),0 8px 8px rgba(0,0,0,0.2)}
.shadow-dreamy{box-shadow:0 1px 2px rgba(0,0,0,0.07),0 2px 4px rgba(0,0,0,0.07),0 4px 8px rgba(0,0,0,0.07),0 8px 16px rgba(0,0,0,0.07),0 16px 32px rgba(0,0,0,0.07),0 32px 64px rgba(0,0,0,0.07)}
.shadow-shorter{box-shadow:0 1px 1px rgba(0,0,0,0.11),0 2px 2px rgba(0,0,0,0.11),0 4px 4px rgba(0,0,0,0.11),0 6px 8px rgba(0,0,0,0.11),0 8px 16px rgba(0,0,0,0.11)}
.shadow-longer{box-shadow:0 2px 1px rgba(0,0,0,0.09),0 4px 2px rgba(0,0,0,0.09),0 8px 4px rgba(0,0,0,0.09),0 16px 8px rgba(0,0,0,0.09),0 32px 16px rgba(0,0,0,0.09)}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #007e00;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #2eafec;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*   ARTICLE */

article {
      margin: 50px 50px;
      display: flex;
      justify-content: space-between;
    
  
    }
    article sections {
      display: flex;
      flex-direction: column;
      align-items: center;
     background-color: #f5fdf6;
    }
    article sections p{
      color: #333;
      font-size: 22px;
    font-weight: 100;
    padding: 10px 10px 10px 10px;
  margin-top: 10 px;
  border-left: 1px solid transparent;
  border-right: 5px solid transparent;
  position: relative;
  
  margin-bottom: 20px;
  color: #050d18;
 transition: ease-in-out 0.3s;
  text-align: justify;
  text-justify: inter-word;
    }
    article sections div{
      height: auto;
      width: auto;
      border-radius: 2px;
    }

    /* side navigation  */


    #header1{
      position: fixed;
      top: 0;
      left: 0;
      bottom: 0;
      width: 127px;
      transition: all ease-in-out 0.5s;
      z-index: 9997;
      transition: all 0.5s;
      padding: 3px 3px;
      background: rgba(255, 255, 255, 0.83);
      overflow-y: auto;
      box-sizing: border-box;
      color:#a9a9a9;
      border-right: 1px dashed #a9a9a9;
    }
    
    #header1 .profile img {
      margin: 1px auto;
      display: block;
      width:75px;
      border: 2px solid #a1bbbb;
    }
    
    #header1 .profile h1 {
      font-size: 17px;
      margin: 0;
      padding: 0;
      font-weight: 600;
      -moz-text-align-last: center;
      text-align-last: center;
      font-family: "Poppins", sans-serif;
    }
    
    #header1 .profile h1 a,
    #header1 .profile h1 a:hover {
      color: #000;
      text-decoration: none;
    
    }
    
    #header1 .profile .social-links a {
    

      font-size: 18px;
      display: inline-block;
      background: #FF5C35;
      color: #fff;
      line-height: 1;
      padding: 8px 3px;
      margin-right: 4px;
      margin-bottom:10px;
      border-radius: 50%;
      text-align: center;
      width: 36px;
      height: 36px;
      transition: 0.3s;
    }
    
    #header1 .profile .social-links a:hover {
      background: #149ddd;
      color: #fff;
      text-decoration: none;
    }
    
/* end side navigation */

#main {
  margin-left: 141px;
}

@media (max-width: 1199px) {
  #header1 {
    left: -300px;
  }

  #main {
    margin-left: 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Large screen Navigation */
.nav-menu {
  padding: 11px 0 0 1px;
  
}

.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu>ul>li {
  position: relative;
  white-space: nowrap;
}

.nav-menu a,
.nav-menu a:focus {
  display: flex;
  align-items: left;
  color: #000;
  padding: 13px 0px;
  margin-bottom: 1px;
  transition: 0.3s;
  font-size: 13px;
  font-weight: 700;
}

.nav-menu a i,
.nav-menu a:focus i {
  font-size: 24px;
  padding-right: 8px;
  color: #000;
}

.nav-menu a:hover,
.nav-menu .active,
.nav-menu .active:focus,
.nav-menu li:hover>a {
  text-decoration: none;
  color: #FF5C35;
  font-weight: 900;
}

.nav-menu a:hover i,
.nav-menu .active i,
.nav-menu .active:focus i,
.nav-menu li:hover>a i {
  color: #FF5C35;
  font-weight: 900;
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  background-color: #a1bbbb;
  color: #fff;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  border-radius: 50px;
  cursor: pointer;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active #header1 {
  left: 0;
}

/*--------------------------------------------------------------
# PAPS Hero Section
--------------------------------------------------------------*/
#hero {
  width:98.5%;
  height: 51vh;
  background: url("../img/hero/Hero-big.webp") top center;
  opacity: 1;
  background-size: cover;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  margin-left: 10px;

}

#heroFr {
  width:100%;
  height: 47vh;
  background: url("../img/hero/Hero-grand.webp") top center;
  opacity: 1;
  background-size: cover;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  margin-left: 10px;

}

#hero:before {
  content: "";
  background: rgba(5, 13, 24, 0.3);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

#heroFr:before {
  content: "";
  background: rgba(5, 13, 24, 0.3);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

#hero .hero-container {
  position: relative;
  z-index: 2;
  min-width: 300px;
}

#heroFr .heroFr-container {
  position: relative;
  z-index: 2;
  min-width: 300px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#hero p {
  color: #fff;
  margin-bottom: 50px;
  font-size: 26px;
  font-family: "Poppins", sans-serif;
}

#hero p span {
  color: #fff;
  padding-bottom: 4px;
  letter-spacing: 1px;
  border-bottom: 3px solid #f92241;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero {
    width:98.5%;
    height: 17vh;
    background: url("../img/hero/Hero-big.webp") top center;
    opacity: 1;
    background-size: cover;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    margin-left: 10px;
  
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

 
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Next Hero Section
--------------------------------------------------------------*/
#hero2063 {
  width: 100%;
  height: 100vh;
  background: url("../img/hero/NEXT.webp") top center;
  background-size: cover;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;

}

#hero2063:before {
  content: "";
  background: rgba(5, 13, 24, 0.3);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

#hero2063 .hero2063-container {
  position: relative;
  z-index: 2;
  min-width: 300px;
}

#hero2063 h1 {
  margin: 0 0 10px 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#hero2063 p {
  color: #fff;
  margin-bottom: 50px;
  font-size: 26px;
  font-family: "Poppins", sans-serif;
}

#hero2063 p span {
  color: #fff;
  padding-bottom: 4px;
  letter-spacing: 1px;
  border-bottom: 3px solid #c3fad5;
}

@media (min-width: 1024px) {
  #hero2063 {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero2063 h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero2063 h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}



/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 0 0;
  overflow: hidden;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.section-bg {
  background: rgba(29, 202, 211, 0.05);


}

.section-title {
  padding-bottom: 30px;
  margin-left:3vh;
  margin-top:3vh;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #173b6c;
}

.section-title h3 {
  font-size: 23px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #173b6c;
}
.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #be2500;
  bottom: 0;
  left: 0;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #173b6c;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.about .content ul strong {
  margin-right: 10px;
}

.about .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: #007e00;
  line-height: 0;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# results
--------------------------------------------------------------*/
.results {
  padding-bottom: 30px;

   margin-left:5%;
   margin-right:5%;
   margin-bottom:3vh;
}

.results .count-box {
  padding: 30px;
  width: 100%;
}

.results .count-box i {
  display: block;
  font-size: 44px;
  color: #007e00;
  float: left;
  line-height: 0;
}

.results .count-box span {
  font-size: 48px;
  line-height: 40px;
  display: block;
  font-weight: 700;
  color: #050d18;
  margin-left: 60px;
}

.results .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 60px;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: #122f57;
}

.results .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #122f57;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.results .count-box a:hover {
  color: #1f5297;
}

/*--------------------------------------------------------------
# paps-executions
--------------------------------------------------------------*/
.paps-executions .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.paps-executions .progress .paps-execution {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #050d18;
}

.paps-executions .progress .paps-execution .val {
  float: right;
  font-style: normal;
}

.paps-executions .progress-bar-wrap {
  background: #dce8f8;
  height: 10px;
}

.paps-executions .progress-bar {
  width: 1px;
  height: 10px;
  transition: 2.9s;
  background-color: #FF5C35;
}

/*--------------------------------------------------------------
# paps-milestones
--------------------------------------------------------------*/
.paps-milestones {

}
.paps-milestones .paps-milestones-title {
  font-size: 26px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #173b6c;
}

.paps-milestones .paps-milestones-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid #a1bbbb;
  position: relative;
}

.paps-milestones .paps-milestones-item h4 {
  line-height: 23px;
  font-size: 23px;
  font-weight: 200;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #173b6c;
  margin-bottom: 10px;
}

.paps-milestones .paps-milestones-item h5 {
  font-size: 22px;
  background: rgba(29, 202, 211, 0.07);
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
}

.paps-milestones .paps-milestones-item ul {
  padding-left: 20px;
}

.paps-milestones .paps-milestones-item ul li {
  padding-bottom: 10px;
  font-size: 18px;
}

.paps-milestones .paps-milestones-item:last-child {
  padding-bottom: 0;
}

.paps-milestones .paps-milestones-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: #fff;
  border: 2px solid #a1bbbb;
}

/*--------------------------------------------------------------
# paps-actions
--------------------------------------------------------------*/
.paps-actions {
  box-shadow: rgba(0, 0, 0, 0.35) 1px 5px 5px;
  margin-left: 5%;
  margin-right: 5%;
}
.paps-actions .paps-actions-item {
  margin-bottom: 30px;
}

.paps-actions #paps-actions-filters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  background: rgba(29, 202, 211, 0.03);
  border-radius: 50px;
  padding: 2px 15px;
}

.paps-actions #paps-actions-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  color: 	#03002e;
  margin: 0 4px 8px 4px;
  transition: 0.3s;
  border-radius: 50px;
  border: 1px solid rgba(29, 202, 211, 0.03);
}

.paps-actions #paps-actions-filters li:hover,
.paps-actions #paps-actions-filters li.filter-active {
  color: 	#03002e;
  border-color: #9f2241;
}

.paps-actions #paps-actions-filters li:last-child {
  margin-right: 0;
}

.paps-actions .paps-actions-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.paps-actions .paps-actions-wrap::before {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.paps-actions .paps-actions-wrap .paps-actions-extra {
  opacity: 1;
  left: 0;
  right: 0;
  bottom: -60px;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
  display: flex;
  justify-content: center;
}

.paps-actions .paps-actions-wrap .paps-actions-extra a {
  color: #fff;
  font-size: 28px;
  text-align: center;
  background: rgba(20, 157, 221, 0.75);
  transition: 0.3s;
  width: 50%;
}

.paps-actions .paps-actions-wrap .paps-actions-extra a:hover {
  background: rgba(20, 157, 221, 0.95);
}

.paps-actions .paps-actions-wrap .paps-actions-extra a+a {
  border-left: 1px solid #1A5632;
}

.paps-actions .paps-actions-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.paps-actions .paps-actions-wrap:hover .paps-actions-extra {
  opacity: 1;
  bottom: 0;
}



/*--------------------------------------------------------------
# paps-toolbox
--------------------------------------------------------------*/
.paps-toolbox .icon-box {
  margin-bottom: 20px;
}

.paps-toolbox .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  background: #007e00;
  border-radius: 50%;
  transition: 0.5s;
  border: 1px solid #007e00;
}

.paps-toolbox .icon i {
  color: #fff;
  font-size: 24px;
  line-height: 0;
}

.paps-toolbox .icon-box:hover .icon {
  background: #fff;
}

.paps-toolbox .icon-box:hover .icon i {
  color: #007e00;
}

.paps-toolbox .title {
  margin-left: 80px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.paps-toolbox .title a {
  color: #343a40;
}

.paps-toolbox .title a:hover {
  color: #007e00;
}

.paps-toolbox .description {
  margin-left: 80px;
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# PAPS Quotes
--------------------------------------------------------------*/
.paps-quotes {
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.35) 1px 3px 3px;
  margin-left:5%;
  margin-right:5%;
  margin-bottom:3vh;
}
.paps-quotes .paps-quotes-carousel,
.paps-quotes .paps-quotes-slider {
  overflow: hidden;
  
}

.paps-quotes .paps-quote-item {
  box-sizing: content-box;
  text-align: center;
  min-height: 320px;
 font-size: large;
}

.paps-quotes .paps-quote-item .paps-quote-img {
  width: 90px;
  border-radius: 50%;
  margin: 0 auto;
}

.paps-quotes .paps-quote-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.paps-quotes .paps-quote-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.paps-quotes .paps-quote-item .quote-icon-left,
.paps-quotes .paps-quote-item .quote-icon-right {
  color: #c3fad5;
  font-size: 26px;
}

.paps-quotes .paps-quote-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.paps-quotes .paps-quote-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.paps-quotes .paps-quote-item p {
  font-style: italic;
  font-size:40px;
  margin: 0 15px 15px 15px;
  padding: 20px;
  position: relative;
  margin-bottom: 35px;
  border-radius: 6px;
  background:#fff;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
}

.paps-quotes .paps-quote-item p::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 20px solid #fff;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 20px);
}

.paps-quotes .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.paps-quotes .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #007e00;
}

.paps-quotes .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #007e00;
}



@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background: #f9f9f9;
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #0e2442;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}



/*--------------------------------------------------------------
# Begin Presentation text list
--------------------------------------------------------------*/


.mylist li {
  color:#000;
  list-style:none;
  position: relative;
  padding-left: 37px;
  line-height: 2.5;
  font-size:15px;
  border-bottom: solid 1px #FF5C35;
  max-width: 90%;
}

.mylist li:before {
  font-family:FontAwesome;
  position: absolute;
  left: 0;
  color:#FF5C35;
  font-size:17px;
}

.mylist li.one:before {
   content:"\f111"; 
}
.mylist li.two:before {
   content:"\f00c";
}
.mylist li.three:before {
   content:"\f10c";
}
.mylist li.four:before {
   content:"\f004";
}
.mylist li.five:before {
   content:"\f1e2";
}
.mylist li.six:before {
   content:"\f0e7";
}

.mylist li:hover:before {
  color:#9f2241;
}

.mylist li:hover {
    background-color: #f2f2f2;

}

/*--------------------------------------------------------------
# End Presentation text list
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Begin  Presentation Table
--------------------------------------------------------------*/


html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
.intro {
  max-width: 1280px;
  margin: 1em auto;
}
.table-scroll {
  position: relative;
  width:100%;
  z-index: 1;
  margin: auto;
  overflow: auto;
  height: 350px;
}
.table-scroll table {
  width: 100%;
  min-width: 1280px;
  margin: auto;
  border-collapse: separate;
  border-spacing: 0;
}
.table-wrap {
  position: relative;
}
.table-scroll th,
.table-scroll td {
  padding: 5px 10px;
  border: 1px solid #000;
  background: #fff;
  vertical-align: top;
}
.table-scroll thead th {
  background: #a1bbbb;
  color: #fff;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.table-scroll tfoot,
.table-scroll tfoot th,
.table-scroll tfoot td {
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  background: #666;
  color: #fff;
  z-index:4;
}




th:first-child {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  z-index: 2;
  background: #ccc;
}
thead th:first-child,
tfoot th:first-child {
  z-index: 5;
}

      
    
    .stripe-1 { 
      background-color:  rgba(29, 202, 211, 0.05) !important; 
    } 
  
    .stripe-2 { 
      background-color: #fff !important; 
    } 
    #RelatedTable span {
    display:none; 
}
#RelatedTable {
    font-size:15px; 
    font-weight: normal;
}



/*--------------------------------------------------------------
# End UI UX Button
--------------------------------------------------------------*/


/*    Event Button    */

button {
  font: inherit;
  background-color: #f0f0f0;
  border: 0;
  color: #242424;
  border-radius: 0.5em;
  font-size: 3rem;
  padding: 0.375em 1em;
  font-weight: 600;
  text-shadow: 0 0.0625em 0 #fff;
  box-shadow: inset 0 0.0625em 0 0 #f4f4f4, 0 0.0625em 0 0 #efefef, 0 0.125em 0 0 #ececec, 0 0.25em 0 0 #e0e0e0, 0 0.3125em 0 0 #dedede, 0 0.375em 0 0 #dcdcdc, 0 0.425em 0 0 #cacaca, 0 0.425em 0.5em 0 #cecece;
  transition: 0.15s ease;
  pointer: cursor;
}
button:active, button:hover {
  translate: 0 0.225em;
  box-shadow: inset 0 0.03em 0 0 #f4f4f4, 0 0.03em 0 0 #efefef, 0 0.0625em 0 0 #ececec, 0 0.125em 0 0 #e0e0e0, 0 0.125em 0 0 #dedede, 0 0.2em 0 0 #dcdcdc, 0 0.225em 0 0 #cacaca, 0 0.225em 0.375em 0 #cecece;
  cursor: pointer;
}
.dropbtn {
  background-color: #4CAF50;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}
.dropbtn:hover,
.dropbtn:focus {
  background-color: #3e8e41;
}
.dropdown {
  position: relative;
  display: block;
}
.dropdown-content {
  display: none;
  position: relative;
  background-color: #f9f9f9;
  min-width: 160px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
.dropdown-content a:hover {
  background-color: #f1f1f1;
}
.show {
  display: block;
}




/* lists alpha  */
.list_alpha1 {
  .num {
    padding: 0.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: 0.25s;
    &:nth-child(0):before {
      content: '0';
      font-size: 2rem;
      font-weight: bold;
      color: #9f2241;
      width: 2rem;
      opacity: 0.5;
      transition: 0.25s;
    }
  
    &:nth-child(1):before {
      content: 'a.';
      font-size: 2rem;
      font-weight: bold;
      color: #000;
      width: 2rem;
      opacity: 0.5;
      transition: 0.25s;
    }
    &:nth-child(2):before {
      content: 'b.';
      font-size: 2rem;
      font-weight: bold;
      color: #000;
      width: 2rem;
      opacity: 0.5;
      transition: 0.25s;
    }
    &:nth-child(3):before {
      content: 'c.';
      font-size: 2rem;
      font-weight: bold;
      color: #000;
      width: 2rem;
      opacity: 0.5;
      transition: 0.25s;
    }
    &:nth-child(4):before {
      content: 'd.';
      font-size: 2rem;
      font-weight: bold;
      color: #000;
      width: 2rem;
      opacity: 0.5;
      transition: 0.25s;
    }
    &:nth-child(5):before {
      content: 'e.';
      font-size: 2rem;
      font-weight: bold;
      color: #000;
      width: 2rem;
      opacity: 0.5;
      transition: 0.25s;
    }
    &:nth-child(6):before {
      content: 'f.';
      font-size: 2rem;
      font-weight: bold;
      color: #000;
      width: 2rem;
      opacity: 0.5;
      transition: 0.25s;
    }
    &:nth-child(7):before {
      content: 'g.';
      font-size: 2rem;
      font-weight: bold;
      color: #000;
      width: 2rem;
      opacity: 0.5;
      transition: 0.25s;
    }
    &:nth-child(8):before {
      content: 'h.';
      font-size: 2rem;
      font-weight: bold;
      color: #000;
      width: 2rem;
      opacity: 0.5;
      transition: 0.25s;
    }
    &:nth-child(9):before {
      content: 'i.';
      font-size: 2rem;
      font-weight: bold;
      color: #000;
      width: 2rem;
      opacity: 0.5;
      transition: 0.25s;
    }
    h3 {
      position: relative;
      left: 1rem;
      color: #3d3d3d;
      font-size: 1.5rem;
      font-weight: 100;
      transition: 0.25s;
    }
    h3:hover {
      position: relative;
      left: 1rem;
      color: #fff;
      font-size: 1.5rem;
      font-weight: 400;
      transition: 0.25s;
    }
    &:hover {
      background-color: #a1bbbb;
      cursor: pointer;
      &:before {
        opacity: 0.7;
        font-size: 3.3rem;
        text-transform: uppercase;
        color:#9f2241;
      }
      h3 {
        left: 1.9rem;
        
      }
    }
  }
}



.list_alpha2 {
  .num2 {
    padding: 0.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: 0.25s;
    &:nth-child(0):before {
      content: '0';
      font-size: 2rem;
      font-weight: bold;
      color: #9f2241;
      width: 2rem;
      opacity: 0.5;
      transition: 0.25s;
    }
  
    &:nth-child(1):before {
      content: 'f.';
      font-size: 2rem;
      font-weight: bold;
      color: #000;
      width: 2rem;
      opacity: 0.5;
      transition: 0.25s;
    }
    &:nth-child(2):before {
      content: 'g.';
      font-size: 2rem;
      font-weight: bold;
      color: #000;
      width: 2rem;
      opacity: 0.5;
      transition: 0.25s;
    }
    &:nth-child(3):before {
      content: 'h.';
      font-size: 2rem;
      font-weight: bold;
      color: #000;
      width: 2rem;
      opacity: 0.5;
      transition: 0.25s;
    }
    &:nth-child(4):before {
      content: 'i.';
      font-size: 2rem;
      font-weight: bold;
      color: #000;
      width: 2rem;
      opacity: 0.5;
      transition: 0.25s;
    }
    &:nth-child(5):before {
      content: 'j.';
      font-size: 2rem;
      font-weight: bold;
      color: #000;
      width: 2rem;
      opacity: 0.5;
      transition: 0.25s;
    }
    &:nth-child(6):before {
      content: 'k.';
      font-size: 2rem;
      font-weight: bold;
      color: #000;
      width: 2rem;
      opacity: 0.5;
      transition: 0.25s;
    }
    &:nth-child(7):before {
      content: 'l.';
      font-size: 2rem;
      font-weight: bold;
      color: #000;
      width: 2rem;
      opacity: 0.5;
      transition: 0.25s;
    }
    &:nth-child(8):before {
      content: 'm.';
      font-size: 2rem;
      font-weight: bold;
      color: #000;
      width: 2rem;
      opacity: 0.5;
      transition: 0.25s;
    }
    &:nth-child(9):before {
      content: 'n.';
      font-size: 2rem;
      font-weight: bold;
      color: #000;
      width: 2rem;
      opacity: 0.5;
      transition: 0.25s;
    }
    h3 {
      position: relative;
      left: 1rem;
      color: #3d3d3d;
      font-size: 1.5rem;
      font-weight: 100;
      transition: 0.25s;
    }
    h3:hover {
      position: relative;
      left: 1rem;
      color: #fff;
      font-size: 1.5rem;
      font-weight: 400;
      transition: 0.25s;
    }
    &:hover {
      background-color: #a1bbbb;
      cursor: pointer;
      &:before {
        opacity: 0.7;
        font-size: 3.3rem;
        text-transform: uppercase;
        color:#9f2241;
      }
      h3 {
        left: 1.9rem;
        
      }
    }
  }
}

/**  Youth Card **/

@import url('https://fonts.googleapis.com/css?family=Marck+Script|Ubuntu');

.card-sn {
     position: relative;
     width: auto;
     height: 666px;
     border-radius: 10px;
     overflow: hidden;
     background: #f5f6fa;
     box-shadow: 1px 3px 3px rgba(0, 0, 0, 0.2);
    


}
.card-sn:before {
     content: '';
     position: absolute;
     display: block;
     width: 100%;
     height: 0;
     background: linear-gradient(to bottom, #9f2241, #B4A269);
     transition: all 0.5s ease;
}
.card-sn:hover {
    
}
.card-sn:hover:before {
     height: 180px;
}
.card-sn:hover .social {
     margin-top: 73px;
}
.card-sn:hover .pic {
     width: 137px;
     height: 137px;
     margin-top: 10px;
     box-shadow: 1px 1px 10px 1px #888;
}
.card-sn:hover .content {
     margin-top: 90px;
}
.card-sn .social {
     position: absolute;
     top: 67px;
     left: 49%;
     transform: translateX(-50%);
     width: 60%;
     height: 0;
     margin-top: -30px;
     text-align: center;
     transition: margin-top 0.5s ease;
}
.card-sn .social a {
     text-decoration: none;
     color: #2d3436;
  |    font-size: 18px;
     color: #fff;
}
.card-sn .pic {
     position: relative;
     left: 50%;
     top: 15%;
     transform: translateX(-50%);
     width: 140px;
     height: 140px;
     overflow: hidden;
     transition: all 0.5s ease;
     border-radius: 50%;
     background: #fff;
}
.card-sn .pic img {
     width: 100%;
     height: 100%;
     border-radius: 50%;
}
.card-sn .content {
     margin-top: 33px;
     text-align: left;
     padding: 0 3px;
     color: #000;
     transition: margin-top 0.5s ease;
     width: auto;
     margin: left -100px;
     
}
.card-sn .content .title {
     margin-bottom: 0;
     font-family: 'Marck Script', cursive;
     font-size: 22px;
}
.card-sn .content span {
     font-size: 12px;
     letter-spacing: 1.5px;
}
.card-sn .content p {
    
     font-size: 17px;
     line-height: 1.9;
     color: #101220;
     width:133%;
     
}
/*%% End container %%*/

 
.card-sn .social .card-sn-description-social {
     position: absolute;
     bottom: 37px;
     display: block;
     
     margin-bottom: 8px;
     color: #555572;
     font-size: 14px;
 
}


.card-sn .social .card-sn-description-social ul {
     display: flex;
     
     gap: 10px;
}


.card-sn .social .card-sn-description-social ul li {
     list-style-type: none;
}
.card-sn .social .card-sn-description-social ul li a {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 57px;
     height: 57px;
     color: #fff;
     border-radius: 50%;
     box-shadow: 4px 4px 8px #97c3c4, -4px -4px 8px #cdffff;
     transition: all 0.4s;
    
}
.card-sn .social .card-sn-description-social ul li a:hover {
     color: white;
     transform: translate(0, -7px);
}
.card-sn .social .card-sn-description-social ul li a svg {
     width: 63px;
     height: 63px;
}
.card-sn .social .card-sn-description-social ul li:nth-child(1) a:hover {
     background-color: #1da1f2;
}
.card-sn .social .card-sn-description-social ul li:nth-child(2) a:hover {
     background-color: #3f729b;
}
.card-sn .social .card-sn-description-social ul li:nth-child(3) a:hover {
     background-color: #00405d;
}
.card-sn .social .card-sn-description-social ul li:nth-child(4) a:hover {
     background-color: #0a66c2;
}



.card-sn .box-shadow{
    -webkit-box-shadow: 0 1px 1px rgba(72,78,85,.6);
    box-shadow: 0 1px 1px rgba(72,78,85,.6);
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

.card-sn .box-shadow:hover{
    -webkit-box-shadow: 0 20px 40px rgba(72,78,85,.6);
    box-shadow: 0 20px 40px rgba(72,78,85,.6);
    -webkit-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -o-transform: translateY(-15px);
    transform: translateY(-15px);
}

/** columns **/


* {
  box-sizing: border-box;
}

/* Create two equal columns that floats next to each other */
.column1 {
  float: left;
  width: 37%;
  padding: 5px;
 
}
.column2 {
  float: left;
  width: 63%;
  padding: 15px;
 
}
/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column1 {
    width: 100%;
  }
  .column2 {
    width: 100%;
  }

  .card-sn .social .card-sn-description-social ul li a {
     display: flex;
     align-items: left;
     justify-content: left;
     width: 57px;
     height: 57px;
     color: #121212;
     border-radius: 50%;
     box-shadow: 3px 3px 6px #97c3c4, -3px -3px 6px #cdffff;
     transition: all 0.4s;
    
}

.card-sn .social .card-sn-description-social {
     position: absolute;
     bottom: 47px;
     display: block;
     margin-bottom: 8px;
     color: #555572;
     font-size: 14px;
 
}
}




/**  side resources  **/

.sidebar-toggle {
margin-left: -240px;
}
.sidebars {
width: 301px;
height: auto;
background: #9f2241;
position: relative;
-webkit-transition: all .3s ease-in-out;
-moz-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
-ms-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
z-index: 0;
#leftside-navigation {
ul, ul ul {
  margin: -2px 0 0;
  padding: 0;
}
ul {
  li {
    list-style-type: none;
    border-bottom: 1px dashed #9f2241;
    &.active {
      & > a {
        color: #9f2241;
      }
      ul {
        display: block;
      }
    }
    a {
      color: #3f4255;
      text-decoration: none;
      display: block;
      padding: 9px 0 9px 15px;
      font-size: 15px;
      outline: 0;
      -webkit-transition: all 200ms ease-in;
      -moz-transition: all 200ms ease-in;
      -o-transition: all 200ms ease-in;
      -ms-transition: all 200ms ease-in;
      transition: all 200ms ease-in;
      &:hover {
        color: #fff;
        background-color: #9f2241;
        font-size:17px;
      }
      span {
        display: inline-block;
      }
      i {
        width: 30px;
        .fa-angle-left, .fa-angle-right {
          padding-top: 3px;
        }
      }
    }
  }
}
ul ul {
  display: none;
  li {
    background: 	#dadada;
    margin-bottom: 10px;
    margin-left: 13px;
    margin-right: 10px;
    border-bottom: none;
    a {
      font-size: 15px;
      padding-top: 13px;
      padding-bottom: 13px;
      color: #9f2241;
    }
  }
}
}
}





       