 
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #da2128;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #da2128;
  border-top-color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #da2128;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #f06f54;
  color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
	background: rgb(255, 255, 255);
	transition: all 0.5s;
	z-index: 997;
	padding: 2px 0;
	border-bottom: 1px solid #e4f4d0;
}

#header.header-scrolled { 
	background: rgb(255, 255, 255);
	border-bottom: 1px solid #f3f3f3;
}

#header .logo {
  font-size: 26px;
  margin: 0% ;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.nav-menu {
  margin: 0% 0% 0% auto;
}
#header .logo a {
  color: #0b2341;
}

#header .logo img {
  max-height: 65px;
}

@media (max-width: 992px) {
  #header .logo {
    font-size: 28px;
  }
  #header .logo {
    margin: 0%;
  }
  .nav-menu {
    margin: 0%;
  }
  
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 5px 10px 5px;
}
/** start date 05/01/2023 **/
.nav-menu a {
  display: block;
  position: relative;
  color: #242424;
  transition: 0.3s;
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 6px 10px;
  text-transform: uppercase;
}
/** End date 05/01/2023 **/

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
color: #111111;
background: #e7e7e7;
}

.nav-menu .register-now {
  background: #c4161c;
  color: #fff !important;
  border-radius: 3px;
  margin-top: -2px;
  padding: 8px 16px !important;  
  animation: blinker 2s linear infinite;
  width: fit-content;
}
.nav-menu .register-now:hover {
  background: #be1016; 
}
@keyframes blinker {
  50% {
    opacity: 0.6;
  }
}
.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 15px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #0b2341;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #da2128;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Get Startet Button */
.get-started-btn {
  margin-left: 25px;
  background: #da2128;
  color: #fff;
  border-radius: 4px;
  padding: 8px 25px 9px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
}

.get-started-btn:hover {
  background: #ef6445;
  color: #fff;
}

@media (max-width: 768px) {
  .get-started-btn {
    margin: 0 48px 0 0;
    padding: 6px 20px 7px 20px;
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  top: 23px;
  right: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #0b2341;
}

.mobile-nav {
  position: fixed;
  top: 42px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 0px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #0b2341;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
  border-bottom: 1px solid #ddd;
}
.mobile-nav .register-now { 
  border-radius: 0px;
  margin-top: 10px !important; 
  width: fit-content;
  margin-left: 20px !important;
}
.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #da2128;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: none;
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #da2128;
}

/** menu dropdown start **/
.dropbtn {   
  cursor: pointer;
}

.dropdown {
  position: static;
  display: inline-block;
  width: auto;
  border: none;
  padding-top: 17px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  width: 190px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.11);
  z-index: 1;
  border-bottom: 1px solid #eaeaea;
  margin-top: 5px;
}

.dropdown-content a {
  color: #242424;
  padding: 10px 10px;
  text-decoration: none;
  display: block;
  font-size: 14px;
  border-bottom: 1px solid #eaeaea;
  font-weight: 500;
}

.dropdown-content a:hover {background-color: #eaeaea;}

.dropdown:hover .dropdown-content {display: block;}
.show {display: block;} 

.dropdown .dropbtn:after {
            color: #242424;
            content: '';
            margin-left: 6px;
            border: solid #242424;
            border-width: 0 2px 2px 0;
            display: inline-block;
            padding: 3px;
            transform: rotate(45deg);
            -webkit-transform: rotate(45deg);
            margin-top: 5px;
            float: right;
        }
  
  
  .mobile-menu {
    display: none;
  }
  .desktop-menu {
    display: block;
  }
@media only screen and (max-width: 768px) {
	.dropdown {
  position: relative;
  display: inline-block;
  width: 100%;
  border: none;
  padding-top: 0px;
  }
  .dropdown-content { 
    position: relative; 
    width: 100%;
    margin-top: 0px;
  }
  .dropdown .dropbtn:after {
              color: #131313; 
              border: solid #131313;
              border-width: 0 1px 1px 0; 
  }  
  .mobile-menu {
    display: block;
  }
  .desktop-menu {
    display: none;
  }

 }
/** menu dropdown start **/


/** banner section start **/
.banner_section {
    width: 100%;
    margin-top: 1px;
	padding-bottom: 0px;
}
.banner-img {
    width: 100%;
	border-bottom: 1px solid #f0fde0;
}

.desktop-banner {
  display: block;
  max-width: 1900px;
  margin: 0 auto;
}
.mob-banner {
  display: none;
}
/** banner section End **/


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
/** Start date 05/12/2023 **/
section {
  padding: 40px 0px 47px 0px;
}
/** End date 05/12/2023 **/
.section-bg {
  background-color: #2fca0f0f;
}
/** Start date 05/12/2023 **/
.bg-gray {
  background: #f2f2f2;
}
/** End date 05/12/2023 **/
.section-title {
  padding-bottom: 1px;
}
 
.section-title h1,
.section-title h2,
.section-title h3,
.section-title h4,
.section-title h6 {
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 500;
  text-transform:uppercase;
  font-family: "Poppins", sans-serif;
  color: #0f2f57;   
  text-align: center;
  position: relative;
}
.section-title h1:after,
.section-title h2:after,
.section-title h3:after,
.section-title h4:after,
.section-title h6:after {
  display: block;
  content: "";
  width: 100px;
  height: 2px;
  background: #da2128;
  position: absolute;
  z-index: 2;
  left: 50%;
  margin-left: -50px;
  bottom: -7px;
}

.section-title h5 {
  color: #535353;
  font-size: 16px;
  margin-bottom: 2px;
  font-weight: 600;
  line-height: 20px;
}


/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
/** start date 23/10/2023 **/
.clients { 
  text-align: center;
  padding: 10px 0px 10px 0px;
}

.clients img {
  width: 100%;
  display: inline-block;
  margin: 0px 0px 10px 0;
  object-fit: contain;
}
.partners-margin {
  margin-top: 1px;
}
.clients .partners-desk {
  max-width: 1140px;
  width: 100%;
  display: block;
}
.clients .partners-mob { 
  width: 100%;
  display: none;
}
/** End date 23/10/2023 **/

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}
.about h5 {
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 4px;
}
.about p {
 font-size: 16px;
 text-align: center;
}
.about p a {
  color: #da2128;
}
.about p a:hover, 
.about p a:active {
  color: #b9050b;
}
.about p b {
  color: #da2128;
  font-weight: 700;
}
.about .content ul {
  list-style: decimal;
  padding: 0;
  padding-left: 20px;
  font-size: 14px;
}
.overview-img {
  width: 100%;
  border: 1px solid #e8e7e7;
}
.bg {
    background: #f5f6fa;
}

/** start date 26/04/2024 **/
/**  
.partners-logo {
  width: 300px;
  max-width: 100%;
  padding: 7px 7px 8px 7px;
}
**/ 
.partner-wrap {
  margin-top: 10px;
}
.partner-wrap .cli-margin {
  padding: 0;
}
.partner-wrap .partner-logo {
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center; 
  overflow: hidden;
  height: 80px;
  margin: -1px -1px 0px 0px;
}
.partner-wrap .partner-logo img {
      width: 100%;
      height: 75px;
      object-fit: contain;
  }
  .partner-wrap .partner-logo:hover img {
      filter: none;
      transform: scale(1.1);
  }
  .partner-wrap img {
  transition: all 0.4s ease-in-out;
}
/** End date 26/04/2024 **/


.about .content ul li {
  padding-left: 0px;
  position: relative;
}

.about .content ul li + li {
  margin-top: 2px;
}

.dt-box {
    padding-right: 5px;
	width: 100%;
}
.dt-box p {
    font-size: 14px;
    margin-bottom: 5px;
}
.dt-box h6 {
    font-size: 18px;
    font-weight: 700;
	margin-top: 15px;
}
.dt-box .topic {
    font-size: 18px;
	margin-top: 15px;
}
.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #da2128;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: #da2128;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #da2128;
}

.about .content .btn-learn-more:hover {
  background: #da2128;
  color: #fff;
  text-decoration: none;
}

.view-all:link,
.view-all:visited {
  right:15px;
  position:absolute;
  color:#da2128;
  font-size:15px;
  display:inline-block;
  margin: 10px 0px 10px 0px;
  line-height:16px;
  text-decoration:none;
}
.view-all:hover,
.view-all:active {  
  color:#b9050b;
}
.view-all-img {
  width: 11px;
  margin-top: -3px;
  margin-left: 5px;
  opacity: 0.8;
} 

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/


.counts .count-box {
  padding: 16px;
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}
  

.counts .count-box h2 {
  font-size: 57px;
  line-height: 24px;
  display: block;
  font-weight: 700;
  color: #fff;
  margin: 0px 0px 20px 0px;
  text-align: center;
  font-family: "Open Sans", sans-serif;
}

.counts .count-box p {
  padding: 0px 0px 0px 0px;
  margin: 0;
  font-size: 17px;
  line-height: 21px;
  text-align: center;
  color:#fff;
  letter-spacing: 0.7px;
  font-weight: 600;
}
 
.counts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #164682;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .count-box a:hover {
  color: #2169c4;
}

/*--------------------------------------------------------------
# technical
--------------------------------------------------------------*/


.technical .count-box {
  box-shadow: 1px 0px 21px 0 rgba(0, 77, 37, 0.12);
  padding: 16px;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 10px;
}

.technical .count-box:hover {
  background: #017000;
  border-color: #017000;
} 

.technical .count-box span {
  font-size: 42px;
  line-height: 24px;
  display: block;
  font-weight: 700;
  color: #0b2341;
  margin-left: 50px;
}

.technical .count-box p {
  padding: 0px 0 0 0;
  margin: 0;
  font-size: 15px;
  line-height: 24px;
  text-align: center;
  color:#444444;
  letter-spacing: 0.3px;
  font-weight: 500;
}
.technical .count-box:hover p {
 color:#fff;
}
.technical .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #164682;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.technical .count-box a:hover {
  color: #2169c4;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
 
/** youtube video iframe css start **/
.video-container {
    overflow: hidden;
    position: relative;
    width:100%;
}
.video-container::after {
    padding-top: 56.25%;
    display: block;
    content: '';
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/** youtube video iframe css end **/
.why-us .content {
  padding: 5px 100px 0 100px;
}
.faq-h6 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0px;
	color:#0b2341;
}
.why-us .content h3 {
	font-weight: 500;
	font-size: 21px;
	color: #0b2341;
	text-align: center;
}
.ul-who-should {
    margin: 0px 0px 0px 0px;
    padding: 0px;
    width: 100%;
}
.ul-who-should li {
font-size: 17px;
line-height: 1.3em;
color: #000;
font-weight: 500;
padding: 18px 5px;
margin-bottom: 0px;
border-bottom: 1px solid rgba(114, 182, 64, 0.5);
list-style-type: none;

}
.ul-who-should li:hover {
background: #73b642;
color: #fff;
}
.why-us .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
  text-align: center;
}

.why-us .content p {
  font-size: 15px;
  color: #848484;
  margin-bottom: 25px;
  text-align: center;
}

.why-us .video-box {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
  position: relative;
}

.why-us .accordion-list {
  padding: 0 100px 0px 100px;
}

.why-us .accordion-list ul {
  padding: 0;
  list-style: none;
  margin: 0px;
}

.why-us .accordion-list li + li {
  margin-top: 0px;
}
.why-us .accordion-list .faq-ul li {
  border: none;
  padding: 6px 1px;
  font-size: 15px;
  list-style-type: decimal;
  margin: 4px 0% 0% 15px;
}
.why-us .accordion-list li {
  padding: 15px 20px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid #f2f2f2;
  margin-bottom: 10px;
  margin-top: 10px;
}

.why-us .accordion-list a { 
  color: #0b2341;
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
}

.why-us .accordion-list span {
  color: #da2128;
  font-weight: 500;
  font-size: 17px;
  padding-right: 2px;
}
.why-us .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.why-us .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
  font-size: 15px;
}

.why-us .accordion-list .icon-show {
  display: none;
}

.why-us .accordion-list a.collapsed {
  color: #0b2341;
}

.why-us .accordion-list a.collapsed:hover {
  color: #da2128;
}

.why-us .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
  display: none;
}

.why-us .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#da2128 50%, rgba(237, 80, 46, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.why-us .play-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.why-us .play-btn::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(237, 80, 46, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.why-us .play-btn:hover::after {
  border-left: 15px solid #da2128;
  transform: scale(20);
}

.why-us .play-btn:hover::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}
.table-section {
  max-width: 770px;
  margin: 0 auto;
  overflow-x: auto;
  display: grid;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}

.table-section table {
  border: 1px solid #ececec;
  border-collapse: collapse;
  margin: 0 0 0 0;
  padding: 0;
  width: 100%;
  background: #fff;
}

.table-section::-webkit-scrollbar {
  height: 2px
}

.table-section::-webkit-scrollbar-thumb {
  background: #eaeaea;
  width: 20px;
  border-radius: 0
}

.table-section table thead tr {
  background: #da2128;
  color: #fff;
}

.table-section table tr {
  border: 1px solid #e3e3e3
}

.table-section table th,.table-section table td {
  padding: 6px 10px;
  text-align: left;
  font-size: 15px;
  vertical-align: top;
  border-left: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
}

.table-section table td {
  color: #424242
}

.table-section table td .magazine-name {
  font-weight: 600
}

.table-section table thead th {
  font-size: 15px;
  letter-spacing: .2px;
  font-weight: 600;
  padding: 6px 10px;
  text-transform: uppercase;
}
.table-section td a {
  color: #4b80aa; 
}
.table-section td a:hover {
  color: #4b80aa; 
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .why-us .content, .why-us .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .why-us .content {
    padding-top: 30px;
  }
  .why-us .accordion-list {
    padding-bottom: 30px;
  }
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
  
/** start date 05/12/2023 **/
/** Slider owl-carousel section start **/
.row-owl-slider { 
  width:100%;
  margin: 0% 0% 0% 0%;
}
.row-owl-slider .img-wrapper {
  width: 100%; 
  box-sizing: border-box;
}
.row-owl-slider .owl-carousel .fa-bg {
  display: inline-block;
  text-align: center;
  line-height: 34px;
  width: 22px;
  background: rgba(218, 33, 40, 0.8);
  color: #C9C9C9;
  position: absolute;
  top: 51%;
  transform: translateY(-50%);
  z-index: 100;
  cursor: pointer;
  padding: 7px 6px;
  height: auto;
} 
.row-owl-slider .owl-carousel .fa-angle-right {
  right: 0px;
  border-radius: 0px;
} 
.row-owl-slider .owl-carousel .fa-angle-left {
  left: 0px;
  border-radius: 0px;
} 
.row-owl-slider .carousel-wrap .owl-nav {
  display: flex;
} 
/** .banner-slider .carousel-wrap .owl-nav {
  display: flex;
} **/
/** owl dots start is hidden**/
.row-owl-slider .carousel-wrap .owl-dots {
  display: block;
  margin-top: -30px;
  position: relative;
  display:none;
}
.row-owl-slider .carousel-wrap .owl-dots {
text-align: center;
padding-top: 0px;
}
.row-owl-slider .carousel-wrap .owl-dots button.owl-dot {
width: 8px;
height: 8px;
border-radius: 50%;
display: inline-block;
background: #f5f5f5;
margin: 0 2px;
}
.row-owl-slider .carousel-wrap .owl-dots button.owl-dot.active {
background-color: rgb(76, 155, 76);
}
.row-owl-slider .carousel-wrap .owl-dots button.owl-dot:focus {
outline: none;
}  
/** owl dots end **/
/** Slider owl-carousel section end **/  
.quotes-team {
  width:100%;
}
.team-section {
  width: 100%;
  border: 1px solid #ececec;
  padding: 5px;
  margin: 0px;
  background: #fff;
  text-align: center;
  min-height: 521px;
}
.team-section:hover {  
  border: 1px solid #e7e7e7;
  box-shadow: 0px 2px 5px #dfdfdf;
}
.team-section .team-img {
  width: 100%;  
  padding: 3px;
}
.team-section .dis-p {
  line-height: 20px;
  font-size: 14px;
  margin-bottom: 0;
  color: #2a2a2a;
  text-align: left;  
  padding: 8px 3px 2px 5px;
}
.team-section .name-h5 {
  font-weight: 600;
  margin-bottom: 0px;
  font-size: 14px;
  color: #2d2d2d;
  text-align: left;
  padding: 4px 3px 1px 5px;
  letter-spacing: 0.2px;
  line-height: 20px;
}
.articles-section {
  width: 100%;
  border: 1px solid #ececec;
  padding: 5px;
  margin: 0px;
  background: #fff;
  text-align: center;
}
.articles-section.nw-bo {
  margin-bottom: 25px;
}
.articles-section:hover {  
  border: 1px solid #e7e7e7;
  box-shadow: 0px 2px 5px #dfdfdf;
}
.articles-section .articles-img {
  width: 100%;  
  padding: 3px;
}
.articles-section .name-h5 {
     font-weight: 700;
    margin-bottom: 0px;
    font-size: 16px;
    color: #2d2d2d;
    text-align: left;
    padding: 5px 3px 1px 5px;
    letter-spacing: 0.2px;
    line-height: 22px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.articles-section .dis-p {
    line-height: 23px;
    font-size: 15px;
    margin-bottom: 0;
    color: #2a2a2a;
    text-align: left;
    padding: 3px 3px 2px 5px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.view-more-news {
    width: 220px;
    display: block;
    background: #efefef;
    color: #272222;
    border-radius: 0px;
    border: 1px solid #efefef;
    padding: 12px 3px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin: 0 auto;
    line-height: 17px;
    max-width: 100%;
    border-radius: 5px;
    }
.view-more-news:hover {
            border: 1px solid #d5342f;
            background: #d5342f;
            color: #fff;
        }
/** End date 05/12/2023 **/

/** Start date 06/12/2023 **/
 

.row-owl-slider #gallery-pop .owl-dots button.owl-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  background: #cccccc;
  margin: 0 2px;
  }
  .row-owl-slider #gallery-pop .owl-dots button.owl-dot.active {
  background-color: rgb(225, 77, 83);
  }

.gallery-section {
  width: 100%;
  border: 1px solid #ececec;
  padding: 5px;
  margin: 0px;
  background: #fff;
  text-align: center; 
}
.gallery-section .gallery-img {
  width: 100%;  
  padding: 3px;
}

.videos-box {
  margin-bottom: 30px;
}
.videos-box h6 {
  text-align: center;
  color: #646464;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 7px;
  display: -webkit-box;
  -webkit-line-clamp: var(--line-camp, 1);
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/** End date 06/12/2023 **/

  
 
/** gallery page css start **/
.gallery-pg {
  background: #ffffff;
}
.gallery-box {
  margin: 10px auto 10px auto;
  width:800px;
  max-width: 100%;
}
#big .item {
  padding: 0px 0px;
  margin: 2px;
  border-radius: 3px;
  text-align: center;
}
#thumbs .item {
  padding: 0px;
  margin: 3px;
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
}
#thumbs .item h1 {
  font-size: 18px;
}
#thumbs .current .item {
  background: #e7e7e7;
}
.owl-theme .owl-nav [class*="owl-"] {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.owl-theme .owl-nav [class*="owl-"].disabled:hover {
  background-color: #d6d6d6;
}
#big.owl-theme {
  position: relative;
}
#big.owl-theme .owl-next,
#big.owl-theme .owl-prev { 
  position: absolute;
  text-align: center;
  top: 52%;
}
#big.owl-theme .owl-prev {
  left: 10px;
}
#big.owl-theme .owl-next {
  right: 10px;
}
  
.gallery-box .owl-nav {
  display: flex;
}
.gallery-box .owl-dots {
  display: none;
}
.row-owl-slider .gallery-box .owl-carousel .fa-bg { 
  width: 23px;
  background: rgba(0, 0, 0, 0.62); 
}
/** gallery page css End **/
.podcast-sec {
  text-align: center;
  margin: 0px 0px 15px 0px;
}
.podcast-sec audio::-webkit-media-controls-play-button,
.podcast-sec audio::-webkit-media-controls-panel {
background-color: #00000015;
color: #000;
}
/*End style*/



/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  padding: 80px 0;
  background: #0b2341;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #da2128;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #da2128;
  border: 2px solid #da2128;
}
 
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.address .icon-box {
  text-align: center;
  padding: 0px;
  transition: all ease-in-out 0.3s;
  width: 80%;
  margin: 0 auto;
}

.address .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #ed502e;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
  position: relative;
  z-index: 2;
}
.address .icon-box h5 { 
  margin-bottom: 10px;
  font-size: 25px;
  color: #0f2f57;
  margin-top: 0;
  text-transform: uppercase;
  font-weight: 600;
}
.address .icon-box h4 {
  font-weight: 600;
  margin-bottom: 3px;
  font-size: 19px;
  color: #2d2d2d;
  margin-top: 8px;
}

.address .icon-box p {
  line-height: 20px;
  font-size: 14px;
  margin-bottom: 0;
  color: #4d4d4d;
}



/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
	text-align: center;
	margin-bottom: 10px;
	background: #fcfcfc;
	position: relative;
	overflow: hidden;
}

.team .member .member-info {
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

.team .member .member-info-content {
  position: absolute;
  left: 50px;
  right: 0;
  bottom: 0;
  transition: bottom 0.4s;
}

.team .member h4 {
  font-weight: 600;
  margin-bottom: 2px;
  font-size: 16px;
  color: #2d2d2d;
  margin-top: 8px;
}

.team .member span {
  display: block;
  font-size: 13px;
  margin-bottom: 8px;
  color: #4d4d4d;
  letter-spacing: 0px;
  line-height: 15px;
}

.team .member .social {
  position: absolute;
  left: -50px;
  top: 0;
  bottom: 0;
  width: 50px;
  transition: left ease-in-out 0.3s;
  background: rgba(11, 35, 65, 0.5);
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  display: block;
  color: #fff;
  margin-top: 15px;
}

.team .member .social a:hover {
  color: #da2128;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .member:hover .member-info {
  background: linear-gradient(0deg, rgba(11, 35, 65, 0.9) 0%, rgba(11, 35, 65, 0.8) 20%, rgba(0, 212, 255, 0) 100%);
  opacity: 1;
  transition: 0.4s;
}

.team .member:hover .member-info-content {
  bottom: 30px;
  transition: bottom 0.4s;
}

.team .member:hover .social {
  left: 0;
  transition: left ease-in-out 0.3s;
}

  

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #0b2341;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 39px 0 30px 0;
  background: #fff;
}
.enquire-h3 {
  font-size: 19px;
  color: #292929;
  font-weight: 600;
  margin: 0px 0px 8px 0px;
  text-align: center;
  text-transform: uppercase;
} 
.box-margin-right {
  padding-right: 7px;
}
.box-margin-left {
  padding-left: 7px;
}
.contact .info-box p a {
    color: #0b2341; 
}
.contact .info-box i {
  font-size: 32px;
  color: #da2128;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #da2128;
}

.contact .info-box h3 {
  font-size: 18px;
  color: #292929;
  font-weight: 600;
  margin: 10px 0 3px 0px;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;  
  color: #393939;
}
.contact .info-box p a { 
  color: #393939;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 27px 15px;
  background: #fff;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #da2128;
}

.contact .php-email-form input {
  padding: 20px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button {
  background: #da2128;
  border: 0;
  padding: 9px 30px;
  color: #fff;
  transition: 0.4s;
  font-size: 15px;
  font-weight: 600;
  margin-top: 4px;
}

.contact .php-email-form button:hover {
  background: #da2128;
}

@-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: 15px 0;
  background: #f6f9fd;
  min-height: 40px;
  margin-top: 82px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 74px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: #0b2341;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #123a6d;
  content: "/";
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-container {
  position: relative;
}

.portfolio-details .portfolio-details-carousel {
  position: relative;
  z-index: 1;
}

.portfolio-details .portfolio-details-carousel .owl-nav, .portfolio-details .portfolio-details-carousel .owl-dots {
  margin-top: 5px;
  text-align: left;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
  display: inline-block;
  margin: 0 10px 0 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
  background-color: #da2128 !important;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  position: absolute;
  right: 0;
  bottom: -70px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 50px;
}

.portfolio-details .portfolio-description h2 {
  width: 50%;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0 0 0 0;
}

@media (max-width: 768px) {
  .portfolio-details .portfolio-description h2 {
    width: 100%;
  }
  .portfolio-details .portfolio-info {
    position: static;
    margin-top: 30px;
  }
  .box-margin-right {
    padding-right: 15px;
  }
  .box-margin-left {
    padding-left: 15px;
  }
  .mob-form-margin {
    margin-top: 20px;
  }

}
 /*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #000000;
  padding: 0 0 15px 0;
  color: #fff;
  font-size: 13px;
}

#footer .footer-top {
  background: #222;
  border-bottom: 1px solid #141414;
  padding: 45px 0 30px 0;
}
.copyright {
  text-align: center;
  padding: 15px 0px 0px 0px;
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 10px;
  font-family: "Raleway", sans-serif;
  color: #fff;
  letter-spacing: 0.3px;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  line-height: 1;
  padding: 0px 0px;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 32px;
  height: 32px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #ed1d25;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 7px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #ff5e31;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 7px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #ed1d25;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #ed1d25;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #ff5e31;
}

#footer .copyright {
  text-align: center;
  padding-top: 15px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

#footer .credits a {
  transition: 0.3s;
}

/** payment section start **/ 
.payment-sec {
  padding: 5px 0px 15px 0px;
  width: 100%; 
} 
.section-heading-h5 {
	font-size: 27px;
	margin-left: 0px;
	font-weight: 600;
	line-height: 32px;
	margin-bottom: 5px;
}   
 
.payment-detail {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
} 
.payment-detail .payment-s1 {
	width: 100%;
	margin: 10% 0% 10% 0%;
	padding: 0%;
	text-align: center;
}  
.payment-detail .payment-s1 h6 {
  font-size: 30px;
  margin-left: 0px;
  font-weight: 600;
  line-height: 50px;
  margin-bottom: 8px;
  margin-top: 8px;
}
.payment-detail .payment-s1 p {
	font-size: 16px;
	margin-left: 0px;
	line-height: 26px;
	margin-bottom: 10px;
	color: #3a3636;
}
.success-h6 {
  color: #01a601;
}
.failed-h6 {
  color: #ef3039;
}
 .payment-icon {
  width: 120px;
  margin-bottom: 10px;
}
 

/** payment section end **/  
.member {
  border: 1px solid #e6e6e6;
}
/** start date 05/01/2024 **/
.main-top-margin {
  padding-top: 80px;
}
.brand-buzz {
  border: 1px solid #e6e6e6;
  background: #fff;
  margin-bottom: 30px;
}
.brand-buzz h6 {
  font-size: 17px;
  font-weight: 600;
  padding: 6px 10px 8px 10px;
  margin: 0;
  line-height: 22px;
  letter-spacing: 0.2px;
  color:#444444;
  min-height: 56px;
}
.brand-buzz a {
  color:#444444;
}
 
/** End date 05/01/2024 **/

@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
  .banner_section { 
    margin-top: 7px; 
  }
  #header { 
    padding: 3px 0; 
  }
  #header .logo img {
    max-height: 30px;
  }
  section {
    padding: 30px 0 40px 0px; 
  }
  .member {
    width: 100%;
    margin: 5px auto 0px auto; 
  }
 
  .team .member h4 { 
    margin-bottom: 2px;
    font-size: 15px; 
    margin-top: 7px;
  }
  .mobile-nav-toggle { 
    top: 7px;
    right: 15px; 
  }
  .why-us .accordion-list {
    padding-bottom: 10px;
  }
  .section-title h1,
  .section-title h2,
  .section-title h3,
  .section-title h4,
  .section-title h6 {
    font-size: 25px; 
  }
  .about h6 {
    text-align: left;
    font-size: 14px;
  }
  .ul-who-should li {
    font-size: 15px; 
    padding: 11px 5px;
    margin-bottom: 0px; 
  }
  .why-us .accordion-list a { 
    font-size: 16px; 
    padding-right: 20px; 
  }
  .why-us .accordion-list li {
    padding: 13px 12px; 
  }
  .table-section table th, .table-section table td {
    padding: 5px 5px; 
    font-size: 14px; 
  }
  .table-section table thead th {
    font-size: 15px;
    letter-spacing: .2px;
    font-weight: 600;
    padding: 5px 5px;
  }
  .desktop-banner {
    display: none;
  }
  .mob-banner {
    display: block;
  }
  
/** payment section Start **/  
  .payment-detail .payment-s1 { 
    margin: 17% 0% 9% 0%; 
  }
   .payment-icon {
      width: 90px;
      margin-bottom: 10px;
    }
  .payment-detail .payment-s1 h6 {
      font-size: 31px; 
    } 
  .payment-detail .payment-s1 p {
    font-size: 15px; 
    line-height: 21px; 
  }
/** payment section end **/
/** start date 23/10/2023 **/
.clients .partners-desk {
  max-width: 1140px;
  width: 100%;
  display: none;
}
.clients .partners-mob { 
  width: 100%;
  display: block;
}
/** End date 23/10/2023 **/

}
