@import url(../css/ie7.css);
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;300;500;700;900&display=swap");
@font-face {
  font-family: 'TradeGothicLightLight';
  src: url("../fonts/TradeGothicLightLight.eot?#iefix");
  font-weight: normal;
  font-style: normal; }
.headerSec h1 {
  font-size: 20px; }

/****************************************************************************************
@
@	Global Style and Reset
@
****************************************************************************************/
/* Global Styles */
::selection {
  background: #000;
  color: #fff; }

::-moz-selection {
  background: #000;
  color: #fff; }

html, body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  height: auto;
  min-height: 100%;
  overflow-x: hidden;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-font-smoothing: subpixel-antialiased; }

p {
  line-height: 24px; }

ul {
  list-style: none;
  padding-left: 0; }

img {
  max-width: 100%;
  height: auto; }

a {
  text-decoration: none;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  color: #000;
  cursor: pointer; }

a:hover {
  color: #000;
  text-decoration: none; }

a img {
  border: none; }

/* width */
::-webkit-scrollbar {
  width: 5px; }

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 4px #efdb00;
  border-radius: 5px; }

/* Handle */
::-webkit-scrollbar-thumb {
  background: #4c4c4c;
  border-radius: 5px; }

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #000; }

.darkHeader {
  background-color: #f4f4f4;
  box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 5px 8px 0 rgba(0, 0, 0, 0.14), 0 1px 14px 0 rgba(0, 0, 0, 0.12);
  padding-top: 20px !important;
  padding-bottom: 17px;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  position: fixed;
  width: 100%;
  animation: smoothScroll 1s forwards;
  z-index: 9; }

@keyframes smoothScroll {
  0% {
    transform: translateY(-20px); }
  100% {
    transform: translateY(0px); } }
/* 
  ---------------------------------------------
  preloader
  --------------------------------------------- 
  */
#preloader {
  overflow: hidden;
  background-image: linear-gradient(127deg, #274699 0%, #fff 91%);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: fixed;
  z-index: 9999;
  color: #fff; }

#preloader .jumper {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  position: absolute;
  margin: auto;
  width: 50px;
  height: 50px; }

#preloader .jumper > div {
  background-color: #fff;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  opacity: 0;
  width: 50px;
  height: 50px;
  -webkit-animation: jumper 1s 0s linear infinite;
  animation: jumper 1s 0s linear infinite; }

#preloader .jumper > div:nth-child(2) {
  -webkit-animation-delay: 0.33333s;
  animation-delay: 0.33333s; }

#preloader .jumper > div:nth-child(3) {
  -webkit-animation-delay: 0.66666s;
  animation-delay: 0.66666s; }

@-webkit-keyframes jumper {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0); }
  5% {
    opacity: 1; }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0; } }
@keyframes jumper {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0); }
  5% {
    opacity: 1; }
  100% {
    opacity: 0; } }
@-webkit-keyframes dyinglight {
  15% {
    -webkit-transform: scale(1.6);
    transform: scale(1.6); }
  50% {
    -webkit-transform: rotate(-89deg);
    transform: rotate(-89deg); }
  100% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg); } }
@keyframes dyinglight {
  15% {
    -webkit-transform: scale(1.6);
    transform: scale(1.6); }
  50% {
    -webkit-transform: rotate(-89deg);
    transform: rotate(-89deg); }
  100% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg); } }
.dl {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: inline-block; }

.dl__square {
  display: block;
  width: 50px;
  height: 50px;
  background: #fff; }

.dl__container {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-transform-origin: 50% 50% 0;
  transform-origin: 50% 50% 0;
  -webkit-animation: dyinglight 1s ease infinite;
  animation: dyinglight 1s ease infinite;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.dl__corner--top:before,
.dl__corner--top:after,
.dl__corner--bottom:before,
.dl__corner--bottom:after {
  position: absolute;
  width: 17px;
  height: 17px;
  color: #fff;
  content: ""; }

.dl__corner--top:before {
  border-left: 1px solid;
  border-top: 1px solid;
  top: -6px;
  left: -6px; }

.dl__corner--top:after {
  border-right: 1px solid;
  border-top: 1px solid;
  top: -6px;
  right: -6px; }

.dl__corner--bottom:before {
  border-left: 1px solid;
  border-bottom: 1px solid;
  bottom: -6px;
  left: -6px; }

.dl__corner--bottom:after {
  border-right: 1px solid;
  border-bottom: 1px solid;
  bottom: -6px;
  right: -6px; }

button:focus {
  outline: 0px dotted !important;
  outline: 0px auto -webkit-focus-ring-color !important; }

#back2Top {
  position: fixed;
  bottom: 2px;
  right: 2px;
  z-index: 999; }

/*----------------------*/
.container {
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 0;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 16px; }

/*==================================css reset==================================*/
/****************************************************************************************
@
@	Styles
@
****************************************************************************************/
.headerSec {
  position: relative; }
  .headerSec .dropdown-submenu {
    position: relative; }
  .headerSec .dropdown-submenu a::after {
    transform: rotate(-90deg);
    position: absolute;
    right: 6px;
    top: .8em; }
  .headerSec .dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: .1rem;
    margin-right: .1rem; }

/*####################### MENU ########################*/
#cssmenu > ul > li:hover > a, #cssmenu > ul > li.active > a {
  color: #274699;
  color: #ffbf00;
  border-bottom: none !important; }

#cssmenu > ul > li:hover > a::before, #cssmenu > ul > li.active > a::before {
  opacity: 1; }

#cssmenu > ul > li > a {
  padding: 11px 20px;
  text-transform: none;
  font-size: 16px;
  color: #000;
  color: #274699;
  font-weight: 500;
  -webkit-transition: color .2s ease;
  -moz-transition: color .2s ease;
  -ms-transition: color .2s ease;
  -o-transition: color .2s ease;
  transition: color .2s ease;
  margin: 0 10px 0 0; }

#cssmenu ul ul {
  position: absolute;
  left: -9999px;
  z-index: 9999;
  box-shadow: 1px 0 12px rgba(0, 0, 0, 0.22); }

#cssmenu ul ul li a {
  padding: 10px 15px;
  width: 200px;
  font-size: 14px;
  background: #f19562;
  text-decoration: none;
  color: #fff;
  -webkit-transition: color .2s ease;
  -moz-transition: color .2s ease;
  -ms-transition: color .2s ease;
  -o-transition: color .2s ease;
  transition: color .2s ease;
  border-bottom: 1px solid #274699; }

#cssmenu > ul > li.has-sub > a::after {
  display: none; }

#cssmenu > ul > li.has-sub > a {
  padding-right: 6px; }

#cssmenu ul ul li:hover > a, #cssmenu ul ul li a:hover {
  color: #222; }

/*####################### ENd MENU ########################*/


.headerTop {
  display: flex;
  justify-content: space-between;
  color: #fff;
  padding: 15px 15px;
  background-color: #274699;
  background-color: #000080;
}
  .headerTop p {
    margin-bottom: 0; }

.bannerSec {
  position: relative; }
  .bannerSec .txtSec {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    min-width: 80%; }
  .bannerSec h1 {
    font-size: 50px; }
  .bannerSec h1 {
    font-size: 50px; }
  .bannerSec h2 {
    font-size: 60px;
    font-weight: 700; }

.btn1 {
  min-width: 142px;
  min-height: 52px;
  justify-content: center;
  align-items: center;
  background-color: #282828;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px; }
  .btn1:hover {
    color: #f19562; }

.btn2 {
  width: 100%;
  min-height: 52px;
  justify-content: center;
  align-items: center;
  background-color: #274699;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px; }
  .btn2:hover {
    color: #f19562; }

.menuSec {
  padding: 20px 0; }
  .menuSec .btn1 {
    margin-right: 15px; }

.logo img {
  max-width: 169px; }

.menuSec {
  background-color: #f2f0f3;
  background-image: url(../images/ftrbg.jpg);
  background-size: 100% 100%; }
  .menuSec .form-control {
    border-radius: 30px;
    min-height: 52px;
    border-color: navy;
  }

.logo {
  display: flex;
  justify-content: center; }

.innerMenu {
  display: flex;
  align-items: center; }

.cart i {
  font-size: 22px;
  color: #294593; }

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #9F9F9F;
  font-size: 16px; }

input::-moz-placeholder, textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #9F9F9F;
  font-size: 16px; }

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  /* IE 10+ */
  color: #9F9F9F;
  font-size: 16px; }

input:-moz-placeholder, textarea:-moz-placeholder {
  /* Firefox 18- */
  color: #9F9F9F;
  font-size: 16px; }

.mnterBx {
  position: relative; }
  .mnterBx .imgSec {
    max-height: 477px;
    overflow: hidden;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px; }
    .mnterBx .imgSec img {
      max-height: 100%; }
  .mnterBx .txtBx {
    background-color: #fff;
    padding: 15px; }
    .mnterBx .txtBx h5 {
      font-size: 22px;
      color: #282828; }
    .mnterBx .txtBx p {
      color: #747474; }

.mentorsSec {
  background-size: cover !important;
  padding: 60px 0; }
  .mentorsSec h2 {
    font-size: 26px;
    text-align: center;
    margin-bottom: 2rem; }

.icnBx {
  display: flex;
  border: 1px solid #ccc;
  padding: 10px;
  align-items: center;
  border-radius: 10px; }
  .icnBx .leftBx {
    padding: 10px;
    width: 96px;
    height: 96px;
    border-radius: 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px; }
    .icnBx .leftBx.sky {
      background-color: #EBF0FF; }
    .icnBx .leftBx.orange {
      background-color: #FFF0E8; }
  .icnBx h5 {
    font-size: 26px;
    color: #282828;
    font-weight: 600;
    margin-bottom: 0; }

.coursesNo {
  padding: 50px 0; }

.footerSec {
  background-color: #f2f0f2;
  background: url(../images/ftrbg.jpg);
  background-size: cover; }
.top-scl-icn {
  margin-bottom: 0; }
.top-scl-icn li {
  display: inline-block; }
.top-scl-icn li a {
    display: inline-block;
    position: relative;
    margin: 0;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 50px;
    font-size: 20px; }
.top-scl-icn li:hover i {
  -moz-transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  -ms--transform: rotate(360deg);
  transform: rotate(360deg);
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s; }
.top-scl-icn li i {
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s; }
  .footerSec .ftrBx {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse; }
    .footerSec .ftrBx p {
      margin-bottom: 0;
      color: #B7B7B7; }
  .footerSec h2 {
    font-size: 20px;
    color: #282828;
    font-weight: 600;
    margin-bottom: 20px; }

.whitbg {
  background-color: #fff !important;
  background: none;
  padding-top: 50px; }
  .whitbg a {
    color: #747474;
    font-weight: 300; }
  .whitbg .footerLink li {
    margin-bottom: 5px; }
    .whitbg .footerLink li a:hover {
      color: #000;
      font-weight: 500;
      padding-left: 3px;
      border-left: 2px solid #274699; }
  .whitbg .ftrBx i {
    color: #282828; }

.signBx {
  max-width: 80%;
  margin: 0 auto;
  border-radius: 15px;
  text-align: center;
  background-color: #fff; }
  .signBx .form-control {
    background-color: #F7F6F8;
    border-radius: 50px;
    min-height: 65px;
    border: 0;
    padding-left: 25px; }
  .signBx h6 {
    color: #F1986B;
    font-weight: bold;
    font-size: 20px; }
  .signBx h1 {
    font-size: 26px;
    margin-bottom: 30px; }

.signUpTo {
  position: relative;
  background: url(../images/signin-bg.png);
  background-size: cover !important;
  padding-top: 30px; }
  .signUpTo p a {
    color: #274699; }
  .signUpTo input::-webkit-input-placeholder, .signUpTo textarea::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #9F9F9F;
    font-size: 16px; }
  .signUpTo input::-moz-placeholder, .signUpTo textarea::-moz-placeholder {
    /* Firefox 19+ */
    color: #9F9F9F;
    font-size: 16px; }
  .signUpTo input:-ms-input-placeholder, .signUpTo textarea:-ms-input-placeholder {
    /* IE 10+ */
    color: #9F9F9F;
    font-size: 16px; }
  .signUpTo input:-moz-placeholder, .signUpTo textarea:-moz-placeholder {
    /* Firefox 18- */
    color: #9F9F9F;
    font-size: 16px; }
  .signUpTo form {
    max-width: 80%;
    margin: 0 auto; }
  .signUpTo .mdlTxt {
    color: #747474;
    padding: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center; }

.loginUsing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 80%;
  margin: 0 auto;
  margin-bottom: 50px; }
  .loginUsing li {
    width: 48%;
    border-right: 2px solid #ccc;
    display: flex;
    align-items: center; }
    .loginUsing li:last-child {
      border-right: 0;
      justify-content: flex-end; }
  .loginUsing .fa-facebook {
    color: #0682DE; }
  .loginUsing i {
    font-size: 30px;
    margin-right: 10px; }

.fa-google {
  color: #E53935; }

.footerLogo img {
  max-width: 169px; }

.footerLogoSec {
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px; }

.forgotpass {
  display: flex;
  color: #4A619E;
  font-weight: 600;
  justify-content: center;
  align-items: center;
  padding: 20px 0; }

.knowmore {
  color: #282828;
  min-width: 145px;
  height: 52px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #274699;
  border-radius: 30px; }
  .knowmore:hover {
    color: #274699; }

.courses1 {
  background: #fff !important; }
  .courses1 .txtBx {
    display: flex;
    justify-content: space-between;
    align-items: center; }
  .courses1 .mnterBx {
    overflow: hidden;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px; }

.courseRate {
  max-width: 370px;
  padding-bottom: 20px;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px; }
  .courseRate .imagesSec {
    margin-bottom: 15px; }
  .courseRate .timeBx {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #747474;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #0000001F; }
    .courseRate .timeBx img {
      display: inline-block; }
  .courseRate .bokNow {
    display: flex;
    justify-content: space-between;
    align-items: center; }
  .courseRate .textSec {
    padding: 0 15px; }

.like {
  display: flex; }
  .like i {
    font-size: 14px;
    color: #F18F10; }

.owl-carousel .owl-item img {
  width: auto; }

.featuredCourses {
  background-image: url(../images/bg2.jpg);
  background-size: cover;
  padding: 30px 0; }
  .featuredCourses h2 {
    text-align: center;
    color: #282828;
    font-size: 26px;
    margin-bottom: 30px; }

.blueBg {
  background-color: #274699; }

.lernerSay {
  text-align: center;
  padding: 50px 0; }
  .lernerSay h2 {
    color: #282828;
    font-size: 26px;
    margin-bottom: 30px; }

.testmonialBx {
  text-align: left;
  background-image: url(../images/tstimonial-bg.jpg);
  background-size: cover;
  border-radius: 15px;
  padding: 15px 30px;
  position: relative; }
  .testmonialBx .bottomSec {
    display: flex;
    justify-content: space-between; }
    .testmonialBx .bottomSec h6 {
      font-weight: 600;
      margin-bottom: 0;
      color: #282828; }
    .testmonialBx .bottomSec span {
      color: #747474; }
  .testmonialBx .ivcoma {
    position: absolute;
    left: 4px;
    top: 11px; }

.cacoursePage {
  background: none;
  padding-bottom: 100px; }

.aboutSec {
  position: relative;
  background-attachment: fixed !important;
  background: url(../images/mapBg.jpg);
  background-size: cover;
  background-position: center; }

.aboutSec h2 {
  font-size: 94px;
  color: #1f4ecf;
  -webkit-text-fill-color: white;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #1f4ecf;
  text-align: right;
  line-height: 50px; }

.aboutSec h2 span {
  font-size: 60px;
  color: #04339a;
  -webkit-text-fill-color: #04339a;
  -webkit-text-stroke-width: 0;
  -webkit-text-stroke-color: inherit; }

.aboutSec h3 {
  color: #1f4ecf;
  font-size: 30px; }

/* Service Style 4 Css */
.style-4 .single-service {
  border: 1px solid #ddd;
  padding: 25px 40px;
  margin-bottom: 70px;
  box-shadow: 0 5px 30px -5px #ccc;
  position: relative;
  -webkit-transition: .3s;
  transition: .3s;
  text-align: center;
  min-height: 360px; }

.style-4 .single-service i.fa {
  color: #274699;
  font-size: 30px;
  margin: 25px 0px;
  border: 1px solid #274699;
  text-align: center;
  border-radius: 50%;
  position: relative;
  width: 60px;
  height: 60px;
  line-height: 60px;
  -webkit-transition: .5s;
  transition: 0.5s; }

.style-4 .single-service:after, .single-team:after {
  position: absolute;
  content: "";
  width: 0%;
  border-top: 3px solid #274699;
  left: 0;
  top: 0;
  border-left: 3px solid #274699;
  height: 0%;
  z-index: 2;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  visibility: hidden;
  -webkit-transition: .5s;
  transition: 0.5s; }

.style-4 .single-service:before, .single-team:before {
  position: absolute;
  content: "";
  width: 0%;
  border-bottom: 3px solid #274699;
  right: 0;
  bottom: 0;
  border-right: 3px solid #274699;
  height: 0%;
  z-index: 2;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  visibility: hidden;
  -webkit-transition: .5s;
  transition: 0.5s; }

.style-4 .single-service:hover:before, .single-service:hover:after {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  visibility: visible;
  height: 50%;
  width: 50%; }

.style-4 .single-service:hover i.fa {
  background-color: #274699;
  border-color: #274699;
  color: #fff; }

.style-4 .single-service h3 {
  position: relative;
  font-weight: 400;
  margin-top: 0px;
  padding-top: 20px;
  font-size: 22px; }

.style-4 .single-service p {
  font-weight: 300; }

.style-4 .single-service h3:before {
  position: absolute;
  content: "";
  width: 3px;
  height: 12px;
  background-color: #274699;
  top: -25px;
  left: 50%;
  margin-left: -1.5px; }

.style-4 .single-service h3:after {
  position: absolute;
  content: "";
  width: 30px;
  height: 3px;
  background-color: #274699;
  left: 50%;
  margin-left: -15px;
  top: -13px; }

.blogSec {
  padding-top: 60px; }
  .blogSec a.border-btn {
    color: #fff;
    background-color: #274699;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 3px;
    margin-top: 20px;
    font-weight: 500;
    -webkit-transition: .4s;
    transition: .4s;
    position: relative;
    overflow: hidden;
    z-index: 10; }
  .blogSec a.border-btn:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: #333;
    left: 0;
    top: -100%;
    border-radius: 3px;
    -webkit-transition: .4s;
    transition: .4s;
    visibility: hidden;
    z-index: -1; }
  .blogSec a.border-btn:hover:before {
    visibility: visible;
    top: 0; }

/*-- Terms--*/
.terms-container {
  color: #262626; }

.terms-title h1 {
  font-size: 26px;
  font-family: "RobotoCondensed-Bold";
  text-align: center;
  font-weight: bold;
  letter-spacing: 10px; }

.terms-body h4 {
  color: #f19562;
  font-size: 14px;
  line-height: 25px; }

.terms-body h3 {
  font-family: "RobotoCondensed-Bold";
  color: #262626;
  font-weight: bold;
  text-align: left;
  margin-bottom: 7px;
  font-size: 15px;
  border-left: 2px solid #ccc;
  padding-left: 8px; }

.terms-body p {
  font-size: 12px;
  line-height: 25px; }

.terms-body a {
  color: #f19562; }

.terms-body a:hover {
  color: #f19562;
  text-decoration: none; }

.terms_footer h3 {
  margin-top: 60px;
  margin-bottom: 38px;
  text-align: center;
  font-weight: bold;
  letter-spacing: 3px;
  line-height: 1.5;
  color: #262626;
  border: 0; }

.terms_footer h3 a:link {
  color: #f19562;
  text-decoration: none; }

/*# sourceMappingURL=main.css.map */



/*# Biman css */

.course-detail-title {
	font-size: 25px;
	font-weight: 700;
	color: #07176f;
	margin: 0;
	padding: 0;
}
.created-lst {
	margin: 12px 0 0;
	padding: 0;
	display: inline-block;
	width: 100%;
}
.created-lst li {
	float: left;
	margin-right: 12px;
	padding-right: 12px;
	border-right: 1px solid #07176f;
	font-size: 18px;
	font-weight: 400;
	color: #00b7cc;
}
.created-lst li span {
	color: #07176f;
}
.popular-img img {
	width: 100%;
}
.detail-rt-txt h3 {
	font-size: 18px;
	font-weight: 700;
	color: #07176f;
	margin: 0;
	padding: 0;
}
.detail-rt-txt p {
	color: #7c7c7c;
	font-weight: 300;
	margin: 6px 0 0;
	padding: 0;
	line-height: 28px;
}
.detail-rt-txt ul {
	margin: 12px 0 0;
	padding: 0;
}
.detail-rt-txt ul li {
	float: none;
	padding-left: 28px;
	font-size: 14px;
	font-weight: 300;
	color: #010101;
	margin-bottom: 8px;
	position: relative;
}
.detail-rt-txt ul li::before {
	content: "\f00c";
	position: absolute;
	left: 0;
	top: 0;
	font-size: 18px;
	color: #00b7cc;
	font-family: "FontAwesome";
}
.cstm-slct{
  width: 300px;
}

#myTabContent {
	padding: 15px 0;
}
.nav-tabs li {
	margin-right: 30px;
}
.nav-tabs .nav-link {
	border: none;
	border-top-left-radius: none;
	border-top-right-radius: none;
	color: #7B7B7B;
	font-size: 20px;
	font-weight: 600;
	padding: 12px 0;
}
.nav-tabs .nav-link.active {
	border: none;
	border-bottom: 2px solid #274699;
	color: #010101;
}
/*.top-social{
  display: flex;
  justify-content: flex-end;
  margin: 0;
}
.top-social li{
  float: left;
  margin:0 10px;
}
.top-social li i{
  font-size: 20px;
  color:#fff;
  transition: all ease-in-out 0.3s;
}
.top-social li:hover i{
  color:#000;
}*/
.top-social {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
}
.top-social li {
  display: block;
  margin-left: auto;
  width: 40px;
  height: 40px;
  background-color: #000080;
  text-align: center;
  transition: all ease-in-out 0.3s;
}
/* .top-social li:nth-child(2) {
  background-color: #6b519b;
}
.top-social li:nth-child(3) {
  background-color: #e5403a;
}
.top-social li:nth-child(4) {
  background-color: #000;
}
.top-social li:nth-child(5) {
  background-color: #2aa53a;
} */
.top-social li i {
  font-size: 20px;
  color: #fff;
  transition: all ease-in-out 0.3s;
  line-height: 40px;
}
.top-social li:hover{
  width: 50px;
  background-color: #ffbf00;
}
.acmeticker-wrap {
  overflow: hidden;
  height: 22px;
  width: 100%;
}
.acmeticker-wrap ul{
  margin: 0;
}
.headerTop ul li{
  float: left;
  color: #fff;
  color: #ffbf00;
}
.youtube-vd-link {
  width: 100%;
  height: 400px;
}
.youtube-vd-link iframe {
  width: 100%;
  height: 100%;
}
.youtube-caption {
  font-size: 16px;
  font-weight: 500;
  font-style: italic;
  text-align: center;
  padding: 10px 5px;
  background: #f7f7f7;
}
.show-price, .pay-price {
  font-size: 15px;
}
.show-price > del {
  font-size: 18px;
  margin-right: 5px;
}
.pay-price span {
  font-size: 26px;
  color: #000080;
  font-weight: 600;
  margin-right: 5px;
}