
.button {
  background-color: #004A7F;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  font-family: Arial;
  font-size: 20px;
  padding: 5px 10px;
  text-align: center;
  text-decoration: none;
  -webkit-animation: glowing 1500ms infinite;
  -moz-animation: glowing 1500ms infinite;
  -o-animation: glowing 1500ms infinite;
  animation: glowing 1500ms infinite;
}
@-webkit-keyframes glowing {
  0% { background-color: #FCBC23; -webkit-box-shadow: 0 0 3px #FCBC23; }
  50% { background-color: #E8C119; -webkit-box-shadow: 0 0 40px #E8C119; }
  100% { background-color: #FCBC23; -webkit-box-shadow: 0 0 3px #FCBC23; }
}

@-moz-keyframes glowing {
  0% { background-color: #FCBC23; -moz-box-shadow: 0 0 3px #FCBC23; }
  50% { background-color: #E8C119; -moz-box-shadow: 0 0 40px #E8C119; }
  100% { background-color: #FCBC23; -moz-box-shadow: 0 0 3px #FCBC23; }
}

@-o-keyframes glowing {
  0% { background-color: #FCBC23; box-shadow: 0 0 3px #FCBC23; }
  50% { background-color: #E8C119; box-shadow: 0 0 40px #E8C119; }
  100% { background-color: #FCBC23; box-shadow: 0 0 3px #FCBC23; }
}

@keyframes glowing {
  0% { background-color: #FCBC23; box-shadow: 0 0 3px #FCBC23; }
  50% { background-color: #E8C119; box-shadow: 0 0 40px #E8C119; }
  100% { background-color: #FCBC23; box-shadow: 0 0 3px #FCBC23; }
}







/* end flicker css */




@media (max-width: 768px){
  .section-padding {
    padding: 20px 0px;
}
.banner__three {
  padding-top: 50px;
}
.mb-70 {
  margin-bottom: 50px;
}

.mb-50
{
  margin-bottom: 20px;
}

.pb-50

{
  padding-bottom: 20px;
}

.testimonial-one {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: var(--light-2);
}
.testimonial-one .section-title-seven {
  margin-bottom: unset !important;
}
.about__three-right-image-two {
  margin-top: 17px;
  margin-left: unset;
}
.about__three-right-content {
  bottom: 0;
  display: none;
}
.about__company-left-experience {
  display: none;
}

.cntbtn
{
  display:none;
}


}




/* ===== Buttons Css ===== */
.primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.active.primary-btn, .primary-btn:hover, .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}
.deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

.primary-btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}
.active.primary-btn-outline, .primary-btn-outline:hover, .primary-btn-outline:focus {
  background: var(--primary-dark);
  color: var(--white);
}
.deactive.primary-btn-outline {
  color: var(--dark-3);
  border-color: var(--gray-4);
  pointer-events: none;
}

/*===========================
  NAVBAR css 
===========================*/
.navbar-toggler:focus {
  box-shadow: none;
  color:#333;
}

.mb-100 {
  margin-bottom: 100px;
}

/*===== NAVBAR THREE =====*/
.navbar-area.navbar-three {
  background:#fff;
}


.header-fix
{

  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 999;
  width: 100%;
  box-shadow: var(--box-shadow-1);
  animation: header_sticky 1.1s;
  background: var(--bg-white);
  display: block;


}


@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-three {
    padding: 0px 0;
  }
}
.navbar-area.navbar-three .navbar {
  position: relative;
  padding: 0;
}
.navbar-area.navbar-three .navbar .navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: var(--black);
  margin: 5px 0;
  display: block;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.navbar-area.navbar-three .navbar .navbar-toggler.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}
.navbar-area.navbar-three .navbar .navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}
.navbar-area.navbar-three .navbar .navbar-toggler.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -7px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-three .navbar .navbar-collapse {
    position: absolute;
    top: 101%;
    left: 0;
    width: 100%;
    background-color:#fff;
    z-index: 8;
    padding: 10px 16px;
  }
}
.navbar-area.navbar-three .navbar .navbar-nav {
  margin-right: unset;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-three .navbar .navbar-nav {
    margin-right: 0;
  }
}
.navbar-area.navbar-three .navbar .navbar-nav .nav-item {
  position: relative;
}
.navbar-area.navbar-three .navbar .navbar-nav .nav-item a {
  display: flex;
  align-items: center;
  padding: 5px 15px;
  color:#fff;
  text-transform: capitalize;
  position: relative;
  border: 1px solid transparent;
  border-radius: 30px;
  font-weight:600;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  margin: 22px 3px;
  font-size: 13px;
  
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-three .navbar .navbar-nav .nav-item a {
    padding: 10px 20px;
    display: block;
    border: 0;
    margin: 0;
	margin-bottom:10px;
  }
}
.navbar-area.navbar-three .navbar .navbar-nav .nav-item a i {
  font-size: 14px;
  font-weight: 700;
  padding-left: 8px;
  color:#fff;
  padding-top:5px;
}
.navbar-area.navbar-three .navbar .navbar-nav .nav-item a.active {
  
  background-color:#CF2129;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-three .navbar .navbar-nav .nav-item a.active {
    border: 0;
  }
}
.navbar-area.navbar-three .navbar .navbar-nav .nav-item:hover > a {
  
  background-color:#282727;
  color:#fff;
}
.navbar-area.navbar-three .navbar .navbar-nav .nav-item:hover > a i{
  
 
  color:#fff;
}


@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-three .navbar .navbar-nav .nav-item:hover > a {
    border: 0;
  }
}
.navbar-area.navbar-three .navbar .navbar-nav .nav-item:hover > a::before, .navbar-area.navbar-three .navbar .navbar-nav .nav-item:hover > a::after {
  -webkit-transform: translateX(-50%) scaleX(1);
  -moz-transform: translateX(-50%) scaleX(1);
  -ms-transform: translateX(-50%) scaleX(1);
  -o-transform: translateX(-50%) scaleX(1);
  transform: translateX(-50%) scaleX(1);
}
.navbar-area.navbar-three .navbar .navbar-nav .nav-item .sub-menu {
  position: absolute;
  right: 0;
  left:10px;
  top: 100%;
  width: 260px;
  background-color: var(--white);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: 99;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
  padding: 10px;
  border-radius: 5px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-three .navbar .navbar-nav .nav-item .sub-menu {
    position: relative !important;
    width: 100% !important;
    left: 0 !important;
    top: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    right: auto;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-transition: all none ease-out 0s;
    -moz-transition: all none ease-out 0s;
    -ms-transition: all none ease-out 0s;
    -o-transition: all none ease-out 0s;
    transition: all none ease-out 0s;
    box-shadow: none;
    text-align: left;
    border-top: 0;
    height: 0;
  }
}
.navbar-area.navbar-three .navbar .navbar-nav .nav-item .sub-menu.collapse:not(.show) {
  height: auto;
  display: block;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-three .navbar .navbar-nav .nav-item .sub-menu.collapse:not(.show) {
    height: 0;
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-three .navbar .navbar-nav .nav-item .sub-menu.show {
    height: auto;
  }
}
.navbar-area.navbar-three .navbar .navbar-nav .nav-item .sub-menu li {
  position: relative;
}
.navbar-area.navbar-three .navbar .navbar-nav .nav-item .sub-menu li .sub-nav-toggler {
  color: var(--black);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.navbar-area.navbar-three .navbar .navbar-nav .nav-item .sub-menu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 20px;
  position: relative;
  color: var(--black);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  margin: 0 0;
  border: 0;
  border-radius: 5px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-three .navbar .navbar-nav .nav-item .sub-menu li a {
    font-size: 15px;
  }
}
.navbar-area.navbar-three .navbar .navbar-nav .nav-item .sub-menu li a i {
  font-weight: 700;
  font-size: 14px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-three .navbar .navbar-nav .nav-item .sub-menu li a i {
    display: none;
  }
}
.navbar-area.navbar-three .navbar .navbar-nav .nav-item .sub-menu li a .sub-nav-toggler i {
  display: inline-block;
}
.navbar-area.navbar-three .navbar .navbar-nav .nav-item .sub-menu li a::before {
  display: none;
}
.navbar-area.navbar-three .navbar .navbar-nav .nav-item .sub-menu li a::after {
  display: none;
}
.navbar-area.navbar-three .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
  right: auto;
  left: 100%;
  top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  overflow: hidden;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) {
  .navbar-area.navbar-three .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
    margin-left: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-three .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
    padding-left: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-three .navbar .navbar-nav .nav-item .sub-menu li .sub-menu.show {
    visibility: visible;
    height: auto;
    position: relative;
  }
}
.navbar-area.navbar-three .navbar .navbar-nav .nav-item .sub-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}
.navbar-area.navbar-three .navbar .navbar-nav .nav-item .sub-menu li:hover .sub-nav-toggler {
  color: var(--white);
}
.navbar-area.navbar-three .navbar .navbar-nav .nav-item .sub-menu li:hover > a {
  background: #282727;
  color: var(--white);
  border-radius:50px;
}
.navbar-area.navbar-three .navbar .navbar-nav .nav-item .sub-menu li:hover > a::before {
  opacity: 1;
}
.navbar-area.navbar-three .navbar .navbar-nav .nav-item:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-three .navbar .navbar-nav .nav-item .sub-nav-toggler {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px 14px;
    font-size: 16px;
    background: none;
    border: 0;
    color: var(--white);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-area.navbar-three .navbar .navbar-social {
    position: absolute;
    right: 70px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
@media (max-width: 767px) {
  .navbar-area.navbar-three .navbar .navbar-social {
    position: absolute;
    right: 60px;
    top: 0px;
  }
}
.navbar-area.navbar-three .navbar .navbar-social ul {
  display: flex;
}
.navbar-area.navbar-three .navbar .navbar-social ul li {
  display: inline-block;
  margin-left: 12px;
}



.navbar-area.navbar-three .navbar .navbar-social ul li a {
	
      display: flex;
    align-items: center;
    padding: 5px 15px;
    color: #fff;
    text-transform: capitalize;
    position: relative;
    border: 1px solid transparent;
    border-radius: 30px;
    font-weight: 600;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    margin: 22px 3px;
    font-size: 14px;
  background-color:#CF2129;
 
  
  
}


.navbar-area.navbar-three .navbar .navbar-social ul li a:hover {
  color:#fff;
  background-color:#ed1b24;
  border-color: transparent;
}

.container-fluid
{
	width:95%;
}

.logo-img
{
  width:80%;
}




.form-popup-bg {
  position:absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
}
.form-popup-bg {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
  overflow-y: auto;
  z-index: 10000;
}
.form-popup-bg.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}
.form-container {
    background-color: #DFF9F8;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position:relative;
  padding: 40px;
  color: #fff;
}
.close-button {
  background:none;
  color: #cf2129;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;

}

.form-popup-bg:before{
    content:'';
    background-color: #fff;
  opacity: .25;
  position:absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}






h1.heading-f {
  color: #CF2129;
  font-size:24px;
  text-align: center;
}
p.form-p {
  color: #000;
  text-align: center;
}
select#Interested_Course {
  color: var(--body-color);
  border-radius: 0px;
  width: 100%;
  height: 50px;
  border: 1px solid #e3e3e3;
  padding: 0 15px;
  background: var(--bg-white);
  font-size: 15px;
}


#btnOpenForm {
  background: #CF2129;
    color: #fff;
    display: inline-block;
    font-size: 18px;
    height: 35px;
    position: fixed;
    right: -3px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    transform-origin: bottom right;
    top: 135px;
    z-index: 1000;
    padding: 5px 8px;
    border-radius: 6px;
   text-transform: capitalize;

}


@media (max-width: 768px){

#btnOpenForm
{

  display:none;
}

.cntbtn
{

  display:none;
}





.navbar-area.navbar-three .navbar .navbar-social ul li a {
	
  display: flex;
align-items: center;
padding: 3px 10px;
color: #fff;
text-transform: capitalize;
position: relative;
border: 1px solid transparent;
border-radius: 30px;
font-weight: 600;
-webkit-transition: all 0.3s ease-out 0s;
-moz-transition: all 0.3s ease-out 0s;
-ms-transition: all 0.3s ease-out 0s;
-o-transition: all 0.3s ease-out 0s;
transition: all 0.3s ease-out 0s;
margin: 22px 3px;
font-size: 13px;
background-color:#CF2129;


}


.navbar-area.navbar-three .navbar .navbar-social ul li a:hover {
color:#fff;
background-color:#ed1b24;
border-color: transparent;
}





}







