/*------ ส่วน ทั้งหมด ------*/
@import url('https://fonts.googleapis.com/css?family=Trirong|Kanit:400,700|Merriweather+Sans|Pacifico&display=swap');
html { height: 100%;}
body {
  margin: 0;
  font-family: 'Trirong', sans-serif;
  height: 100%;
}

section {
	position: relative;
    width: 100%;
    padding: 80px 0;
}
@media screen and (max-width: 768px) {
.space {
	padding : 20px 10px 20px 10px;
   }
}
/*========================================================================*/
/*------ Button ------*/
.button-go-to-top {
    position: fixed;
    bottom: 23px;
    left: 28px;
	border-radius: 50%;
}
.button-pill {
    border-radius: 40px;
}
.button-yellow {
    background: #e5a913;
    color: #000000;
    font-size: 17px;
}
    .button-yellow:hover {
        background: #000000;
        font-size: 17px;
		color :#ffffff;
		transition: 1s;
    }
.button-dark {
    background: #24252B;
    color: #ffffff;
    font-size: 17px;
}
    .button-dark:hover {
        background: #e5a913;
        font-size: 17px;
		color :#000000;
		transition: 1s;
    }
.button-outline-dark {
	border: 3px solid #24252B;
    background: none;
    color: #24252B;
    font-size: 17px;
	font-weight: bold;
}
    .button-outline-dark:hover {
		border: 3px solid #000000;
        background: #000000;
        color: #ffffff;
        font-size: 17px;
		font-weight: bold;
		transition: 1s;
    }
.button-outline-white {
	border: 3px solid #ffffff;
    background: none;
    color: #ffffff;
    font-size: 17px;
	font-weight: bold;
}
    .button-outline-white:hover {
		border: 3px solid #e5a913;
        background: #e5a913;
        color: #000000;
        font-size: 17px;
		font-weight: bold;
		transition: 1s;
    }
.button-green {
    background: #0BA62E;
    color: #ffffff;
    font-size: 17px;
}
    .button-green:hover{
    	color: #ffffff;
	}
.button-red {
    background: #D70000;
    color: #ffffff;
    font-size: 17px;
}
	.button-red:hover{
    	color: #ffffff;
	}
/*========================================================================*/
/*------ เส้นคั่น ------*/
hr.white {
	border: 2px solid #ffffff;
}
hr.yellow {
	border: 2px solid #e5a913;
}
hr.dark {
	border: 2px solid #24252B;
}
/*========================================================================*/
/*------ Scroll Bar ------*/
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #9a9cb5;
}

::-webkit-scrollbar-thumb {
    background: #e5a913;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #87b5c4;
    }
/*========================================================================*/
/*---------ส่วนเมนู------------*/
#navbar {
  background-color: rgba(0,0,0,0.70);
  position: fixed;
  top: -50px;
  width: 100%;
  display: block;
  transition: top 0.3s;
}

#navbar a {
  float: left;
  display: block;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  padding: 15px;
  text-decoration: none;
  font-size: 17px;
}
#navbar a:hover {
  background-color: rgba(0,0,0,0.90);
  color: #ffffff;
}
.sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.90);
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidebar a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 18px;
  color: #ffffff;
  display: block;
  transition: 0.3s;
}

.sidebar a:hover {
  color: #e5a913;
}

.sidebar .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

.openbtn {
  font-size: 20px;
  cursor: pointer;
  color: #2f2f2f;
  font-weight: bold;
  padding: 10px 15px;
  border: none;
}

.openbtn:hover {
  color: #ffffff;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
  .sidebar {padding-top: 15px;}
  .sidebar a {font-size: 14px;}
}
/*========================================================================*/
/* -------------- Search------------------*/
/* The overlay effect with black background */
.overlay {
  height: 100%;
  width: 100%;
  display: none;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.9); /* Black with a little bit see-through */
}

/* The content */
.overlay-content {
  position: relative;
  top: 46%;
  width: 80%;
  text-align: center;
  margin-top: 30px;
  margin: auto;
}

/* Close button */
.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 30px;
  cursor: pointer;
  color: white;
}

.overlay .closebtn:hover {
  color: #ccc;
}

/* Style the search field */
.overlay input[type=text] {
  padding: 15px;
  font-size: 24px;
  border: none;
  float: left;
  width: 80%;
  background: white;
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
}

.overlay input[type=text]:hover {
  background: #f1f1f1;
}

/* Style the submit button */
.overlay button {
  float: left;
  width: 20%;
  padding: 21px;
  background: #e5a913;
  font-size: 24px;
  border: none;
  cursor: pointer;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  margin-top : 8px;
}
.overlay button:hover {
  background: #24252B;
  color: #ffffff;
  transition: 1s;
}
/*========================================================================*/
/* -------------- Header ------------------*/
.bg-image {
  background-image: url('../images/background.png');
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.bg-lang {
  position: absolute;
  right: 20px;
  top: 20px;
  padding : 5px;
}

.bg-login {
  position: absolute;
  right: 100px;
  top: 20px;
  padding : 5px;
  border: 3px solid #e5a913;
  border-radius: 40px;
}
.bg-login span {	
font-size: 24px;
font-weight: bold;
color: #e5a913;
}
.bg-text {
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0, 0.4); /* Black w/opacity/see-through */
  border: 3px solid #f1f1f1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 80%;
  padding: 20px;
  text-align: center;
}
.bg-text img { width: 20%; }
.bg-text h1 {
	font-family: 'Merriweather Sans', sans-serif;
	color: #e5a913;
	font-size: 72px;
	font-weight: bolder;
}
.bg-text p { 
	font-family: 'Pacifico', cursive;
	color: #ffffff;
	font-size: 40px;
	font-weight: bold;
}
@media screen and (max-width: 1000px) {
  .bg-text h1 {
	font-size: 30px;
    }
  .bg-text p { 
	font-size: 18px;
    }
}
@media screen and (max-width: 768px) {
    .bg-login a {
        font-size: 12px;
        font-weight: bold;
     }
     .bg-login a:hover{
         font-size: 12px;
         font-weight: bold;
     }
     .bg-lang {
        position: absolute;
        right: 20px;
        top: 20px;
        padding : 1px;
        font-size: 12px;
        font-weight: bold;
    }
}
/*========================================================================*/
/* -------------------Subscribe Section ---------------------*/

.bg-text h3 {
	color: #ffffff;
	font-size: 24px;
    font-family: 'Merriweather Sans', sans-serif;
}
.bg-text span {
	color: #e5a913;
	font-size: 24px;
    font-family: 'Merriweather Sans', sans-serif;
}
@media screen and (max-width: 768px) {
  .bg-text h3 {
	font-size: 18px;
    font-family: 'Merriweather Sans', sans-serif;
    }
  .bg-text span { 
	font-size: 18px;
    font-family: 'Merriweather Sans', sans-serif;
    }
}
form.subscribe input[type=email] {
    font-size: 17px;
    border: 3px solid #e5a913;
    height: 40px;
    float: left;
    width: 70%;
    background: #ffffff;
    color: #000000;
    font-weight:bold;
    margin: auto;
    border-top-left-radius :10px;
    border-bottom-left-radius : 10px;
}


form.subscribe button[type=submit] {
    float: left;
    width: 30%;
    background: #e5a913;
    color: #000000;
	font:bold;
    font-size: 17px;
    border: 3px solid #e5a913;
    height: 40px;
    border-left: none;
    cursor: pointer;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
    form.subscribe button:hover {
        background: #000000;
        border: 3px solid #000000;
		color: #ffffff;
		transition: 1s;
    }
form.subscribe::after {
    content: "";
    clear: both;
    display: table;
}
/*========================================================================*/
/* -------------------About Section ---------------------*/
.about-section {
    background: url('../images/about-bg.svg') no-repeat center center;
    background-size: cover;
    color: #000000;
    position: relative;
	background-attachment: fixed !important;
}
.about-section:before {
        content: ' ';
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(22,22,22,0.90);
        top: 0;
        left: 0;
    }
.about-section h2 {
        color: #e5a913;
        font-size: 45px;
        font-weight: 800;
        text-align: center;
        text-shadow: 1px 1px 1px #24252B;
    }
 .about-section p {
        color: #ffffff;
        font-size:24px;
        text-align: center;
    }
.about-section h3 {
		font-family: 'Pacifico', cursive;
        color: #e5a913;
        font-weight:bold;
        font-style:italic;
    }
@media screen and (max-width: 768px) {
    .about-section h2 {
      font-size: 30px;
    }
    .about-section p {
      font-size: 16px;
    }
}
 /*========================================================================*/
/* - Instructor section - */
.instructor-section {
    background-color: #E0E0E0;
}
.instructor-section img {
    vertical-align: middle;
	height: 400px;
	width: 400px;
    border-radius: 50%;
}
    .instructor-section h2 {
        color: #000000;
        font-size: 28px;
        font-weight: 800;
        text-align: center;
    }

    .instructor-section h3 {
        color: #24252B;
        font-size: 24px;
        font-weight: 800;
		text-align: center;
    }

    .instructor-section p {
        color: #24252B;
		font-size: 20px;
		font-weight: bold;
    }
    .instructor-section a {
          margin-left: 25%;
    }
    .instructor-section a:hover {
		  text-decoration: none;
    }
.instructor-section-border-left {
	border-left: 3px solid #ffffff;
    }
@media screen and (max-width: 768px) {
        .instructor-section h2 {
            font-size: 24px;
        }
        .instructor-section h3 {
            font-size: 20px;
        }
        .instructor-section p {
            font-size: 16px;
        }
    }
/*========================================================================*/
/* Service Section */
.service-section {
    background-color: #ffffff;
    color: #000000;
    width: 100%;
    padding: 50px 20px 50px 20px;
    text-align: center;
}
    .service-section h2 {
        color: #24252B ;
        font-size: 45px;
        font-weight: 800;
        text-align: center;
    }
    .service-section h2 span {
	     color:#e5a913;
    }
    .service-section p {
        color: #24252B;
        font-weight: bold;
        text-align: center;
		word-wrap: break-word;
    }
    .service-section h3 {
        color: #000000;
        font-weight:bold;
    }
    .service-section a {
        color: #24252B !important;
    }
     .service-section a:hover {
        color: #e5a913 !important;
		transition: 1s;
    }
    @media screen and (max-width: 768px) {
        .service-section h2 {
            font-size: 30px;
        }
        .service-section h3 {
            font-size: 28px;
        }
    }
 /*========================================================================*/
/* - video section - */
.video-section {
    background: url('../images/video-bg.jpg') 50% 0 repeat-y fixed;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
    text-align: center;
    position: relative;
    color: #fff;
}
    .video-section:before {
        content: ' ';
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(66,66,66,0.80);
        top: 0;
        left: 0;
    }
    .video-section h2 {
        color: #F7C929;
        padding-top: 20px;
        padding-bottom: 16px;
    }

    .video-section small {
        color: #fff;
        display: block;
        margin-top: 10px;
        font-family: 'Lato', sans-serif;
        font-size: 18px;
    }

    .video-section span {
        color: #F7C929;
        display: block;
        margin-top: 10px;
        font-family: 'Lato', sans-serif;
        font-size: 18px;
    }

    .video-section .fa {
        position: relative;
        border: 2px solid #ffffff;
        border-radius: 100px;
        color: #ffffff;
        font-size: 28px;
        width: 80px;
        height: 80px;
        line-height: 80px;
        text-align: center;
        vertical-align: middle;
        margin-top: 22px;
    }
 /*---responsive youtube --*/
 .video-section .videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}
.video-section .videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
  /*---responsive youtube --*/
.modal-bg  { 
	background:#24252B !important;
	border-top:2px solid #000000 !important;
	border-radius: 10px !important;
}
@media screen and (max-width: 768px) {
    .video-section h2 {
        font-size: 30px;
    }
}
/*========================================================================*/
/* - Inhouse section - */
.course-section {
    background-color: #E0E0E0;
    color: #000000;
    width: 100%;
    padding: 50px 20px 50px 20px;
    text-align: center;
}
    .course-section h2 {
        color: #000000;
        font-size: 40px;
        font-weight: 800;
        text-align: center;
    }

        .course-section h2 span {
            color: #e5a913;
            font-size: 35px;
            font-weight: 800;
            text-align: center;
        }

    .course-section h3 {
        color: #24252B;
        font-size: 38px;
        font-weight: 800;
    }
    .course-section h4 {
        color: #000000;
        font-size: 20px;
        font-weight: 800;
    }
    .course-section p {
        color: #24252B;
    }

    .course-section a {
        color: #000000;
        text-align: center;
        margin-top: 25px;
    }

.course-section-border {
    border: 2px solid #24252B;
    padding: 12px;
}
.course-section-border-yellow {
    border: 2px solid #e5a913;
    padding: 12px;
}
@media screen and (max-width: 768px) {
    .course-section h2 {
        font-size: 30px;
        font-weight: bold;
    }
    .course-section h2 span{
        font-size: 30px;
        font-weight: bold;
    }
    .course-section h3 {
        font-size: 28px;
        font-weight: bold;
    }
    .course-section i {
        font-size: 28px;
        font-weight: bold;
    }
}
/*========================================================================*/
/* - Public section - */
.public-section {
    background: url('../images/background-mission.png') no-repeat center center;
    background-size: cover;
    color: #000;
    position: relative;
	background-attachment: fixed !important;
}

    .public-section:before {
        content: ' ';
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(66,66,66,0.80);
        top: 0;
        left: 0;
    }

    .public-section h2 {
        color: #ffffff;
        font-size: 35px;
        font-weight: 800;
        text-align: center;
		text-shadow: 1px 1px 1px #24252B;
    }

        .public-section h2 span {
            color: #e5a913;
            font-size: 35px;
            font-weight: 800;
            text-align: center;
        }

    .public-section h3 {
        color: #e5a913;
        font-size: 20px;
        font-weight: 800;
    }

    .public-section p {
        color: #24252B;
    }

    .public-section a {
        color: #24252B;
        text-align: center;
        margin-top: 25px;
		text-decoration: none;
    }
    .public-section b {
        color: #24252B;
        text-align: center;
        margin-top: 25px;
		text-decoration: none;
    }
    .public-section a :hover {
        color: #e5a913 !important;
		text-decoration: none;
		transition: 1s;
    }
    .public-section b :hover {
        color: #e5a913;
		text-decoration: none;
		transition: 1s;
    }
	.public-section .border-public {
	    border: 2px solid #e5a913;
		text-align: center ;
	}
.public-section h4 {
    color: #000000;
    font-size: 20px;
    font-weight: bold;
}

.card {
    padding: 4px;
	background-color: #E0E0E0;
}
@media screen and (max-width: 768px) {
    .public-section h2 {
        font-size: 28px;
        font-weight: bold;
    }
    .public-section h2 span{
        font-size: 28px;
        font-weight: bold;
    }
    .public-section h4 {
        font-size: 18px;
        font-weight: bold;
    }
}
/*========================================================================*/
/* ===== e-learning =======*/
.elearning-section {
    background-color: #E0E0E0;
    color: #000000;
    width: 100%;
    padding: 50px 20px 50px 20px;
    text-align: center;
}
    .elearning-section h2 {
        color: #000000;
        font-size: 45px;
        font-weight: 800;
        text-align: center;
        text-shadow: 1px 1px 1px #24252B;
    }
    .elearning-section h2 span {
	     color:#e5a913;
    }
    .elearning-section p {
        color: #24252B;
        font-weight: bold;
		font-size: 20px;
        text-align: center;
		word-wrap: break-word;
    }
    .elearning-section h3 {
        color: #24252B;
        font-weight:bold;
		text-align: center;
		font-size: 20px;
    }
    @media screen and (max-width: 768px) {
        .elearning-section h2 {
            font-size: 30px;
            font-weight: bold;
        }
        .elearning-section h2 span{
            font-size: 30px;
            font-weight: bold;
        }
        .elearning-section p {
            font-size: 16px;
        }
    }
 /*========================================================================*/
/* ===== live training =======*/
.live-section {
    background-color: #ffffff;
    color: #000000;
    width: 100%;
    padding: 50px 20px 50px 20px;
    text-align: center;
}
    .live-section h2 {
        color: #000000;
        font-size: 45px;
        font-weight: 800;
        text-align: center;
        text-shadow: 1px 1px 1px #24252B;
    }
    .live-section h2 span {
	     color:#e5a913;
    }
    .live-section p {
        color: #24252B;
        font-weight: bold;
		font-size: 16px;
        text-align: center;
		word-wrap: break-word;
    }
    .live-section h3 {
        color: #24252B;
        font-weight:bold;
		text-align: center;
		font-size: 20px;
    }
    @media screen and (max-width: 768px) {
        .live-section h2 {
            font-size: 30px !important;
        }
        .live-section h4 {
            font-size: 20px;
        }
    }
 /*========================================================================*/
/* ===== consulting =======*/
.consulting-section {
    background-color: #E0E0E0;
    color: #000000;
    width: 100%;
    padding: 50px 20px 50px 20px;
    text-align: center;
}
    .consulting-section h2 {
        color: #000000;
        font-size: 45px;
        font-weight: 800;
        text-align: center;
        text-shadow: 1px 1px 1px #24252B;
    }
    .consulting-section h2 span {
	     color:#e5a913;
    }
    .consulting-section p {
        color: #24252B;
        font-weight: bold;
		font-size: 20px;
        text-align: left;
		word-wrap: break-word;
    }
    .consulting-section h3 {
        color: #24252B;
        font-weight:bold;
		text-align: center;
		font-size: 20px;
    }
    @media screen and (max-width: 768px) {
        .consulting-section h2 {
            font-size: 30px;
        }
        .consulting-section p {
            font-size: 16px;
        }
    }
 /*========================================================================*/
/* OD Ad SECTION */
.od-section {
    background: url('../images/OD-bg.jpg') no-repeat center center;
    background-size: cover;
    color: #ffffff;
    position: relative;
	background-attachment: fixed !important;
}

    .od-section:before {
        content: ' ';
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.90);
        top: 0;
        left: 0
    }

    .od-section h2 {
        color: #FFFFFF;
        font-size: 35px;
        font-weight: 800;
        text-align: center;
    }

        .od-section h2 span {
            color: #e5a913;
            font-size: 35px;
            font-weight: 800;
            text-align: center;
        }

    .od-section h3 {
        color: #e5a913;
        font-size: 20px;
        font-weight: 800;
    }

    .od-section p {
        color:#ffffff;
    }

    .od-section a {
        color: #ffffff;
        text-align: center;
        margin-top: 25px;
    }

.od-section-border {
    border: 2px solid #e5a913;
    padding: 12px;
}
.od-container {
  position: relative;
}
.od-container img{
  width: 100% ;
}
/* Hide the images by default */
.od-slide {
  display: none;
}

/* Add a pointer when hovering over the thumbnail images */
.od-cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.od-prev {
  cursor: pointer;
  position: absolute;
  top: 30%;
  width: auto;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}
.od-next {
  cursor: pointer;
  position: absolute;
  top: 30%;
  width: auto;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.od-next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
.od-prev {
  left: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.od-prev:hover,
.od-next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.od-numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Container for image text */
.od-caption-container {
  text-align: center;
  background-color: #222;
  padding: 2px 16px;
  color: white;
}

.od-row:after {
  content: "";
  display: table;
  clear: both;
}

/* Six columns side by side */
.od-column {
  float: left;
  width: 16.66%;
}

/* Add a transparency effect for thumnbail images */
.od-demo {
  opacity: 0.6;
}

.od-active,
.od-demo:hover {
  opacity: 1;
}
@media screen and (max-width: 768px) {
    .od-section h2 {
        font-size: 28px;
    }
    .od-section h2 span {
        font-size: 28px;
    }
}
/*========================================================================*/
/* ===== QA about Course =======*/
.QA-section {
    background-color: #E0E0E0;
    color: #000000;
    width: 100%;
    padding: 50px 20px 50px 20px;
    text-align: center;
}
    .QA-section h2 {
        color: #000000;
        font-size: 45px;
        font-weight: 800;
        text-align: center;
        text-shadow: 1px 1px 1px #24252B;
    }
    .QA-section h2 span {
	     color:#e5a913;
    }
    .QA-section p {
        color: #24252B;
        font-weight: bold;
		font-size: 20px;
        text-align: left;
		word-wrap: break-word;
    }
    .QA-section h3 {
        color: #24252B;
        font-weight:bold;
		text-align: center;
		font-size: 20px;
    }
    @media screen and (max-width: 768px) {
        .QA-section h2 {
            font-size: 30px;
        }
        .QA-section p {
            font-size: 16px;
        }
    }
 /*========================================================================*/
/* ===== blog ===== */
.blog-section {
    background: url('../images/blog-bg.svg') no-repeat center center;
    background-size: cover;
    color: #fff;
    position: relative;
}
.blog-space {
	padding : 20px ;
}
    .blog-section h2 {
        color: #000000;
        font-size: 45px;
        font-weight: 800;
        text-align: center;
        text-shadow: 1px 1px 1px #24252B;
    }
    .blog-section h2 span {
	     color:#e5a913;
    }
    .blog-section p {
        color: #24252B;
        font-weight: bold;
        text-align: left;
        font-size: 14px;
    }
    .blog-section h3 {
        color: #e5a913;
        font-weight:bold;
		text-align: center;
		font-size: 16px;
    }
.blog-image img{
	width: auto;
	height: 200px;
}
.blog-avatar img{ 
	float: left;
	padding-right: 5px;
	padding-top : 10px ;
	margin-top:-3px;
    width: 30px;
}
.blog-avatar p{ 
	float: left;
	color :#24252B;
	font-size: 14px;
	padding-top : 10px ;
}
.blog-like {
	width: 100% ;
}
    .blog-like a {
	color:#ffffff;
	background-color: #3C599F;
	border:1px solid #3C599F;
	width : 80px;
	height: 38px;
	font-size: 20px;
	padding :5px 3px 9px 3px;
	}
   .blog-like a:hover{
	  background-color: #4262B0; 
    }
   .blog-like span {
	color: #3C599F;
	border:1px solid #3C599F;
	background-color: #ffffff;
    width : 200px;
	height: 23px;
	margin-left: -8px ;
	font-size: 14px;
	padding :5px 3px 7px 3px;
	}
.blog-comment {
	width: 100%;
}
    .blog-comment i {
	color:#ffffff;
	background-color: #24252B;
	border:1px solid #24252B;
	width : 80px;
	height: 38px;
	font-size: 20px;
	padding :5px 3px 9px 3px;
	}
   .blog-comment span {
	color: #24252B;
	border:1px solid #24252B;
	background-color: #ffffff;
    width : 200px;
	height: 23px;
	margin-left: -8px ;
	font-size: 14px;
	padding :5px 3px 7px 3px;
	}
.blog-section button {
	float: right;
    }
.blog-card {
  position: relative ;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
  border-radius: 5px;
  display:block;
  max-width: 300px;
}
@media screen and (max-width: 768px) {
	.blog-card {
        max-width:auto;
	}
}
.blog-date p {
	position : absolute;
	top : 10px;
	left: 10px;
	color:#ffffff;
	background-color: rgba(0,0,0,0.5);
}
@media screen and (max-width: 768px) {
	.blog-date p {
		top : 10px;
		left : 10px;
	}
}
.blog-view p {
	position : absolute;
	top : 10px;
	right: 10px;
	color:#ffffff;
	background-color: rgba(0,0,0,0.5);
}
@media screen and (max-width: 768px) {
	.blog-view p {
		top : 10px;
		right : 10px;
	}
}
.blog-social {
  position : relative;
}
.blog-social .fab {
 float: right;
 margin-top: -17px;
 margin-right: 10px;
 padding: 10px;
 width: 40px;
 font-stretch: 20px;
 text-align: center;
 text-decoration: none;
 border-radius: 50% 50% 50% 50%;
}
.blog-social .fab:hover {
 opacity: 0.7;	
}
/* Facebook */
.blog-social .fa-facebook-f {
  background: #3B5998;
  color: white;
}

/* Twitter */
.blog-social .fa-twitter {
  background: #55ACEE;
  color: white;
}
/* google plus */
.blog-social .fa-line {
  background: #01C301;
  color: white;
}
.blog-card img{
 border-radius: 5px 5px 0 0;
}
.blog-card:hover {
	box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}
.blog-container {
  background-color: #ffffff;
  padding: 20px 16px;
  text-align:center;
  word-wrap:break-word;
  
}
  .blog-container a {
    color:#ffffff;
}
@media screen and (max-width: 768px) {
    .blog-section h2 {
        font-size: 30px;
    }
    .blog-section h2 span {
        font-size:30px;
    }
}
 /*========================================================================*/
/* activity */
.activity-section {
    background: url('../images/activity-bg.svg') no-repeat center center;
    background-size: cover;
    color: #fff;
    position: relative;
}
    .activity-section:before {
        content: ' ';
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(162,162,162,0.90);
        top: 0;
        left: 0
    }

.activity-space {
	padding : 5px ;
}
    .activity-section h2 {
        color: #000000;
        font-size: 45px;
        font-weight: 800;
        text-align: center;
    }
    .activity-section h2 span {
	     color:#e5a913;
    }
    .activity-section p {
        color: #666666;
        font-weight: bold;
        text-align: center;
		word-wrap: break-word;
    }
    .activity-section h3 {
        color: #333333;
        font-weight:bold;
		text-align: center;
		font-size: 20px;
    }
    .activity-section h4 {
        color: #ffffff;
        font-weight:bold;
		text-align: right;
		font-size: 20px;
    }
.activity-section button { 
	    float: right;
    }
.act-con {
  position: relative;
  width:400px;
}

.act-image {
  display: block;
  width: 100%;
  height: auto;
  cursor:pointer;
}

.act-overlay {
  position: absolute; 
  bottom: 0; 
  background: rgba(0, 0, 0, 0.5); 
  width: 100%;
  opacity: 1;
  font-size: 16px;
  padding: 10px;
  text-align: center;
  cursor:pointer;
}
.act-overlay h5 {
	color: #e5a913;
	font-size: 16px;
}
.act-overlay p {
	color: #f1f1f1;
	font-size: 14px;
}
@media screen and (max-width: 768px) {
    .activity-section h2 {
        font-size: 30px;
    }
    .activity-section h2 span {
        font-size:30px;
    }
}
 /*========================================================================*/
/* - Clip section - */
.clip-section {
    background: url('../images/background-mission.png') no-repeat center center;
    background-size: cover;
    color: #fff;
    position: relative;
	background-attachment: fixed !important;
}

    .clip-section:before {
        content: ' ';
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(39,39,39,0.80);
        top: 0;
        left: 0
    }

    .clip-section h2 {
        color: #ffffff;
        font-size: 35px;
        font-weight: 800;
        text-align: center;
    }

        .clip-section h2 span {
            color: #e5a913;
            font-size: 35px;
            font-weight: 800;
            text-align: center;
        }

    .clip-section h3 {
        color: #e5a913;
        font-size: 20px;
        font-weight: 800;
    }

    .clip-section p {
        color: #ffffff;
    }

    .clip-section a {
        color: #ffffff;
        text-align: center;
        margin-top: 25px;
    }
.clip-section button {
	float: right;
}
/*---responsive youtube --*/
@media screen and (max-width: 1200px) {
 .clip-section .videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}
.clip-section .videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
    }
@media screen and (max-width: 768px) {
        .clip-section h2 {
            font-size: 30px;
        }
        .clip-section h2 span {
            font-size:30px;
        }
}
/*========================================================================*/
/* - client section - */
.client-section {
    background-color: #ffffff;
	height: 500px;
}
    .client-section h2 {
        color: #000000;
        font-size: 45px;
        font-weight: 800;
        text-align: center;
    }
    .client-section h2 span {
	     color:#e5a913;
    }
    
    .client-section p {
        color: #24252B;
		font-size: 20px;
        font-weight: bold;
        text-align: center;
		word-wrap: break-word;
    }
.client-section img {
	    display: block;
	    margin-left: auto;
        margin-right: auto;
        width : 200px;
    }
@media screen and (max-width: 768px) {
        .client-section h2 {
            font-size: 30px;
        }
        .client-section h2 span {
            font-size:30px;
        }
        .client-section img {
            width : 100px;
        }
}
/*========================================================================*/
/* -- social media-- */
.social-section {
    background-color: #E0E0E0;
	text-align: center !important;
}
.social-section h2 span {
	     color:#e5a913;
}
.social-section p {
        color: #24252B;
        font-weight: bold;
        text-align: center;
		word-wrap: break-word;
}
.social-section h3 {
        color: #000000;
        font-weight:bold;
}
.social-section a {
        color: #24252B !important;
}
.social-section a:hover {
        color: #e5a913 !important;
		transition: 1s;
}
/*========================================================================*/
/* - contact section - */
.contact-section {
    background-color:#D0D0D0;
}
    .contact-section h2 {
        color: #000000;
        font-size: 45px;
        font-weight: 800;
        text-align: center;
    }
    .contact-section h2 span {
	     color:#e5a913;
    }
    .contact-section p {
        color: #24252B;
        font-weight: bold;
        text-align: center;
		word-wrap: break-word;
    }
    .contact-section a {
        color: #24252B;
        font-weight: bold;
		text-align: center;
    }
    .contact-section a :hover {
       color: #e5a913;
	   text-decoration: none;
    }
    .contact-section i {
        color: #000000;
        font-weight: bold;
		text-align: center;
		font-size: 32px;
    }
    .contact-section i :hover {
       color: #ffffff !important;
	   text-decoration: none;
    }
@media screen and (max-width: 768px) {
        .contact-section h2 {
            font-size: 30px ;
        }
        .contact-section h2 span {
            font-size:30px;
        }
}
/*========================================================================*/
/* -- footer -- */
footer {
    float: left;
    background: #24252B;
    width: 100%;
    color: #ffffff;
    padding: 20px 0;
}

    footer ul {
        list-style: none;
        padding-left: 0
    }

    footer h2 {
        font-size: 20px;
        font-weight: 600;
    }

    footer li a {
        color: #fff;
        float: left;
        padding-bottom: 15px;
        width: 100%;
    }

        footer li a:hover {
            color: #fae941;
            float: left;
            padding-bottom: 15px;
            width: 100%;
        }

        footer li a:focus {
            color: #fae941;
            float: left;
            padding-bottom: 15px;
            width: 100%;
        }

    footer .copy-footer {
        border-top: 1px solid #fff;
        padding-top: 20px;
        margin-top: 10px;
        font-size: 14px;
    }
/*========================================================================*/