/* ===========================
   POPPINS
=========================== */
@import url('https://fonts.googleapis.com/css2?family=Darker+Grotesque:wght@300..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


/* ===========================
   DARKER GROTESQUE
=========================== */

@font-face {
  font-family: "Amasis MT Md";
  src:
    url("fonts/AmasisMT-Medium.woff2") format("woff2"),
    url("fonts/AmasisMT-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Amasis MT";
  src:
    url("fonts/AmasisMT.woff2") format("woff2"),
    url("fonts/AmasisMT.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Primary Colors */
  --primary-color: #173b75;
  --secondary-color: #c6081d;

  /* Text Colors */
  --heading-color: #173b75;
  --text-color: #444444;
  --white: #ffffff;
  --black: #000000;

  /* Background */
  --bg-color: #f8f9fa;
  --section-bg: #f2f5fa;

  /* Border */
  --border-color: #e5e5e5;

  /* Transition */
  --transition: all 0.3s ease;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
}
h1 {
  font-family: "Darker Grotesque", sans-serif;
  font-size: 95px;
  line-height: 140px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0px;
  text-transform: uppercase;
}

p {
  color: #4b423e;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 26px;
  font-style: normal;
  font-weight: 400;
}

ul {
  padding: 0;
  list-style-type: none;
}
a {
  text-decoration: none;
}
.mobile-show {
  display: none;
}

.navbar {
  min-height: 120px;
  background: #fff;
}
.navbar .container {
  padding: 0;
}
.ss_logo_img img {
  height: 103px;
}

.nav-link {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 50px;
  text-transform: uppercase;
  padding: 0px 28px !important;
  border-right: 1px solid #ddd;
  transition: 0.3s;
}

.nav-link:hover {
  color: #c0001a;
}

.navbar-nav:last-child .nav-item:last-child .nav-link {
  border-right: none;
}

/* ==========================
   Sticky Navbar
========================== */

.sticky-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 999;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);

  display: none;
  transform: translateY(-100%);
}

.sticky-navbar.show {
  display: block;
  animation: slideDown 0.35s ease forwards;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

/* Logo */

.sticky-navbar .navbar-brand img {
  height: 70px;
}

/* Menu */

.sticky-navbar .navbar-nav {
  margin-left: auto;
}

.sticky-navbar .nav-link {
  font-size: 16px;
  font-weight: 500;
  padding: 0 17px !important;
  letter-spacing: 1px;
  border-right: 0px solid #ddd;
}

.sticky-navbar .nav-item:last-child .nav-link {
  border-right: none;
}

.sticky-navbar.show {
  min-height: auto;
  padding: 0;
}

@media (max-width: 991px) {
  .sticky-navbar {
    display: none !important;
  }
}

/* Mobile */
@media (max-width: 991.98px) {
  .navbar {
    min-height: auto;
    padding: 0px 0;
  }

  .navbar-collapse {
    margin-top: 15px;
  }

  .navbar-nav {
    text-align: center;
  }

  .nav-link {
    border: none;
    padding: 0px !important;
    text-align: left;
    border-bottom: 1px solid #a3a3a3;
  }

  .navbar-toggler {
    border: none;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }
}
.container {
  max-width: 1100px !important;
}

.hero-slider {
  position: relative;
}

.hero-slide {
  position: relative;
  height: 580px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-content h1 {
  color: #fff;
  font-size: 70px;
  font-family: "Amasis MT";
  font-weight: 400;
  text-transform: capitalize;
  line-height: normal;
}

/* Arrows */

.carousel-control-prev,
.carousel-control-next {
  width: 70px;
  opacity: 1;
}

.arrow {
  width: 56px;
  height: 56px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: #fff;
  transition: 0.3s;
}

.carousel-control-prev:hover .arrow,
.carousel-control-next:hover .arrow {
  background: #fff;
  color: #123b7b;
}

/* Dots */

.carousel-indicators {
  bottom: 25px;
}

.carousel-indicators button {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50%;
  border: 2px solid #fff !important;
  background: transparent !important;
  opacity: 1 !important;
  margin: 0 6px !important;
}

.carousel-indicators .active {
  background: #fff !important;
}

@media (max-width: 991px) {
  .hero-slide {
    height: 300px;
  }

  .hero-content h1 {
    font-size: 35px;
  }
}

/***********footer css**************/

.ss-foot-logo-sec {
  text-align: center;
  width: 70%;
  padding-top: 0;
  margin: auto;
}

.ss-foot-logo-sec h4 {
  font-size: 36px;
  color: #fff;
  font-weight: 500;
  font-family: Amasis MT Std;
}

.ss-foot-logo-sec p {
  font-size: 14px;
  width: 100%;
  margin: auto;
  color: #fff;
  font-style: italic;
  opacity: 0.7;
}
.ss-foot-menu-2 {
  clear: both;
  width: 33%;
}

.ss-foot-menu-sec {
  display: flex;
  clear: both;
}

.ss-foot-menu-2 ul {
  display: flex;
  gap: 30px;
}

.ss-foot-menu-2 a {
  font-size: 16px;
  color: #fff;
}

.ss-foot-menu-2 p {
  font-size: 20px;
  color: #fff;
  opacity: 0.6;
  font-weight: 400;
  padding-bottom: 19px;
}

.ss-foot-scl-div p {
  font-size: 20px;
  color: #fff;
  opacity: 0.6;
  font-weight: 400;
  padding-bottom: 0;
}

.ss-foot-scl-div ul {
  display: flex;
  gap: 10px;
  align-items: center;
}

.ss-foot-scl-div i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: #fff;
  text-align: center;
  border: 1px solid #fff0f33d;
  border-radius: 100px;
  background: #173b75;
}
.footer_top.footer_top_full {
  padding: 0;
}
.ss-foot-menu-border {
  padding: 30px 0;
  border-top: 1px solid #e5e5e552;
  margin-top: 40px;
  border-bottom: 1px solid #e5e5e552;
}

.ss-foot-btm-ul ul {
  display: flex;
  margin: 0;
}

.ss-foot-btm-ul li {
  width: 50%;
  text-align: left;
}

.ss-foot-btm-ul li:nth-child(2) {
  text-align: right;
}

.ss-foot-btm-ul p {
  color: #ffffff;
  opacity: 0.7;
  font-size: 14px;
  font-weight: 400;
}

.ss-foot-btm-ul a {
  color: #ffffff;
  opacity: 0.8;
  font-size: 14px;
  font-weight: 400;
}

.ss-foot-btm-sec {
  padding: 20px 0;
  border-top: 1px solid #e5e5e552;
  margin-top: 45px;
}
.ss-foot-btm-ul a:nth-child(2) {
  padding-left: 20px;
}
.ss-abt-abt-hed.ss-hm-team-head h2 {
  padding-left: 20px;
}
.ss-foot-main-sec {
  padding-top: 50px;
}

footer {
  background: #173b75;
}
.ss-foot-logo-menu-sec {
  display: flex;
  gap: 70px;
  align-items: center;
}

.ss-foot-scl-div {
  width: 50%;
  margin: 18px auto;
}

.ss-foot-menu-2 a {
  font-size: 15px;
}
.ss-hm-lms-rw-sec {
  padding: 60px 0;
}
.ss-video-logo-ul-sec ul {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 30px;
}
.ss-hm-foot-adres-sec p {
  color: #fff !important;
  text-align: center;
  opacity: 1;
}
.ss-foot-main-sec .container {
  padding: 0;
}
.ss-foot-main-sec p {
  margin: 0;
}

.ss-abt-abt-hed h1 {
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #00000029;
  position: absolute;
  top: 8px;
  line-height: 40px;
}
.ss-home-abt-row {
  padding: 80px 0;
}

h2 {
  color: #173b75;
  font-family: "Arial", sans-serif;
  font-size: 40px;
  line-height: 40px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0px;
  text-transform: capitalize;
}

.ss-abt-abt-hed {
  position: relative;
}

.ss-abt-abt-hed h2 {
  padding-top: 34px;
  padding-left: 60px;
  padding-bottom: 25px;
}

img {
  width: 100%;
}
span.ss-color-red {
  color: var(--secondary-color);
}

.ss-abt-abt-hed a {
  display: inline-block;
  border: 1px solid var(--secondary-color);
  padding: 12px 20px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 18px;
  color: var(--secondary-color);
}

.ss-abt-abt-hed a img {
  width: 25px;
}

p.ss-abt-para2 {
  margin: 0;
}

.ss-abt-abt-hed a:hover {
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: #fff;
}

.ss-abt-abt-hed a:hover img {
  filter: brightness(0) invert(1);
}

.ss-ser-row-sec {
  padding: 70px 0 70px;
  background-color: var(--primary-color);
}
.video-box {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 0px;
}

.video-box img {
  width: 100%;
  display: block;
}

.play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #c6081d;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  transition: 0.3s;
}

.video-box:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.1);
}

.modal-content {
  background: #fff;
  border: none;
}

#videoFrame {
  border: none;
}

.btn-close {
  position: absolute;
  right: -15px;
  top: -40px;
  z-index: 999;
}

.ss-view-all-link a {
  display: inline-block;
  border: 1px solid #fff;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  padding: 10px 15px;
}
.ss-hm-ser-hed-sec h1 {
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #ffffff36;
  position: absolute;
  top: 8px;
  line-height: 40px;
  left: 0;
  right: 0;
}
.ss-hm-ser-hed-sec {
  text-align: center;
}
.ss-hm-ser-hed-sec h2 {
  text-align: center;
  color: #fff;
  margin-top: 48px;
}

.ss-ser-row-sec .col-lg-12 {
  position: relative;
}
.ss-ser-para-div p {
  color: #fff;
  text-align: center;
  width: 98%;
  margin: auto;
  line-height: 28px;
}

p.ss-ser-para-2 {
  margin-top: 25px;
}
.ss-ser-para-div {
  margin-top: 25px;
}

.ss-ser-row-2 {
  padding: 0 0px;
  margin-top: 40px;
}

.ss-view-all-link img {
  width: 23px;
}

.ss-view-all-link img {
  vertical-align: middle;
  margin-left: 10px;
  filter: brightness(0) invert(1);
}

.ss-view-all-link {
  padding-left: 0;
  margin-top: 25px;
}
.ss-view-all-link a:hover {
  background: #c6081d;
  color: #fff;
}

/**************** Team Section Start ****************/
.team-cnt-box {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
}

.sn-team-name h6 {
  font-size: 26px;
  color: #191623;
  font-weight: 600;
}

.sn-team-name span {
  display: block;
  font-size: 16px;
  color: #173b75;
  font-weight: 600;
  margin-bottom: 3px;
}
section.sn-team-sec {
  padding: 70px 0 70px;
}
/********** Training Section Start **************/
.ss-train-rw-sec {
  position: relative;
  padding: 70px 0 70px;
}
.ss-train-rw-sec:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 400px;
  background: #173b75;
  top: 0;
  z-index: -1;
}
.provide-cnt-box h5 {
  font-size: 24px;
  color: #ffffff;
  padding-right: 10px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 38px;
}
.sn-training-para {
  margin-top: 2.5rem !important;
}
.ss-train-rw-sec .ss-hm-ser-hed-sec h1 {
  top: 73px;
}
.row.sn-training-para {
  padding-top: 10px;
}
.slider-item h4 {
  font-size: 30px;
  padding-bottom: 10px;
  color: var(--black);
  text-transform: uppercase;
  font-weight: 600;
}

.slider-item p {
  margin-top: 0;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 15px;
  padding-right: 60px;
}
.slider-box-sec {
  margin-top: 50px;
}
.slider-item .ss-abt-abt-hed img {
  width: 25px !important;
  display: inline-block !important;
}

/* ### PAGINATION BUTTONS ### */
.slider-box-sec .owl-dots {
  position: absolute;
  width: 100%;
  display: block !important;
  padding: 10px 0px 0px !important;
  bottom: -22px !important;
  text-align: center !important;
  font-size: 12px !important;
  line-height: 12px !important;
}
.slider-box-sec .owl-dots .owl-dot {
  display: inline-block !important;
  padding: 0px !important;
}
.slider-box-sec .owl-dots .owl-dot span {
  display: inline-block !important;
  border-style: none !important;
  background-color: rgba(0, 0, 0, 0.2) !important;
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  margin: 0px 3px !important;
  transition: all 0.3s ease-in-out !important;
  -webkit-transition: all 0.3s ease-in-out !important;
  -moz-transition: all 0.3s ease-in-out !important;
  -o-transition: all 0.3s ease-in-out !important;
}
.slider-box-sec .owl-dots .active span {
  background-color: rgba(0, 0, 0, 0.5) !important;
}
.slider-box-sec .owl-dots .owl-dot span:hover {
  background-color: rgba(0, 0, 0, 0.5) !important;
}

/************* online training start ************/
section.sn-training-course-sec {
  background: #f2f5fa !important;
  padding: 70px 0 70px;
}
p.sn-online-trai-para {
  color: #666270 !important;
  margin-top: 20px;
}
.sn-training-course-sec .ss-abt-abt-hed h2 {
  padding-bottom: 15px;
}
section.sn-training-course-sec .row {
  align-items: center;
}

/********* consulting section start *******/
section.sn-consulting-sec {
  padding: 70px 0 70px;
}
section.sn-consulting-sec .ss-abt-abt-hed h1 {
  left: 0;
  right: 0;
}
section.sn-consulting-sec .ss-hm-team-head {
  text-align: center;
}
.sn-consulting-img {
  margin-top: 26px;
}
section.sn-consulting-sec .ss-abt-abt-hed h2 {
  padding-bottom: 20px;
}
section.sn-consulting-sec p {
  font-size: 17px;
}

/********** conatct section start **********/
section.contact-section {
  background: #f2f5fa;
  padding: 70px 0 70px;
}
.conatct-form-box h6 {
  font-size: 32px;
  font-weight: 500;
  text-transform: capitalize;
  color: #000;
  padding-bottom: 10px;
}

form.home-form input {
  background-color: #ffffff;
  border-width: 0px;
  color: #8a8a8a;
  font-size: 14px;
  font-weight: 400;
  display: block;
  margin: 5px 0 0;
  padding: 12px;
  border: 0;
  border-radius: 0;
  outline: 0;
  width: 100%;
  margin-bottom: 16px;
}
input.home-form-bnt {
  border: 1px solid #c6081d !important;
  color: #c6081d !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  text-transform: capitalize;
  text-align: center;
  border-radius: 5px !important;
  margin-bottom: 0px !important;
}
.contact-section .ss-abt-abt-hed h2 {
  padding-bottom: 10px;
}
input.home-form-bnt:hover {
  color: #ffffff !important;
  background-color: #c6081d !important;
}
section.contact-section p {
  margin-bottom: 12px;
}
.ss-contact-slider .owl-nav {
  display: none;
}

.ss-contact-slider:hover .owl-nav {
  display: block !important;
}
.ss-contact-slider:hover .owl-nav {
  position: absolute;
  display: flex !important;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  top: 0px;
  bottom: 0px;
  pointer-events: auto;
  z-index: 99;
}
.ss-contact-slider button.owl-next {
  background-color: #0000005e !important;
  color: #fff !important;
  font-size: 26px !important;
  padding: 10px !important;
  right: 8px;
  position: relative;
  width: 33px;
}
.ss-contact-slider button.owl-prev {
  background-color: #0000005e !important;
  color: #fff !important;
  font-size: 26px !important;
  left: 8px;
  position: relative;
  width: 33px;
}
/******* page title section ********/
section.sn-page-tile-sec {
  background-image: url("../images/title-bg-image1.webp");
  padding: 21px 0px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.page-title-box h1 {
  font-size: 56px;
  color: #fff;
  text-transform: capitalize;
  font-weight: 500;
  font-family: "Amasis MT";
}
.page-title-box {
  position: relative;
}
.page-title-box h1:after {
  content: "";
  position: absolute;
  width: 2px;
  height: 50px;
  top: 0;
  left: -20px;
  background: #fff;
  bottom: 0;
  margin: auto;
}
.bout-train-box-cnt h5 {
  font-size: 24px;
  color: #080808;
  font-weight: 600;
}

section.about-training-sec {
  padding: 70px 0;
}
.ss-abt-pg-mis-vis-div li {
  padding: 50px;
}
li.ss-abt-vison-li {
  background: #173b75;
}
.ss-abt-pg-mis-vis-div ul {
  display: flex;
  list-style: none;
}
li.ss-abt-vison-li img {
  filter: brightness(0) invert(1);
}
li.ss-abt-mison-li {
  background: #173b75;
}
li.ss-abt-mison-li img {
  filter: brightness(0) invert(1);
}
.ss-abt-pg-mis-vis-div h6 {
  font-size: 30px;
  padding-bottom: 10px;
  margin-top: 15px;
  text-transform: capitalize;
}
li.ss-abt-vison-li h6 {
  color: #fff;
}
li.ss-abt-vison-li p {
  color: #fff;
}
li.ss-abt-mison-li p {
  color: #fff;
}
li.ss-abt-mison-li h6 {
  color: #fff;
}
.ss-abt-pg-mis-vis-div h6 {
  font-size: 30px;
  padding-bottom: 10px;
  margin-top: 15px;
  text-transform: capitalize;
}
.ss-abt-pg-mis-vis-div img {
  width: 64px;
}
.ss-abt-pg-mis-vis-div {
  margin-top: 40px;
}
section.sn-about-point-sec {
  background-image: url("../images/count-banner-image.webp");
  padding: 70px 0px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  margin-bottom: 70px;
}
.ponit-box img {
  width: 115px;
}

.ponit-box {
  text-align: center;
}

.ponit-box h6 {
  color: #fff;
  text-align: center;
  margin-top: 18px;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 400;
}
/************ amerisafety section ************/
.amerisafety-cnt h5 {
  font-size: 40px;
  line-height: 40px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0px;
  text-transform: capitalize;
  color: #173b75;
}
.amerisafety-cnt ol {
  list-style-type: disc;
  padding: 0;
  margin-left: 14px;
  margin-top: 10px;
  display: inline-block;
  margin-bottom: 0px;
}
.amerisafety-cnt p {
  color: #666270;
  line-height: 28px;
  padding-top: 5px;
}
.amerisafety-cnt ol li {
  padding-left: 14px;
  line-height: 26px;
}
.amerisafety-cnt ol li:nth-child(1) {
  margin-bottom: 10px;
}
section.amerisafety-section {
  padding: 70px 0px;
}
/************* video section start **************/
.video-sec-cnt h6 {
  color: #080808;
  font-size: 24px;
  padding-bottom: 5px;
  font-weight: 600;
}

.video-sec-cnt {
  margin-bottom: 45px;
}
.video-section {
  padding: 70px 0px;
}
/********* wide training start ***********/
.training-section {
}

.section-title h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 46px;
  color: #173b75;
  margin-bottom: 20px;
}

.section-title p {
  font-size: 18px;
  color: #4b423e;
  margin: 0;
  line-height: 28px;
}

.training-card {
  padding: 35px 24px;
  height: 100%;
  border-right: 2px solid #e1ecf9;
}

.training-head {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
section.training-section {
  padding-bottom: 70px;
}
.training-head img {
  width: 49px;
  height: 49px;
  object-fit: contain;
}
.sn-row-2 {
  margin-top: 50px;
}
.training-head h3 {
  font-size: 22px;
  line-height: 25px;
  margin: 0;
  font-weight: 700;
  color: #173b75;
}

.training-head h3 span {
  display: block;
  color: #c6081d;
}

.training-card p {
  font-size: 16px;
  line-height: 28px;
  color: #4b423e;
  margin: 0;
}
.training-grid > div:first-child,
.sn-row-2 > div:first-child {
  border-left: 2px solid #e1ecf9;
}

.training-grid > div:last-child .training-card,
.sn-row-2 > div:last-child .training-card {
  border-right: 0;
}

@media (max-width: 991px) {
  .section-title h2 {
    font-size: 40px;
  }

  .training-head h3 {
    font-size: 26px;
    line-height: 33px;
  }

  .training-card {
    border: 2px solid #e1ecf9;
  }

  .training-grid > div {
    border: 0 !important;
  }
}

@media (max-width: 767px) {
  .section-title h2 {
    font-size: 28px;
    line-height: 40px;
  }

  .section-title p {
    font-size: 18px;
  }

  .training-card {
    padding: 25px 20px;
  }

  .training-head h3 {
    font-size: 22px;
  }

  .training-card p {
    font-size: 15px;
    line-height: 1.8;
  }
}





.ss-ser-pg-row-1 {
    padding: 60px 0;
}

.ss-ser-pg-fst-hed-div ul {
    padding-left: 15px;
    list-style: disc;
}

.ss-ser-pg-fst-hed-div ul li {
    margin-bottom: 15px;
}
.ss_ser_pg_sec_full{
    overflow: hidden;
}

.ss-video-logo-ul-sec ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}
.ss-video-logo-ul-sec li:nth-child(1) {
    width: 100%;
}

.ss-video-logo-ul-sec {
    padding-bottom: 27px;
}

.ss-ser-video-txt-bx {
      background: #ffffff;
    width: 100%;
    margin-top: -355px;
    z-index: 99;
    padding: 30px 50px 40px;
    position: relative;
    max-width: 670px;
}

ul.ss_ser_lern_list li {
    list-style: disc;
    margin-bottom: 5px;
}

.ss_ser_pg_logo {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.ss_sr_pg_logo_sec{
    padding: 70px 0;
}

.ss-ser-pg-philo-hed p {
    font-size: 18px;
    color: #080808;
    font-weight: 500;
    margin-top: 30px;
}

.ss-ser-pg-philo-hed{
    margin-bottom: 40px;
    text-align: center;
}
.ss_team_pg_2col {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 30px;
    align-items: center;
    margin: auto;
}

.ss-team-pg-hed-sec h5 {
    font-size: 40px;
    color: #173B75;
    padding-bottom: 17px;
    font-weight: 600;
    margin: 0;
}

.ss-team-pg-hed-sec h6 {
    font-size: 24px;
    color: #8A8A8A;
    font-style: italic;
    font-weight: 500;
}

.ss_team_pg_all_dv{
max-width: 900px;
margin: auto;
}
.ss_team_pg_2nd{
    margin-top: 30px;
}

.ss_team_pg_sec1{
    padding: 70px 0;
}


.ss_team_pg_sec2{
        background: #F2F5FA;
    padding: 70px 0;
}

.ss_team_pg_sec2 .ss_team_pg_2col{
    grid-template-columns:1fr 350px;
}
.ss_team_pg_sec2 .ss_team_img_dv{
    order:2;
}


.ss-lms-pg-hed-txt h6 {
    font-size: 24px;
    letter-spacing: 0;
    color: #080808;
    text-transform: uppercase;
    font-weight: 600;
}

.ss_lms_sec_1{
    padding: 70px 0;
}
.ss-lms-pg-hed-txt p {
    line-height: 28px;
    margin-top: 5px;
}


.ss-lms-vid-text-bx h4 {
    font-size: 36px;
    font-weight: 600;
    color: #173B75;
    padding-bottom: 20px;
    line-height: 41px;
}
.ss-lms-vid-text-bx p {
    line-height: 28px;
    color: #666270;
}

.lms_sec_2 .ss-ser-video-txt-bx{
    padding: 60px 50px;
}

.ss-lms-pg-work-plc-hed h4 {
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    width: 55%;
    line-height: 46px;
    text-align: center;
    letter-spacing: 0.016em;
    text-transform: capitalize;
    margin: auto;
    color:#173b75;
}

.ss-lms-pg-work-plc-hed p {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    letter-spacing: 0.016em;
    text-transform: capitalize;
    color: #080808;
    width: 64%;
    margin: 25px auto !important;
}

.ss-lms-pg-work-plc-icn-dv {
    background: #F5F8FE;
    text-align: center;
    padding: 40px 0;
    border-radius: 5px;
}
.ss-lms-pg-work-plc-icn-dv img{
    width: auto;
}

.ss-lms-pg-work-plc-icn-dv h6 {
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 25px;
    text-align: center;
    margin-top: 10px;
    letter-spacing: 0.016em;
    text-transform: capitalize;
}

.ss-lms-pg-rw-3 {
    padding: 70px 0;
}










/***********media Screen Start*******************/
/***********media Screen Start*******************/

@media only screen and (min-width: 320px) and (max-width: 767px) {
  .training-card {
    border-left: 2px solid #e1ecf9;
    border-right: 0px;
    border-bottom: 0px;
    border-top: 0px;
  }
  section.training-section {
    padding-bottom: 55px;
  }
  .training-grid {
    gap: 30px 0px;
  }
  .video-section {
    padding: 55px 0px;
  }
  .video-sec-cnt h6 {
    font-size: 20px;
    line-height: 30px;
    padding-bottom: 5px;
  }
  .sn-row-2 {
    margin-top: 30px;
  }
  .bout-train-box-cnt p {
    line-height: 28px;
  }
  .ponit-box h6 {
    margin-bottom: 0px;
  }
  section.sn-about-point-sec {
    margin-bottom: 55px;
  }
  section.sn-about-point-sec .row {
    gap: 36px 0px;
  }
  .ss-abt-pg-mis-vis-div li {
    padding: 35px;
  }
  .ss-abt-pg-mis-vis-div li {
    padding: 35px;
  }
  .ss-abt-pg-mis-vis-div ul {
    flex-direction: column;
    margin-bottom: 0px;
  }
  .bout-train-box-cnt h5 {
    font-size: 20px;
    color: #080808;
    line-height: 30px;
  }
  .ss-abt-pg-mis-vis-div h6 {
    font-size: 22px;
  }
  section.sn-page-tile-sec {
    padding: 12px 0px;
  }
  .page-title-box h1:after {
    height: 30px;
    left: -20px;
  }
  section.about-training-sec {
    padding: 55px 0px;
  }
  .page-title-box h1 {
    font-size: 30px;
    line-height: 54px;
    position: relative;
    left: 15px;
    margin: 0px;
  }
  .training-course-cnt {
    margin-top: 22px;
  }
  section.sn-consulting-sec .ss-abt-abt-hed h2 {
    padding-bottom: 15px;
  }
  .ss-contact-slider {
    margin-top: 45px;
  }
  section.sn-training-course-sec,
  .ss-train-rw-sec,
  section.sn-team-sec,
  .ss-ser-row-sec,
  section.sn-consulting-sec,
  section.contact-section {
    padding: 55px 0 55px;
  }
  .ss-home-abt-row {
    padding: 55px 0;
  }
  .sn-training-course-sec p.ss-abt-abt-hed {
    margin-bottom: 0px;
  }
  .ss-abt-abt-hed h2 {
    padding-top: 37px;
    padding-left: 10px;
    font-size: 30px;
  }
  .ss-train-rw-sec .ss-hm-ser-hed-sec h2 {
    font-size: 30px;
    margin-top: 24px;
  }
  .ss-train-rw-sec .ss-hm-ser-hed-sec h1 {
    top: 68px;
  }
  .ss-hm-ser-hed-sec h2 {
    font-size: 30px;
    margin-top: 40px;
  }
  .provide-cnt-box h5 {
    font-size: 18px;
    line-height: 32px;
  }
  .sn-slider-right-img {
    margin-top: 60px;
  }
  .slider-item p {
    padding-right: 0px;
  }
  .slider-item h4 {
    font-size: 22px;
    padding-bottom: 0px;
  }
  .row.sn-training-para {
    padding-top: 5px;
  }
  .ss-train-rw-sec:after {
    height: 438px;
  }
  .sn-training-para {
    margin-top: 1.5rem !important;
  }
  .team-cnt-box {
    margin-top: 20px;
  }

  .row.sn-team-row {
    gap: 30px 0px;
  }
  h1 {
    font-size: 60px;
  }
  .ss-foot-logo-menu-sec {
    flex-direction: column;
    display: flex;
    gap: 0;
  }
  .ss-foot-menu-2 {
    display: none;
  }

  .mobile-show {
    display: block;
  }
  .ss-foot-menu-mob {
    text-align: center;
    margin-top: 40px;
  }
  .ss-foot-scl-div p {
    display: none;
  }

  .container {
    padding: 0 15px !important;
  }
  .ss-foot-logo-sec {
    width: 80%;
  }
  .ss-foot-scl-div ul {
    justify-content: center;
  }
  .ss-hm-foot-adres-sec p {
    width: 80%;
    margin: auto;
    padding-top: 30px;
  }
  .ss-foot-menu-mob a {
    color: #fff !important;
  }
  .ss-foot-menu-mob {
    text-align: center;
    margin-top: 40px;
  }

  .ss-foot-menu-mob li {
    display: inline;
    margin: 0 13px;
    line-height: 35px;
  }
  .ss-foot-btm-ul ul {
    display: flex;
    flex-wrap: wrap;
  }
  .ss-foot-btm-ul li {
    width: 100%;
    text-align: center;
  }
  .ss-foot-btm-ul li:nth-child(2) {
    text-align: center;
  }

  .arrow {
    display: none;
  }


 .ss-ser-pg-fst-hed-div h2{
        font-size: 25px;
        line-height: 35px;
    }
    .ss_ser_pg_img_rit {
    margin-top: 15px;
}

    .ss-ser-video-txt-bx {
        background: #F2F5FA;
        width: 100%;
        margin-left: 0;
        margin-top: 0;
        z-index: 9999;
        padding: 45px 24px 50px;
    }
    .ss-video-logo-ul-sec ul {
        display: block;
        text-align: center;
    }
    .ss-ser-video-txt-bx img {
    width: 200px;
    margin-bottom: 15px;
}
.ss_ser_pg_logo {
    flex-wrap: wrap;
}

.ss_ser_lgdv {
    width: 70%;
}
.ss-ser-pg-philo-hed h2{
    font-size: 25px;
        line-height: 35px;
}
.ss-ser-pg-philo-hed p {
    font-size: 14px;
    margin-top: 5px;
}
.ss_team_pg_2col {
    grid-template-columns: 1fr;
}
.ss_team_pg_all_dv{
max-width: 100%;
margin: auto;
}

.ss_team_pg_sec2 .ss_team_pg_2col{
        grid-template-columns: 1fr;
}
.ss_team_pg_sec2 .ss_team_img_dv{
    order:0;
}
.ss-team-pg-hed-sec h5 {
    font-size: 25px;
}
.ss-team-pg-hed-sec h6 {
    font-size: 16px;
}
.ss_team_pg_2nd {
    margin-top: 0px;
}
.ss_team_pg_sec2 {
    background: #F2F5FA;
    padding: 50px 0;
}
.ss_team_pg_sec1 {
    padding: 50px 0;
}
.lms_sec_2 .ss-ser-video-txt-bx {
    padding: 45px 15px;
}

.ss-lms-vid-text-bx h4 {
    font-size: 25px;
    line-height: 36px;
}

.ss-lms-pg-work-plc-hed h4 {
    font-size: 28px;
    width: 100%;
    line-height: 38px;
}
.ss-lms-pg-work-plc-hed p{
    width: 100%;
}

.ss-lms-pg-work-plc-icn-dv{
    margin-top: 30px;
}



}

@media only screen and (min-width: 481px) and (max-width: 767px) {
}
@media only screen and (min-width: 767px) and (max-width: 1023px) {
  .page-title-box h1 {
    font-size: 30px;
    line-height: 54px;
    position: relative;
    left: 15px;
    margin: 0px;
  }
  .training-grid {
    gap: 40px 0px;
  }
  .sn-row-2 {
    margin-top: 40px;
  }
  .bout-train-box-cnt h5 {
    font-size: 24px;
    color: #080808;
    line-height: 35px;
  }
  .ss-abt-pg-mis-vis-div ul {
    flex-direction: column;
  }
  li.ss-abt-vison-li {
    margin-bottom: 1px;
  }
  .ponit-box h6 {
    margin-bottom: 0px;
  }
  section.sn-about-point-sec .col-lg-3 {
    width: 25%;
  }
  section.sn-page-tile-sec {
    padding: 12px 0px;
  }
  .page-title-box h1:after {
    height: 30px;
    left: -20px;
  }
  .row.sn-team-row .col-lg-4 {
    width: 33.33%;
  }
  .ss-contact-slider {
    margin-top: 45px;
  }
  .sn-training-course-sec p.ss-abt-abt-hed {
    margin-bottom: 0px;
  }
  .training-course-cnt {
    margin-top: 40px;
  }
  .sn-slider-right-img {
    margin-top: 70px;
  }
  .slider-box-sec {
    margin-top: 100px;
  }
  .sn-team-name h6 {
    font-size: 22px;
  }
  .ss-foot-logo-menu-sec {
    flex-direction: column;
    display: flex;
    gap: 0;
  }
  .ss-foot-menu-2 {
    display: none;
  }

  .mobile-show {
    display: block;
  }
  .ss-foot-menu-mob {
    text-align: center;
    margin-top: 40px;
  }
  .ss-foot-scl-div p {
    display: none;
  }

  .container {
    padding: 0 15px !important;
  }
  .ss-foot-logo-sec {
    width: 80%;
  }
  .ss-foot-scl-div ul {
    justify-content: center;
  }
  .ss-hm-foot-adres-sec p {
    width: 80%;
    margin: auto;
    padding-top: 30px;
  }
  .ss-foot-menu-mob a {
    color: #fff !important;
  }
  .ss-foot-menu-mob {
    text-align: center;
    margin-top: 40px;
  }

  .ss-foot-menu-mob li {
    display: inline;
    margin: 0 13px;
    line-height: 35px;
  }
  .ss-foot-btm-ul ul {
    display: flex;
    flex-wrap: wrap;
  }


   .ss-ser-video-txt-bx {
        background: #F2F5FA;
        width: 100%;
        margin-left: 0;
        margin-top: 0;
        z-index: 9999;
        padding: 45px 24px 50px;
                max-width: 100%;
    }
    ul.ss_ser_lern_list {
    padding-left: 70px;
}


.ss-lms-pg-work-plc-hed h4 {

    width: 100%;
}
.ss-lms-pg-work-plc-hed p{
    width: 100%;
}

.ss-lms-pg-work-plc-icn-dv{
    margin-top: 30px;
}
}
@media only screen and (min-width: 1024px) and (max-width: 1300px) {
}
