@charset "utf-8";

/* CSS Document */
 
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed: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');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
/* @import url("/fonts/custom-fonts.css"); */
 /* 
 font-family: "Inter", sans-serif;
 font-family: "Barlow Condensed", serif;
 font-family: "Manrope", sans-serif;
 */

html {
  scroll-behavior: smooth;
}

body {
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-family: var(--font-family-1);
 
}

:root {
  --primary: #154887;
  --sc-primary: #e41d23; 
  --text-primary: #313C4C;
  --text-heading: #313c4c ;
  --text-white: #fff; 
  --text-black: #000; 
  --text-grey: #313C4C;     
  --font-family-1: "Manrope", sans-serif;
  --font-family-2: "Barlow Condensed", serif;
  --font-family-3: "Inter", sans-serif;
 
  --gradient-bk:linear-gradient(180deg, rgba(254,239,193,0.9976365546218487) 23%, rgba(254,244,212,0.7175245098039216) 60%, rgba(255,255,255,0.6306897759103641) 93%);
  --gradient-bk1:linear-gradient(180deg, rgba(0,85,157,1) 2%, rgba(0,143,213,1) 100%, rgba(0,184,240,1) 100%);
  /* --gradient-bk:linear-gradient(0deg, rgba(0,85,157,1) 47%, rgba(0,143,213,1) 84%, rgba(0,184,240,1) 100%); */
  
}

a {
  text-decoration: none;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}


 
/* .viewport {
  overflow: hidden;
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
  */



.container {
  max-width: 1280px;
} 

.container-60{padding: 0 60px;}


.container-fluid{
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: 0;
  padding-left: 0;
  margin-right: auto;
  margin-left: auto;
}




@media only screen and (max-width: 1024px) {
  .container {
    width: 100% !important;
  }

  .container-60{padding: 0 10px;}
}

@media only screen and (max-width: 580px) { 
  .container-60{padding: 0 0px;}
}


/*===========section space=========================*/
 
.pd-30 {
  padding: 30px 0;
}

.mg-top-20 {
  margin-top: 20px;
}

.mg-top-30 {
  margin-top: 30px;
}

.mg-top-50 {
  margin-top: 50px;
}

.mg-top-80 {
  margin-top: 80px;
}

.mg-bottom-30 {
  margin-bottom: 30px;
}

.mg-bottom-20 {
  margin-bottom: 20px;
}



/*==============cursor css======================*/

/* 
.cursor {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  border: 1px solid var(--primary);
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  transform: translate(calc(-50% + 15px), -50%); z-index: 999;
}

.cursor2 {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-color:var(--primary);
  opacity: .3;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: width .3s, height .3s, opacity .3s;  z-index: 999;
}

.hover {
  background-color:var(--primary);
  opacity: 0.5;
}

.cursorinnerhover {
  width: 50px;
  height: 50px;
  opacity: .5;
} */



/*===================================================
==========================pages css===========
=====================================================================================*/

.top-logo {
  display: table;
  float: left;
  vertical-align: middle;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  /* background: #fff; */
  /* width: 300px;
    height: 250px;*/
  padding: 0px;
  position: absolute;
  top: 0px;
  left: -2px;
  z-index: 9;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.top-logo img {
  width: 180px;
  border-radius: 0px;
}

@media only screen and (max-width: 768px) {
  .top-logo {
    display: none;
  }
}

/*==============================================================*/

.header-top {
  background:#fff;
  /* background: linear-gradient(180deg, rgba(0,85,157,1) 10%, rgba(0,143,213,1) 60%, rgba(0,184,240,1) 85%); */
  padding:4px 0;
  margin-bottom: 0px;
  position: relative;
  border-bottom: 0px solid #E9EBF8;;  
}

/* .header-top:after {
  position: absolute;
  width: 16.85416666666667%;
  height: 100%;
  content: '';
  background: #00549C;
  right: -22px;
  top: 0;
  transform: skew(-24deg, 0deg);
  -moz-transform: skew(-24deg, 0deg);
  -webkit-transform: skew(-24deg, 0deg);
} */

.header-top-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  margin: 0px 0 0 0;
  position: relative;
 z-index: 999;
}

.header-top-row .top-col-1 {
  width: 80%;
}

.header-top-row .top-col-2 {
  width: 20%;  
}

.top-col-1 {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end; align-items: center;
  /* align-items: center; position:absolute; right: 15%; top: 10px; */
  font-family: var(--font-family-1); 
}

.header-top-row .social i {
  color:var(--text-primary);
  font-size: 14px !important;
}

.header-top-row .social i:hover {
  color: var(--primary);  
}
 

.top-info{ padding: 2px 0; }

.tc1, .tc2{ border-right:1px solid #ddd; padding-right: 10px; margin-right: 2px;}

.header-top-row .top-info i {
  color: var(--primary); font-size: 18px;   border: 0px solid #ddd; border-radius: 4px; padding: 2px;
}

.header-top-row .top-info a {font-family: var(--font-family-2); 
  color:var(--text-primary);
  font-size: 16px;
  font-weight:400; letter-spacing: 0.50px;
}
.header-top-row .top-info a span{ display: block;   font-size: 13px;
  font-weight:400;}

  .header-top-row .top-info h6{ font-family: "Cookie", cursive; font-size: 36px; font-weight:400; color: var(--primary); margin: 0; padding: 0;}


  .header-top-row .top-info a:hover {
    color: var(--primary);      
  }

  .top-info .form-control{ width: 260px; margin-left: 20px; height: auto; line-height: normal;}

  .top-info .input-group{ display: none;}


  .ms-n5 {
    margin-left: -50px;
}

  @media only screen and (max-width: 1060px) {
    .header-top-row .top-col-1 {
      width: 80%;
    }
    
    .header-top-row .top-col-2 {
      width: 20%;  
    }

    .header-top:after {
      position: absolute;
      width: 20.85416666666667%;     
    }
  }

  @media only screen and (max-width: 940px) {
    .header-top-row .top-col-1 {
      width: 80%;
    }
    
    .header-top-row .top-col-2 {
      width: 20%;  
    }

    .header-top:after {
      position: absolute;
      width: 25.85416666666667%;     
    }
  }


@media only screen and (max-width: 991px) {
  /* .header-top:before {
    position: absolute;
    width: 50.85416666666667%;
    height: 100%;
    content: "";
    background: transparent;
    left: -22px;
    top: 0;
    transform: skew(-24deg, 0deg);
    -moz-transform: skew(-24deg, 0deg);
    -webkit-transform: skew(-24deg, 0deg);
  } */

  .top-col-1 {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    right: inherit;
    top: 1px; 
  }
}

@media only screen and (max-width: 768px) {
  .none1 {
    display: none;
  }

  .header-top-row .top-col-1 {
    display: none;
    /* width: 100%;   */
  }

  .header-top-row .top-col-2 {
    width: 0%;   display: none;
  }
  .header-top:after {
    position: absolute;
    width: 50.85416666666667%; 
    right: -35px;    
  }
}

@media only screen and (max-width: 430px) {
  .top-col-1 {
    display: none;
    
  }

  .header-top-row .top-col-2 {
    width: 100%;  
  }
  .header-top:after {
    position: absolute;
    width: 60.85416666666667%; 
    right: -35px;    
  }
}

@media only screen and (max-width: 350px) {
  /* .top-col-1 {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-end;
        align-items: center;
    } */
}


.top-nav{ display: flex; flex-direction: row;}

.top-nav a {
 
  font-family: var(--font-family-2);
  color: #363637;
  font-size: 14px;
  font-weight: 600;
  text-transform: inherit; 
  padding: 0px 7px;
  cursor: pointer;
  display: inline-block; border-right: 1px solid #cbcaca;
  position: relative;}

  .top-nav a:last-child{border: 0px;}

  .top-nav a:hover{ color: var(--primary);}


  .br-btn{ background: var(--sc-primary); padding: 7px 7px !important; color: #fff !important; display: flex !important; align-items: center !important; font-size: 16px !important;}
  .br-btn i { display: inherit !important; padding-left: 5px; margin-top: 0px !important;}
  .br-btn:hover{background: var(--primary);}

/*==========================================================*/

.header-middle-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  margin: 0px 0 0 0;
}

.header-middle-row .m-col-1 {
  width: 100%;
}

.header-middle-row .m-col-2 {
  width: auto;
}

.m-col-2 {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  margin: 0px 0 0 0;
}

.m-col-2 a {
  line-height: inherit;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 10px;
  color: #000;
  text-decoration: none;
  padding: 0 0 0 15px;
  text-align: left;
}

.header-nav {
  background: transparent;
  padding: 0px 0; border-top:1px solid #EFEFEF;
}

.header-nav .border-line {
  border-top: 0px solid #dfdedb;
  border-bottom: 0px solid #dfdedb;
}

@media only screen and (max-width: 991px) {
  .header-nav {    
    padding: 0px 0;
    border-top:0px solid #EFEFEF;
  }
}

/*-------------------------------------*/

/*-------------------------------------*/

.header-bottom {
  background: var(--sc-primary);
  padding: 5px 0;
}

.header-bt-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center !important;
}

.header-bt-1 {
  width: 70%;
}

.header-bt-2 {
  width: 30%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}

.header-bt-1 .live-tag {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-primary);
}

.search-box {
  border: 0px solid #d6d3d3;
  border-radius: 7px;
}

.search-box .form-control {
  border: 0px;
  border-radius: 7px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #666;
  height: 40px;
}

.search-box .btn {
  border-left: 1px solid #a6002f;
  line-height: 0px;
  background: #a6002f;
  border-radius: 7px;
  width: auto !important;
}

.search-box .btn:hover {
  background: #000;
}

.search-box .btn .icon-search {
  color: #fff;
}

.header-bt-2 .adv-ser {
  display: flex;
  justify-content: flex-end;
  font-weight: 600;
  font-size: 10px;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  text-align: right;
}

@media only screen and (max-width: 575px) {
  .header-bt-row {
    display: flex;
    flex-direction: column-reverse;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center !important;
  }

  .header-bt-1 {
    width: 100%;
  }

  .header-bt-2 {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
  }

  .header-bt-1 .live-tag {
    padding: 8px 0;
    text-align: center;
  }
}

/*------------------------------------------*/

/*------------------------------------------*/

 


.header-center-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0px 0 0 0;
}

.header-center-row .c-col-1 {
  width: 100%;
}

.header-center-row .c-col-2 {
  width: 100%;
}

.c-col-1 {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  position: relative;
  margin: 0px 0 0 0;
}

.c-col-1 h5 {
  font-family: "Poppins", sans-serif;
  color: #000;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 0 20px;
  padding: 0 10px;
  border-right: 1px solid #d1cfcf;
}

.c-col-1 h5 span {
  display: block;
}

.c-col-1 h6 {
  font-family: "Poppins", sans-serif;
  color: #000;
  font-size: 15px;
  font-weight: 600;
  margin: 0px;
  padding: 0 10px;
}

.top-links {
  padding: 0px;
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: flex-start;
  margin: 10px 0;
  position: absolute;
  bottom: -4px;
  right: 0px;
}

.top-links li {
  list-style: none;
  padding: 0px 12px;
  border-right: 0px solid #fff;
}

.top-links span {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #fff;
  font-weight: 500;
}

.top-links a {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
}

.top-links a:hover {
  color: var(--sc-primary);
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}

.top-links li:last-child {
  border-right: 0px;
  padding-right: 0;
}

@media only screen and (max-width: 600px) {
  .top-links {
    position: relative;
    bottom: 0px;
    right: 0px;
  }

  .top-links li:first-child {
    display: none;
  }

  .top-links a {
    font-size: 13px;
  }
}

@media only screen and (max-width: 1024px) {
  .c-col-1 h5 {
    font-family: "Poppins", sans-serif;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 0 20px;
    padding: 0 10px;
    border-right: 1px solid #d1cfcf;
  }

  .c-col-1 h5 span {
    display: inline-block;
  }

  .c-col-1 h6 {
    font-family: "Poppins", sans-serif;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    margin: 0px;
    padding: 0 10px;
  }
}

@media only screen and (max-width: 870px) {
  .c-col-1 h5 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 0 20px;
    padding: 0 10px;
    border-right: 1px solid #d1cfcf;
  }

  .c-col-1 h5 span {
    display: inline-block;
  }

  .c-col-1 h6 {
    font-size: 14px;
    font-weight: 600;
    margin: 0px;
    padding: 0 10px;
  }
}

@media only screen and (max-width: 768px) {
  .header-center-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0px 0 0 0;
  }

  .header-center-row .c-col-1 {
    width: 100%;
  }

  .header-center-row .c-col-2 {
    width: 50%;
  }

  .c-col-1 h5 {
    font-size: 10px;
    font-weight: 600;
    margin: 0 0 0 20px;
    padding: 0 0px;
    border-right: 1px solid #d1cfcf;
  }

  .c-col-1 h5 span {
    display: inline-block;
  }

  .c-col-1 h6 {
    font-size: 10px;
    font-weight: 600;
    margin: 0px;
    padding: 0 5px;
  }
}

@media only screen and (max-width: 425px) {
  .header-center-row {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0px 0 0 0;
  }

  .header-center-row .c-col-1 {
    width: 100%;
  }

  .header-center-row .c-col-2 {
    width: 100%;
  }

  .c-col-1 h5 {
    font-size: 10px;
    font-weight: 600;
    margin: 0 0 0 20px;
    padding: 0 0px;
    border-right: 1px solid #d1cfcf;
  }

  .c-col-1 h5 span {
    display: inline-block;
  }

  .c-col-1 h6 {
    font-size: 10px;
    font-weight: 600;
    margin: 0px;
    padding: 0 5px;
  }
}

/*---------------------------------------*/

.logo {
  text-align: left;
  position: relative;
  top: 1px;
  z-index: 2;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}

.logo img {
  width: auto;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}

.home-anchor-link {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

.home-anchor-link a {
  padding: 0 15px;
}

.home-anchor-link a img {
  padding: 3px;
  background: transparent;
  border: 1px solid #f58232;
  border-radius: 50%;
  display: block;
  position: relative;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}

.home-anchor-link a img:hover {
  background: #e5181f;
  -webkit-transform: translateY(-6px);
  -moz-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);
}

@media only screen and (max-width: 1180px) {
  /*.header-middle-row .m-col-1{ width:0%;} 
.header-middle-row .m-col-2{ width: 100%;}*/
  .logo img {
    max-width: 100% !important;
  }
}

@media only screen and (max-width: 960px) {
  /*.header-middle-row{ display: flex; flex-direction: column; flex-wrap: nowrap; justify-content:space-between!important; align-items: center; margin: 0px 0 0 0;  }*/
  .header-middle-row .m-col-1 {
    width: auto;
  }

  .header-middle-row .m-col-2 {
    width: auto;
  }

  .logo {
    text-align: left;
    position: relative;
    top: 0px;
    z-index: 2;
    transition: All 0.5s ease;
    -webkit-transition: All 0.5s ease;
    -moz-transition: All 0.5s ease;
    -o-transition: All 0.5s ease;
  }

  .logo img {
    max-width: 100% !important;
  }
}

@media only screen and (max-width: 768px) {
  .header-middle-row {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    margin: 0px 0 0 0;
  }

  .header-middle-row .m-col-1 {
    width: auto;
  }

  .header-middle-row .m-col-2 {
    width: auto;
  }

  .home-anchor-link {
    display: none;
  }
}

/*--------------------------------------------------*/

.header-fixed {
  width: 100%;
  min-height: inherit;
  z-index: 999;
  transition: top 0.25s ease-out;
  position: relative;
  background: transparent;
  padding: 0px 0;
  /* box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1) !important; */
}

.header-fixed.header-mini {
  position: fixed;
  /*position: relative;*/
  top: 0;
  /*background: #fff;*/
  border: 0px;
  -webkit-box-shadow: 0 4px 30px -5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 30px -5px rgba(0, 0, 0, 0.2);
  min-height: auto;
  transition: top 0.25s ease-out;
  -webkit-transition: top 0.25s ease-out;
}

.header-mini .header-top-row {
  display: none;
  justify-content: center;
  align-items: center;
}

.header-mini .top-col-1 {
  border: 0px;
  text-align: center;
}

.header-mini .top-col-2 {
  display: none;
}

.header-mini .header-top-row a {
  display: block;
}

/*.header-mini .header-nav{ background: rgba(255, 255, 255, 0.99);  padding: 0px 0;} */

.header-mini .header-nav .border-line {
  border-top: none;
  border-bottom: none;
}

.header-mini .logo {
  position: relative;
  top: 1px;
  text-align: center;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}

.header-mini .logo img {
  max-width: 60% !important;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}

.header-mini .navbar-custom {
  margin-top: 0px;
  border-top: 0px solid #ddd;
}

.header-mini .nav-link {
  font-size: 18px;
  color: #000;
}

.header-mini .nav-link span {
  font-size: 13px;
}

/*.header-mini .nav-link:hover {color: #304f9d;}*/

.header-mini .site-header {
  position: fixed;
  top: 0px;
  left: 0;
  z-index: 1002;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.header-mini .home-anchor-link {
  display: none;
}

@media only screen and (max-width: 768px) {
  /* .header-fixed {
         position: absolute; 
         min-height: 100%; 
    } */
  .header-mini .logo img {
    width: 60% !important;
    transition: top 0.25s ease-out;
  }

  .header-fixed.header-mini {
    position: relative;
  }
}

@media only screen and (max-width: 600px) {
  .header-fixed {
         position: relative; 
          
    } 
   
}

/*---------------------------------------------------*/

.header-divider {
  background: rgb(230, 228, 228);
  background: linear-gradient(
    140deg,
    rgba(230, 228, 228, 1) 0%,
    rgba(219, 216, 216, 1) 100%
  );
  padding: 4px 0;
}


/*-------------carousel-----------------------------------------------------*/

.slider {
  margin: 0px 0 0px 0px;
  border: 0px solid #ddd;
}

.carousel-overlay:after {
  content: "";
  width: 100%;
  height: 100%;
  /*background:url(../images/black-back.png); */
  opacity: 0.95;
  position: absolute;
  left: 0;
  top: 0;
}

.carousel-overlay {
  display: none;
  position: absolute;
  overflow: hidden;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 50px !important;
  border: 0;
  background-color: #fff;
}

.carousel-indicators .active {
  background-color: #fff;
}

/* .carousel-control-prev-icon {
  background-image: url(../images/left-arrow-bk.png);
}

.carousel-control-next-icon {
  background-image: url(../images/right-arrow-bk.png);
} */

.carousel-control-next-icon,
.carousel-control-prev-icon {
  display: inline-block;
  width: 23px;
  height: 42px;  
}

.carousel-control-next,
.carousel-control-prev { 
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8%;
}

 



.carousel-caption {
  /* background: #fff; */
  position: absolute;
  /* right: 0; */
  bottom: 30%;
  left: 5%;
  z-index: 10;
  /* padding: 30px 30px 70px 10px; */
  text-align: left !important;
  width: 45%;
  /* display: none !important; */
}

.carousel-caption h6 {
  margin: 0px;
  font-family: var(--font-family-1);
  font-weight: 500;
  font-size: 20px;
  color: var(--text-white); text-transform: uppercase;
  margin: 0px;
}


.carousel-caption h5 {
  margin: 0px;
  font-family: var(--font-family-2);
  font-weight: 400;
  font-size: 55px;
  color: var(--text-white);
  margin: 0 0 10px 0; text-transform: inherit;
}

.carousel-caption h5 span {  
  color: var(--sc-primary);
  margin: 0px;
}


.carousel-caption h4 {
  margin: 0px;
  font-family: var(--font-family-1);
  font-weight:300 !important;
  font-size: 22px;
  color: var(--text-white);   
  margin: 0px;
}

.carousel-caption p {
  margin: 0px;
  font-family: var(--font-family-1);
  font-weight: 400;
  font-size: 17px;
  color: var(--text-white);   
  margin: 0px;
}

.carousel-caption .know-more-btn {
  background: transparent;
  padding: 15px 18px;
  font-family: var(--font-family-1);
  color: #fff;
  font-size: 12px; letter-spacing: 0.50px;
  font-weight:600;
  border-radius: 10px; border: 1px solid #fff;
  margin: 20px 0 0 0;
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.carousel-caption .know-more-btn i{padding: 0 10px;}

.carousel-caption .know-more-btn:hover {
  background: var(--sc-primary); border: 0px;
  padding-left:30px;
   
}

.carousel-caption h3,
h4,
h5,
h6,
p,
a {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* ============= Animation delays ====================== */

.carousel-caption h6 {
  animation-delay: 1s;
}

.carousel-caption h5 {
  animation-delay: 1s;
}

.carousel-caption h4 {
  animation-delay: 2s;
}

.carousel-caption button {
  animation-delay: 3s;
}

.carousel-caption p {
  animation-delay: 3s;
}

.carousel-caption a {
  animation-delay: 3s;
}

.hidden-lg {
  display: inherit;
}


.hidden-sm {
  display: none !important;
}

@media only screen and (max-width:1160px) {
  .carousel-caption {    
    bottom: 30%; 
    width: auto;
    
  } 
}
 

@media only screen and (max-width:1024px) {
  .carousel-caption {
    /*background: #fdd215;*/
    position: absolute;
    right: 15%;
    bottom: 30%;
    left: 4%;
    z-index: 10;
    padding: 10px;    
    width: auto;
    /* display: none !important; */
  }

  .carousel-caption h5 {
    font-size: 36px;
  }

  .carousel-caption h6 {
    font-size: 24px;
  }

  .carousel-caption h4 {
    font-size: 20px;
  }
}


@media only screen and (max-width: 768px) {
  .carousel-caption {
    /*background: #fdd215;*/
    position: absolute;
    right: 10%;
    bottom: 30%;
    left: 5%;
    z-index: 10;
    padding: 10px;
    
  }

  .carousel-caption h5 {
    font-size: 24px;
  }

  .carousel-caption h6 {
    font-size: 14px;
  }

  .carousel-caption h4 {
    font-size: 14px;
  }

  .carousel-caption p {
    font-size: 14px;
  }

  .carousel-caption .know-more-btn {
    padding: 10px 10px;
    font-size: 10px;
    font-weight: 600;
    margin: 10px 0 0 0; border-radius: 4px;
  }
  
}

@media only screen and (max-width: 580px) {
  .carousel-control-prev-icon {
    display: none;
  }

  .carousel-control-next-icon {
    display: none;
  }

  .carousel-indicators button {
    display: none !important;
  }

   
 
  .carousel-caption h5 br{ display: none;}

  .carousel-caption h4 br{ display: none;}

   
}

@media only screen and (max-width: 480px) {
  .slider {
    /*padding-top: 80px;*/
    margin: 0px 0 0px 0px;
    border: 0px solid #ddd;
  }

  /*.carousel-caption { display: none;}*/
  .hidden-lg {
    display: inherit !important;
  }

  .hidden-sm {
    display: inherit !important;
  }

  .carousel-caption {
    /*background: #fdd215;*/
    position: absolute;
    right: 10%;
    bottom: 20%;
    left: 3%;
    z-index: 10;
    padding: 10px;
    
  }
   

  
}

@media only screen and (max-width: 375px) {
  /* .carousel-item .w-100 { width:100% !important;  
           height:500px;} */
  /* .carousel-caption {
    display: none;
  } */

  
}


.caption-row{display: flex; flex-direction: row; flex-wrap: nowrap; justify-content: space-between;}
.cap-col{ width: 49%;}
.cap-col img{width: 50%;}


.slider-bottom-coverage-image{
   position: absolute;
    right: 0;
    left: 0;
    pointer-events: none;
    z-index: 2;
    bottom: -1px;
}

.slider-bottom-coverage-image img{
  width: 100%;
    height: auto;
    display: block;
}

 
/*------------inner page banner----------------*/


.carousel-inner-bg{
  /* background: var(--primary); */
  background: rgb(1,58,151);
  background: linear-gradient(284deg, rgba(1,58,151,1) 0%, rgba(9,41,97,1) 100%);
  padding: 40px 0;
  position: relative;
}

/* .carousel-inner-bg:after {
  position: absolute;
  width: 30.85416666666667%;
  height: 100%;
  content: '';
  background:var(--sc-primary); 
  left: -25px;
  top: 0;
  transform: skew(-24deg, 0deg);
  -moz-transform: skew(-24deg, 0deg);
  -webkit-transform: skew(-24deg, 0deg);
} */


.carousel-inner-overlay:after {
  content: "";
  width: 100%;
  height: 100%;
  background: #334387;
  opacity: 0.95;
  position: absolute;
  left: 0;
  top: 0;
}

.carousel-inner-overlay {
  position: relative;
  overflow: hidden;
  border: 0px solid rgb(0, 0, 0);
}

  

.carousel-caption-1{
  /* background: #fdd215; */
  position: relative;  
  right: 15%;
  bottom: 10%;
  left: 4%;
  z-index: 10;
  padding: 10px 0; margin-bottom: 0px;
  text-align: left !important;
  width: 100%;
  /* display: none !important; */
}
 
.carousel-caption-1 h6 {
  margin: 0px;
  font-family:var(--font-family-2);
  font-weight:300;
  font-size:18px;
  color:var(--text-white);  
  margin: 0px;  text-transform: uppercase; 
}

.carousel-caption-1 h5 {
  margin: 0px;
  font-family:var(--font-family-2);
  font-weight: 400;
  font-size:36px;  
  color:var(--text-white);   margin: 0px 0 0 0px; 
}

.carousel-caption-1 h5 span{font-weight: 800;}


/* .carousel-caption-1 h4 span:after{ content: "";   position: absolute;  left: 0; right: 0; margin: auto;
    bottom:-5px;   width:30%;   height: 4px;   background: #dd1f26; }  */
 

    @media only screen and (max-width: 767px) {
   
      /* .carousel-caption-1{       
        position: relative;  
        right: 15%;
        bottom: 1%;
        left: 3%;
        z-index: 10;
        padding: 1px;
        text-align: left !important;
        width: 100%;
         
      }

      .carousel-inner-bg:after {     
        width: 50.85416666666667%;        
      } */
      
    }
    
    
    @media only screen and (max-width: 580px) {
    
      .carousel-caption-1{
         margin-bottom:0px;        
      }

      .carousel-inner-bg{        
        padding: 10px 0;
        position: relative;
      }
      
     
  }
  
  @media only screen and (max-width: 480px) {
      .w-200{ width: 100% !important;  
          height:140px;  object-fit:cover; object-position:25%;}
  }
/*==================================================*/

/* Animation css*/

@keyframes leftmove {
  0% {
    margin-left: 0;
  }

  50% {
    margin-left: -20px;
  }

  100% {
    margin-left: 0;
  }
}

@keyframes rightmove {
  0% {
    margin-right: 0;
  }

  50% {
    margin-right: 60px;
  }

  100% {
    margin-right: 0;
  }
}

/* @keyframes move {
  0% {
    margin-bottom: 0;
  }

  50% {
    margin-bottom: -20px;
  }

  100% {
    margin-bottom: 0;
  }
} */

@keyframes move {
  0% {
    margin-top: 0;
  }

  50% {
    margin-top: -20px;
  }

  100% {
    margin-top: 0;
  }
}

@keyframes rotate-icon {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

 
.shape-1 {
  /* -webkit-animation: rotate-icon 5s linear 0s infinite normal;
  animation: rotate-icon 5s linear 0s infinite normal; */
  -webkit-animation-name: move;
    animation-name: move;
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
    -webkit-animation: move infinite 4s;
    animation: move infinite 4s;
}

 

.shape-1 {
  position: absolute;
  left: 70%;
  top:35%;  
}

.shape-2 {
  position: absolute;
  right: 1%;
  bottom:-120px;
  opacity: 0.3;  
  -webkit-animation-name: rightmove;
    animation-name: rightmove;
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
    -webkit-animation: rightmove infinite 4s;
    animation: rightmove infinite 4s; 
   
}
 

.shape-3 {
  position: absolute;
  left: 1%;
  top: 20px;
  opacity: 0.3;  
  -webkit-animation-name:move;
    animation-name:move;
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
    -webkit-animation:move infinite 4s;
    animation:move infinite 4s; 
   
}

.shape-5 {
  position: absolute;
  right: 1%;
  top: 0px;
  opacity: 0.4;  
  -webkit-animation-name:rotate-icon;
    animation-name:rotate-icon;
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
    -webkit-animation:rotate-icon infinite 4s;
    animation: rotate-icon infinite 4s; 
   
}


@media only screen and (min-width: 992px) and (max-width: 1199px){

  .shape-2 {
    position: absolute;
    right: 1%;
    bottom:-60px;} 
}

@media only screen and (min-width: 768px) and (max-width: 991px){

  .shape-2 {
    position: absolute;
    right: 1%;
    bottom:-80px;}

}

@media only screen and (max-width: 767px){
/* .shape-1 {
    display: none;
} */
.shape-2 {
  position: absolute;
  right: 1%;
  bottom:-20px;}
}



/*--================================================-heading-================================================-*/
 

.heading-bx-left{ margin-bottom: 10px; position: relative;}

.heading-bx-left h1 {
  font-family: var(--font-family-2);
  font-size:55px;
  color: var(--text-heading);
  font-weight:700;
  letter-spacing: -0.30px;
  text-transform: inherit;
  text-align: left;
  position: relative;
  margin: 0 0 0px 0;
  line-height: 1.2;  
}

 
 
.heading-bx-left h1 span {
  font-family: var(--font-family-1);
  font-size: 18px; 
  color: var(--primary);  letter-spacing: 0.50px;
  font-weight:700; 
  padding-left: 0rem; margin-top: 10px;
  padding-right: 0px; text-transform: uppercase;
  position: relative;
  display: block;
}

/* .heading-line-left::before {
  content: "";
  width: 10rem;
  height: 0.1rem;
  display: inline-block;
  margin: 0 auto;
  background-color: #62b948;
} */ 

.heading-line-left::after {
  content: "";
  width: 5rem;
  padding-top: 0.3rem;
  height: 0.1rem;
  display: inline-block;
  margin: 0 auto;
  margin-bottom: 0.5rem;
  background-color: #62b948;
}


.heading-bx-left h2 {
  font-family: var(--font-family-2);
  font-size:50px;
  color: var(--text-heading);
  font-weight:400;
  letter-spacing: -0.30px;
  text-transform: inherit;
  text-align: left;
  position: relative;
  margin: 0 0 0px 0;
  line-height: 1.2;  
}

 
 
.heading-bx-left h2 span {
  font-family: var(--font-family-1);
  font-size: 18px; 
  color: var(--primary);  letter-spacing: 0.50px;
  font-weight:700; 
  padding-left: 0rem; margin-top: 10px;
  padding-right: 0px; text-transform: uppercase;
  position: relative;
  display: block;
}
 

 
.heading-bx-left h3 {
  font-family: var(--font-family-2);
  font-size:40px;
  color: var(--text-heading);
  font-weight:400;
  letter-spacing: -0.30px;
  text-transform: inherit;
  text-align: left;
  position: relative;
  margin: 0 0 0px 0;
  line-height: 1.2;  
}

 
 
.heading-bx-left h3 span { display: none;
  font-family: var(--font-family-1);
  font-size: 17px; 
  color: var(--primary);  letter-spacing: 0.50px;
  font-weight:700; 
  padding-left: 0rem; margin-top: 10px;
  padding-right: 0px; text-transform: uppercase;
  position: relative;
  /* display: block; */
}


.heading-bx-left h4 {
  font-family: var(--font-family-2);
  font-size:32px;
  /* color: var(--text-heading); */
  /* font-weight:400;
  letter-spacing: -0.30px; */
  color: var(--primary);
  letter-spacing: 0.50px;
  font-weight:600; 
  text-transform: inherit;
  text-align: left;
  position: relative;
  margin: 0 0 0px 0;
  line-height: 1.2;  
}

 
 
.heading-bx-left h4 span {
  font-family: var(--font-family-2); 
  color: var(--primary);  letter-spacing: 0.50px;
  font-weight:600; 
  padding-left: 0rem; margin-top: 10px;
  padding-right: 0px; text-transform: inherit;
  position: relative;
 
}


 
.text-90d{
  -ms-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  margin-top: 160px;  
}

 
.services-heading h2 {
  font-family: var(--font-family-2);
  font-size:36px;
  color: var(--primary);
  font-weight:300;
  letter-spacing: -0.30px;
  text-transform: uppercase;
  text-align: left;
  position: relative;
  margin: 0 0 20px 0;
  line-height: 1.2;  
}

 
 
.services-heading h2 span {  background: var(--primary);
  font-family: var(--font-family-2);
  font-size: 45px; 
  color: var(--text-white);  letter-spacing: 0.50px;
  font-weight:700; 
  margin-top: 0px; padding: 1px 5px; border-radius: 3px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}
 



@media only screen and (max-width: 767px) {
  .heading-bx-left h1 br{display: none;}
  .heading-bx-left h1 { 
    font-size: 40px;    
  }


  .heading-bx-left h2 br{display: none;}
  .heading-bx-left h2 { 
    font-size: 45px;    
  }

   
 
 

  .text-90d{
    -ms-transform:none;
    -moz-transform: none;
    -webkit-transform: none;
    transform: none;
    margin-top: 0px; text-align: left !important;
  }
  

}

 

 


/*===========section space=========================*/

.section-sp1 {
  padding-top: 100px;
  padding-bottom: 70px;
}

.section-sp2 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.section-sp3 {
  padding-top: 70px;
  padding-bottom: 60px;
}

.section-sp4 {
  padding-top: 50px;
  padding-bottom: 50px;
}


.section-sp5 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.section-sp6 {
  padding-top: 0px;
  padding-bottom: 50px;
}

.section-sp7 {
  padding-top:50px;
  padding-bottom: 0px;
}

.section-sp8 {
  padding-top: 0px;
  padding-bottom:10px;
}

.section-sp9 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.section-spd1 {
  padding-top: 30px;
}

.section-smr1 {
  margin-top: 0;
  margin-bottom: 120px;
}





 


/*==================Home sections===========================**/

.section-row{ display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-between;}

.sec-col-1, .sec-col-4{ width: 60%;}
 .sec-col-2, .sec-col-3 { width: 39%;}

.sec-col-1{ padding-left: 4%;}

.sec-left-pd{ padding-left: 80px; padding-right: 40px; padding-top: 80px;}
 
.section-bk1 {
  /* background: url(../../images/section-img1.jpg) var(--sc-primary);  */
  background-repeat: no-repeat;
  background-position: 20% center !important;
  background-size:cover !important;
  position: relative;   
  margin: 0 0 0px 0;  
  /* min-height: 600px;  */

}

.section-bk1:before {  
  content: '';
  background: url(../../images/arrow-gray-left.png) rgba(21, 72, 135, 0.5);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: auto 100%;
    position: absolute;
    width:100%;
    height: 100%;   
    right:0%;
    top: 0;
    z-index: 0; 
  
}
  

.section-bk2 {
  /* background: url(../../images/section-img1.jpg) var(--sc-primary);  */
  background-repeat: no-repeat;
  background-position: 20% center !important;
  background-size:cover !important;
  position: relative;   
  margin: 0 0 0 0;  
  /* min-height: 600px;  */  

}

.section-bk2:before {  
  content: '';
  background: url(../../images/arrow-gray-right.png) rgba(21, 72, 135, 0.5);
  background-position: right top;
  background-repeat: no-repeat;
  background-size: auto 100%;
    position: absolute;
    width:100%;
    height: 100%;   
    right:0%; 
    top: 0;
    z-index: 0;  
  
}

.img-height{min-height: 400px; } 


@media only screen and (max-width: 768px) {
 
  .sec-col-1, .sec-col-4{ width: 100%;}
 .sec-col-2, .sec-col-3 { width: 100%;}

  .sec-col-1{ padding-left: 15px; padding-right: 15px;}

  .sec-left-pd{ padding-left: 0px; padding-right: 0px; padding-top: 0px;}

  .section-bk1 {
    position: relative;
    padding: 50px 30px;
    margin: 0 0 30px 0;
    min-height: 400px !important;
  }
  /* .section-bk1:before { 
    background: none;
  } */

  .section-bk1:before {  
    content: '';
    background: url(../../images/arrow-gray-top.png) rgba(21, 72, 135, 0.5);
    background-position: center top; 
  }

  .section-bk2 {
    position: relative;
    padding: 50px 30px;
    margin: 0 0 30px 0;
    min-height: 400px !important;
  }
 

  .section-bk2:before {  
    content: '';
    background: url(../../images/arrow-gray-top.png) rgba(21, 72, 135, 0.5);
    background-position: center top; 
  }
}

 

/*-----------------------------*/

.principals-list {padding: 0 0 0 1px !important;  list-style: none; display: flex; flex-wrap: wrap; justify-content: flex-start;}

.principals-list li{ list-style:none; margin: 15px 15px; padding:5px; width: 26%;  min-height: 80px !important; border:0px solid #eee; border-radius: 10px; text-align:center;   transition: all 0.5s ease;  background: #fff;
  box-shadow: 1px 1px 7px 4px rgba(0, 0, 0, 0.06); display: flex; align-items: center;}

.principals-list li img{max-height: 100%; max-width:100%; cursor: pointer;}
.principals-list li img:hover{transition:All 0.5s ease;-webkit-transition:All 0.5s ease;-moz-transition:All 0.5s ease;-o-transition:All 0.5s ease;  opacity:0.5;}

 

@media only screen and (max-width: 768px) {
  .principals-list li{ margin: 15px 15px; width: 20%;    }	
}

@media only screen and (max-width: 600px) {
  .principals-list li{ margin: 15px 15px; width: 25%;    }	
}

@media only screen and (max-width:500px) {
  .principals-list li{ margin: 10px 10px; width: 28%;  min-height:80px !important;  }	
}

@media only screen and (max-width:400px) {
  .principals-list li{ margin: 10px 10px; width: 25%;  min-height:80px !important;  }	
}

@media only screen and (max-width:340px) {
  .principals-list li{ margin: 10px 10px; width: 40%;  min-height:80px !important;  }	
}


.why-list{ text-align: center; margin: 20px 80px 0 0;}
.why-list ul { padding: 10px; margin: 0;list-style: none; display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-between; }
.why-list ul li{ text-align: center;  width: 47%; margin-bottom: 20px;}
.why-list ul li img{ width: 100px; border-radius: 100%;}  
.why-list ul li h4{ font-family: var(--font-family-2); font-size:26px; font-weight: 300; padding: 10px 0; color:  var(--text-heading);}

@media only screen and (max-width:768px) {
  .why-list{ text-align: center; margin: 20px 0px 0 0;}
  .why-list ul { padding: 0px;  }
  .why-list ul li h4{  font-size:20px; }
  .why-list ul li img{ width: 80px; border-radius: 100%;} 
}


/*=================================================================*/

.principals-listing{  display: flex; flex-direction: row; flex-wrap: wrap; justify-content: start;}

.principals-boxes-col{  width:calc(46% - 5px) !important;}

.principals-boxes{ width:calc(23% - 5px); margin: 15px 15px; border-radius: 12px; border: 0px solid #ddd;  box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.15);  padding: 15px;  text-align: center;   
  transition: All 0.5s ease;
 -webkit-transition: All 0.5s ease;
 -moz-transition: All 0.5s ease;
 -o-transition: All 0.5s ease;
}
.principals-boxes img{ width: 100%;}
.principals-boxes p{ 
  font-family: var(--font-family-1);
  font-size: 15px;
  font-weight:500;
  color: var(--text-primary);
  letter-spacing: 0.20px;
  padding: 0 0px; margin: 0;
}

.principals-boxes aside{ display: flex; align-items: center; justify-content: center;  margin: 20px 0 0 0; font-weight: 600; color: var(--primary);}


.principals-boxes:hover{
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);    
}

.principals-boxes:hover aside {color: var(--sc-primary);}


@media only screen and (max-width:1280px) {
  .principals-boxes{ width:calc(23% - 5px); margin: 15px 10px;  padding: 15px;   
  }
}

@media only screen and (max-width:1024px) {
  .principals-boxes{ width:calc(30% - 5px); margin: 15px 10px;  padding: 15px;   
  }
}

@media only screen and (max-width:768px) {
  .principals-listing{  display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-between;}
  .principals-boxes{ width:calc(50% - 15px) !important; margin: 15px 0px;  padding: 15px;   
  }
  .principals-boxes-col{  width:auto}
}

@media only screen and (max-width:460px) { 
  .principals-boxes{ width:calc(100% - 0px) !important; margin: 15px 0px;  padding: 15px;   
  }
}


.Principals-logo{ position: absolute; top: 230px;   right:50px !important; bottom:0px; border-radius: 15px; }

@media only screen and (max-width:1024px) { 
  .Principals-logo{ position: absolute; top: 180px; right:10px; bottom: 0; border-radius: 8px; width: 200px;}
}

@media only screen and (max-width:580px) { 
  .Principals-logo{ position: relative; left:0px; top: 10px; right:0px !important; bottom: 0; border-radius: 8px; width: 200px;   }
}

/*====================*/


.Principals-logo-1{ position: absolute; top: -120px;   right:50px !important; bottom:0px; border-radius: 15px; }

@media only screen and (max-width:1024px) { 
  .Principals-logo-1{ position: absolute; top: -80px; right:10px; bottom: 0; border-radius: 8px; width: 200px;}
}

@media only screen and (max-width:580px) { 
  .Principals-logo-1{ position: relative; left:0px; top: -25px; right:0px !important; bottom: 0; border-radius: 8px; width: 200px;   }
}


/*=================================================================*/

  

.product-listing{ margin: 20px 0; display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-between; }

.product-boxes{  position: relative; width: calc(49.33% - 10px); text-align: left; background: #fff;
   margin:15px 0;   padding: 0px; border-radius: 12px; border: 0px solid #ddd;  box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.15);   
   transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
  }
.product-boxes figure {text-decoration: none;   margin: 0;  padding:10px; display: flex; flex-direction: row; flex-wrap: nowrap; justify-content: space-between; align-items: start;  border-radius: 0px; position: relative !important;
 }

 .product-boxes-thumb { width: 35%;
 border-radius:0px 0 0 0;
  overflow: hidden;
  position: relative; border-right: 1px solid #ddd;
}
 


.product-boxes-content { width:65%;
  padding: 20px;
  position: relative !important;  
}

   
.product-boxes-content  h4{ font-family: var(--font-family-2); color: var(--text-primary);
    font-size: 30px;
    font-weight:400;
    margin-bottom: 5px;
}

.product-boxes-content  h4 a{  color: var(--text-primary); 
}

.product-boxes-content h5{ font-family: var(--font-family-1); color: var(--text-primary);
 font-size: 15px;
 font-weight:500;
 margin-bottom: 1px;
}

.product-boxes-content h6 { font-family: var(--font-family-1); color: var(--text-primary);
 font-size: 17px;
 font-weight:600; 
}

 
.product-boxes-content p{font-family: var(--font-family-1); color: var(--text-primary); font-size: 16px; font-weight:500;     
  /* overflow: hidden; white-space: nowrap; text-overflow: ellipsis;   */
  display: block;
  display: -webkit-box;
  max-width: 100%;
  height: 53px;
  margin: 0 auto; 
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  }

.product-boxes .know-more-btn { 
    padding: 4px;
    font-family: var(--font-family-1);
    color:var(--primary);
    font-size:14px;
    font-weight:800;
    border: 0;
    margin:0px 0 0 0;    
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
  }
  .product-boxess .know-more-btn i{padding: 0 10px;}
  
  .product-boxes .know-more-btn:hover {
    background: transparent;
    padding-left:4px;
    color:var(--sc-primary);     
  } 
   
  

@media only screen and (max-width: 768px) {
  .product-boxes figure { display: flex; flex-direction: column; flex-wrap: nowrap; justify-content: space-between; }

  .product-boxes-thumb { width: 100%; border-right: 0px solid #ddd; }
 .product-boxes-content { width: 100%; padding: 10px 0;
 }
}


@media only screen and (max-width: 580px) {
.product-listing{ margin: 10px 0; display: flex; flex-direction: column; flex-wrap: wrap; justify-content: space-between;}

 .product-boxes{  position: relative; width: calc(100% - 0px);  margin:15px 0;   }
}

@media only screen and (max-width: 480px) {  }


/*====================================================================*/


/*=====================Sub products list============================================*/

  

.sub-product-listing{ margin: 20px 0; display: flex; flex-direction: row; flex-wrap: wrap; justify-content: flex-start; }

.sub-product-boxes{  position: relative; width: calc(24.33% - 15px); text-align: left; background: #fff;
   margin:15px 10px;   padding: 0px; border-radius: 12px; border: 0px solid #ddd;  
   box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.15);   
   transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.sub-product-boxes figure {text-decoration: none;   margin: 0;  padding:10px; display: flex; flex-direction: column; flex-wrap: nowrap; justify-content: space-between; align-items: start;  border-radius: 0px; position: relative !important;
 }

 .sub-product-boxes-thumb { width: 100%;
 border-radius:0px 0 0 0;
  overflow: hidden;
  position: relative; border-right: 0px solid #ddd;
} 


.sub-product-boxes-content { width:100%;
  padding: 0px 1px;
  position: relative !important;  text-align: center; 
}

   
.sub-product-boxes-content  h4{ font-family: var(--font-family-1); color: var(--text-primary);
    font-size: 20px;
    font-weight:700;
    margin-bottom: 5px;
}

.sub-product-boxes-content  h4 a{  color: var(--text-primary); 
}
  
 
.sub-product-boxes-content p{font-family: var(--font-family-1); color: var(--text-primary); font-size: 14px; font-weight:500;}

.sub-product-boxes .know-more-btn { 
    padding: 4px;
    font-family: var(--font-family-1);
    color:var(--primary);
    font-size:14px;
    font-weight:800;
    border: 0;
    margin:0px 0 0 0;    
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
  }
  .sub-product-boxess .know-more-btn i{padding: 0 10px;}
  
  .sub-product-boxes .know-more-btn:hover {
    background: transparent;
    padding-left:4px;
    color:var(--sc-primary);     
  } 
   
  

@media only screen and (max-width: 1024px) {
  .sub-product-listing{ margin: 20px 0; display: flex; flex-direction: row; flex-wrap: wrap; justify-content: flex-start; }

  .sub-product-boxes{  position: relative; width: calc(33.33% - 20px); text-align: left; background: #fff;
     margin:15px 10px; }

 
}

@media only screen and (max-width: 768px) {
  .sub-product-listing{ margin: 20px 0; display: flex; flex-direction: row; flex-wrap: wrap; justify-content: flex-start; }

  .sub-product-boxes{  position: relative; width: calc(48.33% - 10px); text-align: left; background: #fff;
     margin:15px 10px; }

 
}


@media only screen and (max-width: 580px) {
.sub-product-listing{ margin: 10px 0; display: flex; flex-direction: column; flex-wrap: wrap; justify-content: space-between;}

 .sub-product-boxes{  position: relative; width: calc(100% - 0px);  margin:15px 0;   }
}

@media only screen and (max-width: 480px) {}


.sublinks{ display:flex; flex-direction: row; justify-content: center; flex-wrap: wrap; margin-bottom: 20px;}
.sublinks a{margin: 2px 2px; padding:10px 15px; border: 0px solid #ddd; border-radius: 4px;  font-size: 15px; font-weight: 600; color: var(--text-white); background: var(--primary);}
.sublinks a:hover{background: var(--sc-primary); color: #fff;}
.sublinks .active{ background: var(--sc-primary);}

/*====================================================================*/

 


 
.offcanvas.offcanvas-bottom{ height: 350px;}
.offcanvas-body{padding: 5px;}
.offcanvas-title {font-family: var(--font-family-2); text-transform: uppercase;
  font-size: 24px;   color: var(--sc-primary);  font-weight:500;}

.pro-list{  display: flex; flex-direction: row; flex-wrap: wrap; justify-content: start;}

 .pro-list-boxes{ width:calc(15% - 3px); margin: 1px 8px; border-radius: 12px; border: 0px solid #ddd;  box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.15);  padding: 15px;  text-align: center;   
  transition: All 0.5s ease;
 -webkit-transition: All 0.5s ease;
 -moz-transition: All 0.5s ease;
 -o-transition: All 0.5s ease;
}
.pro-list-boxes img{ width: 100%;}

.pro-list-boxes h2{ font-family: var(--font-family-2);  font-size: 16px; font-weight:500; 
  color:  var(--primary);
}

.pro-list-boxes:hover h2{ color: var(--sc-primary);}


@media only screen and (max-width:1280px) {
  .pro-list-boxes{  width:calc(15% - 3px); margin: 1px 8px;   padding: 15px;   
  }
}

@media only screen and (max-width:1024px) {
  .pro-list-boxes{width:calc(15% - 3px); margin: 1px 8px;    padding: 15px;   
  }
}

@media only screen and (max-width:768px) {
  .pro-list{  display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-between;}
  .pro-list-boxes{ width:calc(22% - 3px); margin: 8px 8px;    padding: 15px;   
  }
 
}

@media only screen and (max-width:480px) {
  .pro-list{  display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-between;}
  .pro-list-boxes{ width:calc(48% - 0px) !important; margin: 15px 0px;  padding: 15px;   
  }
 
}
 
 


/*=================================================================*/


.insights-list{   margin: 10px 0; display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-between;  }

.insights-box{  position: relative; /*width: calc(49.33% - 10px);*/ border-radius: 12px; text-align: left; 
  /* background:var(--th-primary);  */
  margin:10px;   padding: 0px;
   transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease; 
  /* box-shadow: 1px 0px 11px 0px rgba(0, 0, 0, 0.15); */
  }
.insights-box figure {text-decoration: none; display: block; padding:40px 20px; display: flex; flex-direction: row; flex-wrap: nowrap; justify-content: space-between; align-items: center;}

.insights-thumb {  
  overflow: hidden;
  position: relative;
}
 

.insights-animate {
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.insights-animate:after {
  content: "";
  width: 100%;
  height: 100%; 
  background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  opacity: 0.99;
  position: absolute;
  left: 0;
  top: 0;  
}

/* .insights-animate:before {
  position: absolute;
  top: 0;
  left: -100%;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg,hsla(0,0%,100%,0) 0,hsla(0,0%,100%,.3));
  transform: skewX(-25deg);
} */

.insights-content {
  padding: 10px 0;
  position: relative;
}
 

.insights-content .icon img {
  width: 40px !important;
  height: 40px !important;}

.insights-content .title { font-family: var(--font-family-1); color: var(--text-white);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px; margin-top: 10px;
}
.insights-content .title a span{font-weight: 400;}
.insights-content .title a{text-decoration: none; color: inherit;}
.insights-content .title a:hover {
  color: var(--primary);
}
 
.insights-box p{ 
    font-size: 24px;
    line-height: 24px !important;
    font-weight: 300;
    color: var(--text-white);
    letter-spacing: 0.20px;
    padding: 0 0px; margin: 0;
}

.insights-box h6{  position: absolute; bottom: 10px; left: 0; right: 0; z-index:1;
  font-family: var(--font-family-2);
  font-size: 22px;
  line-height: 24px !important;
  font-weight:700;
  color: var(--text-white); text-transform: uppercase;
  letter-spacing: 0.20px;
  padding:10px; margin: 0;
}

.insights-box h6 span{  display: block;
  font-family: var(--font-family-1);
  font-size:15px;
  line-height: 24px !important;
  font-weight: 500; text-transform: initial; 
  
} 
 

.insights-box:hover { display: block; /*background:var(--sc-primary);*/
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);   
}

/* .menu-box:hover span{color: var(--sc-primary);} */


#insights-list .owl-nav {
  display: flex;
  justify-content: end;
  margin-top: 0px;
  position: absolute;
  right: 20px;
  top: -70px; z-index:1;
}

#insights-list .owl-prev, #insights-list .owl-next{ 
  display: flex; align-items: center; justify-content: center; text-align: center;
  background: var(--primary);
  padding: 0px;
  margin: 2px 5px;
  position: relative;
  border: 0px solid #ddd;
  width: 40px;
  height: 40px; color: #fff;border-radius: 100%; font-size: 20px;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}

#insights-list .owl-prev:hover, #insights-list .owl-next:hover{background: var(--sc-primary);}
 

#insights-list .owl-dots{ display: none;}

@media only screen and (max-width: 768px) {
  #insights-list .owl-nav {
    display: flex;
    justify-content: end;
    margin-top: 0px;
    position: absolute;
    right: 20px; top: initial;
    bottom: -70px !important; z-index:1;
  }
}

 /*================================================================-*/
 
.achieve-bk {
  background: var(--sc-primary);  
  position: relative;
  padding:40px 40px 40px 0;
  margin: 0 0 0px 0;  min-height: 500px; 
}

.achieve-bk:before { 
  background: url(../../images/whyus.jpg) var(--sc-primary);
  background-repeat: no-repeat;
  background-position: center left;
  background-size:cover;
    position: absolute;
    width:100%;
    height: 100%;
    content: '';
    left:-20%;
    top: 0;
    z-index: 0;
}
  
@media only screen and (max-width: 767px) {
  .achieve-bk {
    position: relative;
    padding: 50px 30px;
    margin: 0 0 30px 0;
    min-height: auto;
  }
  .achieve-bk:before { 
    background: none;
  }

}



/*------------------*/

.achieve-list{  margin: 0px 10px; display: flex; flex-direction: row; flex-wrap:wrap; justify-content: start;  }

.achieve-box{  position: relative; width: calc(33.33% - 30px); border-radius: 12px; text-align: left;  
  margin:0 30px 20px 0;   padding: 0px;
   transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease; 
  /* box-shadow: 1px 0px 11px 0px rgba(0, 0, 0, 0.15); */
  }
 

.achieve-thumb {  
  overflow: hidden;
  position: relative;
}

.achieve-thumb img { width: 100%;}
 

.achieve-animate {
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

/* .achieve-animate:after {
  content: "";
  width: 100%;
  height: 100%; 
  background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  opacity: 0.99;
  position: absolute;
  left: 0;
  top: 0;  
} */

 
.achieve-content {
  padding: 10px 0;
  position: relative;
}
 
 
 
.achieve-content p{ 
    font-size: 24px;
    line-height: 24px !important;
    font-weight: 300;
    color: var(--text-white);
    letter-spacing: 0.20px;
    padding: 0 0px; margin: 0;
}

.achieve-content h6{ 
  font-family: var(--font-family-1);
  font-size: 15px; 
  font-weight:600;
  color: var(--text-primary); text-transform: inherit;
  letter-spacing: 0.20px;
  padding:0px 0; margin: 0;
}
 
 

.achieve-box:hover { display: block; /*background:var(--sc-primary);*/
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);   
}

@media only screen and (max-width:480px) {

  .achieve-list{  margin: 0px 10px; display: flex; flex-direction: row; flex-wrap:wrap; justify-content: space-between;  }

  .achieve-box{  position: relative; width: calc(50% - 5px);   text-align: left;  
    margin:0 0px 20px 0;   padding: 0px; }

    .achieve-content h6{  
      font-size: 13px;  
    }
    
}
 
/*==========================================================================-*/


.events-list{   margin: 20px 0; display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-between;  }

.events-box{  position: relative; /*width: calc(49.33% - 10px);*/ border-radius: 12px; text-align: left; 
  /* background:var(--th-primary);  */
  margin: 0 1px;   padding: 0px;
   transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease; 
  /* box-shadow: 1px 0px 11px 0px rgba(0, 0, 0, 0.15); */
  }
.events-box figure {text-decoration: none; display: block; padding:40px 20px; display: flex; flex-direction: row; flex-wrap: nowrap; justify-content: space-between; align-items: center;}

.events-thumb {  
  overflow: hidden;
  position: relative;
}
 

.events-animate {
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.events-animate:after {
  content: "";
  width: 100%;
  height: 100%; 
  background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  opacity: 0.99;
  position: absolute;
  left: 0;
  top: 0;  
}

.events-animate:before {
  position: absolute;
  top: 0;
  left: -100%;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg,hsla(0,0%,100%,0) 0,hsla(0,0%,100%,.3));
  transform: skewX(-25deg);
}

.events-content {
  padding: 10px 0;
  position: relative;
} 
 
.events-box p{ 
    font-size: 24px;
    line-height: 24px !important;
    font-weight: 300;
    color: var(--text-white);
    letter-spacing: 0.20px;
    padding: 0 0px; margin: 0;
}

.events-box h6{  position: absolute; bottom: 10px; left: 0; right: 0; z-index:1;
  font-family: var(--font-family-2);
  font-size: 20px;
  line-height: 24px !important;
  font-weight:500;
  color: var(--text-white); text-transform: initial; text-align: center;
  letter-spacing: 0.20px;
  padding:10px; margin: 0;
}

.events-box h6 span{  display: block;
  font-family: var(--font-family-1);
  font-size:15px;
  line-height: 24px !important;
  font-weight: 500; text-transform: initial; 
  
} 
 

.events-box:hover { display: block; /*background:var(--sc-primary);*/
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);   
}

/* .menu-box:hover span{color: var(--sc-primary);} */


#events-list .owl-nav {
  display: flex;
  justify-content: end;
  margin-top: 0px;
  position: absolute;
  right: 20px;
  top: -70px; z-index:1;
}

#events-list .owl-prev, #events-list .owl-next{ 
  display: flex; align-items: center; justify-content: center; text-align: center;
  background: var(--primary);
  padding: 0px;
  margin: 2px 5px;
  position: relative;
  border: 0px solid #ddd;
  width: 40px;
  height: 40px; color: #fff;border-radius: 100%; font-size: 20px;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}

#events-list .owl-prev:hover, #events-list .owl-next:hover{background: var(--sc-primary);}
 

#events-list .owl-dots{ display: none;}

@media only screen and (max-width: 768px) {
  #events-list .owl-nav {
    display: flex;
    justify-content: end;
    margin-top: 0px;
    position: absolute;
    right: 20px; top: initial;
    bottom: -70px !important; z-index:1;
  }
}



/*=======================================================================*/

    @media (min-width:768px) {
      .tab-content .accordion-item {
        border: 0;
        border-radius: 0;
      }

     

    }

    @media (max-width:767px) {
      .tab-content > .tab-pane {
            display: block;
            opacity: 1;
        }

        .tab-content #Application{ display: none !important;} 

        .tab-content #Accessories{ display: none !important;} 
    }


    
 

    .nav-tabs{position: relative; margin-bottom: 10px;}

    .nav-tabs #Application-tab{ display: none;}
    .nav-tabs #Accessories-tab{ display: none;}


    .nav-tabs .nav-link{border: 0px;
      font-family: var(--font-family-1);
      color: var(--sc-primary); font-size: 18px; font-weight:600; padding: 10px 20px;
      }

    .nav .nav-item button.active { position: relative;
      background-color: transparent;
      color: var(--primary) !important;
    }
    .nav .nav-item button.active::after {
      content: "";
      border-bottom: 5px solid var(--primary);
      width: 100%;
      position: absolute;
      left: 0;
      bottom: -2px;
      border-radius: 0;
    }



/*=======================================================================*/


    /* .accordion-item{border-bottom: 1px solid #ddd !important; border: 0px;}
    .accordion-button{font-family: var(--font-family-2);
      color: var(--text-heading); font-size: 30px; font-weight:300; padding: 15px 5px;}
    

      .accordion-button:hover{ color: var(--sc-primary);}

      .accordion-body{padding: 10px;}
      
      .accordion-button:not(.collapsed) {
        color: var(--sc-primary);
        background-color: transparent;
        box-shadow: inset 0 calc(-1* var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
        border-bottom: 2px solid var(--primary);
    } */

    
.accordion-item {
  background-color: #fff;
  border: 0px solid rgba(0, 0, 0, .125);   
  margin-bottom: 10px;
  border-radius: 12px;
  box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.15);   
  transition: All 0.5s ease;
 -webkit-transition: All 0.5s ease;
 -moz-transition: All 0.5s ease;
 -o-transition: All 0.5s ease;
}

.accordion-button{
  font-family: var(--font-family-2); color: var(--text-primary);
  font-size: 26px;
  font-weight:400;
  padding: 1rem 1rem; 
 
}

.accordion-button:hover{ color: var(--sc-primary);}

.accordion-button::after {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  background-size: auto;
 
}

.accordion-button:not(.collapsed) {
  color:var(--primary);
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.125) 0px -1px 0px inset;
  
}

.accordion-body  p {
  font-family: var(--font-family-1);
  font-size: 14px;
  line-height: 24px !important;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: 0.50px;
  padding: 0 0px;
}

.accordion-body  span {
  font-family: var(--font-family-1);
  font-size: 14px;
  line-height: 24px !important;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: 0.50px;
  padding: 0 0px;
}

/*=======================================================================*/
 


.career-listing{ margin: 0px 0; display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-between; }

.career-boxes{  position: relative; width: calc(100% - 10px); text-align: left; background: #fff;
   margin:0px 0;   padding: 0px; 
   /* border-radius: 12px; border: 0px solid #ddd;  box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.15);   
   transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease; */
  }
  

.career-boxes-content { width:100%;
  padding: 0px 0;
  position: relative !important;  
}

.career-boxes-content .table td{ text-align: left; 
  font-size: 15px; 
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.15px;
 }
 .career-boxes-content .table tr td:nth-child(1){font-weight: 700; color: var(--primary) !important;}
   
.career-boxes-content  h4{ font-family: var(--font-family-2); color: var(--text-primary);
    font-size: 30px;
    font-weight:400;
    margin-bottom: 5px;
}

.career-boxes-content  h4 a{  color: var(--text-primary); 
}

.career-boxes-content h5{ font-family: var(--font-family-1); color: var(--text-primary);
 font-size: 15px;
 font-weight:500;
 margin-bottom: 1px;
}

.career-boxes-content h6 { font-family: var(--font-family-1); color: var(--text-primary);
 font-size: 17px;
 font-weight:600; 
}

 
.career-boxes-content p{font-family: var(--font-family-1); color: var(--text-primary); font-size: 16px; font-weight:500;     
  /* overflow: hidden; white-space: nowrap; text-overflow: ellipsis;   */
  display: block;
  display: -webkit-box;
  max-width: 100%;
  height: 53px;
  margin: 0 auto; 
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  }

.career-boxes .know-more-btn { 
    padding: 4px;
    font-family: var(--font-family-1);
    color:var(--primary);
    font-size:14px;
    font-weight:800;
    border: 0;
    margin:0px 0 0 0;    
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
  }
  .career-boxess .know-more-btn i{padding: 0 10px;}
  
  .career-boxes .know-more-btn:hover {
    background: transparent;
    padding-left:4px;
    color:var(--sc-primary);     
  } 
   
  

@media only screen and (max-width: 768px) {
 
}


@media only screen and (max-width: 580px) {
 
}

@media only screen and (max-width: 480px) {  }


/*====================================================================*/
 
 
/*===================================================================*/


.blog-section{   
  position: relative;
  overflow: hidden;
  background:#F3F3F3;  padding: 50px 0 50px 0; 
}

 

.blog-list{ margin: 0px 0; display: flex; flex-direction: row; flex-wrap: wrap; /*justify-content: space-between;*/}

.blog-box{  position: relative; /*width: calc(49.33% - 10px);*/ border-radius: 12px; text-align: left; background: #fff; margin:10px;   padding: 0px;
   transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
  }

 .blog-box-width{width: calc(32.33% - 10px);}

.blog-box figure {text-decoration: none; display: block; padding:40px 20px; display: flex; flex-direction: row; flex-wrap: nowrap; justify-content: space-between; align-items: center;}

.blog-thumb {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.blog-animate {
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.blog-animate:before {
  position: absolute;
  top: 0;
  left: -100%;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg,hsla(0,0%,100%,0) 0,hsla(0,0%,100%,.3));
  transform: skewX(-25deg);
}

.blog-content {
  padding: 10px;
  position: relative;
}

.blog-content .icon {
  /* width: 70px;
  height: 70px; */
  background: var(--th-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size:16px; text-transform: uppercase;
  line-height: 0;
  color: #fff;
  /* border: 3px solid #fff; */
   border-radius: 8px; 
  padding: 15px 25px; 
  position: absolute;
  left: 10px;
  top: -55px;
  z-index: 2;
  transition: all .4s ease-out 0s;
}
.blog-content .icon span{position: relative;}

.blog-content .icon img {
  width: 40px !important;
  height: 40px !important;}

  .blog-content .title { font-family: var(--font-family-1); color: var(--text-heading);
    font-size: 26px;
    font-weight: 600;
    margin: 10px 0;
}
.blog-content .title a{text-decoration: none; color: inherit;}
.blog-content .title a:hover {
  color: var(--sc-primary);
}
 
.blog-box p{font-family: var(--font-family-1); color: var(--text-primary); font-size: 16px; font-weight:400; line-height: 24px; }

.blog-content .know-more-btn { margin-bottom: 10px !important;}

/* .blog-content .know-more-btn {
    background:#D2EAFF;
    padding: 13px 18px;
    font-family: var(--font-family-1);
    color: #666666;
    font-size: 13px;
    font-weight:700;
    border-radius: 8px;
    margin:10px 0 0 0;
    display: inline-block;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
  }
  .blog-content .know-more-btn i{padding: 0 10px;}
  
  .blog-content .know-more-btn:hover {
    background: var(--sc-primary);
    padding-left:30px;
    color: #fff;     
  }  */

  


/* .services-box:nth-child(odd) {
 background: #f5f5f5;
}

.services-box:nth-child(even) {
  background: #f1f7fc;
} */


.blog-box.color1 {
  background: #f5f5f5;
 }
 
 .blog-box.color2 {
   background: #f1f7fc;
 } 

.blog-box:hover { display: block; /*background:var(--sc-primary);*/
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);   
}

.blog-box:hover span{color: var(--sc-primary);}

@media only screen and (max-width: 1024px) {
  .blog-box-width{width: calc(47.33% - 10px);}
}

@media only screen and (max-width: 600px) {
  .blog-box-width{width: calc(100% - 0px);}
}

@media only screen and (max-width: 480px) { 
 }


 

 /*============================blog-listing===================================*/


 .blog-listing{ margin: 10px 0; display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-between;}

 .blog-boxes{  position: relative; width: calc(48.33% - 10px); border-radius: 12px; text-align: left; background: #fff; margin:0 0 40px 0;   padding: 0px;   
    transition: All 0.5s ease;
   -webkit-transition: All 0.5s ease;
   -moz-transition: All 0.5s ease;
   -o-transition: All 0.5s ease;
   }
 .blog-boxes figure {text-decoration: none; background: #fff; margin: 0;  padding:10px; display: flex; flex-direction: row; flex-wrap: nowrap; justify-content: space-between; align-items: start;  box-shadow: 1px 3px 11px 1px rgba(0, 0, 0, 0.15); border-radius: 12px;}
 
 .blog-thumb1 { width: 35%;
  border-radius:10px;
   overflow: hidden;
   position: relative;
 }
 .blog-animate1 {
   display: block;
   overflow: hidden;
   position: relative;
   z-index: 1;
 }
 .blog-animate1--:before {
   position: absolute;
   top: 0;
   left: -100%;
   display: block;
   content: "";
   width: 50%;
   height: 100%;
   background: linear-gradient(90deg,hsla(0,0%,100%,0) 0,hsla(0,0%,100%,.3));
   transform: skewX(-25deg);
 }
 
 .blog-content1 { width: 65%;
   padding: 0 10px;
   position: relative;
 }
 
 .blog-content1 .icon {
   /* width: 70px;
   height: 70px; */
   background: var(--th-primary);
   display: flex;
   align-items: center;
   justify-content: center;
   font-size:14px; text-transform: uppercase;
   line-height: 0;
   color: #fff;
   /* border: 3px solid #fff; */
    border-radius:6px; 
   padding: 15px 15px; 
   position: absolute;
   left: -100px;
   top: 10px;
   z-index: 2;
   transition: all .4s ease-out 0s;
 }
 .blog-content1 .icon span{position: relative;}
 
 .blog-content1 .icon img {
   width: 40px !important;
   height: 40px !important;}
 
   .blog-content1 .title { font-family: var(--font-family-2); color: var(--text-heading);
     font-size: 18px;
     font-weight: 600;
     margin-bottom: 5px;
 }

 .blog-content1 .subtitle { font-family: var(--font-family-2); color: var(--sc-primary);
  font-size: 14px;
  font-weight:500;
  margin-bottom: 10px;
}

 .blog-content1 .title a{text-decoration: none; color: inherit;}
 .blog-content1 .title a:hover {
   color: var(--sc-primary);
 }
  
 .blog-boxes p{font-family: var(--font-family-1); color: var(--text-primary); font-size: 15px; font-weight:500; margin: 0;}
 .blog-content1 .know-more-btn {
     background:#fff;
     padding: 0px 0px;
     font-family: var(--font-family-1);
     color:var(--sc-primary);
     font-size: 13px;
     font-weight:700;
     border-radius: 8px;
     margin:0px 0 0 0;
     display: inline-block;
     text-transform: uppercase;
     text-decoration: none;
     transition: all 0.5s;
     -webkit-transition: all 0.5s;
     -moz-transition: all 0.5s;
     -ms-transition: all 0.5s;
     -o-transition: all 0.5s;
   }
   .blog-content1 .know-more-btn i{padding: 0 10px;}
   
   .blog-content1 .know-more-btn:hover {
     background: #fff;
     padding-left:15px;
     color:var(--sc-primary);     
   } 
 
   
 
 
 /* .services-box:nth-child(odd) {
  background: #f5f5f5;
 }
 
 .services-box:nth-child(even) {
   background: #f1f7fc;
 } */
 
 
 
 
 .blog-boxes:hover { display: block; /*background:var(--sc-primary);*/
   -webkit-transform: translateY(-10px);
   -moz-transform: translateY(-10px);
   -ms-transform: translateY(-10px);
   transform: translateY(-10px);   
 }
 
 .blog-boxes:hover span{color: var(--sc-primary);}
 
 @media only screen and (max-width: 768px) {
  .blog-boxes figure { display: flex; flex-direction: column; flex-wrap: nowrap; justify-content: space-between; }
 
  .blog-thumb1 { width: 100%; 
  }
  .blog-content1 { width: 100%; 
  }

  .blog-content1 .icon {
    
    position: absolute;
    left: 10px;
    top: -40px;
    z-index: 2;
    transition: all .4s ease-out 0s;
  }

 }
 
 @media only screen and (max-width: 520px) {
  .blog-listing{ margin: 10px 0; display: flex; flex-direction: column; flex-wrap: wrap; justify-content: space-between;}

  .blog-boxes{  position: relative; width: calc(100% - 0px);  margin:0 0 40px 0;   }
 }
 
 @media only screen and (max-width: 480px) {  }



/*====================================================================*/
 
.page-top{ background: #fff; border-radius: 20px; margin-top: -120px; z-index: 10; position: relative; padding-top: 50px;}

.page-margin {margin:0 50px}

@media only screen and (max-width:580px) {  
  .page-top{ background: #fff; border-radius: 20px; margin-top: 0px; z-index: 999; position: relative; padding-top: 0px;}
  .page-margin {margin:0 0px;}
  .page-margin img{margin-bottom: 20px;}
}


  .about-img{position: relative; text-align: left;}
  /* .about-img:before {
    background: var(--primary);
    background-repeat: no-repeat;
    background-position: center left;
    background-size: cover;
    position: absolute;
    width: 90.85416666666667%;
    height: 70%;
    content: '';
    left: -25%;
    bottom: -80px;  border-radius:0 0 60px 0px ; 
    
} */
  .about-img .img1{   border-radius: 60px 0 0 0px; position: relative;}

  .img2{   border-radius: 60px 0 0 0px; position: absolute; right: 0; top: 0;}
 
  .about-text{padding: 80px 0 0 35px;}
  .about-text p{font-family: var(--font-family-2); color: var(--text-primary); font-size: 15px; line-height: 24px !important;font-weight:400;}
 
  .vm-bg{ background: #F2F2F2;}
  .vm-list{  text-align: center; padding: 10px; }
  .vm-list h3{font-family: var(--font-family-1); font-size:30px !important; color: var(--primary); font-weight: 700; }
  .vm-list h3 span{display: block; font-size:25px !important;  font-weight: 500; padding-top: 15px;}
  .vm-list p{font-family: var(--font-family-2); font-size: 14px !important; font-weight: 500; color: #5C646F !important;}
  .pd-top{ margin-top: 100px; }

  @media only screen and (max-width:768px) {  
    .pd-top{ margin-top: 0px; }
  }
 

/*===================================================================*/

.timeline-bk{
   background: url(../../images/Journey-bk.jpg) #000000;
  background-position: top center;
  background-repeat: no-repeat;
  background-size:cover;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
   padding: 80px 0; margin-top: 60px; 
}
.timeline-bk::before {
  content: '';
  background: rgba(21, 72, 135, 0.5);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: auto 100%;
    position: absolute;
    width:100%;
    height: 100%;   
    right:0%;
    top: 0;
    z-index: 0;

 }

 .timeline-row{ display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-between; 
  /* margin: 40px 0 0 0;*/ margin:0px 0 0 0;  } 
 .timeline-box{ width: calc(100% - 20px);  margin: 0 15px;  }
 .timeline-content{display: flex; flex-direction: row; flex-wrap: wrap; justify-content: center; text-align: center;   }

 .time-text{background: #F4F4F4; padding: 15px; border-radius: 15px; width: 100%; min-height: 200px;  display: inline; flex-direction: row; flex-wrap: wrap; justify-content: center;  align-items: center; align-content: center; text-align: center; position: relative;   }
 .time-text:after { 
  content: '';
  position: absolute;
  display: block;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-width:  20px 20px 20px  20px;
  border-color:  #F4F4F4 transparent  transparent  transparent  ; 
}

.time-text h2{font-family: var(--font-family-2); font-size: 30px; font-weight: 700; color: var(--text-heading);}
.time-text p{font-family: var(--font-family-1); font-size: 15px; font-weight: 600; color: var(--text-primary);}

.time-dots{ width: 40px; height: 40px; background: var(--sc-primary); border-radius: 50px; display: flex; justify-content: center;align-content: center; align-items: center; flex-wrap: wrap; margin-top: 30px; font-weight: 700; color: #fff;}

 
.timeline-line{background: var(--primary); height: 2px; display: block; position: absolute; left: 0; right: 0; bottom:30%;}


#timeline-list .owl-nav {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  /* position: absolute;
  left: 20px;
  bottom: 30px; */
}

#timeline-list .owl-prev, #timeline-list .owl-next{ 
  display: flex; align-items: center; justify-content: center; text-align: center;
  background: var(--primary);
  padding: 0px;
  margin: 2px 5px;
  position: relative;
  border: 0px solid #ddd;
  width: 40px;
  height: 40px; color: #fff;
  border-radius:8px; 
  font-size: 25px; font-weight: 700;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}

#timeline-list .owl-prev:hover, #timeline-list .owl-next:hover{background: var(--sc-primary); color: #fff;}

.timeline-counter{ text-align: right; /*margin-top: -55px; margin-right:80px;*/ font-size: 26px; font-family: var(--font-family-1); font-weight:400; color: #8E98A8;
  position: absolute;
  right: 30px;
  top: 80px;
}


#timeline-list .owl-dots{ display: none;}

@media only screen and (max-width: 600px) {
  /* .services-counter{  display: none;   } */
    
}


/*=========================new========================================================*/


.about-timeline {
   
  padding: 60px 0 ;
}

.timeline-box h6 {
  font-size: 55px;
  line-height: 1;
  color:var(--primary);
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  /* background-color:#fff; */
  position: relative;
  z-index: 1;
  /* display: inline-block; */
  display: block;
  width: auto;
  padding: 0 10px;
  margin-top: 0;
  transform: translate(0, -50%) !important;
   text-align: center; 
}

.timeline-box h6 span{  background-color: #fff;  padding: 0 20px; border:0px solid #d1d1d1; border-radius: 25px; display:inline-flex; align-items: center; }

.timeline-box h6 span i{ color: var(--sc-primary); font-size: 20px; position: relative; animation: linear infinite;
  animation-name: run;
  animation-duration: 5s;  }
 

@keyframes run {
  0% {
    left: 0;
  }
  50% {
    left: 50%;
  }
  100% {
    left: 0;    
  }
}



.timeline-box p {
  font-size: 18px;
  line-height: 27px;
  color:var(--text-primary);
  font-weight: 600;
  margin-bottom: 26px;
  font-family: var(--font-family-1);
}
.timeline-box p:last-of-type {
  margin-bottom: 1px;
}

.timeline-box p strong{ color:  var(--sc-primary);}

.start-point h4 {
  font-size: 17px;
  line-height: 23px;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  background-color:var(--sc-primary);
  border-radius: 16px;
  display: block;
  width: auto;
  text-align: center;
  padding: 5px 25px;
  position: relative;
  margin-bottom: 45px;
  font-family: "Inter", sans-serif;
}
.black-dot {
  width: 21px;
  height: 21px;
  background-color:var(--sc-primary);
  border-radius: 50%;
  display: block;
  margin: 0 auto 62px;
  z-index: 1;
}
.start-point {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.start-point:before {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 0px;
  /* background-color: #d1d1d1; */
  left: 50%;
  top: 0;
  transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
  -moz-transform: translate(-50%, 0%);
  border-left: 2px solid #c5c5c5;
}
.timeline-row .horizontal-line {
  border-top:2px solid #c5c5c5;
  width: calc(100% - 150px);
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 0;
  transform: translate(-50%, 0%);
}
.timeline-row .verticle-line {
  margin: 0;
  padding: 0;
  width: 2px;
  border-right: 2px solid #c5c5c5;
  height: calc(100% - 150px);
  position: absolute;
  top: 0;
  right: 0;
  margin: auto 0;
  bottom: 0;
}
.timeline-row:nth-child(2n + 2) .verticle-line {
  left: 0;
  right: inherit;
}
.corner {
  position: absolute;
  border-right: 2px solid #c5c5c5;
  width: 76px;
  height: 76px;
  right: 0;
  border-top:2px solid #c5c5c5;
  top: 74.9px;
  border-radius: 0 70px 0 0;
  top: 0;
}
.timeline-row:nth-child(2n + 2) .corner {
  right: inherit;
  left: 0;
  border-left:2px solid #c5c5c5;
  border-right: 0;
  border-radius: 70px 0 0 0;
}
.corner.bottom {
  bottom: -76px;
  top: inherit;
  border-radius: 0;
  border-top: 0;
  border-bottom: 2px solid #c5c5c5;
  border-radius: 0 0 70px 0;
  right: 0;
  z-index: 1;
  bottom: -1px;
}
.timeline-row:nth-child(2n + 2) .corner {
  right: inherit;
  left: 0;
  border-left: 2px solid #c5c5c5;
  border-right: 0;
  border-radius: 70px 0 0 0;
}
.timeline-row:nth-child(2n + 2) .corner.bottom {
  border-radius: 0 0 0 70px;
}
.timeline-row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding-bottom: 0px;
  position: relative; /*padding: 0 66px 130px;margin-right: 111px;*/
}
.timeline-row:nth-child(2n + 2) {
  justify-content: space-around;
  text-align: right;
  padding: 0 2%;
}
.timeline-row:nth-child(2n + 2) {
  flex-direction: row-reverse;
}
/*.timeline-row:nth-child(2n+2) .timeline-content-txt { text-align: center; }*/
.timeline-box {
  /*padding: 45px 50px 130px;*/
  max-width: 550px;
  margin-right: 25px;
  position: relative;
}
.timeline-main {
  margin-top: 75px;
}
.timeline-row:first-child {
  margin: 0 0px 0 auto;
  max-width: 50%;
  justify-content: space-between;
  padding: 0 0 0 120px;
}
.corner.bl {
  bottom: 0;
  left: 0;
  border-left: 2px solid #c5c5c5;
  border-bottom: 2px solid #c5c5c5;
  border-radius: 0 0 0px 100%;
  border-right: none;
  border-top: none;
  height: 76px;
  width: 76px;
}
.start-point .corner.bl {
  left: 50%;
  bottom: 0px;
  transform: translateY(100%);
  top: unset;
}
.timeline-box:before {
  content: "";
  position: absolute;
  left: 0;
  top: 27.5px;
  height: 1px;
  width: 100%;
}
.timeline-box-wrap {
  padding: 45px 0px 0;
  position: relative;
  background: #fff; 
  /*min-height: 318px;*/
  padding: 0;
  margin-bottom: 90px;
}
/*.timeline-row:after{content: ''; position: absolute; left: 50%; top: 74.5px; height: 1px; width: 91%; background-color: #d1d1d1; transform: translateX(-50%);top: 0;} .timeline-row .verticle-line { margin: 0; padding: 0; width: 1px; border-right: 1px solid #d1d1d1; height:calc(100% - 126px); position: absolute; top: calc( 50% + 75px );; right: 0; margin: auto 0; bottom: unset; transform: translateY(-50%);top: 50%; } */
.timeline-row:first-child::after {
  left: -54px;
  width: 97%;
  transform: none;
}
/*.timeline-row:first-child .timeline-box:last-child{margin-right: 5%;} */
.timeline-content {
  padding: 10px 10px 0;
}
.timeline-content-txt {
  padding: 15px; border-radius: 15px; border: 0px solid #DDD; 
  box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.15); position: relative; 
}

.timeline-content-txt::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #fff; box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.15);
  top: -5px;
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
  transform: rotate(45deg);
  z-index: 11;
}
.timeline-box.img-right .timeline-content,
.timeline-box.img-left .timeline-content {
  display: flex;
  align-items: flex-start;
}
.timeline-box.img-right .timeline-content img {
  margin-left: 18px;
}
.timeline-box.img-left .timeline-content img {
  margin-right: 18px;
}
.timeline-box.img-left .timeline-content {
  flex-direction: row-reverse;
}
.timeline-row:first-child .timeline-box:first-child img {
  filter: drop-shadow(0 0 27px rgba(0, 0, 0, 0.16));
  -webkit-filter: drop-shadow(0 0 27px rgba(0, 0, 0, 0.16));
  display: block;
  margin: 0;
}
.timeline-box-wrap .timeline-content img {
  filter: drop-shadow(0 0 27px rgba(0, 0, 0, 0.16));
  -webkit-filter: drop-shadow(0 0 27px rgba(0, 0, 0, 0.16));
  z-index: 2;
  position: relative;
}
.timeline-row:last-child .corner.bottom {
  display: none;
}
.timeline-row:nth-child(2n + 1) .timeline-box:last-child .timeline-box-wrap {
  text-align: center;
}
.start-point.end-point:before {
  display: none;
}
.start-point.end-point {
  position: absolute;
  bottom: 0;
  right: 0%;
  transform: translateX(50%);
}
.timeline-row:nth-child(2n + 2) .start-point.end-point {
  left: 0;
  transform: translateX(-50%);
  right: unset;
}

.timeline-box.img-right .timeline-content-txt {
  text-align: center;
}
.timeline-box.img-left .timeline-content-txt {
  text-align: center;
}
.timeline-box.img-left,
.timeline-box.img-right {
  text-align: center;
}
.timeline-row:first-child .timeline-box::after {
  left: auto;
  right: 0;
  -webkit-transform: translate(100%, -50%) rotate(0deg);
  transform: translate(100%, -50%) rotate(0deg);
}
.timeline-row:first-child .timeline-box:first-child {
  width: 36%;
}
.timeline-row .timeline-box:nth-child(3)::after {
  display: none;
}
.timeline-row:last-child .verticle-line::after {
  display: none;
}
.timeline-row:first-child .timeline-box:nth-child(2)::after {
  display: none;
}

.timeline-content-img .timeline-content {
  position: relative;
}

/*==============Responsive==============*/

@media screen and (max-width: 1800px) {
  .timeline-box {
    max-width: 460px;
  }
  .timeline-box.img-right .timeline-content img,
  .timeline-box.img-left .timeline-content img {
    max-width: 220px;
    max-height: 230px;
  }
  .timeline-box-wrap .timeline-content img {
    max-width: 100%;
  }
}

@media screen and (max-width: 1600px) {
  .timeline-row:first-child .timeline-box:first-child {
    width: 38%;
  }
  .timeline-box {
    max-width: 380px;
  }
  .timeline-box.img-right .timeline-content img,
  .timeline-box.img-left .timeline-content img {
    max-width: 180px;
    max-height: 190px;
  }
  .timeline-box h6 {
    font-size: 50px;
  }
  .about-timeline {
    padding: 120px 0 100px;
  }
   
}

@media screen and (max-width: 1440px) {
  .about-timeline {
    padding: 30px 0 ;
  }
  .start-point h4 {
    font-size: 15px;
    letter-spacing: 0;
  }
  .timeline-box h6 {
    font-size: 40px;
  }
  .timeline-row:first-child .timeline-box:first-child {
    width: 100%;
  }
 
  .timeline-box {
    max-width: 300px;
  }
  .timeline-box.img-right .timeline-content img,
  .timeline-box.img-left .timeline-content img {
    max-width: 140px;
    max-height: 200px;
  }
  .timeline-box-wrap .timeline-content img {
    max-width: 100%;
  }
  .timeline-row:first-child .timeline-box:nth-child(2) {
    width: 150px;
  }
}

@media screen and (max-width: 1199px) {
  .about-timeline {
    padding: 40px 0;
  }
  .timeline-box h6 {
    font-size: 34px;
  }
  .timeline-box {
    max-width: 240px;
  }
  .timeline-row:first-child {
    padding: 0 0 0 60px;
  }
  .timeline-row:first-child .timeline-box:first-child {
    width: 42%;
  }
  .timeline-box.img-right .timeline-content,
  .timeline-box.img-left .timeline-content {
    flex-wrap: wrap;
  }
  .timeline-box.img-right .timeline-content img,
  .timeline-box.img-left .timeline-content img {
    max-width: 180px;
    max-height: 200px;
  }
  .top-timeline-arrow.timeline-content-img .timeline-content::after {
    right: 0;
  }
  .img-right.timeline-content-img .timeline-content::after {
    top: -20px;
    right: -45px;
  }
  .timeline-box.img-right .timeline-content-txt {
    width: 90%;
  }
}

@media screen and (max-width: 1024px) {
  .corner {
    display: none;
  }
  .timeline-row .horizontal-line {
    display: none;
  }
  .timeline-row:first-child {
    max-width: 100%;
    padding: 0;
  }
  .timeline-main {
    margin-top: 0;
  }
  .timeline-row .verticle-line {
    right: 50%;
    transform: translate(50%, 0);
    height: calc(100% - 0px);
  }
  .timeline-row:nth-child(2n + 2) .verticle-line {
    left: auto;
    right: 50%;
  }
  .verticle-line::after {
    display: none;
  }

  .timeline-row .timeline-box {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  .timeline-row:first-child .timeline-box:first-child {
    width: 100%;
    margin: 0;
  }
  .timeline-row:first-child .timeline-box:nth-child(2) {
    width: 100%;
  }
  .timeline-box p br {
    display: none;
  }
  .timeline-box h6 {
    transform: translate(0, -0%);
    padding: 0;
  }
  .timeline-content {
    padding: 0;
  }
  .timeline-box.img-right .timeline-content-txt {
    width: 100%;
  }
  .start-point.end-point {
    right: 50%;
  }
  .start-point h4 {
    margin-bottom: 0;
  }
  .about-timeline {
    padding: 80px 0;
  }
  .timeline-box::after {
    -webkit-transform: translate(-100%, 100%) rotate(180deg);
    transform: translate(-100%, 100%) rotate(180deg);
    right: 50%;
    top: 20px;
    left: 50%;
  }
  .timeline-box-wrap {
    width: 50%;
    text-align: right;
    padding: 0 30px 0 0;
    margin: 40px 0 0 0;
  }
  .timeline-row .timeline-box img {
    margin: 0 0 0 auto;
  }
  .timeline-row:first-child .timeline-box:nth-child(2)::after {
    display: block;
  }
  .timeline-row:first-child .timeline-box:first-child img {
    margin: 0 0 0 auto;
  }
  .timeline-box.img-right .timeline-content img,
  .timeline-box.img-left .timeline-content img {
    margin: 0 0 0 auto;
  }
  .timeline-row .timeline-box:nth-child(2n) .timeline-box-wrap {
    margin: 40px 0 0 auto;
    padding: 0 0 0 30px;
    text-align: left;
  }
  .timeline-row:nth-child(2n + 1) .timeline-box::after {
    left: auto;
    right: 50%;
    -webkit-transform: translate(0%, 100%) rotate(180deg);
    transform: translate(0%, 100%) rotate(180deg);
    top: 20px;
  }
  .timeline-row .timeline-box:nth-child(2n)::after {
    transform: translate(100%, 100%) rotate(0deg);
    -webkit-transform: translate(100%, 100%) rotate(0deg);
    right: 50%;
    left: auto;
  }
  .timeline-row .timeline-box:nth-child(3)::after {
    display: block;
  }
  .timeline-box.img-left .timeline-content-txt {
    text-align: right;
  }
  .timeline-row:last-child {
    padding-bottom: 70px;
  }
}

@media screen and (max-width: 640px) {
  .about-timeline {
    padding: 50px 0;
  }
  .timeline-box h6 {
    font-size: 27px;
  }
 
  .timeline-box-wrap {
    margin: 30px 0 0 0;
  }
  .timeline-row .timeline-box:nth-child(2n) .timeline-box-wrap {
    margin: 30px 0 0 auto;
  }
  .timeline-box::after,
  .timeline-row:nth-child(2n + 1) .timeline-box::after {
    top: 6px;
  }
  .timeline-box-wrap .timeline-content img {
    max-width: 100%;
  }
  .timeline-box.img-right .timeline-content img,
  .timeline-box.img-left .timeline-content img {
    max-width: 100%;
    max-height: unset;
  }
}

@media only screen and (max-width:580px) {

.timeline-box-wrap {
  width: 100%;
  text-align: right;
  padding: 0 0px 0 0;
  margin: 40px 0 0 0; z-index: 1;
}

.timeline-content-txt {
  padding: 25px;
   
}

.timeline-row .timeline-box:nth-child(2n) .timeline-box-wrap {
 
  padding: 0 0 0 0px;
  text-align: left;
}

.timeline-box h6 span i {
   display: none;
}

}
/*====================================================*/



/*==============================================================================*/
#journey {
  padding:0 0 50px 0;
}

#journey h2 {
  font-size: 34px;
  letter-spacing: -0.5px;
  color: #16141a;
  position: relative;
  display: inline-block;
}

#journey h2::before {
  content: "";
  position: absolute;
  right: -3px;
  bottom: 5px;
  z-index: -1;
  width: 123px;
  height: 16px;
  background-color: #ece5ff;
}

#journey .timeline-holder {
  padding: 75px 0 0;
}

#journey .timeline-holder svg {
  margin: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

#journey .timeline-holder .mask-path {
  -webkit-transform: translate(329px, 1403px);
          transform: translate(329px, 1403px);
  stroke: white;
  stroke-dasharray: 10000;
  stroke-dashoffset: 10000;
}

#journey .timeline-holder .path-holder {
  max-width: 700px;
  position: relative;
  margin-left: auto;
}

@media only screen and (max-width: 768px) {
  #journey .timeline-holder .path-holder {
    width: 100%;
    max-width: 100%;
    position: relative;
    margin-left: auto; 
    display: flex !important; flex-direction: column;
  }

  #journey .timeline-holder svg {
    width: 100%; display: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  #journey .timeline-holder .year-box {
    position: relative !important;    
    padding: 20px; 
    border: 1px solid #ddd; border-radius: 18px; margin: 1px 0;
  }

  #journey .timeline-holder .year-box .logo{margin-bottom: 10px;}
  #journey .timeline-holder .year-box .logo::before{content: none; display: none;}
  

  #journey .timeline-holder .year-box.yb-2024{
    top: 0 !important; 
    width: 100% !important;
    left: 0 !important;
     display: flex; flex-direction: column-reverse; justify-content: center;
  }

  #journey .timeline-holder .year-box.yb-2022{
    top: 0 !important; 
    width: 100% !important;
    left: 0 !important;
    display: flex; flex-direction: column; justify-content: center;
  }

  #journey .timeline-holder .year-box.yb-2021{
    top: 0 !important; 
    width: 100% !important;
    left: 0 !important; display: flex; flex-direction: column; justify-content: center;
  }

  #journey .timeline-holder .year-box.yb-2015{
    top: 0 !important; 
    width: 100% !important;
    left: 0 !important; display: flex; flex-direction: column-reverse; justify-content: center;
  }

  #journey .timeline-holder .year-box.yb-2012{
    top: 0 !important; 
    width: 100% !important;
    left: 0 !important; display: flex; flex-direction: column-reverse; justify-content: center;
  }

  #journey .timeline-holder .year-box.yb-2011{
    top: 0 !important; 
    width: 100% !important;
    left: 0 !important; display: flex; flex-direction: column; justify-content: center;
  }

  #journey .timeline-holder .year-box.yb-2010{
    top: 0 !important; 
    width: 100% !important;
    left: 0 !important; display: flex; flex-direction: column-reverse; justify-content: center;
  }

  #journey .timeline-holder .year-box.yb-2009{
    top: 0 !important; 
    width: 100% !important;
    left: 0 !important; display: flex; flex-direction: column; justify-content: center;
  }

  #journey .timeline-holder .year-box.yb-2007{
    top: 0 !important; 
    width: 100% !important;
    left: 0 !important; display: flex; flex-direction: column-reverse; justify-content: center;
  }

  #journey .timeline-holder .year-box.yb-2004{
    top: 0 !important; 
    width: 100% !important;
    left: 0 !important; display: flex; flex-direction: column-reverse; justify-content: center;
  }

  #journey .timeline-holder .year-box.yb-1997{
    top: 0 !important; 
    width: 100% !important;
    left: 0 !important; display: flex; flex-direction: column-reverse; justify-content: center;
  }

  #journey .timeline-holder .year-box.yb-1990{
    top: 0 !important; 
    width: 100% !important;
    left: 0 !important; display: flex; flex-direction: column-reverse; justify-content: center;
  }

  #journey .timeline-holder .year-box.yb-1980{
    top: 0 !important; 
    width: 100% !important;
    left: 0 !important; display: flex; flex-direction: column-reverse; justify-content: center;
  }

  #journey .timeline-holder .year-box.yb-1977{
    top: 0 !important; 
    width: 100% !important;
    left: 0 !important; display: flex; flex-direction: column-reverse; justify-content: center;
  }

 

  #journey .timeline-holder .year-box.yb-2024 .text{
    -webkit-transform: translate(0%, 0%) !important;
    transform: translate(0%, 0%) !important; text-align: center !important;
  }
  #journey .timeline-holder .year-box.yb-2022 .text{
    -webkit-transform: translate(0%, 0%) !important;
    transform: translate(0%, 0%) !important;text-align: center !important;
  }
  #journey .timeline-holder .year-box.yb-2021 .text{
    -webkit-transform: translate(0%, 0%) !important;
    transform: translate(0%, 0%) !important;text-align: center !important;
  }
  #journey .timeline-holder .year-box.yb-2015 .text{
    -webkit-transform: translate(0%, 0%) !important;
    transform: translate(0%, 0%) !important;text-align: center !important;
  }
  #journey .timeline-holder .year-box.yb-2012 .text{
    -webkit-transform: translate(0%, 0%) !important;
    transform: translate(0%, 0%) !important;text-align: center !important;
  }
  #journey .timeline-holder .year-box.yb-2011 .text{
    -webkit-transform: translate(0%, 0%) !important;
    transform: translate(0%, 0%) !important;text-align: center !important;
  }
  #journey .timeline-holder .year-box.yb-2010 .text{
    -webkit-transform: translate(0%, 0%) !important;
    transform: translate(0%, 0%) !important;text-align: center !important;
  }
  #journey .timeline-holder .year-box.yb-2009 .text{
    -webkit-transform: translate(0%, 0%) !important;
    transform: translate(0%, 0%) !important;text-align: center !important;
  }
  #journey .timeline-holder .year-box.yb-2007 .text{
    -webkit-transform: translate(0%, 0%) !important;
    transform: translate(0%, 0%) !important;text-align: center !important;
  }
  #journey .timeline-holder .year-box.yb-2004 .text{
    -webkit-transform: translate(0%, 0%) !important;
    transform: translate(0%, 0%) !important;text-align: center !important;
  }
  #journey .timeline-holder .year-box.yb-1997 .text{
    -webkit-transform: translate(0%, 0%) !important;
    transform: translate(0%, 0%) !important;text-align: center !important;
  }
  #journey .timeline-holder .year-box.yb-1990 .text{
    -webkit-transform: translate(0%, 0%) !important;
    transform: translate(0%, 0%) !important;text-align: center !important;
  }
  #journey .timeline-holder .year-box.yb-1980 .text{
    -webkit-transform: translate(0%, 0%) !important;
    transform: translate(0%, 0%) !important;text-align: center !important;
  }
  #journey .timeline-holder .year-box.yb-1977 .text{
    -webkit-transform: translate(0%, 0%) !important;
    transform: translate(0%, 0%) !important;text-align: center !important;
  }
  
    
}

#journey .timeline-holder .year-box {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: auto;
}

.logo-holder h3 {font-family: var(--font-family-1);
  font-size: 22px; font-weight: 800;
  letter-spacing: -0.18px;
  color:var(--primary);
}

#journey .timeline-holder .year-box .text {
  text-align: left;
  margin-right: 10%;
}

#journey .timeline-holder .year-box .text h3 {font-family: var(--font-family-1);
  font-size: 22px; font-weight: 800;
  letter-spacing: -0.18px;
  color:var(--primary);
}

#journey .timeline-holder .year-box .text h4 { font-family: var(--font-family-2);
  font-size: 20px;
  font-weight:400;
  letter-spacing: -0.26px;
  color:var(--text-primary);
}

#journey .timeline-holder .year-box .logo {
  position: relative;
}

#journey .timeline-holder .year-box .logo .logo-holder {
  font-size: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 100%;
  border: 10px solid #dfdcfe;
  background-color: #ffffff;
}

#journey .timeline-holder .year-box .logo::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 20px 20px 0;
  border-color: transparent #dfdcfe transparent transparent;
}

#journey .timeline-holder .year-box.yb-2024 {
  top: 0%;
  width: 75%;
  left: 0%;
}

#journey .timeline-holder .year-box.yb-2024 img {
  max-width: 80px;
}



#journey .timeline-holder .year-box.yb-2022 {
  top:5%;
  width: 70%;
  left: 81%;
}

#journey .timeline-holder .year-box.yb-2022 .text {
  -webkit-transform: translate(-140%, 30%);
          transform: translate(-140%, 30%);
}

#journey .timeline-holder .year-box.yb-2022 .logo .logo-holder {
 
  font-weight: 600;
  font-stretch: normal;
  letter-spacing: 0.9px;
}

#journey .timeline-holder .year-box.yb-2022 .logo::before {
  top: 55%;
  left: -12%;
  right: auto;
  -webkit-transform: translateY(-50%) rotate(350deg);
          transform: translateY(-50%) rotate(350deg);
}





#journey .timeline-holder .year-box.yb-2021 {
  top: 9.4%;
  width: 75%;
  left:30%;
}

#journey .timeline-holder .year-box.yb-2021 .text {
  -webkit-transform: translate(0%, 120%);
          transform: translate(0%, 120%);
}

#journey .timeline-holder .year-box.yb-2021 .logo .logo-holder {
 
 
  font-weight: 600;
  font-stretch: normal;
  letter-spacing: 0.9px;
}

#journey .timeline-holder .year-box.yb-2021 .logo::before {
  top: 102%;
  right: 26%;
    left: auto;
  -webkit-transform: translateY(-50%) rotate(252deg);
          transform: translateY(-50%) rotate(252deg);
}
  




#journey .timeline-holder .year-box.yb-2015 {
  top: 15.2%;
  width: 75%;
  left: -58%;
}

#journey .timeline-holder .year-box.yb-2015 .text {
  -webkit-transform: translate(140%, 30%);
          transform: translate(140%, 30%);
} 

#journey .timeline-holder .year-box.yb-2015 .logo::before {
  top: 46%;
  right: -12%;
  left: auto;
  -webkit-transform: translateY(-50%) rotate(174deg);
          transform: translateY(-50%) rotate(174deg);
}

/* #journey .timeline-holder .year-box.yb-2012 {
  top: 19%;
  width: 75%;
  left: -28.5%;
}

#journey .timeline-holder .year-box.yb-2012 img {
  max-width: 80px;
}

#journey .timeline-holder .year-box.yb-2012 .text {
  -webkit-transform: translate(95%, -220%);
          transform: translate(95%, -220%);
}

#journey .timeline-holder .year-box.yb-2012 .logo::before {
  top: -4%;
  right: 43%;
  left: auto;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
} */

#journey .timeline-holder .year-box.yb-2012 {
  top: 19.4%;
  width: 75%;
  left:30%;
}

#journey .timeline-holder .year-box.yb-2012 .text {
  -webkit-transform: translate(-100%, 200%);
          transform: translate(-100%, 200%);
}

#journey .timeline-holder .year-box.yb-2012 .logo .logo-holder {
 
 
  font-weight: 600;
  font-stretch: normal;
  letter-spacing: 0.9px;
}

#journey .timeline-holder .year-box.yb-2012 .logo::before {
  top: 86%;
  left: 1%;
  right: auto;
  -webkit-transform: translateY(-50%) rotate(319deg);
          transform: translateY(-50%) rotate(319deg);
}



#journey .timeline-holder .year-box.yb-2011 {
  top: 25%;
  width: 70%;
  left: 81%;
}

#journey .timeline-holder .year-box.yb-2011 .text {
  -webkit-transform: translate(-140%, 30%);
          transform: translate(-140%, 30%);
}

#journey .timeline-holder .year-box.yb-2011 .logo .logo-holder {
 
  font-weight: 600;
  font-stretch: normal;
  letter-spacing: 0.9px;
}

#journey .timeline-holder .year-box.yb-2011 .logo::before {
  top: 55%;
  left: -12%;
  right: auto;
  -webkit-transform: translateY(-50%) rotate(350deg);
          transform: translateY(-50%) rotate(350deg);
}

#journey .timeline-holder .year-box.yb-2010 {
  top: 31%;
  width: 75%;
  left:-54%;
}

#journey .timeline-holder .year-box.yb-2010 img {
  max-width: 80px;
}

#journey .timeline-holder .year-box.yb-2010 .text {
  -webkit-transform: translate(125%, 215%);
          transform: translate(125%, 215%);
}

#journey .timeline-holder .year-box.yb-2010 .logo::before {
  top: 86%;
  right: 1%;
  left: auto;
  -webkit-transform: translateY(-50%) rotate(223deg);
          transform: translateY(-50%) rotate(223deg);
}

#journey .timeline-holder .year-box.yb-2009 {
  top: 38.7%;
  width: 75%;
  left: 29%;
}

#journey .timeline-holder .year-box.yb-2009 .text {
  -webkit-transform: translate(-105%, 120%);
          transform: translate(-105%, 120%);
}

#journey .timeline-holder .year-box.yb-2009 .logo .logo-holder {
 
 
  font-weight: 600;
  font-stretch: normal;
  letter-spacing: 0.9px;
}

#journey .timeline-holder .year-box.yb-2009 .logo::before {
  top: 86%;
  left: 1%;
  right: auto;
  -webkit-transform: translateY(-50%) rotate(319deg);
          transform: translateY(-50%) rotate(319deg);
}

#journey .timeline-holder .year-box.yb-2007 {
  top: 48%;
  width: 75%;
  left:0%;
}

#journey .timeline-holder .year-box.yb-2007 img {
  max-width: 80px;
}

#journey .timeline-holder .year-box.yb-2007 .text {
  -webkit-transform: translate(40%, -130%);
          transform: translate(40%, -130%);
}

#journey .timeline-holder .year-box.yb-2007 .logo .logo-holder {
  border: 10px solid #e6eaeb;
}

#journey .timeline-holder .year-box.yb-2007 .logo::before {
  border-color: transparent #e6eaeb transparent transparent;
  top: -4%;
  right: 43%;
  left: auto;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

#journey .timeline-holder .year-box.yb-2004 {
  top: 57.7%;
  width: 75%;
  left: -35%;
}

#journey .timeline-holder .year-box.yb-2004 img {
  max-width: 100px;
}

#journey .timeline-holder .year-box.yb-2004 .text {
  -webkit-transform: translate(100%, -165%);
          transform: translate(100%, -165%);
}

#journey .timeline-holder .year-box.yb-2004 .logo::before {
  top: -4%;
  right: 43%;
  left: auto;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

#journey .timeline-holder .year-box.yb-1997 {
  top: 67.5%;
  width: 70%;
  left: 0%;
}

#journey .timeline-holder .year-box.yb-1997 img {
  max-width: 80px;
}

#journey .timeline-holder .year-box.yb-1997 .text {
  -webkit-transform: translate(60%, -160%);
          transform: translate(60%, -160%);
}

#journey .timeline-holder .year-box.yb-1997 .logo .logo-holder {
  border: 10px solid #e6eaeb;
}

#journey .timeline-holder .year-box.yb-1997 .logo::before {
  border-color: transparent #e6eaeb transparent transparent;
  top: -4%;
  right: 43%;
  left: auto;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

#journey .timeline-holder .year-box.yb-1990 {
  top: 77%;
  width: 75%;
  left: -35%;
}

#journey .timeline-holder .year-box.yb-1990 img {
  max-width: 80px;
}

#journey .timeline-holder .year-box.yb-1990 .text {
  -webkit-transform: translate(100%, -175%);
          transform: translate(100%, -175%);
}

#journey .timeline-holder .year-box.yb-1990 .logo .logo-holder {
  border: 10px solid #e6eaeb;
}

#journey .timeline-holder .year-box.yb-1990 .logo::before {
  border-color: transparent #e6eaeb transparent transparent;
  top: -4%;
  right: 43%;
  left: auto;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

#journey .timeline-holder .year-box.yb-1980 {
  top: 87%;
  width: 70%;
  left: 0%;
}

#journey .timeline-holder .year-box.yb-1980 img {
  max-width: 80px;
}

#journey .timeline-holder .year-box.yb-1980 .text {
  -webkit-transform: translate(50%, -170%);
          transform: translate(50%, -170%);
}

#journey .timeline-holder .year-box.yb-1980 .logo .logo-holder {
  border: 10px solid #e6eaeb;
}

#journey .timeline-holder .year-box.yb-1980 .logo::before {
  border-color: transparent #e6eaeb transparent transparent;
  top: -4%;
  right: 43%;
  left: auto;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

#journey .timeline-holder .year-box.yb-1977 {
  top: 97%;
  width: 70%;
  left: -30%;
}

#journey .timeline-holder .year-box.yb-1977 img {
  max-width: 80px;
}

#journey .timeline-holder .year-box.yb-1977 .text {
  -webkit-transform: translate(140%, -5%);
          transform: translate(140%, -5%);
}

#journey .timeline-holder .year-box.yb-1977 .logo .logo-holder {
  border: 10px solid #e6eaeb;
}

#journey .timeline-holder .year-box.yb-1977 .logo::before {
  border-color: transparent #e6eaeb transparent transparent;
  top: 52%;
  right: -12%;
  left: auto;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

#journey .timeline-holder .yearbook {
  position: relative;
  display: inline-block;
}

#journey .timeline-holder .yearbook ul {
  position: relative;
  font-size: 15px;
  font-weight: normal;
  line-height: 2.83;
  letter-spacing: -0.18px;
  color: #16141a;
  padding: 0;
  margin: 0;
}

#journey .timeline-holder .yearbook ul li {
  list-style: none;
}

#journey .timeline-holder .yearbook ul li a {
  color: var(--text-heading); font-family: var(--font-family-1); font-weight: 600; font-size: 16px;
  text-decoration: none;
}

#journey .timeline-holder .yearbook ul li.active a {
  color:var(--primary);
}

#journey .timeline-holder .yearbook ul::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 100%;
  opacity: 0.42;
  right: -50%;
  border-radius: 4px;
  background-color: #dfdcfe;
}

#journey .timeline-holder .yearbook .indicator {
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  position: absolute;
  top: 7px;
  right: -65%;
  width: 28px;
  height: 28px;
  border: 3px solid #0071BC;
  background-color: #ffffff;
  border-radius: 100%;
  display: none;
}

#journey .timeline-holder .yearbook .indicator::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 10px 5px 0;
  border-color: transparent #0071BC transparent transparent;
}

@media only screen and (min-width: 992px) {
#journey {
    padding: 0px 0  100px 0;
  }
  #journey h2 {
    font-size: 50px;
  }
  #journey h2::before {
    right: -23px;
    bottom: -6px;
    width: 195px;
    height: 36px;
  }
  #journey .timeline-holder {
    padding: 70px 0 0;
  }
  #journey .timeline-holder .wrap-yearbook {
    position: relative;
  }
  #journey .timeline-holder .year-box.yb-2015 .logo .logo-holder {
    font-size: 56px;
  }
  #journey .timeline-holder .year-box.yb-2015 .logo .logo-holder small {
    font-size: 34px;
  }
  #journey .timeline-holder .year-box.yb-2011 .logo .logo-holder {
    font-size: 56px;
  }
  #journey .timeline-holder .year-box.yb-2011 .logo .logo-holder small {
    font-size: 34px;
  }
  #journey .timeline-holder .year-box.yb-2009 .logo .logo-holder {
    font-size: 56px;
  }
  #journey .timeline-holder .yearbook {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
  }
  #journey .timeline-holder .yearbook ul {
    font-size: 18px;
  }
  #journey .timeline-holder .yearbook ul::before {
    right: -80%;
  }
  #journey .timeline-holder .yearbook .indicator {
    right: -95%;
    display: block;
  }
  }

  @media only screen and (max-width: 768px) {
    #journey .timeline-holder .wrap-yearbook {
      display: none;
    }
  }

/***===========================================================================*/
 
.milestones-list{ margin: 0px;}
.milestones-list ul{list-style: none; padding: 0; display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-between; margin: 0; }
.milestones-list ul li{ width: calc(32.33% - 10px); padding: 10px; margin-right: 20px; margin-bottom: 20px; border-left: 0px solid var(--primary); border-radius: 20px; background: #fff;  box-shadow: 1px 3px 11px 1px rgba(0, 0, 0, 0.15);  display: flex; flex-direction: row; flex-wrap: nowrap;}

.milestones-list ul li img{ margin-right: 10px; width: 65px;}

.milestones-list ul li h3{  font-family: var(--font-family-2); font-size: 20px; font-weight: 700; color: var(--text-heading); margin: 0;  }
.milestones-list ul li p{  font-family: var(--font-family-2); font-size: 15px; font-weight: 400; color: var(--text-primary); margin: 0;  }


@media only screen and (max-width: 1024px) {
  .milestones-list ul li{ width: calc(47.33% - 10px); padding: 10px; margin-right: 20px; margin-bottom: 20px; border-left: 0px solid var(--primary); border-radius: 20px; }
}

@media only screen and (max-width: 580px) {
  .milestones-list ul li{ width: 100%; padding: 10px; margin-right: 0px; margin-bottom: 20px;   }
}

  



/*=========================-owl-carousel======================================*/
 
 
/*.owl-carousel .owl-item{min-height: 335px;}*/

.item-list {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-direction: row;
  flex-wrap: wrap;
  /* margin: 2px 0 30px 0; */
}

.item-list .item {
  margin: 8px 0px;
}

.item-list .item-box {
  border: 0px solid #9c2435 !important;
  border-radius: 0px;
  background: transparent;
  padding: 0px;
  /*min-height: 450px;*/
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}

.item-list .item-box a {
  text-decoration: none;
}

.item-list .item-box p {
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
  text-transform: inherit;
  margin: 2px 0;
  overflow: hidden;
  /* max-height: 40px; */
}

.item-list .item-box h4 {
  color: #d2d2d2;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: inherit;
  margin: 4px 0 0 0;
}

.item-list .item-box h3 {
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 600;
  text-transform: inherit;
  margin: 4px 0 0 0;
}

.item-list .item-box aside {
  padding: 10px 5px;
  text-align: center;
}

.item-list .item-box:hover {
  background: transparent;
  /* color: #fff; */
  -webkit-transform: translateY(-6px);
  -moz-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);
}

.pro-box-img {
  /*max-height:300px;*/
  color: #fff;
  position: relative;
  overflow: hidden;
  border: 0px solid #e1e1e1;
  border-radius: 6px;
}

.pro-box-img figure {
  padding: 0px;
  margin: 0px;
  text-align: center;
}

.pro-box-img figure img {
  width: 100%;
  height: 100%;
  position: relative;
  transition: all 2s ease;
  -webkit-transition: all 2s ease;
  -moz-transition: all 2s ease;
  -o-transition: all 2s ease;
}

.pro-box-img-1 {
  /*max-height:300px;*/
  color: #fff;
  position: relative;
  overflow: hidden;
  border: 0px solid #9c2435;
}

.pro-box-img-1 figure {
  padding: 10px;
  margin: 0px;
  text-align: center;
}

.pro-box-img-1 figure img {
  width: 50%;
  position: relative;
  transition: all 2s ease;
  -webkit-transition: all 2s ease;
  -moz-transition: all 2s ease;
  -o-transition: all 2s ease;
}

/* .pro-box-img:hover figure img {
    transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -o-transform: scale(1.5);
    opacity: 1;
} */

.btn-pr {
  background: var(--sc-primary);
  padding: 6px 12px;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  margin-top: 5px;
}

.btn-pr:hover {
  background: var(--primary);
  color: #fff;
}

@media only screen and (max-width: 1160px) {
  .item-list .item-box aside {
    padding: 10px 10px;
  }
}

@media only screen and (max-width: 800px) {
  .item-list {
    margin: 0 0px;
  }
}

@media only screen and (max-width: 575px) {
  .item-list .item-box {
    margin-top: 10px;
    min-height: auto;
  }

  .item-list .item {
    margin: 2px;
  }
}

@media only screen and (max-width: 480px) {
  .item-list div {
    margin: 0 0px;
  }

  /*.pro-box-img{ height: 400px;}*/
  .pro-box-img-1 figure img {
    width: 100%;
  }
}

@media only screen and (max-width: 375px) {
  /*.pro-box-img{ height: 300px;}*/
}

/*--==============================================================--*/

.wel-numbers{ text-align: center; font-family: var(--font-family-2); margin: 30px 0;}
.wel-numbers ul{padding: 0; list-style: none;  display: flex; flex-direction: row; justify-content: center; align-items: center; }
.wel-numbers ul li{ width:250px; height:250px; background: #fff; margin: 0 10px; border-radius: 100%; align-content: center; text-align: center; box-shadow: 1px 1px 7px 4px rgba(0, 0, 0, 0.1); padding: 10px; position: relative;
  /* border-top: 10px solid #fff;  
  border-bottom: 10px solid #000;
  border-left: 10px solid #fff;
  border-right: 10px solid #000 */  
  
}
 
 
.circle1::before {
  content: "";
    display: block;
    width: 270px !important;
    height: 136px;
    border-top-left-radius: 200px;
    border-top-right-radius: 200px;
    background: #154886;
    position: absolute;
    top: -11px;
    bottom: 0;
    left: -10px;
    z-index: -1;
}

.circle2::before {
   content: "";
    display: block;
    width: 270px !important;
    height: 136px;
    border-bottom-left-radius: 200px;
    border-bottom-right-radius: 200px;
    background: #e51d23;
    position: absolute;     
    bottom:-11px;
    left: -10px;
    z-index: -1;
}
@media only screen and (max-width:560px) {
  .circle1::before {
    content:none;    
  }
  .circle1 {
    border: 10px solid #154886;
    background: #154886;
  }
 }



.wel-numbers h2{font-size: 60px; font-weight: 700; color: #313c4c; margin: 0px;}
.wel-numbers h6{font-size: 35px; font-weight: 300; color: #313c4c; text-transform: uppercase; margin: -5px 0 0 0px;}

.wel-numbers h3{font-size:90px; font-weight:800; color: #313c4c; margin: 0px; }
.wel-numbers h5{font-size: 30px; font-weight: 600; color: #313c4c; text-transform: uppercase; margin: -5px 0 0 0px;}

.gradient-text {
  /* background-image: linear-gradient(to right, #ec1e24, #154886); */
  background: rgb(21,73,136);
  background: linear-gradient(170deg, rgba(224,29,34,1) 40%, rgba(21,73,136,1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


@media only screen and (max-width:768px) {
  .wel-numbers ul{padding: 0; list-style: none;  display: flex; flex-direction: row; flex-wrap: wrap; justify-content: center; align-items: center; }
  .wel-numbers ul li{ width:250px; height:250px; background: #fff; margin: 0 10px; border-radius: 100%; align-content: center; text-align: center; box-shadow: 1px 1px 7px 4px rgba(0, 0, 0, 0.1); padding: 10px; 
  }
}

@media only screen and (max-width:560px) { 
  .wel-numbers ul li{ width:250px; height:250px; background: #fff; margin: 15px 10px; border-radius: 100%; align-content: center; text-align: center; box-shadow: 1px 1px 7px 4px rgba(0, 0, 0, 0.1); padding: 10px; 
  }
}


/*=================================================================*/

.content-area {
  position: relative; 
  padding: 0 0;
  margin: 50px 50px 0 0;
}

@media only screen and (max-width:768px) {
  .content-area {
    position: relative;
    padding: 0 0;  
    margin: 50px 0px 0 0;
  }
}

.content-text {
  font-family: var(--font-family-1);
  text-align: left;
}

.content-text p { 
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.15px;
  padding: 0 0px;
}

.content-text p span {
  color: var(--primary) !important;
}

.content-text h3 {
  color: var(--text-heading);
  font-size: 20px;
  font-weight: 600;
  margin: 0px 0px 10px 0;
  padding: 0px 0;
}

.content-text h4 {
  color: var(--text-heading);
 font-size: 20px;
  font-weight: 700;
  margin: 0px 0px 10px 0;
  padding: 0;
}

.content-text h5 {
  font-family: var(--font-family-2);
  color: var(--primary);
 font-size: 30px;
  font-weight: 400;
  margin: 0px 0px 15px 0;
  padding: 0;
}

 


.content-text h6 {
  color: var(--text-heading);
  font-size: 25px;
  font-weight: 400;
  margin: 0px 0px 10px 0;
  padding: 0;
  letter-spacing: 0.20px;
}

@media only screen and (max-width:767px) {
  .content-text h6 { 
    font-size: 20px; 
  }
  
}


.content-text ul {
  padding: 10px 0 0 0px;
}

.content-text li {
  /* list-style: url(../../images/list1.png); */ 
  list-style: none; 
  font-size: 16px;
  line-height: 24px !important;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.15px;
  padding: 4px 1px; 
  display: flex;
}

.content-text li:before {
  content: "\F26E";
  font-family: "bootstrap-icons"; font-weight: 800;
  float: left;
  /* margin-left: -1.5em; */
  color:var(--primary); 
  padding-right:5px;
}

.ul-flex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.ul-flex li {
  width: 49%;
  padding-right: 10px;
}

@media only screen and (max-width: 600px) {
  .ul-flex li {
    width: 100%;
    padding-right: 0px;
  }
}

.content-text .readmore {
  font-family: var(--font-family-1);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: #fff;
  background-color: var(--primary);
  padding: 0px;
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  border-radius: 8px;
}

.content-text .readmore span {
  padding: 0 0px 0 10px;
}

.content-text .readmore i { 
  padding: 12px;
}

.content-text .readmore:hover {
  background-color: var(--sc-primary);
  color: #fff;
}


 
.year-exp{background: rgba(0, 0, 0, 0.5); border-radius: 25px; text-align: center;  position: absolute; bottom: 12px; right: 22px; height: 270px; width: 210px; display: flex; align-items: center;}
.year-exp h3{ font-family:var(--font-family-1); font-size: 24px; color: #fff; font-weight: 400; }
.year-exp h3 span{display: block; font-size: 80px; font-weight: 800;}



/*=================================================*/
 
@media only screen and (max-width: 768px) { 
  .row-display {
    display: flex;
    flex-direction: column-reverse;
    padding: 0 0px;
  }
}


.pro-d-section{ padding: 30px 0 20px 0;}

.pro-d-section img{ margin-bottom: 15px;} 


.mt-6{margin-top: 70px;}

@media only screen and (max-width:580px) {
  .mt-6{margin-top: 10px;}
}

.border-img{border: 1px solid #ebebeb; border-radius: 8px;}

.services-dropdown{ position: absolute; top: -45px;  }
.services-dropdown button{width: 300px; display: flex; justify-content: space-between;align-items: center; border-radius: 8px; font-family: var(--font-family-1); font-size: 14px; font-weight:700; color: var(--primary);}

.services-dropdown .btn-group{border: 1px solid var(--primary);}

.services-dropdown .btn:focus, .btn-group>.btn:hover{border: 1px solid #fff;}
.services-dropdown a{font-family: var(--font-family-1); font-size:15px; font-weight:600; color: var(--primary);}
/* .services-dropdown .dropdown-menu{  width: 100%; } */

@media only screen and (max-width:580px) {
  .services-dropdown{ position: relative; top: -32px;  }
   
}

@media only screen and (max-width:310px) {
  
  .services-dropdown button{width: 100%;  }
  .services-dropdown .dropdown-menu{width: auto; }
}
 
 
 /*=======================================*/
 
  
.know-more-btn {
  /* background: var(--gradient-bk); */
  background:transparent;
  padding: 15px 14px;
  font-family: var(--font-family-1);
  color: var(--text-heading) ;
  font-size: 14px;
  font-weight:800;
  border: 1px solid #ddd;
  border-radius: 10px;
  margin: 20px 0 0 0;
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.know-more-btn i{padding: 0 10px;}

.know-more-btn:hover {
  background: var(--sc-primary);
  padding-left:30px;
  color: #fff;
   
}



  
.download-btn {
  /* background: var(--gradient-bk); */
  background:var(--primary);
  padding: 15px 25px;
  font-family: var(--font-family-1);
  color: var(--text-white) ;
  font-size: 14px;
  font-weight:800;
  border: 1px solid #ddd;
  border-radius: 10px;
  margin: 20px 0 0 0;
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.download-btn i{padding: 0 10px;}

.download-btn:hover {
  background: var(--sc-primary);
  padding-left:30px;
  color: #fff;
   
}




.whatsapp-icon{position:fixed;	width:50px;height:50px;	bottom:120px;right:30px;	background-color:#25d366;
	color:#FFF;	border-radius:50px;	text-align:center;  font-size:32px;	box-shadow: 1px 1px 7px #000;
  z-index:100; text-decoration: none;transition:All 0.5s ease;-webkit-transition:All 0.5s ease;-moz-transition:All 0.5s ease;-o-transition:All 0.5s ease;}

.whatsapp-icon:hover{ color:#000;   }

.whatsapp-icon-float{	margin-top:9px;}
.w-mobile{display: none;} 

@media only screen and (max-width : 425px){
	.whatsapp-icon{position:fixed;	 	bottom:120px;right:30px;	 }
	.w-mobile{display: inherit;}
	.w-web{display: none;}
}

/* .Enquire-icon{position:fixed;	width:50px;height:50px;	bottom:120px;right:30px;	background-color:var(--sc-primary);
	color:var(--text-white);	border-radius:50px;  	text-align:center;  font-size:22px;	box-shadow: 1px 1px 7px #000;
  z-index:100; text-decoration: none;transition:All 0.5s ease;-webkit-transition:All 0.5s ease;-moz-transition:All 0.5s ease;-o-transition:All 0.5s ease; display: flex; align-items: center; justify-content: center;} */

  .Enquire-icon{position:fixed;	bottom:120px;right:30px;	
  	text-align:center; 
    z-index:100; text-decoration: none;transition:All 0.5s ease;-webkit-transition:All 0.5s ease;-moz-transition:All 0.5s ease;-o-transition:All 0.5s ease; display: flex; flex-direction: column; align-items: center; justify-content: center;}
 
  .Enquire-icon i {border-radius:50px;  width:50px;height:50px;background-color:var(--sc-primary);	box-shadow: 1px 1px 7px #000;  font-size:22px;	 color: #fff;display: flex;   align-items: center; justify-content: center;   transition: All 0.5s ease;    -webkit-transition: All 0.5s ease;
    -moz-transition: All 0.5s ease;
    -o-transition: All 0.5s ease;}

  .Enquire-icon span{display: block; color: #000; font-size: 13px; font-weight: 600;    transition: All 0.5s ease;    -webkit-transition: All 0.5s ease;
    -moz-transition: All 0.5s ease;
    -o-transition: All 0.5s ease;}

  .Enquire-icon:hover i,.Enquire-icon:hover span{  -webkit-transform: translateY(-6px);
    -moz-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    transform: translateY(-6px);}

    .Enquire-icon:hover i{background: var(--primary);}

 

/*--==================================================================--*/

.contact-row { 
  margin: 10px 0;
  padding: 0px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact-row .contact-col-1,
.contact-col-2,
.contact-col-3,
.contact-col-4 {
  width: calc(100% - 1px);
  padding: 7px 0px;
  border: 0px solid #ddd;
  border-radius: 12px;
  text-align: left;
}

.contact { position: relative;
  padding: 0px;
  font-family: var(--font-family-1);
  background: #fff; border-radius: 12px;
  margin: 0px 0 0 0px;
  z-index: 9 !important;
}

.contact h6 i {
  font-size: 20px;
  color: var(--sc-primary);
  padding: 0 5px;
  
}

.contact h6 {
  text-align: left;
  font-family: var(--font-family-1);
  color:var(--text-heading);
  font-size: 15px;
  font-weight: 700;
  margin: 0px 0px 0px 0;
  padding: 0px 0;
}

.contact h1 {
  font-family: var(--font-family-1);
  color:var(--text-heading);
  font-size: 24px;
  font-weight:700;
  margin:30px 0px 0px 0;
  padding: 0 0 0px 0;
}

.contact h3 {
  font-family: var(--font-family-1);
  color:var(--primary);
  font-size: 20px;
  font-weight:700;
  margin:10px 0px 0px 0;
  padding: 0 0 0px 0;
}

.contact p {
  font-family: var(--font-family-1);
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 500;
  margin: 0 0px 5px 0;
  padding: 0px 30px;
  line-height: 24px;
}

.contact p strong {
  color: var(--text-heading);
  font-weight: 700;
  font-size: 16px;
}

.contact p a {
  color: var(--text-primary);
}

.contact .btn.btn-social {
  margin-right: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-heading);
  border: 1px solid #555;
  border-radius: 35px;
  transition: 0.3s;
}

.contact .btn.btn-social:hover {
  color: #fff;
  border: 0px;
}

@media only screen and (max-width: 1024px) {
}

@media only screen and (max-width: 480px) {
}

.location-map {
  position: relative;
  width: 100%;
  margin: 0px 0 20px 0;
}

@media only screen and (max-width: 768px) {

  .contact {  
    margin: 0px 0 30px 0px;    
  }

  .contact  p br{  
    display: none;
  }


  .location-map {
    position: relative;
    width: 100%;
    margin: 20px 0;
  }
}

/*==================================================================*/

.home-form{background: var(--sc-primary); padding:30px; margin-right: 30px;}

.home-form h2{font-family: var(--font-family-2);
  font-size: 30px;
  color: var(--text-white);
  font-weight: 700;
  text-transform: inherit;
  text-align: left;}


  .home-form .form-control {
    display: block;
    width: 100%;
    height: 40px;
    padding: 6px 12px ;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: normal;
    letter-spacing: 0.2px;
    line-height: 1.42857143;
    color: #fff ;
    border: 0;
    border-bottom: 1px solid #afafaf;
    border-radius: 0px; background: none;
  }

  .home-form .form-group label {
    font-size: 15px;
    color: var(--text-white);
    font-weight: 500;
    margin-bottom: 0px;
  }
  .home-form  .form-floating>label{
    font-size: 15px;
    color: var(--text-white);
    font-weight: 500;
    margin-bottom: 0px; opacity: 1;
  }


  @media only screen and (max-width: 768px) {
    .home-form{background: var(--sc-primary); padding:15px; margin-right: 0px;}
  }


  /*---------------------------------*/


.form-control {
  display: block;
  width: 100%;
  height: 40px;
  padding: 6px 12px ;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: normal;
  letter-spacing: 0.2px;
  line-height: 1.42857143;
  color: #515151;
  /* border: 0; */
  border-bottom: 1px solid #ddd;
  border-radius: 0px;
}

.form-control1 {
  width: 100%;
  height: 32px !important;
}

.form-group {
  margin-bottom: 10px;
}

.form-group p {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 500;
  margin: 10px 0;
}

.form-group h6 {
  font-size: 13px;
  color: var(--text-primary);
  font-weight: 500;
  margin: 0 0 10px 0;
}

.form-floating > label {
  font-size: 15px; opacity: 0.4;
}

.form-group label {
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 0px;
}

.form-group label small {
  font-size: 15px;
  color: #f01818;
}

.form-label {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 0px;
}

.form-check-label {
  font-weight: 600 !important;
  font-size: 13px !important;
  color: var(--text-primary);
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  white-space: nowrap;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
}

.fp-link {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: var(--text-primary);
  font-weight: 500;
  padding: 10px 0;
}


.submit-link {
  background: var(--sc-primary);
  padding: 13px 18px;
  font-family: var(--font-family-2);
  color: #fff;
  font-size: 16px;
  font-weight:600;
  border-radius: 30px;
  margin: 0px 0 0 0;
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.submit-link i{padding: 0 10px;}

.submit-link:hover {
  background: var(--sc-primary);
  padding-left:30px;
  color: #000;
   
}
 

.btn-danger {
  color: #fff;
  background-color: var(--sc-primary);
  border-color: var(--sc-primary);
}

.btn-danger:hover {
  color: #fff;
  background-color: var(--primary);
  border-color: var(--primary);
}

/*---------------------------------------------------*/

.table {
font-family: var(--font-family-1);
}

.table thead {
  background: #fff;
}

.table tr th {
  background: #F2F2F2;
  font-family: var(--font-family-1);
  font-size: 14px;
  font-weight: 800;
  color: var(--text-heading);
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
}

.table > :not(:first-child) {
  border-top: 0px solid  #ddd;
}

.table td { 
  font-size: 15px;
  color: var(--text-primary) !important;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
}

.table td,
.table th {
  padding: 0.5rem;
}

.table td strong {
  font-weight: 700;
}

.anchor {
  display: block;
  height: 150px;
  margin-top: -150px;
  visibility: hidden !important;
}

.table .form-control {
  display: block;
  width: 100%;
  height: 28px;
  padding: 6px 6px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.42857143;
  color: var(--text-primary);
  border: 1px solid #bbb;
  border-radius: 0px;
}

.table .btn-bid-2 {
  margin-top: 1px;
  width: 100%;
  background: #2d2855;
  padding: 2px 5px;
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 0px;
  display: inline-block;
  text-decoration: none !important;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.table .btn-bid-2:hover {
  background: #ad2330;
  color: #fff;
}

 

.sm-table th {   font-family: var(--font-family-1) !important;
  text-align: left !important;
  font-size: 14px !important;
 
}

.sm-table td {   font-family: var(--font-family-1) !important;
  text-align: left !important;
  font-size: 15px;
    line-height: 24px !important;
    font-weight: 400;
    color: var(--text-primary);
}


/*--=====================================-footer---================================================--*/

.footer-logo {
  margin: 20px 0;
}

.footer-logo img {
  border: 1px solid rgb(240, 240, 240);
  padding: 10px;
  border-radius: 4px;
}

.footer {
  background:#154988; 
  padding: 10px 0px 10px 0px;
  position: relative; 
  border-top: 1px solid #eeeeee;

}

.footer-background-overlay {
  background-image: url(../../images/bg-img1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  /* opacity: 8;  */
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;  
  /* z-index:-1; */
  -webkit-animation-name: move;
    animation-name: move;
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
    -webkit-animation: move infinite 4s;
    animation: move infinite 4s;
}

.footer-col {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.footer-col .ft-col-1 {
  width: 18%;
  padding: 0 0px 0 0;
}

.footer-col .ft-col-2 {
  width: 17%;
  padding: 0 0px 0 0;
}

.footer-col .ft-col-3 {
  width: 32%;
  padding: 0 0px 0 0;
}

.footer-col .ft-col-4 {
  width: 26%;
  padding: 0 0px 0 0;
}

/* .footer-col .ft-col-4 img {
     width: 100%;padding-right: 5px;
} */

.footer h4 {
  font-family: var(--font-family-1);
  font-weight:800;
  color: var(--text-white);
  font-size: 22px;
  margin: 20px 0;
  text-transform: inherit;
  position: relative;
  padding-bottom: 0px;
  
}

/* .footer h4 :before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width:40px;
  height: 4px;
  border-radius: 0px;
  background:var(--sc-primary);} */

/* .footer h4:before { content: ""; position: absolute; width:30px;  height:100%; background:#e81f27;  } 
 .footer h4 span{position: relative; padding: 2px;} */

.footer p {
  font-family: var(--font-family-1);
  font-weight:500;
  color:var(--text-white);
  font-size: 15px !important;
  text-decoration: none;
  letter-spacing: 0.1px;
}

.footer p a {
  color:var(--text-white);
}

.footer p a:hover {
  color:var(--primary);
}

.footer p strong {
  
  font-weight: 500;
  color:var(--text-white);
}

.footer p i { 
  font-size: 17px !important;
  color:#fff; 
}
 

.address p  { display:flex; flex-direction: row; flex-wrap: nowrap; align-items: start; }
.address p span{padding-left: 10px;}


.footer h5 {
  font-weight: 500;
  color: #00549C;
  font-size: 20px;
  margin: 0px;
}

.footer_links {
  padding: 0px 0 0 0;

  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

.footer_links .footer_links_col {
  width: 48%;
  margin-right: 10px;
}

.footer_links ul {
  list-style: none;
  padding: 0px 0 0px 0px;
  text-align: left;
}

.footer_links li { display: flex; align-items: start;
  /* list-style:url(../../images/list2.png); */
  padding: 5px 0;
  margin: 0px;
  border-bottom: 0px dashed #1d1d1d;
}

.footer_links li:before {
  content: "\f285";
  font-family: "bootstrap-icons"; font-size: 11px; font-weight: 700;
  float: left;
  /* margin-left: -1.5em; */
  color:var(--text-white); 
  padding-right:5px; margin-top: 3px;
}

.footer_links li a {
  font-family: var(--font-family-1);
  font-weight:500;
  color:var(--text-white);
  font-size: 15px !important;
  text-decoration: none;
  letter-spacing: 0.1px;
}

.footer_links li a:hover {
  color: var(--sc-primary);
  -moz-transition: 0.4s ease-in-out 0s;
  -ms-transition: 0.4s ease-in-out 0s;
  -webkit-transition: 0.4s ease-in-out 0s;
  transition: 0.4s ease-in-out 0s;
  padding-left: 15px;
}

.border-right {
  border-right: 1px dashed #19406f;
  min-height: 280px;
}

.footer_links .links-list li {
  float: left;
  width: 48%;
}

.footer_top {
  margin: 0px 0 0 0;
  padding: 20px 0px;
  background: var(--gradient-bk1);
  border-top: 0px solid #152227;
}

.footer_bottom {
  margin: 0px 0 0 0;
  padding: 20px 0px;
  background-color: #0c396f;
  border-top: 0px solid #152227;
}

.footer_bottom-in {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  justify-content: space-between;
  -webkit-box-align: space-between;
  -webkit-flex-align: space-between;
  -ms-flex-align: space-between;
  /* -webkit-align-items: space-between; */
}

.footer_bottom p {
  font-family: var(--font-family-1);
  font-weight:500;
  color: #fff;
  font-size: 13px !important;
  text-decoration: none;
  margin: 0px;
}

.footer_bottom p a {
  color: #CDCDCD !important;
}


.footer-about { text-align: center; font-family: var(--font-family-1); margin-top: 20px;}
.footer-about img{ width: 120px; border-radius: 12px; margin-bottom: 10px;}
.footer-about h5{ font-size: 19px !important; color: #fff; font-weight: 600; padding: 2px 0;}
.footer-about p{font-size: 15px !important; font-weight: 400 !important;}

.footer_center {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  border-top: 1px solid #cda519;
  border-bottom: 1px solid #cda519;
  margin-top: 10px;
}

.footer_center .footer_center_1 {
  width: 70%;
  padding: 6px 5px;
  border-right: 1px solid #cda519;
}

.footer_center .footer_center_2 {
  width: 30%;
  padding: 15px 20px;
  text-align: center;
}

.footer_center p {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #e4e4e4;
  font-size: 13px !important;
  text-decoration: none;
  margin: 0px;
}

.footer_center p strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--sc-primary);
}

.footer .btn.btn-social {
  margin-right: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 35px;
  transition: 0.3s;
  background:var(--primary);
}

.footer .btn.btn-social:hover {
  color: var(--text-white);
  background: var(--sc-primary);
}

.btn-outline-light:hover {
  color: #000;
  background-color: var(--sc-primary);
  border: 0px #fff;
}

@media only screen and (max-width: 768px) {
  .footer-col {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .footer-col .ft-col-1 {
    width: 48%;
    padding: 0 0px 0 0;
  }

  .footer-col .ft-col-2 {
    width: 48%;
    padding: 0 0px 0 0;
  }

  .footer-col .ft-col-3 {
    width: 48%;
    padding: 0 0px 0 0;
  }

  .footer-col .ft-col-4 {
    width: 48%;
    padding: 0 0px 0 0;
  }
}

@media only screen and (max-width: 500px) {
  .footer-col {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .footer-col .ft-col-1 {
    width: 100%;
    padding: 0 0px 0 0;
  }

  .footer-col .ft-col-2 {
    width: 100%;
    padding: 0 0px 0 0;
  }

  .footer-col .ft-col-3 {
    width: 100%;
    padding: 0 0px 0 0;
  }

  .footer-col .ft-col-4 {
    width: 100%;
    padding: 0 0px 0 0;
  }

  .footer_center {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    border-top: 1px solid var(--sc-primary);
    border-bottom: 1px solid var(--sc-primary);
  }

  .footer_center .footer_center_1 {
    width: 100%;
    padding: 10px 0px;
    border-right: 0px solid var(--sc-primary);
  }

  .footer_center .footer_center_2 {
    width: 100%;
    padding: 10px 0px;
    text-align: left;
  }

  .d-noneh4{ display: none;}
}

@media only screen and (max-width: 425px) {
  .footer_links {
    padding: 0px 0 0 0;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .footer_links .footer_links_col {
    width: 100%;
    margin-right: 0px;
  }

  .footer_links ul {
    margin: 0px;
  }
}

.footer-top {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  border-top: 0px solid #bebebe;
  border-bottom: 1px solid #bebebe;
  padding: 10px 0;
}

.footer-top-1 {
  width: 60%;
  border-right: 1px solid #bebebe;
}

.footer-top-2 {
  width: 40%;
}

.subscribe-news {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  padding-right: 30px;
  padding-top: 10px;
}

.subscribe-news h5 {
  font-family: "Poppins", sans-serif;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  margin: 0 15px 0 0;
  position: relative;
  z-index: 1;
}

.subscribe-box {
  border: 0px solid #111111;
}

.subscribe-box .form-control {
  border: 0px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #666;
  height: 35px;
  width: 260px;
}

.subscribe-box .btn {
  border-left: 0px solid #dfdedb;
  line-height: 0px;
  margin: 0 10px;
}

.submit-link-1 {
  background: #000;
  padding: 7px 20px;
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 10px;
  display: inline-block;
  text-decoration: none !important;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.submit-link-1:hover {
  background: #bd0400;
  color: #fff;
}

.connect-us {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  padding-left: 30px;
}

.connect-us h5 {
  font-family: "Poppins", sans-serif;
  color: var(--sc-primary);
  font-size: 18px;
  font-weight: 600;
  margin: 0 15px 0 0;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 900px) {
  .subscribe-news {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    padding-right: 20px;
    padding-top: 0px;
  }

  .subscribe-box {
    margin-top: 7px;
  }

  .connect-us {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    padding-left: 20px;
  }
}

@media only screen and (max-width: 660px) {
  .footer-top {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    border-top: 0px solid #bebebe;
    border-bottom: 1px solid #bebebe;
    padding: 10px 0 00;
  }

  .footer-top-1 {
    width: 100%;
    border-right: 0px solid #bebebe;
  }

  .footer-top-2 {
    width: 100%;
  }

  .connect-us {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    padding: 5px 0px;
  }
}

@media only screen and (max-width: 425px) {
  .subscribe-box {
    border: 0px solid #111111;
  }

  .subscribe-box .form-control {
    border: 0px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: #666;
    height: 35px;
    width: 170px;
  }

  .submit-link-1 {
    padding: 7px 7px;
    font-size: 15px;
  }
}

/*-------------------------------------------*/

.social-icon {
  text-align: left;
  margin: 0px 0 0 0;
  padding: 0px 0;
  border-bottom: 0px solid #d4d1d1;
  position: relative;
  top: 1px;
  right: 0px;
  z-index: 1;
}

.social-icon:after {
  content: "";
  clear: both;
  display: block;
}

.social-icon span {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #fff;
  font-weight: 500;
}

.social-icon li {
  padding: 2px;
  display: inline-block;
  text-align: right;
  margin-top: 0px;
  color: #7d7d7d;
  line-height: 10px;
  border-right: 0px solid #ddd;
}

.social-icon li a {
  display: inline-block;
  width: 25px;
  height: 25px;
  line-height: 15px !important;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  padding: 0px;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
  border-radius: 30px;
  color: #fff !important;
  /* background: #fff; */
}

.social-icon li a:hover {
  border-radius: 30px;
  background: transparent;
  color: #efc635 !important;
  -webkit-transform: translateY(-6px);
  -moz-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);
}

.social-icon small {
  font-family: "Avenir-Heavy";
  font-size: 18px;
  color: #161515;
  text-transform: none;
}

@media only screen and (max-width: 768px) {
  .social-icon {
    position: absolute;
    top: 10px;
    right: 60px;
    z-index: 1;
  }
}

@media only screen and (max-width: 600px) {
  .social-icon {
    position: relative;
    top: 10px;
    right: 0px;
    z-index: 1;
    text-align: right;
  }

  .social-icon span {
    font-size: 12px;
  }
}

.social-icon-1 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-align: left;
  margin: 0px 0 0 0;
  padding: 0px;
  border-bottom: 0px solid #d4d1d1;
}

.social-icon-1:after {
  content: "";
  clear: both;
  display: block;
}

.social-icon-1 li {
  padding: 8px;
  display: inline-block;
  text-align: right;
  margin-top: 0px;
  color: #fff;
  line-height: 30px;
  border-right: 0px solid #000;
}

.social-icon-1 li a span {
  font-size: 18px;
}

.social-icon-1 li a {
  display: inline-block;
  width: auto;
  height: auto;
  line-height: 20px !important;
  text-align: center;
  text-decoration: none;
  font-size: 25px;
  margin-right: 0px !important;
  padding-top: 8px;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
  border-radius: 0px;
  /*background:#fff;*/
  color: #fff;
}

.social-icon-1 li a:hover {
  border-radius: 0px;
  color: #efc635 !important;
  -webkit-transform: translateY(-6px);
  -moz-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);
}

@media only screen and (max-width: 700px) {
  .social-icon-1 li {
    padding: 0 8px;
  }

  .social-icon-1 li a {
    padding-top: 0px;
  }
}

/*----------------------------back to top ------------------------*/


.success-text {
  margin: 60px 0 0 0;
  border: 0px solid #ccc;
  padding: 15px;
  text-align: center;
}

.success-text h6 {
  padding: 0px 0;
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #e31a3a;
}

.success-text h5 {
  padding: 0px 0;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #333;
}

.success-text h5 small {
  padding: 0px 0;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #e31a3a;
}



/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

/* .testimonials-section {
  background: #fff;   
  margin: 0px 0 0 0; padding: 20px  0;
  position: relative !important;
  min-height: 450px;
}

.testimonials-section:before {
  position: absolute;
  width: 40.85416666666667%;
  height: 100%;
  content: '';
  background: var(--sc-primary);
  right: 0px;
  top: 0;
  z-index: 0;} */

 

  .testimonials-bg{
    background-image: url(../../images/Testimonials-bg.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size:cover;  
    position: relative;
    overflow: hidden;
    padding: 30px 30px;
  }
  
  
  /* .testimonials-bk:before { 
    background: url(../../images/testimonial-bg-line-shape.png)var(--sc-primary);
    background-repeat: no-repeat;
    background-position: center right;
    background-size:cover;
      position: absolute;
      width:25.85416666666667%;
      height: 100%;
      content: '';
      right: 0px;
      top: 0;
      z-index: 0;
      
  } */
  
  
  
  .testimonials-list{   margin: 20px 0; display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-between;  }
  
  .testimonials-box{  position: relative; /*width: calc(49.33% - 10px);*/ border-radius: 10px; text-align: left; background: #fff; margin:0px;   padding: 0px;
     transition: All 0.5s ease;
    -webkit-transition: All 0.5s ease;
    -moz-transition: All 0.5s ease;
    -o-transition: All 0.5s ease; 
    /* box-shadow: 1px 0px 11px 0px rgba(0, 0, 0, 0.15); */ border: 0px solid #e9e9e9;
    }
  .testimonials-box figure {text-decoration: none; display: block; padding:40px 20px; display: flex; flex-direction: row; flex-wrap: nowrap; justify-content: space-between; align-items: center;}
  
  .testimonials-thumb {
    border-radius: 0px 0px 0 0;
    overflow: hidden;
    position: relative;
  }
  
  .testi-overlay:after {
    content: "";
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.3;
    position: absolute;
    left: 0;
    top: 0;
  }
   
  
  
  .testimonials-animate {
    display: block;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  
  .testimonials-animate:before {
    position: absolute;
    top: 0;
    left: -100%;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,hsla(0,0%,100%,0) 0,hsla(0,0%,100%,.3));
    transform: skewX(-25deg);
  }
  
  .testimonials-content {
    padding: 0px;
    position: relative; text-align: left;
  }
  
  .testimonials-thumb .icon {
    /* width: 70px;
    height: 70px; */
    /* background: var(--sc-primary); */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size:17px;  font-weight: 500;
    text-transform: inherit;
    line-height: 0;
    color: #fff;
    /* border: 3px solid #fff; */
     border-radius:0 10px 0 0px; 
    padding: 15px 15px; 
    position: absolute;
    left: 40%;   
    top: 40%;
    z-index: 2;
    transition: all .4s ease-out 0s; text-align: center; 
  }
  .testimonials-thumb .icon i{font-size: 60px; }
  .testimonials-thumb .icon:hover { color: var(--sc-primary);}
  
  .testimonials-content .icon img {
    width: 40px !important;
    height: 40px !important;}
  
    .testimonials-content .title { font-family: var(--font-family-1); color: var(--text-heading);
      font-size:19px;
      font-weight: 700; 
      margin-bottom: 1px;  margin-top: 20px;
  }
  .testimonials-content .title a{text-decoration: none; color: inherit;}
  .testimonials-content .title a:hover {
    color: var(--primary);
  }
  
  .testimonials-content .title span{display: block; font-size: 15px; color: var(--text-primary); font-weight:400; }
   
  .testimonials-box p{ font-family: var(--font-family-1);
      font-size: 18px;
      line-height:28px !important;
      font-weight:500;
      color: var(--text-primary);
      padding: 0 0px; margin-bottom: 10px;
  }
   
  .testimonials-content i{ font-size: 50px; color: var(--primary);}
    
  
  .testi-counter{  text-align: right;  margin-top: -75px; margin-right: 120px;  
    font-size: 17px; font-family: var(--font-family-2); font-weight: 600; color: var(--text-primary);}
  
  @media only screen and (max-width: 767px) {
    .testimonials-bk {
      position: relative;
      padding: 60px 0px;
      margin: 0 0 30px 0;
    }
  
    /* .testimonials-bk:before {
          position: absolute;
          width: 100%;
          height: 100%;
          content: '';
          background: var(--primary);
          left: 0px;
          top: 0;
          z-index: 0;
      } */
  
      .testimonials-box{  margin:10px 10px;  
       }
       
     
  }
  
  
  #testimonials .owl-nav {
    display: flex;
    justify-content: end;
    margin-top:30px;
  }
  
  #testimonials .owl-prev, #testimonials .owl-next{ 
    display: flex; align-items: center; justify-content: center; text-align: center;
    background: var(--primary);
    padding: 0px;
    margin: 2px 5px;
    position: relative;
    border: 0px solid #ddd;
    width: 40px;
    height: 40px; color: #fff;border-radius: 100%; font-size: 20px;
    transition: All 0.5s ease;
    -webkit-transition: All 0.5s ease;
    -moz-transition: All 0.5s ease;
    -o-transition: All 0.5s ease;
  }
  
  #testimonials .owl-prev:hover, #testimonials .owl-next:hover{background: var(--sc-primary);}
  
  
  
   /*=============================testimonials page===============================================*/

 


.why-section{ 
  /* background-image: url(../../images/why-section.png); */
  background-position: top center;
  background-repeat: no-repeat;
  background-size:cover; 
  background-attachment:inherit; 
  position: relative;
  /* overflow: hidden; */
  background:#fff;  
  padding:0 0 60px 0; margin: 0px 0; 
}

@media only screen and (max-width: 767px) {
  .why-section{ 
    /* background-image: url(../../images/why-section.png);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size:contain; 
    background-attachment:inherit; 
    position: relative; */
    /* overflow: hidden; */
    background:#fff;  
    padding:0 0 60px 0; margin: 0px 0; 
  }
}





.do-list{ text-align: center; margin-top: 20px;}
.do-list ul { padding: 10px; margin: 0;list-style: none; display: flex; flex-direction: row; flex-wrap: wrap; justify-content: center; }
.do-list ul li{ text-align: center;  width:calc(22.33% - 15px); margin: 20px; padding: 20px; background: var(--primary); border-radius: 20px;}
.do-list ul li img{ width: 70px; }  
.do-list ul li h3{ font-family: var(--font-family-2); font-size: 18px; font-weight: 700; padding: 30px 0; color:  var(--text-heading);}

.do-list ul li.color1{ background: #FEE6DC;}
.do-list ul li.color2{ background: #DAEDFD;}


@media only screen and (max-width:1200px) {
  .do-list ul li{ text-align: center;  width:calc(30.33% - 15px); margin: 20px; padding: 20px; background: var(--primary); border-radius: 20px;}
}

@media only screen and (max-width:768px) {
  .do-list ul { padding: 10px; margin: 0;list-style: none; display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-between; }
  .do-list ul li{ text-align: center;  width:calc(30.33% - 15px); margin: 10px; padding: 20px; background: var(--primary); border-radius: 20px;}
}

@media only screen and (max-width:600px) {
  .do-list ul { padding: 10px; margin: 0;list-style: none; display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-between; }
  .do-list ul li{ text-align: center;  width:calc(100%); margin: 10px; padding: 20px; background: var(--primary); border-radius: 20px;}
}

/*=====================================================================*/



   





 /*=============================counter=============================================*/  


.counter-section{ padding:60px 0; margin :0px 0 0 0;   
  position: relative; 
  overflow: hidden; 
  background-color: #0a5e72;
}

.counter-row{  display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-between;  }
.counter-card { text-align: center; width: 49.33%; border-right:0px solid #01AEF0; padding:20px;   margin-bottom: 30px; border-radius: 0px; }
.counter-card:last-child{ border: 0px;}
.counter-card h2 span{  text-align: center;}

/* .counter-card:nth-child(odd) {  color:var(--text-white);
 background:var(--primary);
}

.counter-card:nth-child(even) {
  background:var(--sc-primary);
} */

.counter-card img{ width: 65px; margin-bottom: 10px;}

 
.counter-card h2{font-family: var(--font-family-1);font-weight: 800;font-size:32px; color: var(--sc-primary); text-transform: inherit; margin: 0px; padding: 0px;  }

.counter-card h2 small{ font-weight: 500;font-size:18px; color: var(--text-primary); display: block;}

.counter-card h3{ font-family: var(--font-family-1); font-weight: 700;  font-size:40px; color: var(--primary); text-transform: inherit; margin: 0px;  padding: 0px; margin-top: -10px;}
.counter-card h3 span{text-align: center; display: block;}


@media only screen and (max-width: 1180px) {
   
}

@media only screen and (max-width: 1024px) {
 
}

@media only screen and (max-width:767px) { 
 
} 

@media only screen and (max-width:430px) { 
  .counter-row{  display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-between;  }
  .counter-card { text-align: center; width: 100%; border-right:0px solid #01AEF0; padding:20px;   margin-bottom: 30px; border-radius: 0px;  border:1px dashed #ddd; }
  .counter-card:last-child{ border: inherit; border:1px dashed #ddd; }
} 

  

/*=======================================================================*/
 
 
 
  





/*=============================================================*/
 
.case-studies-bk {
  background: #fff;  
  position: relative;
  padding:50px 0 120px 0px;
  margin: 0 0 0px 0;  
}

.case-studies{ display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-between;  padding:0px 0 0px 0;}
.case-studies-col { width:100%; position: relative;}

.case-studies-col h2 {
  font-family: var(--font-family-1);
  font-size: 24px;
  color: var(--text-heading);
  font-weight: 600;
  text-transform: inherit; 
}
.case-studies-col p {
  font-family: var(--font-family-1);
  font-size: 17px;
  line-height: 24px !important;
  font-weight: 400;
  color: var(--text-primary); 
  padding: 0 0px;}

.case-studies-img {text-align: center; position: relative; }
.case-studies-img img{width: 100%; border-radius:30px  30px  30px  0px;  margin-bottom: 15px;}

/* .case-studies-img:after { 
  background: url(../images/dots-line.png);
  background-repeat: no-repeat;
  background-position: center bottom; 
    position: absolute;
    width:450px;
    height: 100%;
    content: '';
    margin: 0 auto;
    bottom: 0px;
    z-index: 0;
} */

@media only screen and (max-width: 768px) {
  .case-studies{ display: flex; flex-direction: column; flex-wrap: wrap; justify-content: space-between; align-items: center;
    padding:40px 0 40px 0;}
.case-studies-col { width: 100%; position: relative;}

 

}
 

/*------------------------------------------------------*/

.gallery-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  /*margin-right: -15px; margin-left: -15px;*/
  margin-top: 20px;
  position: relative;
}

.gallery-row .gallery-col {
  margin: 0 10px 10px 0;
  width: 23.33%;
  /*padding-left: 15px; padding-right: 15px;*/
  border: 1px solid #ddd;
  position: relative;
  cursor: pointer;
}

.gallery-row p {
  font-family: "Product Sans";
  color: #616161;
  font-size: 17px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.5px;
  margin: 10px 0;
}

.gallery-row p strong {
  font-weight: 500;
}

.gallery-col-img {
  color: #fff;
  position: relative;
  overflow: hidden;
  border: 0px solid #ddd;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.gallery-col-img figure {
  padding: 0px;
  margin: 0px;
  max-height: 170px;
  width: 100%;
}

.gallery-col-img figure img {
  width: 100%;
  height: 100%;
  position: relative;
  transition: all 2s ease;
  -webkit-transition: all 2s ease;
  -moz-transition: all 2s ease;
  -o-transition: all 2s ease;
}

.gallery-col-img:hover figure img {
  transform: scale(1.5);
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  -o-transform: scale(1.5);
  opacity: 1;
}

/*.gallery-col-img figure a:first-child { display: inherit;}
.gallery-col-img figure a { display: none;}*/

.gallery-row-wrapper {
  margin-top: 0px;
  padding: 0 0px;
  position: relative;
}

.gallery-row-content {
  background: #fff;
  padding: 10px;
}

.gallery-row-content h3 {
  font-family: "Avenir-Heavy";
  text-align: left;
  color: #2b2523;
  font-size: 20px;
  margin: 5px 0;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.gallery-row-content p {
  font-family: "Avenir-Medium";
  color: #2b2523;
  font-size: 15px;
  margin: 5px 0;
}

@media only screen and (max-width: 660px) {
  .gallery-row .gallery-col {
    margin: 0 10px 10px 0;
    width: 28.33%;
    /*padding-left: 15px; padding-right: 15px;*/
    border: 1px solid #ddd;
    position: relative;
    cursor: pointer;
  }
}

@media only screen and (max-width: 425px) {
  .gallery-row .gallery-col {
    margin: 0 10px 10px 0;
    width: 45.33%;
    /*padding-left: 15px; padding-right: 15px;*/
    border: 1px solid #ddd;
    position: relative;
    cursor: pointer;
  }
}

@media only screen and (max-width: 320px) {
  .gallery-row .gallery-col {
    margin: 0 0px 10px 0;
    width: 100%;
    /*padding-left: 15px; padding-right: 15px;*/
    border: 1px solid #ddd;
    position: relative;
    cursor: pointer;
  }
}

/*** Section Title ***/

.section-title {
  font-family: var(--font-family-Karla);
  text-transform: inherit;
  position: relative;
  color: var(--text-heading);
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
}

.section-title::before {
  position: absolute;
  content: "";
  width: 45px;
  height: 2px;
  top: 50%;
  left: -55px;
  margin-top: -1px;
  background: var(--primary);
}

/* .section-title::after {
  position: absolute;
  content: "";
  width: 45px;
  height: 2px;
  top: 50%;
  right: -55px;
  margin-top: -1px;
  background: var(--primary);
} */

.section-title i {
  background: var(--primary);
  padding: 2px 5px;
  border-radius: 10%;
  color: var(--text-white);
  font-size: 18px;
  margin-right: 7px;
}

.section-title.text-start::before,
.section-title.text-end::after {
  display: none;
}

.section-title1 {
  font: var(--font-family);
  color: var(--sc-primary);
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
}


 /*========================================================================*/

.news-list{ margin: 10px 0; }
.news-list ul { margin: 10px 0; padding: 0; display: flex; flex-direction: column; flex-wrap: wrap;  height: auto !important;}

.news-list ul li { display: flex; flex-direction: row; flex-wrap: nowrap; justify-content: space-between; align-items: start; padding: 10px 0;}

.news-list ul li img{ width: 110px; height: 110px; margin-right: 10px; border-radius: 10px;}

.news-list ul li p {
  font-size: 17px;
  line-height: 24px !important;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: 0.20px;
  padding: 0 0px;
} 

.news-btn {font-size: 14px; font-weight: 600; color: var(--primary); }


 
 /*========================================================================*/

  
.clients-scroll{ margin: 40px 0 0 0; display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-between;}

.clients-scroll-box{  position: relative; /*width: calc(49.33% - 10px);*/ border-radius: 12px; text-align: left; background: #fff; margin:10px;   padding: 10px; border: 0px solid #ddd; box-shadow: 1px 1px 7px 4px rgba(0, 0, 0, 0.07);
   transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
  }
.clients-scroll-box figure {text-decoration: none; display: block; padding:40px 20px; display: flex; flex-direction: row; flex-wrap: nowrap; justify-content: space-between; align-items: center;}

.clients-scroll-thumb {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

/*==========================================================*/

 
.client-list {padding: 0 0 0 1px !important;  list-style: none; display: flex; flex-wrap: wrap; justify-content: flex-start;}

.client-list li{ list-style:none; margin: 20px 20px; padding: 10px; width: 16%;  min-height: 90px !important; border:0px solid #eee; border-radius: 10px; text-align:center;   transition: all 0.5s ease;  background: #fff;
  box-shadow: 1px 1px 7px 4px rgba(0, 0, 0, 0.06); display: flex; align-items: center;}

.client-list li img{max-height: 100%; max-width:100%;}
.client-list li img:hover{transition:All 0.5s ease;-webkit-transition:All 0.5s ease;-moz-transition:All 0.5s ease;-o-transition:All 0.5s ease;  opacity:0.5;}

@media only screen and (max-width:1024px) {
  .client-list li{ margin: 10px 10px; width: 17%;    }	
}

@media only screen and (max-width: 768px) {
  .client-list li{ margin: 15px 15px; width: 20%;    }	
}

@media only screen and (max-width: 600px) {
  .client-list li{ margin: 15px 15px; width: 25%;    }	
}

@media only screen and (max-width:500px) {
  .client-list li{ margin: 10px 10px; width: 28%;  min-height:80px !important;  }	
}

@media only screen and (max-width:400px) {
  .client-list li{ margin: 10px 10px; width: 25%;  min-height:80px !important;  }	
}

@media only screen and (max-width:340px) {
  .client-list li{ margin: 10px 10px; width: 40%;  min-height:80px !important;  }	
}


/*-=============================================================-*/
 
.client-list-1 {
  list-style: none;
  margin: 0px 0;
  padding: 0px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.client-list-1 li {  
  margin: 0px;
  text-align: left;
  padding: 15px;   border: 0px solid #ddd;
  margin:  0 30px 30px 0;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  background: #fff;
  box-shadow: 1px 1px 7px 4px rgba(0, 0, 0, 0.06);
}

.client-list-1 li span {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  text-align: center;
  padding: 10px;
}

.client-list-1 li img {
  height:80px;
}

@media only screen and (max-width: 780px) {
  .client-list-1 {
    list-style: none;   
    padding: 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .client-list-1 li img {
    height: 90px;
  }
}

@media only screen and (max-width: 680px) {
  .client-list-1 li {
    padding: 15px;  
      margin:  0 20px 30px 0;
  }

  .client-list-1 li img {
    height: 80px;
  }
}

@media only screen and (max-width: 575px) {
  .client-list-1 {
    list-style: none;    
    padding: 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .client-list-1 li {
    padding: 15px;  
    margin:  0 20px 30px 0;
  }

  /* .client-list-1 li img {
        height:60px;
    } */
}

@media only screen and (max-width: 430px) {
  .client-list-1 {
    list-style: none;     
    padding: 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .client-list-1 li {
    padding: 15px;  
    margin:  0 20px 30px 0;
  }

  .client-list-1 li img {
    height: 80px;
  }
}

@media only screen and (max-width: 390px) {
  .client-list-1 li {
    padding: 15px;  
    margin:  0 10px 30px 0;
  }

  .client-list-1 li img {
    height: 70px;
  }
}

@media only screen and (max-width: 340px) {
  .client-list-1 {
    list-style: none;    
    padding: 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .client-list-1 li {
    width: 40%;
    padding: 15px;  
      margin:  0 20px 30px 0;
  }

  .client-list-1 li img {
    height: 100%;
    width: 100%;
  }
}

/* @media only screen and (max-width: 280px) {
  .client-list-1 {
    list-style: none; 
    padding: 0px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
  }

  .client-list-1 li {
    width: 100%;
    padding: 10px 0;
  }

  .client-list-1 li img {
    height: 100%;
    width: 100%;
  }
} */

/*===================================================================*/

 
 /*============================activities-gallery===================================*/


 .act-events{ margin: 20px 0; display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-between; }

 .act-events-boxes{  position: relative; width: calc(48.33% - 10px); text-align: left; background: #fff; margin:0 0 40px 0;   padding: 0px; border-radius: 12px; border: 0px solid #ddd;  box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.15);   
    transition: All 0.5s ease;
   -webkit-transition: All 0.5s ease;
   -moz-transition: All 0.5s ease;
   -o-transition: All 0.5s ease;
   }
 .act-events-boxes figure {text-decoration: none;   margin: 0;  padding:10px; display: flex; flex-direction: row; flex-wrap: nowrap; justify-content: space-between; align-items: start;  border-radius: 0px; position: relative !important;
  }
 
 .act-events-thumb { width: 40%;
  border-radius:0px 0 0 0;
   overflow: hidden;
   position: relative;
 }
 .act-events-animate {
   display: block;
   overflow: hidden;
   position: relative;
   z-index: 1;
 }
 .act-events-animate--:before {
   position: absolute;
   top: 0;
   left: -100%;
   display: block;
   content: "";
   width: 50%;
   height: 100%;
   background: linear-gradient(90deg,hsla(0,0%,100%,0) 0,hsla(0,0%,100%,.3));
   transform: skewX(-25deg);
 }

 
 
 .act-events-content { width:60%;
   padding: 20px;
   position: relative !important;  
 }

  
 
 .act-events-content .icon {
   /* width: 70px;
   height: 70px; */
   background: var(--th-primary);
   display: flex;
   align-items: center;
   justify-content: center;
   font-size:14px; text-transform: uppercase;
   line-height: 0;
   color: #fff;
   /* border: 3px solid #fff; */
    border-radius:6px; 
   padding: 15px 15px; 
   position: absolute;
   left: -100px;
   top: 10px;
   z-index: 2;
   transition: all .4s ease-out 0s;
 }
 .act-events-content .icon span{position: relative;}
 
 .act-events-content .icon img {
   width: 40px !important;
   height: 40px !important;}
 
   .act-events-content  h4{ font-family: var(--font-family-2); color: var(--text-primary);
     font-size: 30px;
     font-weight:300;
     margin-bottom: 5px;
 }

 .act-events-content h5{ font-family: var(--font-family-1); color: var(--text-primary);
  font-size: 15px;
  font-weight:500;
  margin-bottom: 1px;
}

 .act-events-content h6 { font-family: var(--font-family-1); color: var(--text-primary);
  font-size: 17px;
  font-weight:600; 
}

 .act-events-content .title a{text-decoration: none; color: inherit;}
 /* .act-events-content .title a:hover {
   color: var(--sc-primary);
 } */
  
 .act-events-boxes p{font-family: var(--font-family-1); color: var(--text-primary); font-size: 15px; font-weight:400;}

 .act-events-boxes .know-more-btn {
     background:var(--sc-primary);
     padding: 4px;
     font-family: var(--font-family-1);
     color:var(--text-white);
     font-size:20px;
     font-weight:700;
     border-radius: 0 20px 0 0 ; border: 0;
     margin:0px 0 0 0;
    float:left; position: absolute; left: 0px; bottom: 0px; z-index: 999;
     text-transform: uppercase;
     text-decoration: none;
     transition: all 0.5s;
     -webkit-transition: all 0.5s;
     -moz-transition: all 0.5s;
     -ms-transition: all 0.5s;
     -o-transition: all 0.5s;
   }
   .act-events-boxes .know-more-btn i{padding: 0 10px;}
   
   .act-events-boxes .know-more-btn:hover {
     background: var(--primary);
     padding-left:4px;
     color: #fff;     
   } 
    
 
 
 /* .services-box:nth-child(odd) {
  background: #f5f5f5;
 }
 
 .services-box:nth-child(even) {
   background: #f1f7fc;
 } */
 
 
 
 
 /* .act-events-boxes:hover { display: block;  
   -webkit-transform: translateY(-10px);
   -moz-transform: translateY(-10px);
   -ms-transform: translateY(-10px);
   transform: translateY(-10px);   
 } */
 
 .act-events-boxes:hover span{color: var(--sc-primary);}
 
 @media only screen and (max-width: 768px) {
  .act-events-boxes figure { display: flex; flex-direction: column; flex-wrap: nowrap; justify-content: space-between; }
 
  .act-events-thumb { width: 100%; 
  }
  .act-events-content { width: 100%; padding: 10px 0;
  }

  .act-events-content .icon {
    
    position: absolute;
    left: 10px;
    top: -40px;
    z-index: 2;
    transition: all .4s ease-out 0s;
  }

 }
 
 @media only screen and (max-width: 580px) {
  .act-events{ margin: 10px 0; display: flex; flex-direction: column; flex-wrap: wrap; justify-content: space-between;}

  .act-events-boxes{  position: relative; width: calc(100% - 0px);  margin:0 0 40px 0;   }
 }
 
 @media only screen and (max-width: 480px) {  }
 


/*==============================================================*/



/*---------------------------------------------------*/

.footer-gallery-box {
  /* background: #fff; */
  margin:0px 0 0 0;
  /* margin-left: -15px;
  margin-right: -15px; */
  padding: 0px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start; 
}

.footer-gallery-box li {
  width: 33.33%;
  /* min-height:380px;*/
  position: relative;
  padding-right: 4px;
  padding-left: 4px;
  vertical-align: middle;
  overflow: hidden !important;
  border: 0px solid #ddd;
  margin-bottom: 10px;
}

.footer-gallery-box li figure {
  cursor: pointer;
  display: block;
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-position: 50%;
  background-size: cover;
  height: 80px; margin: 0;
}

/* .footer-gallery-box li figure:before {
  background-color: transparent;
  background-image: linear-gradient(180deg, #0A043C00 50%, #000000B0 100%);
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: transparent;
  -moz-transition: all .2s ease;
  -webkit-transition: all .2s ease;
  -o-transition: all .2s ease;
  -ms-transition: all .2s ease;
  transition: all .2s ease;
} */

.footer-gallery-box li figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  max-width: 100%;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

@media screen and (max-width: 1024px) {}

@media screen and (max-width: 768px) {
  .footer-gallery-box {
      margin: 20px 0;
      padding: 0px;
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: space-between;
  }
  .footer-gallery-box li {
      width: 33%;
  }
  .footer-gallery-box li figure {
      height:80px;
  }
}

@media screen and (max-width: 575px) {
  .footer-gallery-box{
      margin: 20px 0;
      padding: 0px;
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: space-between;
  }
  .footer-gallery-box li {
      width: 30%;
  }
  .footer-gallery-box li figure {
      border: 0px solid #a7a9ac;
      height:80px;
  }
}

@media screen and (max-width: 400px) {
  .footer-gallery-box {
      margin: 20px 0;
      padding: 0px;
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: space-between;
  }
  .footer-gallery-box li {
      width: 32.33% !important;
      margin-bottom: 15px;
      padding: 0px;
      padding-bottom: 0px;
  }
  .footer-gallery-box li figure {
      height:80px;
  }
}

 
@media screen and (max-width: 768px) {
 
}
 
/*==========================================================*/


/*---------------------------------------------------*/
 
.gallery-box {
  background: #fff;
  margin: 30px 0 0 0;
  /* margin-left: -15px;
    margin-right: -15px; */
  padding: 0px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.gallery-box li {
  width: 33.33%;
  /* min-height:380px;*/
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  vertical-align: middle;
  overflow: hidden !important;
  border: 0px solid #ddd;
  margin-bottom: 20px; text-align: center;
}

.gallery-box li h4{ margin-bottom: 10px; padding: 10px 0 0 0; font-family: var(--font-family-1); font-size: 22px; color: var(--text-heading); font-weight: 600;}

.gallery-box li p {
  font-size: 15px;
  line-height: 24px !important;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: 0.30px;
  padding: 0 0px;
  margin: 0;
}


.gallery-box li figure {
  /* text-align: center;
    cursor: pointer;
    width: 180px !important;
    height: 180px !important;
    vertical-align: middle;
    display: table-cell;
    position: relative;
    overflow: hidden !important;
    padding: 10px;
    border: 1px solid #a7a9ac; */
  cursor: pointer;
  display: block;
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-position: 50%;
  background-size: cover;
  height: 320px;
  margin: 0px;
}

.gallery-box li figure:before {
  background-color: transparent;
  background-image: linear-gradient(180deg, #0a043c00 50%, #000000b0 100%);
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: transparent;
  -moz-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.gallery-box li figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  max-width: 100%;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

/* .gallery-box li img {
    max-height: 100%;
    max-width: 100%;
    position: relative;
    border: 0px solid #f7f7f7 !important;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
} */

/* .gallery-box li img:hover {
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    border: 1px solid #ddd;
} */

@media screen and (max-width: 1024px) {
  /* .gallery-box li figure {
        text-align: center;
        width: 280px !important;
        height: 200px !important;
    } */
  .gallery-box li figure {
    height: 280px;
  }
}

@media screen and (max-width: 768px) {
  .gallery-box {
    margin: 20px 0;
    padding: 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .gallery-box li {
    width: 33%;
  }

  .gallery-box li figure {
    height: 200px;
  }
}

@media screen and (max-width: 600px) {
  .gallery-box {
    margin: 20px 0;
    padding: 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .gallery-box li {
    width: 46%;
  }

  .gallery-box li figure {
    border: 0px solid #a7a9ac;
    height: 180px;
  }
}

@media screen and (max-width: 480px) {
  .gallery-box {
    margin: 20px 0;
    padding: 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .gallery-box li {
    width: 100% !important;
    margin-bottom: 20px;
    padding: 0px;
    padding-bottom: 0px;
  }

  .gallery-box li figure {
    height: 220px;
  }
}
 
 
  /*===============================================*/


  
.gallery-box-1 {
  background: #fff;
  margin: 0px 0 20px 0;
  /* margin-left: -15px;
    margin-right: -15px; */
  padding: 0px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.gallery-box-1 li {
  /* width: 23.33%; */ width: calc(20.33% - 5px);
  /* min-height:380px;*/
  position: relative;
  padding-right: 5px;
  padding-left: 5px;
  vertical-align: middle;
  overflow: hidden !important;
  border: 0px solid #ddd;
  margin-bottom: 10px; text-align: center;
}

.gallery-box-1 li h6{padding: 5px 0; font-size: 16px; font-weight: 400;}

.gallery-box-1 li figure {
  /* text-align: center;
    cursor: pointer;
    width: 180px !important;
    height: 180px !important;
    vertical-align: middle;
    display: table-cell;
    position: relative;
    overflow: hidden !important;
    padding: 10px;
    border: 1px solid #a7a9ac; */
  cursor: pointer;
  display: block;
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-position: 50%;
  background-size: cover;
  height: 180px;
  margin: 0px;
}

.gallery-box-1 li figure:before {
  background-color: transparent;
  background-image: linear-gradient(180deg, #0a043c00 50%, #000000b0 100%);
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: transparent;
  -moz-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.gallery-box-1 li figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  max-width: 100%;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

/* .gallery-box li img {
    max-height: 100%;
    max-width: 100%;
    position: relative;
    border: 0px solid #f7f7f7 !important;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
} */

/* .gallery-box li img:hover {
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    border: 1px solid #ddd;
} */

@media screen and (max-width: 1024px) {
  /* .gallery-box li figure {
        text-align: center;
        width: 280px !important;
        height: 200px !important;
    } */
  .gallery-box-1 li figure {
    height: 140px;
  }
}

@media screen and (max-width: 768px) {
  .gallery-box-1 {
    margin: 20px 0;
    padding: 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content:flex-start;
  }

  .gallery-box-1 li {
    width: 33%;
  }

  .gallery-box-1 li figure {
    height:140px;
  }
}

@media screen and (max-width: 575px) {
  .gallery-box-1 {
    margin: 20px 0;
    padding: 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .gallery-box-1 li {
    width: 50%;
  }

  .gallery-box-1 li figure {
    border: 0px solid #a7a9ac;
    height: 180px;
  }
}

@media screen and (max-width: 400px) {
  .gallery-box-1 {
    margin: 20px 0;
    padding: 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .gallery-box-1 li {
    width: 48% !important;
    margin-bottom: 20px;
    padding: 0px;
    padding-bottom: 0px;
  }

  .gallery-box-1 li figure {
    height: 120px;
  }
}
  
.gallery-box-1 li h6{ font-size: 14px; }

/*==========================================================*/

.masonry-wrapper .masonry-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.masonry-wrapper .masonry-col > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0px;
}

.masonry-wrapper {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  grid-auto-rows: 300px;
  grid-auto-flow: dense;
}

.masonry-wrapper .wide {
  grid-column: span 0;
}

.masonry-wrapper .tall {
  grid-row: span 2;
}

.masonry-wrapper .big {
  grid-column: span 2;
  grid-row: span 2;
}

@media only screen and (max-width: 600px) {
  .masonry-wrapper {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: auto;
    grid-auto-rows: auto;
    grid-auto-flow: dense;
  }

  .masonry-content-details h3 {
    font-size: 15px;
  }

  .masonry-content-details p {
    font-size: 13px;
  }
}

@media only screen and (max-width: 360px) {
  .masonry-wrapper {
    display: table;
    grid-gap: 10px;
    grid-template-columns: auto;
    grid-auto-rows: auto;
    grid-auto-flow: dense;
  }

  .masonry-wrapper .masonry-col {
    margin-bottom: 15px;
  }
}




/* #Progress
================================================== */

.blok:nth-of-type(odd) {
  background-color:white;
  }
      
  .blok:nth-of-type(even) {
  background-color:black;
  }
  
  @-webkit-keyframes border-transform{
      0%,100% { border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; } 
    14% { border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%; } 
    28% { border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%; } 
    42% { border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%; } 
    56% { border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%; } 
    70% { border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%; } 
    84% { border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%; } 
  }

.progress-wrap {
	position: fixed;
	right: 30px;
	bottom: 30px;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
	box-shadow: inset  0 0 0 2px rgba(0,0,0,0.1);
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    background:rgba(255, 255, 255, 0.5);
}
.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.progress-wrap::after {
	position: absolute;
	font-family: "bootstrap-icons";
	content: '\f145';
	text-align: center;
	line-height: 46px;
	font-size: 24px;
	color:var(--sc-primary); /* --- Pijl kleur --- */
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 1;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap:hover::after {
	opacity: 0; 
}
.progress-wrap::before {
	position: absolute;
	font-family: "bootstrap-icons";
	content: '\f145';
	text-align: center;
	line-height: 46px;
	font-size: 24px;
	opacity: 0;
	background:var(--sc-primary); /* --- Pijl hover kleur --- */
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 2;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap:hover::before {
	opacity: 1;
}
.progress-wrap svg path { 
	fill: none; 
}
.progress-wrap svg.progress-circle path {
	stroke: var(--primary); /* --- Lijn progres kleur --- */
	stroke-width: 4;
	box-sizing:border-box;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}



/*===========================tabs=======================================*/


.tabbed-content {
  /* background: #fff; */  
  /* max-width: 600px; */
  padding: 0;
  margin: 0;
}

.tabs ul {
  margin: 0;
  padding: 0 0 1em 0;
  font-weight: bold;
}
.tabs ul li {
  background: transparent;
}
.tabs ul li a {
  padding: 0.5em 1em; text-decoration: none; color: var(--text-primary);
}
.tabs ul li a:hover {
  background: var(--primary);
  color: #eee;
}

 .tabs ul li a.active {
 
  color:var(--sc-primary);
}


.item {
  margin-bottom: 2px;
}
.item::before {
  cursor: pointer;
  font-weight: bold;
  /* background: #eee; */
  padding: 0.5em;
  display: block;
}
.item.active::before {
  /* background: #444; */
  color: #eee;
}
.item.active .item-content {
  padding: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  -ms-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

@media all and (min-width: 768px) {
  .item.active .item-content {
    padding-top: 0;
  }

  .tabs-side .tabs li {
    margin-bottom: 2px;
  }
}
/* 
The project specific CSS starts here
This is the minimum CSS that you will need in order for this to work
*/
.tabbed-content .tabs {
  display: none;
}
.tabbed-content .item {
  min-height: 2em;
}
.tabbed-content .item::before {
  content: attr(data-title);
}
.tabbed-content .item .item-content {
  opacity: 0;
  visibility: hidden;
  height: 0;
}

.tabbed-content .item .item-content p  {
  font-family: var(--font-family-1);
  font-size: 15px;
  line-height: 24px !important;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: 0.50px;
  padding: 0 0px;
}
.tabbed-content .item .item-content h3 {
  font-family: var(--font-family-2);
  font-size: 30px;
  color: var(--text-heading);
  font-weight: 600;
  text-transform: inherit;
  text-align: left !important;
  position: relative;
  margin: 20px 0 0 0;
  line-height: 1.2;
}

.tabbed-content .item.active .item-content {
  opacity: 1;
  visibility: visible;
  height: auto;
}

.tabs-sm{ display: none;}
@media only screen and (max-width : 768px) {
	
  .tabs-sm{ display: inherit; border: 0px solid #ddd; padding: 10px; background: var(--primary); border-radius: 8px  8px 0 0;}
  .tabs-sm a{color: #fff; font-size: 17px; font-weight: 600; font-family: var(--font-family-2);}
}

@media all and (min-width: 768px) {
  .tabbed-content .tabs {
    display: block;
  }
  .tabbed-content .tabs li {
    display: inline-block;
  }
  .tabbed-content .tabs li a {
    display: flex; align-items: center;
  }

  .tabbed-content .tabs li a span{
     padding-left:10px ; font-weight: 600; font-size: 15px;
  }

  .tabbed-content .tabs li a img{
    width: 50px;
 }

  .tabbed-content .item {
    min-height: 0;
  }
  .tabbed-content .item::before {
    display: none;
  }
  .tabbed-content.tabs-side .tabs {
    width:100%;
    float: left;
  }
  .tabbed-content.tabs-side .tabs li {
    display: block;
  }
  /* .tabbed-content.tabs-side .item {
    margin-left: 150px;
  } */
}
  
 

#myModal {
  position: fixed;
    top: 0;
    background: rgba(0, 0, 0, 0.7);
    left: 0;
    right: 0;
    height: 100vh;
    width: 100vw;
    z-index: 999;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;  
} 

.Modalhide {
  display: none;
}



/*============================================================*/


.download-list {
  text-align: center;
  display: flex; flex-direction: row; flex-wrap: wrap;     
  align-items: flex-start; justify-content: center;
  
}

.download-col{ width: 23.33%; border: 1px solid #ddd; border-radius: 8px; padding: 10px;  
  margin: 0 20px 25px 0; transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;}

  .download-col:hover{ background: var(--sc-primary); color: #fff;  
    -webkit-transform: translateY(-6px);
  -moz-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);
}

.download-col:hover h3 { color: #fff;}

.download-col i{ font-size: 50px; color: var(--primary);}

.download-col h3 {
  font-family: var(--font-family-1);
  color: var(--text-heading);
  font-size: 18px !important;
  font-weight: 600;
  line-height: normal !important;
  margin: 0;
}

.download-col p {
  font-family: var(--font-family-1);
  font-size: 13px !important;
  line-height: normal;
  font-weight: 500;
  color: var(--text-primary) !important; margin-bottom:2px ;
}

@media only screen and (max-width: 768px) {
  .download-col{ width: 46.33%;  padding: 10px;  
      margin: 0 20px 25px 0; }
}

@media only screen and (max-width: 570px) {
  .download-col{ width: 45.33%;  padding: 10px;  
      margin: 0 20px 25px 0; }
}

@media only screen and (max-width: 460px) {
  .download-col{ width: 100%;  padding: 10px;  
      margin: 0 0px 25px 0; }
}