@charset "utf-8";

/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap');
/*
  font-family: "Bricolage Grotesque", sans-serif;
font-family: "Instrument Sans", sans-serif;
 */

html {
  scroll-behavior: smooth;
}

body {
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-family: var(--font-family-1);
   
}

:root {
  --color1: #F49F1E;
  --color2: #03417C;  
  --white-color: #fff; 
  --text-color: #4D5A6C;
  --heading-color: #4D5A6C;  
  --font-family-1: "Bricolage Grotesque", sans-serif;
  --font-family-2: "Instrument Sans", sans-serif;
 
   --gradient-bk1:linear-gradient(90deg, rgba(244, 159, 30, 1) 0%, rgba(3, 65, 124, 1) 100%);
    --gradient-bk2:linear-gradient(90deg, rgba(244, 159, 30, 1) 40%,  rgba(244, 159, 30, 1) 40%,  rgba(3, 65, 124, 1) 60%);
  
}

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: 1160px;

}

.container-60 { position: relative;
  padding: 0 0px;
}

/* @media only screen and (max-width: 1262px) {
    .container, .container-lg, .container-md, .container-sm {
        max-width:1060px;
    }
} */

@media only screen and (max-width: 1300px) {
  .container {
    max-width: 1060px;
  }
}

@media only screen and (max-width: 1024px) {
  .container {
    width: 100% !important;
  }

  /* .container {
    max-width: 760px;
  } */

  .container-60 {
    padding: 0px;
  }
}



.row-with-borders {
  position: relative;
}

.row-border-left {display: none;
  left: 110px;
}

.row-border-right {display: none;
  right: 110px;
}

.row-border-left,
.row-border-right {
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #ece8e5;
  z-index: 200;
}

@media only screen and (max-width:980px) {

  .row-border-left,
  .row-border-right {
    display: none;
  }
}


/*===========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;
}

.mt-100 {
  margin-top: 100px;
}



.mg-bottom-30 {
  margin-bottom: 30px;
}

.mg-bottom-20 {
  margin-bottom: 20px;
}


@media only screen and (max-width: 480px) {
  .mt-100 {
    margin-top: 0px;
  }
}

/*==============cursor css======================*/

/* 
.cursor {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  border: 1px solid var(--color1);
  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(--color1);
  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(--color1);
  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:var(--gradient-bk1);
  padding:7px 0;
  margin: 0px 0;
  position: relative;
  border-bottom: 0px solid #e6e6e6;  
  border-top: 0px solid var(--color1);  
}

/* .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; position:absolute; right: 15%; top: 10px; */
  font-family: var(--font-family-1); 
}

.top-social{ margin-left: 0px; padding-left: 10px; border-left: 1px solid #dedede;}

.top-social a { margin:0 3px; padding:5px;  
  background: var(--color1);
   width: 25px; height: 25px; border-radius:100%; display: flex; align-items: center;}

 .top-social i {  
  color:var(--white-color) !important;
  font-size: 15px !important;
}

.top-social a:hover {  background: var(--color3);
 color:var(--color1);
}

.top-social a:hover i {  
  color:var(--white-color) !important;  
}

@media only screen and (max-width:991px) {
  .top-social a {display: none;}
}
 

 

.header-top-row .top-info i {
  color: var(--color1); font-size: 16px;  border: 0px solid #ddd; border-radius: 4px; padding: 2px;
}

.header-top-row .top-info a {
  font-family: var(--font-family-2);
  color:var(--white-color);
  font-size: 15px;
  font-weight: 400;
}
.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(--color1); margin: 0; padding: 0;}


  .header-top-row .top-info a:hover {
    color: var(--color1);   
    
  }

  @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;
  }

  .top-col-1 {
    display: none;
    /* width: 70%; */
  }
  
  .header-top{display: none;}


  .header-top-row .top-col-2 {
    width: 30%;  
  }
  .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(--color1);}


  .br-btn{ background: var(--color2); 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; color: #fff !important;}
  .br-btn:hover{background: var(--color1);}

/*==========================================================*/

.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-bottom:0px solid var(--color1);
}

.header-nav .border-line {
  border-top: 0px solid #dfdedb;
  border-bottom: 0px solid #dfdedb;
}

@media only screen and (max-width: 991px) {
  .header-nav {    
    padding: 6px 0;
  }
}

/*-------------------------------------*/

/*-------------------------------------*/

.header-bottom {
  background: var(--color2);
  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-color);
}

.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(--color2);
  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: #fff;
  padding: 0px 0;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1) !important;
 -webkit-transition: all 0.5s ease;
  -moz-transition: position 10s;
  -ms-transition: position 10s;
  -o-transition: position 10s;
  transition: all 0.5s ease;
}

.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;
 animation: smoothScroll 1s forwards;
}

@keyframes smoothScroll {
	0% {
		transform: translateY(-40px);
	}
	100% {
		transform: translateY(0px);
	}
}

.header-mini .header-top {
  display: none;
  justify-content: center;
  align-items: center;
}

.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: 480px) {
  .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 { position: relative;
  margin: 0px 0 0px 0px;
  border: 0px solid #ddd;
}

 
.carousel-overlay:after {
  content: "";
  width: 100%;
  height: 100%;
  /* background: linear-gradient(180deg, rgba(255, 255, 255,0.1) 0%, rgba(0, 0, 0, 99) 100%); */
  /*background:#000;
  opacity: 0.5; */
  position: absolute;
  left: 0;
  top: 0;
}

.carousel-overlay {
  position: relative;
  overflow: hidden;
  border: 0px solid rgb(0, 0, 0);
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 50px !important;
  border: 0;
  background-color: var(--color4);
}

.carousel-indicators .active {
  background-color: var(--color4);
}

/* .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: 50%;
  bottom: 50%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;  
  background: var(--color4); border-radius: 50px;
}
 

.carousel-caption {
  /* background: #fff; */
  position: absolute;
  /* right: 0; */
  bottom: 20%;
  left: 10%;
  z-index: 10;
  /* padding: 30px 30px 70px 10px; */
  text-align: left !important;
  width: 80%;
  /* display: none !important; */
}

.carousel-caption h6 {
   display: inline-flex;
  margin: 0px;
  font-family: var(--font-family-2);
  font-weight:700;
  font-size: 12px;
  color: var(--color1); text-transform: uppercase;
  padding: 7px; letter-spacing: 1px; border: 1px solid var(--color1); border-radius: 50px;
}


.carousel-caption h5 {
  margin: 0px;
  font-family: var(--font-family-1);
  font-weight:700;
  font-size:60px;
  color: var(--white-color);
  margin: 0px; text-transform: inherit; 
}

.carousel-caption h5 span {   color: var(--color1);
  /* margin-top: -10px; */
   
}


.carousel-caption h4 {
  margin: 0px;
  font-family: var(--font-family-1);
  font-weight: 500;
  font-size: 28px;
  color: var(--color2);   
  margin: 0px;
}

.carousel-caption p {
  margin: 0px;
  font-family: var(--font-family-1);
  font-weight: 300;
  font-size: 18px;
  color: var(--white-color);   
  margin: 0px;
}

.carousel-caption .know-more-btn { 
  background:var(--color2);
  padding: 15px 10px;  
  border: 0px;
  border-radius: 8px;
  margin: 20px 0 0 0;
  display: inline-block;   
  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  a{ 
  font-family: var(--font-family-1);
  color:var(--white-color); 
  font-size: 16px;
  font-weight:400;
  text-transform: initial !important;
  text-decoration: none;
  display: flex; align-items: center;  
}


.carousel-caption .know-more-btn i{padding:5px !important; background: transparent; display: inline-flex; border-radius: 100%; border:0px; margin-left: 5px; color:#fff;}

.carousel-caption .know-more-btn:hover {
  background:var(--color3);
  color:var(--white-color);
  padding-left:30px;
   
}
.carousel-caption .know-more-btn a:hover {  
  color:var(--white-color); }

/* .carousel-caption .know-more-btn:hover i{background: var(--color3);} */

 

.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: 1s;
}

.carousel-caption button {
  animation-delay: 3s;
}

.carousel-caption p {
  animation-delay: 1s;
}

.carousel-caption a {
  animation-delay: 1s;
}

.hidden-lg {
  display: inherit;
}


.hidden-sm {
  display: none !important;
}

 

@media only screen and (max-width:1180px) {
  
  .carousel-caption h5 {
    font-size: 45px;
  }
   
}


@media only screen and (max-width:960px) {
  
  .carousel-caption h5 {
    font-size: 36px;
  }

  .carousel-caption h5 span{ display: inline;}

  .carousel-caption p {
    font-size: 16px;
  }
   
}


@media only screen and (max-width: 768px) {
  .carousel-caption {
    /*background: #fdd215;*/
    width: 90%;
    position: absolute;
    right: 10%;
    bottom: 10%;
    left: 0;
    z-index: 10;
    padding: 10px;
    
  }

  .carousel-caption h5 {
    font-size: 35px;  
  }

 

  .carousel-caption h6 {
    font-size: 11px;
  }

  .carousel-caption h4 {
    font-size: 16px;
  }

  .carousel-caption p {
    font-size: 14px;
  }

  .carousel-caption .know-more-btn {
    padding: 3px 7px; 
    margin: 10px 0 0 0;  
  }
  .carousel-caption .know-more-btn  a{  
  font-size: 13px;   
}

  
}

@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-control-next,
.carousel-control-prev {  display: none !important;}

  .carousel-caption {  /*background: #fdd215;*/
    position: absolute;
    width: 95%;
    right: 0%;
    bottom:3%;
    left: 0%;
    z-index: 10;
    padding: 10px;
     
  }
    .carousel-caption h5 {
    font-size:30px; 
  }
 
    .carousel-caption h6 {
   display: none;
  }
 
  .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: none !important;
  }

  .hidden-sm {
    display: initial !important; 
  }

    .carousel-caption h5 {
    font-size:26px;  
  }

  .carousel-caption h5 span{ display: inline;}

/* .carousel-item .w-100
  { width:100% !important;  height:500px;  
  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;}   */

  
}

.w-200{ width: 100% !important;  }

@media only screen and (max-width: 375px) { 
  
/* .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%;}


 

/*------------inner page banner----------------*/


.carousel-inner-bg{
  background:var(--color3); padding: 4px 0;
}

.carousel-inner-overlay:after {
  content: "";
  width: 100%;
  height: 100%;
 background: linear-gradient(270deg, rgba(253, 183, 26,0.5) 0%, rgba(4, 50, 73, 99) 100%);  
  opacity: 0.9;
  position: absolute;
  left: 0;
  top: 0;
}

.carousel-inner-overlay {
  position: relative;
  overflow: hidden;
  border: 0px solid rgb(0, 0, 0);
}

.carousel-inner-overlay-1:after {
  content: "";
  width: 100%;
  height: 100%;
  background:var(--gradient-bk1);
  opacity: 0.8;
  position: absolute;
  left: 0;
  top: 0;
}

.carousel-inner-overlay-1 {
  position: relative;
  overflow: hidden;
  border: 0px solid rgb(0, 0, 0);
}

.carousel-inner-overlay-2:after {
  content: "";
  width: 100%;
  height: 100%;
  background:var(--gradient-bk);
  opacity: 0.8;
  position: absolute;
  left: 0;
  top: 0;
}

.carousel-inner-overlay-2 {
  position: relative;
  overflow: hidden;
  border: 0px solid rgb(0, 0, 0);
}


 

.carousel-caption-1{
  /* background: #fdd215; */
  position: absolute;  
  right: 0%;
  bottom: 10%;
  left: 9%;
  z-index: 10;
  padding: 10px 0;
  text-align: left !important;
  width: 100%;
  /* display: none !important; */
}
 
.carousel-caption-1 h6 {
  margin: 0px;
  font-family:var(--font-family-1);
  font-weight:400;
  font-size:14px;
  color:var(--white-color);  
  margin: 0px;   letter-spacing: 0.50px;
  text-transform: inherit;
}

.carousel-caption-1 h5 {
  margin: 0px;
  font-family:var(--font-family-1);
  font-weight:700;
  font-size:36px;  
  color: var(--white-color);  margin: 0px 0px;  letter-spacing: 0.50px;
  text-transform: inherit;
}

.carousel-caption-1 h5 span {   
  display: block; 
}


/* .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: 1024px) {
    
      .carousel-caption-1{left: 2%;}     
  }


    @media only screen and (max-width: 767px) {
   
      .carousel-caption-1{ 
        bottom: 10%;
      }
      
      .carousel-caption-1 h6 { 
        font-size:15px;
          
      }
      
      .carousel-caption-1 h5 {        
        font-size:30px;  
         
      }
    }
    
    
    @media only screen and (max-width: 580px) {
      /* .carousel-caption-1{       
       display: none;
        
      } */   
     
  }


  
/*----------Zoom Slide-Start----------*/

@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(1, 1);
  }
  to {
    -webkit-transform: scale(1.5, 1.5);
  }
}

@keyframes zoom {
  from {
    transform: scale(1, 1);
  }
  to {
    transform: scale(1.5, 1.5);
  }
}
.-carousel-overlay img{
  -webkit-animation: zoom 20s;
  animation: zoom 20s;
  /* height:500px; */
  padding:0;
  width:100%;
}






  
  @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 { display: flex; flex-direction: column;
  font-family: var(--font-family-1);
  font-size:65px;
  color: var(--heading-color);
  font-weight:700;
  text-transform: inherit;
  letter-spacing: -0.50px;
  text-align: left;
  position: relative;
  margin: 0 0 15px 0;
  line-height: 1.1;  
}
 
.heading-bx-left h1 small {
  font-family: var(--font-family-1);
  font-size: 26px; 
  color: var(--heading-color);   
  font-weight:300; 
  text-transform: inherit;
  position: relative;
  display: inline-block; margin-bottom: 10px; letter-spacing: -0.50px; 
}

.heading-bx-left h1 span{  background: var(--gradient-bk2); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;}
 
/* .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 { display: flex; flex-direction: column;
  font-family: var(--font-family-1);
  font-size:65px;
  color: var(--heading-color);
  font-weight:700;
  text-transform: inherit;
  letter-spacing: -0.50px;
  text-align: left;
  position: relative;
  margin: 0 0 15px 0;
  line-height: 1.1;  
}
 
.heading-bx-left h2 small {
font-family: var(--font-family-1);
  font-size: 26px; 
  color: var(--heading-color);   
  font-weight:300; 
  text-transform: inherit;
  position: relative;
  display: inline-block; margin-bottom: 10px; letter-spacing: -0.50px;
}

.heading-bx-left h2 span{  background: var(--gradient-bk2); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;}


 
.heading-bx-left h5 {
  font-family: var(--font-family-1);
  color: var(--white-color);
  font-weight:600;
  text-transform: inherit;
  text-align: left;
  position: relative;
  letter-spacing: -0.50px;
  margin: 0 0 20px 0;
  line-height: 1.2;    padding-bottom: 10px;
}

.heading-bx-left h5  span{  font-size:50px;}
.heading-bx-left h5 small {
font-family: var(--font-family-1);
  font-size: 26px; 
  color: var(--white-color);   
  font-weight:300; 
  text-transform: inherit;
  position: relative;
  display: inline-block; margin-bottom: 10px; letter-spacing: -0.50px;
}



.heading-bx-left h6 {
  font-family: var(--font-family-1);
  font-size:26px;
  color: var(--heading-color);
  font-weight:600;
  text-transform: inherit;
  text-align: center;
  position: relative;
  margin: 0 0 0px 0;
  line-height: 1.2;  
}

 
.text-90d{
  -ms-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  margin-top: 160px;  
}



@media only screen and (max-width: 767px) {
  .heading-bx-left h1 br{display: none;}

  .heading-bx-left h1 { 
    font-size:45px;  
  }


  .heading-bx-left h2 br{display: none;}
  .heading-bx-left h2 { 
    font-size:45px;  
  }


     .heading-bx-left h5 br{display: none;}
 
  .heading-bx-left h6 { 
    font-size:20px;  
  }
     .heading-bx-left h6 br{display: none;}

  .heading-bx-center h4 br{display: none;}
  .heading-bx-center h4 { 
    font-size: 35px;  font-weight: 800;    
  }
  .heading-bx-center h4 span {font-size: 35px;   
    margin-bottom: -5px;
  }

  .text-90d{
    -ms-transform:none;
    -moz-transform: none;
    -webkit-transform: none;
    transform: none;
    margin-top: 0px; text-align: left !important;
  }
  

}

 

.sub-title {
  position: relative;
  display: block; 
  color: var(--color1);
  border-top: 3px solid #c5c5c5;
  letter-spacing: 0.2em;
  top: 0px;
  margin-bottom: 10px;
  margin-top: 15px;
  width:45%;
  /* height: 37px; */
  text-align: center;
  text-transform: uppercase;
}

.sub-title::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 19px;
  height: 14px;
  background-image: url(../../images/subtitle-before.png); background-repeat: no-repeat;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #fff; padding: 4px;
  
}



.sub-title-center {
  position: relative;
  display: block; 
  color: var(--color1);
  border-top: 3px solid #c5c5c5;
  letter-spacing: 0.2em;
  top: 0px; 
  margin-bottom: 10px;
  margin-top: 15px;
  width:45%;
  /* height: 37px; */
  text-align: center !important;
  text-transform: uppercase;
}

.sub-title-center::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 19px;
  height: 14px;
  background-image: url(../../images/subtitle-before.png); background-repeat: no-repeat;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #fff; padding: 4px;
  
}


/*===========section space=========================*/

.section-sp1 {
  padding-top: 100px;
  padding-bottom: 70px;
}

.section-sp2 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.section-sp3 {
  padding-top: 20px;
  padding-bottom: 60px;
}

.section-sp4 { 
  padding-top: 60px;
  padding-bottom: 60px;
}


.section-sp5 {
  padding-top: 0px;
  padding-bottom: 60px;
}

.section-sp6 {
  padding-top: 60px;
  padding-bottom: 0px;
}

.section-sp7 {
  padding-top:50px;
  padding-bottom: 0px;
}

.section-sp8 {
  padding-top: 0px;
  padding-bottom:10px;
}

.section-spd1 {
  padding-top: 30px;
}

.section-smr1 {
  margin-top: 0;
  margin-bottom: 120px;
}
.section-border {
    border-top: 1px solid #ece8e5;
}

.section-border-both{border-top: 1px solid #ddd; border-bottom: 1px solid #ddd;}

.wave-line-1{background-image: url(../../images/wave1.png);
background-position: bottom right;
    background-repeat: no-repeat; 
  position: relative !important; 
  right: 0px !important;
  width: 100%;
  /* height:530px; */
   margin: 0px 0 0 0; 
   /* z-index: -1;  */
}

.wave-line-2{
 background-image: linear-gradient(90deg, rgba(244, 159, 30, 0.6) 0%, rgba(244, 159, 30, 0.1) 50%, rgba(3, 65, 124, 0.3) 100%) ;  
  /* background-image: url(../../images/serv-bg.jpg); */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat; 
  position: relative !important; 
  right: 0px !important;
  width: 100%;
  /* height:530px; */
   margin: 0px 0 0 0; z-index: 1;  
	
} 


.wave-line-2::before{
  content:"";
 background-image: url(../../images/serv-bg.jpg);
 opacity:0.1;
  position:absolute;
  top:0;
  bottom:0;
  right:0;
  left:0;
  width:auto;
  height:auto;
  z-index:-3;
}
 

.wave-line-3{ 
  background-image: url(../../images/wave3.webp);
  background-position: top left;
    background-repeat: no-repeat; 
  position: relative !important; 
  right: 0px !important;
  width: 100%;
  /* height:789px; */
   margin: 0px 0 0 0; z-index: 1; 
}

.wave-line-3-1{ 
  background-image: url(../../images/wave2.png);
  background-position: bottom right;
    background-repeat: no-repeat; 
  position: relative !important; 
  right: 0px !important;
  width: 100%;
  bottom: -60px;
  /* height:789px; */
   margin: 0px 0 0 0; z-index: 1; 
}

.wave-line-4{background-image: url(../../images/map-bk.png);
    /* background-position: bottom left; */
    background-repeat: no-repeat; 
  position: relative !important; 
  right: 0px !important;
  width: 100%;
  /* height:530px; */
   margin: 0px 0 0 0; z-index: -1; 
}




.top-section {margin: 0; padding: 0; display: flex; flex-wrap: wrap; flex-direction: row;}
.t-col-1{ width: 70%;}
.t-col-2{ width: 30%; }

@media only screen and (max-width:991px) {
.t-col-1{ width: 100%;}
.t-col-2{ width: 100%;}
}


/*=====================home page========================**/

.services-section{ 
  /* background: #f9dce6; */
  position: relative;
  /* overflow: hidden; */   
  padding:60px 0; margin: 20px 0 0 0;
}


 
.services-list {padding: 0px; margin: 0px 0 0 0; display: flex; flex-direction: row; flex-wrap: wrap; justify-content: center; align-items: stretch; 
   transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;  }
 
.services-list .ser-col{ background: #fff; width: calc(32% - 25px); margin:20px;  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; padding: 15px 25px;  border-radius: 20px; box-shadow: 1px 0px 11px 0px rgba(0, 0, 0, 0.2);}

.services-list .ser-col a{position: relative; display: flex;flex-direction: column; }

.services-list img{width: 80px;}

.services-text{ padding: 0px;}


.services-list h3{ font-family: var(--font-family-1);  font-size:30px;
    font-weight:700; color: var(--color2); margin: 12px  0;}

  .services-list h3 span{background: var(--gradient-bk1); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;}

.services-list p{ font-family: var(--font-family-2);  font-size: 16px;
    font-weight:400;    color: var(--text-color); letter-spacing: 0.30px;}

.services-list h5  { 
    font-family: var(--font-family-1);
    transition: all 0.5s;
    font-size: 18px;
    font-weight:500;
    color: var(--white-color);     
    padding: 10px; border-radius: 10px;
    margin: 15px;}

  .services-list .circle{position: relative; bottom: 0; right: 0; padding: 0px; border-radius: 30px 0 0 0; display: flex; color: var(--color2); font-family: var(--font-family-2); font-weight: 500; }

  .services-list .circle i{  padding:10px; border-radius: 100%; color: var(--color2); font-weight: 700; font-size: 18px; 
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;  
}
 
/* .ser-col:hover .circle i{background: var(--color3); color: #fff;} */

.ser-col:hover .circle, .ser-col:hover .circle i{color: var(--color1);}

.services-list .ser-col:hover{
    -webkit-transform: translateY(-7px);
  -moz-transform: translateY(-7px);
  -ms-transform: translateY(-7px);
  transform: translateY(-7px); 
}
 

@media only screen and (max-width:1300px) { 
.services-list .ser-col{width: calc(32% - 25px); margin:18px; }
}

@media only screen and (max-width:991px) { 
.services-list .ser-col{ width: calc(48% - 25px); margin:18px; }
}

@media only screen and (max-width:580px) { 
.services-list .ser-col{ width: calc(100% - 0px); margin:10px 0;}
}


 /*======================services Details====================================================*/

.services-details{ 
  background: #372f8e;
  position: relative;
  /* overflow: hidden; */   
  padding:40px 0 70px 0; margin: 0px 0 0 0;
}


.services-details p {   font-family: var(--font-family-2);
  font-size: 15px;
  line-height: 24px !important;
  font-weight:500;
  color: var(--white-color);
  letter-spacing: 0.50px;
  padding: 0 0px;
}

.services-details h4 {
  font-family: var(--font-family-1);
  color: var(--white-color);
  font-size: 22px;
  font-weight: 500;
  margin: 20px 0px 0px 0;
  padding: 0px 0;
}


.services-details ul {  font-family: var(--font-family-2);
  padding: 5px 0 0 0px;
}

.services-details li {position: relative;
  /* list-style: url(../../images/list1.png); */ 
  list-style: none; 
  font-size: 15px;
  line-height: 24px !important;
  font-weight:400;
  color: var(--white-color);
  letter-spacing: 0.20px;
  padding: 4px 1px; 
  /* display: flex; */padding-left: 20px;
}


.services-details li:before {
  content: "\F26E";
  font-family: "bootstrap-icons"; font-weight: 800;
 
  /* margin-left: -1.5em; */
  color:var(--white-color); 
  padding-right:5px;
  margin-right: 15px; 
    left: 0;
    position: absolute;
    
}





  /*======================home page====================================================*/

.why-section{ 
    position: relative;
  /* overflow: hidden; */   
  padding:60px 0; margin: 0px 0 0 0;
}

.why-box{
 background-image: linear-gradient(90deg, rgba(244, 159, 30, 0.9) 0%, rgba(3, 65, 124, 1) 100%) ;  
  /* background-image: url(../../images/serv-bg.jpg); */
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat; 
  position: relative !important; 
  right: 0px !important;
  width: 100%;
  /* height:500px; */
   border-radius: 20px;
   margin: 0px 0 0 0; z-index: 1;   padding: 30px;
	
} 


.why-box::before{
  content:"";
 background-image: url(../../images/why-bg.jpg);
 opacity:0.1;
  position:absolute;
  top:0;
  bottom:0;
  right:0;
  left:0;
  width:auto;
  height:auto;
  z-index:-3; border-radius: 20px;
}

   .why-box h2 {  
    font-family: var(--font-family-1);
    font-size: 65px;
    color: var(--white-color);
    font-weight: 700;
    text-transform: inherit;
    letter-spacing: -0.50px;
    text-align: center;
    position: relative;
    margin: 0 0 15px 0;
    line-height: 1.1;
}

  .why-box h2 span{ color: var(--color1);}
 

    .why-box ul{padding: 0px; margin: 10px 0; list-style: none; display: flex; flex-direction: row; flex-wrap:wrap; justify-content:space-between; position: relative;   }
    .why-box ul li{ width: calc(49% - 15px);  }
   .why-box ul li:nth-child(1){ border-right: 1px solid #dadada;}
 
    .why-box ul li h6{ font-family: var(--font-family-1); font-size:45px; font-weight: 700; color: var(--white-color); letter-spacing: 0.30px; line-height: normal; margin: 0; padding: 0;}
    .why-box ul li span{ font-family: var(--font-family-1); font-size:30px; font-weight: 200; color: var(--white-color); letter-spacing: 0.30px; line-height: normal;}

    .why-box ul li  p {
    font-family: var(--font-family-2);
    font-size: 17px;
    line-height: 24px !important;
    font-weight: 400;
    color: var(--white-color);
    letter-spacing: 0.30px;
    padding: 0 0 0px 0;
    margin: 0;
}


   .why-box h4 {  
    font-family: var(--font-family-1);
    font-size: 45px;
    color: var(--white-color);
    font-weight: 600;
    text-transform: inherit;
    letter-spacing: 0.50px;
    text-align: left;
    position: relative;
    margin: 15px 0;
    line-height: 1.1;
}

  .why-box h4 b{ color: var(--color1);}


         @media only screen and (max-width:680px) {

          .why-box{padding: 15px;}
           .why-box h2 {
             font-size: 45px;
             text-align: left;
           }
    
    
           .why-box ul li {
             width: calc(100% - 15px);
             padding: 15px 0;
           }
    
           .why-box ul li:nth-child(1) {
             border-bottom: 1px solid #dadada;
             border-right: 0;
           }

           
          .why-box ul li h6{  font-size:30px; }

             .why-box h4 {       
                font-size:30px; 
            }
    }

 /*====================================================================*/


 .whats-section{background:var(--color2);    border-top: 0px solid #ece8e5; position: relative; margin-top: -160px;  padding-top: 80px; }



 
.whats-list {padding: 0 0 80px 0; margin: 0px 0 0 0; display: flex; flex-direction: row; flex-wrap: wrap; justify-content: center; align-items: stretch; 
   transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;  }
 
.whats-list .whats-col{   width: calc(30% - 55px); margin:20px 30px;  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; padding: 15px 25px; border: 1px solid #5d8db9;  
  border-radius: 20px; 
  /* box-shadow: 1px 0px 11px 0px rgba(0, 0, 0, 0.2);  */
}

.whats-list .whats-col a{position: relative; display: flex;flex-direction: column; }

.whats-list img{width: 50px;}

.whats-text{ padding: 0px;}


.whats-list h3{ font-family: var(--font-family-1);  font-size:24px;
    font-weight:600; color: var(--color2); margin: 12px  0;}

  .whats-list h3 span{ color: #fff;}

.whats-list p{ font-family: var(--font-family-2);  font-size: 16px;
    font-weight:400;    color: var(--white-color); letter-spacing: 0.30px;}

 

  .whats-list .circle{position: relative; bottom: 0; right: 0; padding: 0px; border-radius: 30px 0 0 0; display: flex; color: var(--color2); font-family: var(--font-family-2); font-weight: 500; }

  .whats-list .circle i{  padding:10px; border-radius: 100%; color: var(--color2); font-weight: 700; font-size: 18px; 
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;  
}
 
/* .ser-col:hover .circle i{background: var(--color3); color: #fff;} */

.whats-col:hover .circle, .whats-col:hover .circle i{color: var(--color1);}

.whats-list .whats-col:hover{
    -webkit-transform: translateY(-7px);
  -moz-transform: translateY(-7px);
  -ms-transform: translateY(-7px);
  transform: translateY(-7px); 
}
 

@media only screen and (max-width:1300px) { 
.whats-list .whats-col{width: calc(32% - 25px); margin:18px; }
}

@media only screen and (max-width:991px) { 
.whats-list .whats-col{ width: calc(48% - 25px); margin:18px; }
}

@media only screen and (max-width:580px) { 
.whats-list .whats-col{ width: calc(100% - 0px); margin:10px 0;}
}




    /*================================================================*/
  

.hex-listing{position: relative;  display: flex; flex-direction: column;  flex-wrap: wrap; justify-content: center; }

 

.hex-container { position: relative; 
/* float: left; */
  /* height: 350px;
  width: 250px; */
}

.hex-container-1 {display: flex; align-items: center; justify-content: end;
  position: relative; 
  margin-top:20px;
  margin-right: -180px; 
}

.line1{position: absolute;  border-bottom: 1px solid #ddd; width: 100px; bottom: 20px; right: 90px;  transform: rotate(40deg); }

.hex-container-2 { display: flex; align-items: center; justify-content: end;
  position: relative;  
  margin-left: -100px; 
 
}

.line2{position: absolute;  border-bottom: 1px solid #ddd; width: 180px; right: -50px; }

.hex-container-3 { display: flex; align-items: center; justify-content: end;
  position: relative; 
  margin-top:-20px;
  margin-right: -180px; 
}

.line3{position: absolute;  border-bottom: 1px solid #ddd; width: 100px; top: 10px; right:90px;  transform: rotate(-40deg); }


.hex-container-4 {display: flex; align-items: center; justify-content: start;
  position: relative; 
  margin-top:20px;
  margin-left: -180px; 
}

.line4{position: absolute;  border-bottom: 1px solid #ddd; width: 100px; bottom: 10px; left:130px;  transform: rotate(-40deg); }


.hex-container-5 { display: flex; align-items: center; justify-content: flex-start;
  position: relative;  
  margin-left: 100px; 
 
}

.line5{position: absolute;  border-bottom: 1px solid #ddd; width: 180px; right:110px; }

.hex-container-6 {display: flex; align-items: center; justify-content: end;
  position: relative; 
  margin-top:-20px;
  margin-left: -180px; 
}

.line6{position: absolute;  border-bottom: 1px solid #ddd; width: 100px; top: 20px; left:120px;  transform: rotate(40deg); }




.v-text{ text-align: center; display: flex; flex-direction: column; align-items: center;}
.v-text h6 { 
  font-family: var(--font-family-1);
  color: var(--heading-color); 
  font-size: 16px;
  font-weight: 600;  
}

.v-text h6 span{ display: block;  color: var(--color2); }

.v-text img{ width: 70px; height: 70px; padding: 0; margin: 0;}

.hexagon {
  background: #FFF;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  height: 150px;
  margin: 0 auto;
  position: relative;
  width: 86px;
  z-index: 1;    box-shadow: 1px 0px 11px 0px rgba(0, 0, 0, 0.3);
}
.hexagon:before,
.hexagon:after {
  background: #fff;
  content: "";
  height: inherit;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: inherit;
  z-index: -1;  border-left: 1px solid #ddd; border-right: 1px solid #ddd;  
}
.hexagon:before {
  transform: rotate(-60deg);
}
.hexagon:after {
  transform: rotate(60deg);
}

.hexagon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  width: 150px;
  height: 86px;
  background-color: transparent;
  transition: background-color 0.25s;
  background: #fff; border-left: 0px solid #000; border-right: 0px solid #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 60px auto; 
  z-index: 1;
   box-shadow: 1px 0px 11px 0px rgba(0, 0, 0, 0.3);
}

.hexagon:before,
.hexagon:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  transition: background-color 0.25s; 
}

.hexagon:before,
.hexagon-inside:before {
  transform: rotate(120deg);
}

.hexagon:after,
.hexagon-inside:after {
  transform: rotate(60deg);
}





@media only screen and (max-width: 767px) {
.line1, .line2, .line3, .line4, .line5, .line6 { display: none;}


.hex-listing{position: relative;  display: flex; flex-direction: row;  flex-wrap: wrap; justify-content:space-between; }

.hex-container-1, .hex-container-2, .hex-container-3, .hex-container-4, .hex-container-5, .hex-container-6{display: flex; align-items: center; justify-content: end;
  position: relative; 
  margin:0;
  
}


}

 

@media only screen and (max-width: 480px) {
 .hex-listing{position: relative;  display: flex; flex-direction: row;  flex-wrap: wrap; justify-content:center; }

.hex-container-1, .hex-container-2, .hex-container-3, .hex-container-4, .hex-container-5, .hex-container-6{display: flex; align-items: center; justify-content: end;
  position: relative; 
  margin:15px;
  
}

.hexagon {   margin: 30px auto;}

 
}

/*============================
==============  Home page & listing page============
=====================================================*/

.products-section{background: #EBEFF3;  margin: 0; border-top: 0px solid #ece8e5;}
 
.products-list{   margin: 10px 0 0 0; display: flex; flex-direction: row; flex-wrap:wrap; justify-content: space-between; }

.products-box{  position: relative; /*width: calc(25% - 0px);*/ border-radius: 15px; text-align: center; 
  background: #fff; padding:10px;   margin:12px 10px;
   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.08);
    
    border: 0px solid #ddd;
  }

  .products-box1{width: calc(33% - 20px) !important; margin-bottom: 30px;} 

  .products-box 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;  }

.products-box figure {text-decoration: none; display: block; padding:0px; display: flex; flex-direction: row; flex-wrap: nowrap; justify-content: space-between; align-items: center;}

.products-thumb-b {  padding: 0px;
 
  /* overflow: hidden; */
  position: relative; text-align: center !important; 
  display: flex; flex-direction: row; flex-wrap: nowrap; justify-content: center;
}

.products-thumb-b img{width:100%!important; border-radius: 10px; }

.products-thumb-b:after {
  content: "";
  width: 100%;
  height: 100%;
  /* background: rgb(0, 13, 189, 0.2); */
  /* background: linear-gradient(180deg, rgba(255, 255, 255,0.1) 0%, rgba(0, 0, 0, 99) 100%); */
  position: absolute;
  left: 0;
  top: 0;
}


.products-animate {
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.products-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);
}




.img-overlay {
  /* position: absolute; */
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  /* overflow: hidden; */
  width: 100%;
  /* height: 0; */
  transition: .5s ease;
}

/*.products-box:hover .img-overlay {
  height:20%;
} */

/* 
.products-box a:hover .products-content{-webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);   transition: all 0.5s;} */



.products-content { font-family: var(--font-family-1);
  text-align: left;  
  position: relative; 
    width: 100%;
   /* position: absolute; */
   bottom: 0; padding: 5px 5px ;
  /* top: 50%;
  left: 50%; */
  /* -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); */
transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;

  /* -webkit-transition: .4s ease-in-out;
    -o-transition: .4s ease-in-out;
    transition: .4s ease-in-out;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%); */
  
   
}
 
.products-content .icon {
  /* width: 70px;
  height: 70px; */
  background: var(--color2);
  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: 0px;
  top: -30px;
  z-index: 2;
  transition: all .4s ease-out 0s;
}
.products-content .icon span{position: relative;}

.products-content .icon img {
  width: 40px !important;
  height: 40px !important;}

 
 
.products-content h6{ font-family: var(--font-family-1);transition: all 0.5s;
  font-size: 22px; 
  font-weight:600;
  color: var(--heading-color);
  letter-spacing: -0.10px;
  padding:15px 0 0 0px; margin-bottom: 1px;
}

.products-content h6 small{ font-size: 19px;  color: var(--color1);}

.products-content h6 span{  background: var(--gradient-bk1); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;}

.products-content  p{ font-family: var(--font-family-1);
    font-size: 14px;
    line-height: 24px !important;
    font-weight: 400;
    color: var(--text-color);
    letter-spacing: -0.10px;
    padding: 0 0px; margin-bottom: 10px;transition: all 0.5s;
}

.products-content h5{ display: flex;  font-family: var(--font-family-2);}
.products-content h5 span{ 
      font-size: 15px;
    line-height: 24px !important;
    font-weight: 500;
    color: var(--text-color); margin-right: 15px;}
.products-content h5 span i{ color: var(--color3); padding-right:5px;}

 

 
.products-content  .know-more-btn { display: inline-flex; align-items: center;
  background:var(--color2);
  padding: 5px 10px;
  font-family: var(--font-family-1);
  color:var(--white-color);
  font-size: 15px;
  font-weight:600;
  letter-spacing: 0.50px;
  border: 0px solid #d1d1d1;
  border-radius: 8px;
  margin: 10px 0 0 0;
  /* display: inline-block; */
  text-transform: inherit;
  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;
}

.products-content .know-more-btn i{ color: var(--white-color); font-size: 16px; padding: 0  0 0 10px;}
  

 .products-box:hover  .know-more-btn {
  background:var(--color3);
  color:var(--white-color);
  padding-left:10px;    
}

 .products-box:hover h1 {
   color:var(--color1); 
}

 
.products-content .know-more-btn a:hover {  
  color:var(--color2); 
} 

.products-box:hover {   border: 0px;  box-shadow: 1px 1px 7px 4px rgba(0, 0, 0, 0.09);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);   
}

 
/* .projects-box:hover span{color: var(--color2);} */


#products-list .owl-nav {   
  display: flex;
  justify-content: space-between;
  margin-top: 0px;
  position: absolute;
  left: 0;
  right: 0px;
  top:40%; z-index:1;
}

#products-list .owl-prev, #products-list .owl-next{ 
  display: flex; align-items: center; justify-content: center; text-align: center;
  background: var(--color1);
  padding: 0px;
  margin: 2px 5px;
  position: relative;
  border: 1px solid #ddd;
  width: 50px;
  height: 50px; 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;
}

#products-list .owl-prev{left: -50px;}
#products-list .owl-next{ right: -50px;}

#products-list .owl-prev:hover, #products-list .owl-next:hover{background: var(--color3); color: #fff;}
 

#products-list .owl-dots{ display: none;}

@media only screen and (max-width: 768px) {
  #products-list .owl-nav {   display: none;}

  .products-box1{width: calc(50% - 20px) !important; margin-bottom: 30px;}
  .products-box{ min-height: auto;}

}

@media only screen and (max-width: 500px) {
  .products-list{   margin: 20px 0 0 0; display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-between;  }

  /* .products-box{   width: calc(100% - 0px); margin:0 0 10px 0;   padding: 0px;  
    } */

      .products-box1{width: calc(100% - 0px) !important; margin-bottom: 30px;}

   
}

@media only screen and (max-width: 430px) {
  .products-list{   margin: 20px 0 0 0; display: flex; flex-direction: column; flex-wrap: wrap; justify-content: space-between;  }

  /* .products-box{  width: calc(100% - 0px); margin:0 0 10px 0;   padding: 0px;  
    } */

    .products-box1{width: calc(100% - 0px) !important; margin-bottom: 30px;}
}

 

/*=================================================================*/
    


/*=================================highlights-list home page======================================*/
 
.workshops-section{ 
  background: #e0ebdd;
  position: relative;
  /* overflow: hidden; */   
  padding:60px 0; margin: 0px 0 0 0;
}

 
 
.highlights-list{   margin: 10px 0 0 0 !important; display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-between; }

.highlights-box{  position: relative; /*width: calc(25% - 0px);*/ border-radius: 0px; text-align: center; background: #fff; margin:5px !important;   padding: 0px !important;
   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.08); */
    /* min-height: 420px; */
  }

.highlights-box1{width: calc(33% - 20px) !important; margin-bottom: 40px !important;  border-radius: 10px; box-shadow: 1px 0px 11px 0px rgba(0, 0, 0, 0.2);} 

.highlights-box a {text-decoration: none;   padding:0px; margin: 0px; 
  display: flex; flex-direction: column; flex-wrap: nowrap; justify-content: space-between; }

.highlights-thumb-b {  padding: 0px;
  border-radius: 0px 0px 0 0;
  /* overflow: hidden; */
  position: relative; text-align: center !important; 
  display: flex; flex-direction: row; flex-wrap: nowrap; justify-content: center;
}

.highlights-thumb-b img{width:100%!important;  }

.highlights-animate {
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.highlights-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);
}

.img-overlay-1 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  /* background-color: #fff; */
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.0) 40%, rgba(0, 0, 0, 99) 80%);
  opacity: 0.9;
  /* overflow: hidden; */
  width: 100%;
  /* height: 0; */
  transition: .5s ease;
}

/* .highlights-box:hover .img-overlay1 {
  height:100%;
} */


.highlights-content {
  padding: 10px;
  position: relative;
   text-align: left !important;  
    width: 100%;
   /* position: absolute; */
  /* top: 80%; */
  bottom: 0;
  left: 0%;
  /* -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); */
   
}
 
.highlights-content .icon {
  /* width: 70px;
  height: 70px; */
  background: var(--color2);
  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: 0px;
  top: -30px;
  z-index: 2;
  transition: all .4s ease-out 0s;
}
.highlights-content .icon span{position: relative;}

.highlights-content .icon img {
  width: 40px !important;
  height: 40px !important;}

 
 
.highlights-content h1{ font-family: var(--font-family-1);
  font-size: 22px; 
  font-weight:600;
  color: var(--heading-color);
  letter-spacing: -0.10px;
  padding:1px 0 0 0px; margin-bottom: 1px;
}
.highlights-content p{ font-family: var(--font-family-1);
    font-size: 13px;   
    font-weight: 400;
    color: var(--text-color);
    letter-spacing: -0.10px;
    padding: 0 0px; margin-bottom:10px;
}


.highlights-content h5{ display: flex;  font-family: var(--font-family-2);}
.highlights-content h5 span{ 
      font-size: 15px;
    line-height: 24px !important;
    font-weight: 700;
    color: var(--color2); margin-right: 15px;}
.highlights-content h5 span i{ color: var(--color3); padding-right:5px;}

.highlights-content h6 { display: flex; align-items: center;}
.highlights-content h6 span{  font-family: var(--font-family-2);
    font-size: 13px;
    line-height: 24px !important;
    font-weight: 700;
    color: var(--color2); margin-right:5px;}
    .highlights-content h6 i{ font-size: 10px; color: var(--color1);}

  .highlights-content .price{font-family: var(--font-family-1);
  font-size: 22px; 
  font-weight:600;
  color: var(--color1)} 
 
.highlights-content .know-more-btn { 
  background:var(--color2);
  padding: 8px 10px;  
  border-radius: 8px;
  margin: 0px 0 0 0;
  display: flex;   align-items: center;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s; 
}

.highlights-content .know-more-btn  a{ 
  font-family: var(--font-family-1);
  color:var(--color1); 
  font-size: 15px;
  font-weight:600;
  text-transform: initial !important;
  text-decoration: none;
  display: flex; align-items: center;  
}


.highlights-content .know-more-btn i{padding:5px !important;   display: inline-flex; border-radius: 100%; border:0px; margin-left: 5px; color: #fff;}

 
   
 
.highlights-box:hover{ 
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px); 
}

.highlights-box:hover h1{color: var(--color1);}

.highlights-box:hover .know-more-btn{ background: var(--color3);}
 

  
@media only screen and (max-width: 767px) {
  .highlights-box1{width: calc(50% - 20px) !important; margin-bottom: 40px !important;  } 
}


@media only screen and (max-width: 500px) {
  .highlights-list{   margin: 20px 0 0 0; display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-between;  }

  .highlights-box{   width: calc(100% - 0px); margin:0 0 10px 0;   padding: 0px;  
    }

    .highlights-box1{width: calc(100% - 0px) !important; margin-bottom: 40px !important;  } 
}

@media only screen and (max-width: 430px) {
  .highlights-list{   margin: 20px 0 0 0; display: flex; flex-direction: column; flex-wrap: wrap; justify-content: space-between;  }

  .highlights-box{  width: calc(100% - 0px); margin:0 0 10px 0 !important;   padding: 0px;  
    }

    .highlights-box1{width: calc(100% - 0px) !important; margin-bottom: 40px !important;  } 
}


#highlights-list .owl-nav { 
  display: flex !important;
  justify-content: space-between !important;  
  position: absolute;
  bottom:40%; 
  right: 0;
}

 

#highlights-list .owl-prev, #highlights-list .owl-next{ 
  display: flex; align-items: center; justify-content: center; text-align: center;
  background:var(--color1);
  padding: 0px;
  margin: 2px 3px;
  position: relative;
  border: 0px solid #ddd;
  width: 45px;
  height: 45px; color:var(--white-color);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;
}

#highlights-list .owl-prev:hover, #highlights-list .owl-next:hover{background: var(--color3); color: #fff;}

#highlights-list .owl-dots{ display: none;}



/*===========================key home page============================================*/
    
.key-highlist-list { margin: 20px 0 0 0; display: flex; flex-direction: column; position: relative;}
 

.key-highlist-list ul{ padding: 0 0px; list-style: none; display: flex; flex-direction: row;  justify-content: space-between; z-index: 10; }

.key-highlist-list ul li { width:calc(23.33% -10px); margin: 0 10px;}
.key-highlist-list ul li img{  width: 100%;}
 

@media only screen and (max-width:500px) {  
.key-highlist-list ul{ flex-direction: column;} 
.key-highlist-list ul li { width:calc(100% - 0px); margin: 0 0px; display: none;}
.key-highlist-list ul li:first-child{ display: inherit;}
}




/*=================================work-list======================================*/
 

.work-list{   margin: 20px 0 0 0; display: flex; flex-direction: row; flex-wrap: wrap; justify-content: center;  }

.work-box{  position: relative !important; 
  width: calc(100% - 2px);  
   border-radius: 0px; text-align: left; 
  background: transparent; margin:10px 0px;   padding:0 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); */  
  }
.work-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;}

.work-thumb {
  border-radius: 0px 0px 0 0;
  overflow: hidden;
  position: relative;
}

.work-overlay:after {
  content: "";
  width: 100%;
  height: 100%;
  /* background: #000; */
  /* background: linear-gradient(180deg, rgba(255, 255, 255,0.1) 0%, rgba(0, 0, 0, 99) 100%); */
  position: absolute;
  left: 0;
  top: 0;
}
  
.work-animate {
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.work-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);
}

.work-content {
  padding: 50px;
  position: absolute;  z-index: 9;
  text-align: left;
}

.work-thumb .icon {
  /* width: 70px;
  height: 70px; */
  /* background: var(--color2); */
  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; 
}
.work-thumb .icon i{font-size: 60px; }
.work-thumb .icon:hover { color: var(--color2);}

.work-content .icon img {
  width: 40px !important;
  height: 40px !important;}

  .work-content .title { font-family: var(--font-family-1); color: var(--white-color);
    font-size:36px;
    font-weight: 300; 
    margin-bottom: 1px;  margin-top: 15px;
}
.work-content .title span{display: block; font-weight: 200; }

.work-box p{ font-family: var(--font-family-1);
    font-size: 13px;
    line-height: 24px !important;
    font-weight: 600;
    color: var(--text-color);
    letter-spacing:-0.20px;
    padding: 0 0px; margin-bottom: 10px;
}
 
  
.work-counter{   text-align: right;  margin-top: -75px; margin-right: 20px;  
  font-size: 17px; font-family: var(--font-family-2); font-weight: 600; color: var(--text-color);}



  
.work-content .know-more-btn {
  background:#fff;
  padding: 15px 20px;
  font-family: var(--font-family-1);
  color:var(--color2);
  font-size: 15px;
  font-weight:500;
  border-radius: 8px;
  margin: 20px 0 0 0;
  display: inline-block;
  text-transform: lowercase;
  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;
}

.work-content .know-more-btn i{padding: 0 10px;}

.work-content .know-more-btn:hover {
  background:var(--color1);
  color:var(--white-color);
  padding-left:30px;
   
}



@media only screen and (max-width: 767px) {
    
    .work-box{  margin:0px 0px;  
     }
 

     #work-list .owl-nav { 
      display: flex;
      justify-content: center !important;  
      position: relative;
       bottom:0px !important;
       margin-top: 30px;
     
    } 
   
}

@media only screen and (max-width:480px) {
  .work-content {
    padding: 10px;
   }

  .work-content .title {   margin: 0;
    font-size:24px; 
}
  
.work-content .know-more-btn {
  background:#fff;
  padding: 7px 15px;
   
}
}


#work-list .owl-dots{display: none;}

#work-list .owl-nav { 
  display: none;
  justify-content: space-between;  
  position: relative;
 bottom:200px;
 
}

 

#work-list .owl-prev, #work-list .owl-next{ 
  display: flex; align-items: center; justify-content: center; text-align: center;
  background:#fff;
  padding: 0px;
  margin: 2px 5px;
  position: relative;
  border: 0px solid #ddd;
  width: 50px;
  height: 50px; color:var(--color1);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;
}

#work-list .owl-prev:hover, #work-list .owl-next:hover{background: var(--color2); color: #fff;}

/*=====================================================================*/
 

 
 /*=======================================================================*/

.project-details{ margin: 0; font-family: var(--font-family-1); }

.project-details h1 {
    font-family: var(--font-family-1);
    font-size: 26px;
    color: var(--heading-color);
    font-weight: 600;
    text-transform: inherit;
    text-align: left;
    position: relative;
    margin: 0 0 0px 0;
    line-height: 1.2; border-bottom: 1px solid #ddd; padding: 4px  0 10px 0;
}

 

.project-details h4{ font-size: 22px; font-weight:700; color:var(--color3); margin: 15px 0 0 0;   padding:0px 0; }
.project-details h4 span{border-bottom: 4px solid var(--color3);  padding:0px 0;}

.project-border{border: 1px solid #ddd; border-radius: 10px; padding: 20px;}

.course-details{border: 1px solid #ddd; border-radius: 10px; padding: 15px; font-family: var(--font-family-2);}
.course-details h5{ display: flex; align-items: center; border-bottom: 1px solid #ddd; padding: 5px 0;}
.course-details h5 i{font-size: 16px; color: var(--color3); margin-right: 5px;}
.course-details h5 span{font-size: 13px; color: var(--text-color);}
.course-details h5 small{ font-size: 14px; font-weight: 700; color: var(--text-color);}
.course-details h6{font-size: 26px; color: var(--color1); font-weight: 800;}
.course-details h2{font-size: 12px; color: var(--white-color); font-weight: 500; background: var(--color1); padding: 5px; border-radius: 20px; text-align: center;}

.course-details .know-more-btn{ display: block; text-align: center; font-size: 16px; font-weight: 700; margin-top: 20px;}

@media only screen and (max-width:767px) {

  .course-details{margin-top: 20px;}

}
 

  
/*=======================================================================*/

  

/*---------------------------------------------------*/

.project-gallery-box {
  /* background: #fff; */
  margin:20px 0 0 0;
  /* margin-left: -15px;
  margin-right: -15px; */
  padding: 0px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between; 
}

.project-gallery-box li {
  width: calc(49% - 10px);
  /* min-height:380px;*/
  position: relative;
  /* padding-right: 10px;
  padding-left: 10px; */
  vertical-align: middle;
  overflow: hidden !important;
  border: 0px solid #ddd;
  margin-bottom:40px;
}

.project-gallery-box li figure {
  cursor: pointer;
  display: block;
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-position: 50%;
  background-size: cover;
  height: 340px; margin: 0;
}

.project-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;
}

.project-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: 1080px) {
  .project-gallery-box li figure {
      height:300px;
  }
}

@media screen and (max-width: 1024px) {
  .project-gallery-box li figure {
      height:240px;
  }
}



@media screen and (max-width: 768px) {
  
  .project-gallery-box li figure {
      height:200px;
  }
}

@media screen and (max-width: 600px) {

  .project-gallery-box li { 
  margin-bottom:30px;
}

  .project-gallery-box li figure {
      height:180px;
  }
}

@media screen and (max-width: 460px) { 
  .project-gallery-box li figure {
      height: 120px;
  }
}

@media screen and (max-width: 380px) { 
    .project-gallery-box li { 
  margin-bottom:25px;
}
  .project-gallery-box li figure {
      height: 100px;
  }
}


.back-btn{ display: flex; justify-content: center; text-align: center;}
.back-btn a{ display:flex; justify-content: center; align-items: center; background: #EBECEC; width: 50px; height: 50px; border-radius: 50px;  }
.back-btn a i{color: var(--color1);}
.back-btn a:hover{background:var(--color2); color: #fff;}
.back-btn a:hover i{ color: #fff;}

.back-btn-1{ display: flex; justify-content: end; text-align: center;}
.back-btn-1 a{ display:flex; justify-content: center; align-items: center;  }
.back-btn-1 a span{font-size: 12px; font-weight: 600; padding: 0 5px; color: var(--color2); text-transform: uppercase;}
.back-btn-1 a i{color: var(--color2);}
.back-btn-1 a:hover span, .back-btn-1 a:hover i { color:var(--color1);}

@media screen and (max-width: 768px) {
  .back-btn-1{display: none;}
}

/*=======================================================================*/

/*=======================================================================*/

 

.gallery-listing{ display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-between;}
.gallery-listing .gallery-lg-box{  width: calc(50% - 15px); margin-bottom: 30px;  position: relative; 
  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-lg-box a{ text-decoration: none; color:initial;  
    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-listing a:nth-child(1){display:initial !important;} */

.gallery-thumb{
  margin: 0;  position: relative; overflow: hidden; background-position: 50%;  
  background-size: cover;  height: 340px; margin: 0;
 }

.gallery-thumb:after {content: "";  width: 100%;  height: 100%;  
  /* background:#000;   */
  /* background: linear-gradient(180deg, rgba(255, 255, 255,0.1) 0%, rgba(0, 0, 0, 99) 100%);   */
  position: absolute;  left: 0;  top: 0;}
  
.gallery-thumb 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-name{position: relative; bottom: 0; padding: 20px 0px ; font-family: var(--font-family-1); z-index: 9; 
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s; text-align: center;  }
.gallery-name h4{ font-size: 20px; font-weight:600; color: var(--text-color) !important; margin: 0;}
.gallery-name h4 small{ display: block; font-size: 14px; font-weight: 400; color: var(--text-color) ; margin: 0; letter-spacing: 1px; padding: 5px 0;}
.gallery-name i{ display: block; font-size: 16px; font-weight: 300; color: var(--text-color) ; margin: 0; }

.gallery-lg-box:hover{  -webkit-transform: translateY(-6px);
  -moz-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);}


@media only screen and (max-width:991px) {
  .gallery-thumb{
    background-position: 50%;
    background-size: cover;
    height: 240px;
    margin: 0;}
}

@media only screen and (max-width:768px) {
  .gallery-thumb{
    background-position: 50%;
    background-size: cover;
    height: 200px;
    margin: 0;}
}
    

@media only screen and (max-width: 680px) {
  .gallery-name{padding: 10px ; }
  .gallery-name h4{ font-size: 20px; }
  .gallery-name h4 small{ font-size: 15px;}
  .gallery-name i{font-size: 15px; }

  .gallery-thumb{
    background-position: 50%;
    background-size: cover;
    height:170px;
    margin: 0;}

}

@media only screen and (max-width: 480px) {
.gallery-listing{ display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-between;}
.gallery-listing .gallery-lg-box{ text-decoration: none; color:initial; width: calc(100% - 0px); margin-bottom:20px;  }

.gallery-thumb{
  background-position: 50%;
  background-size: cover;
  height:270px;
  margin: 0;}

}

@media only screen and (max-width: 400px) {
 .gallery-thumb{
    background-position: 50%;
    background-size: cover;
    height:220px;
    margin: 0;}
  
  }

  @media only screen and (max-width: 340px) {
    .gallery-thumb{
       background-position: 50%;
       background-size: cover;
       height:180px;
       margin: 0;}
     
     }


 
 
/*==========================================================*/

/*=======================================================================*/


    @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;
        }
    }
 

    .nav-tabs{position: relative; margin-bottom: 10px;}

    .nav-tabs .nav-link{border: 0px;
      font-family: var(--font-family-1);
      color: var(--color2); font-size: 18px; font-weight:600; padding: 10px 20px;
      }

    .nav .nav-item button.active { position: relative;
      background-color: transparent;
      color: var(--color1) !important;
    }
    .nav .nav-item button.active::after {
      content: "";
      border-bottom: 5px solid var(--color1);
      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-1);
      color: var(--color2); font-size: 18px; font-weight:600; padding: 15px 5px;}

      .accordion-button:hover{ color: var(--color1);}

      .accordion-body{padding: 10px;}
      
      .accordion-button:not(.collapsed) {
        color: var(--color1);
        background-color: transparent;
        box-shadow: inset 0 calc(-1* var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
        border-bottom: 4px solid var(--color1);
    }

/*=======================================================================*/ 
  
 

/*---------------------------------------------------*/
 
.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;
}

.gallery-box li {
  width: calc(32.33% - 10px);
  /* min-height:380px;*/
  position: relative;
  margin-right: 10px;
  margin-left: 10px;
  vertical-align: middle;
  overflow: hidden !important;
  border:1px solid #eeeeee; padding: 10px; border-radius: 4px;
  margin-bottom: 20px; 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;  
  box-shadow: 1px 0px 11px 0px rgba(0, 0, 0, 0.08);
  background: #fff;
}


.gallery-box li h6{ margin-bottom: 10px; padding: 10px 0 0 0; font-family: var(--font-family-2); font-size: 23px; color: var(--heading-color); font-weight: 600;}

.gallery-box li h4{ margin-bottom: 10px; padding: 12px 0 0 0; font-family: var(--font-family-2); font-size: 18px; color: var(--text-color); font-weight: 700;}


.gallery-box li p {
  font-size: 15px;
  line-height: 24px !important;
  font-weight: 400;
  color: var(--text-color);
  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: 280px;
  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;
} */

.gallery-box li figure a{display: none;}
.gallery-box li figure a:first-child{ display: initial;}

@media screen and (max-width: 1024px) {
  /* .gallery-box li figure {
        text-align: center;
        width: 280px !important;
        height: 200px !important;
    } */

    .gallery-box li {
      width: calc(31.33% - 10px);       
      position: relative;
      margin-right: 10px;
       
    }
    
  .gallery-box li figure {
    height: 220px;
  }


}

@media screen and (max-width: 768px) {
  .gallery-box {
    margin: 20px 0;
    padding: 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .gallery-box li {
    width: calc(48.33% - 10px);     
    position: relative;
    margin-right: 10px;
    margin-left: 10px;
     
  }

  .gallery-box li figure {
    height: 240px;
  }
}

@media screen and (max-width: 620px) {
  .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: 530px) {
  .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: 280px;
  }

  .gallery-box li h6{ font-size: 18px;}
}
 
 
  /*===============================================*/
 
/*===================================================================*/


.blog-section{   
  position: relative;
  overflow: hidden;
  background:transparent;  padding: 0px 0 0px 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(48.33% - 15px); margin-bottom: 20px;}

.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: 10px;
  overflow: hidden;
  position: relative;
}
.blog-thumb img{ width: 100%;}
.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(--color3);
  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  a{text-decoration: none; color: inherit;}

  .blog-content h4 { font-family: var(--font-family-1); color: var(--heading-color);
    font-size: 20px;
    font-weight: 600;
    margin: 0px 0;
}

.blog-box:hover  h4{
  color: var(--color3);
}
 
.blog-box p{font-family: var(--font-family-1); color: var(--text-color); font-size: 13px; font-weight:400; line-height: 24px; margin: 0; padding: 0; }

.blog-content .know-more-btn { margin-bottom: 10px !important;}

.blog-content .know-more-btn { display: none;
    background:transparent;
    padding: 13px 0px;
    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(--color2);
    padding-left:30px;
    color: #fff;     
  } 

  
 

 

.blog-box:hover { display: block; /*background:var(--color2);*/
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);   
}

.blog-box:hover span{color: var(--color2);}

@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) { 
 }



 

/*====================================================================*/


.wel-bx{position: relative; text-align: right;}


.wel-bx h3{ font-family: var(--font-family-1); display: flex; align-items: center; justify-content:flex-end; text-align: left; background: #fff; padding: 10px 20px; margin-top: -30px; position: absolute; right: 0;   border-radius:30px 0 0 0 ;  z-index: 10;}
.wel-bx h3 span{ font-weight: 700; font-size: 60px; color: var(--color2);}
.wel-bx h3 small{ font-weight: 700; font-size:24px; color: var(--color2); padding: 0 15px;}

.welimg1 { 
  width:100%;
  border-radius: 20px;
  padding: 0px;
  position: relative;
  box-shadow: 0px 10px 30px 0px rgb(0 0 0 / 10%);
}

.welimg2 {
  width: 230px; height:260px;
  border-radius: 20px;
  padding: 0px;
  position: absolute;
  left: 50px;
  top: 230px;
  z-index: 1; border: 0px solid #fff;
}

.welimg3 {
    height: 160px;
    float: left;
    margin: 0 25px 25px 0;
    border: 2px solid #f7f7f7;
    padding: 4px;
}

@media only screen and (max-width:768px) {
  .wel-bx h3{ width: 100%;}
}

@media only screen and (max-width: 575px) {
  .welimg2 {
    max-width: 100%;
    border-radius: 0px 0px 50px 0px;
    padding: 0px;
    position: absolute;
    right: 0px;
    top: 150px;
    z-index: 1;
  }
}

@media only screen and (max-width: 580px) {
  .welimg2 {
    display: none;
  }
  .welimg1 {
    width: 100%;
  }
}



 
.about-section{background: #F5F3F3;}
 

 
.about-left{
  position: relative;
  margin-right: 40px;
}

.about-left::before{
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  border-radius: 200px;
  border: 10px solid var(--color3);
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.about-img img{
  border-radius: 200px; width: 100%;
}

.about-img .img-2{
  margin-top: 70px;
}

 
 
 
@media all and (max-width: 991px) {
  .about-right {
    margin-top: 80px;
  }
}

@media all and (max-width: 767px) {
  .about-left{
    margin-right: 0;
  }
 

  .about-img .img-2{
    margin-top: 60px;
    /* margin-left: -10px; */
  }
 
}



  .about-img{position: relative; }
  /* .about-img:before {
    background: var(--color3);
    background-repeat: no-repeat;
    background-position: center left;
    background-size: cover;
    position: absolute;
    width: 90.85416666666667%;
    height: 70%;
    content: '';
    left: -20%;
    bottom: -60px; border-radius: 0  0  0 60px ;  
    
} */

 
  .about-img .img1{ position: relative; margin-right: -50px;}

  .about-img .img2{  border-radius:100%; border: 6px solid #fff; box-shadow: 1px 0px 11px 0px rgba(0, 0, 0, 0.3);}
 
  .about-text{ background: var(--gradient-bk4); padding: 40px; border-radius: 15px; z-index: 999; position: relative;}
 

  @media only screen and (max-width:767px) {  
    .pd-top{ margin-top: 0px; }    

  .about-img .img1{   position: relative;   margin-right: 0px;}
  }


  @media only screen and (max-width:580px) {
    .about-text h1 span {font-size: 180px;}
    .about-text h1 small {font-size: 20px;  margin-top: -20px; }
  .about-text h3  {   font-size: 30px; font-weight:600; }
    }


 /*==========================================================*/

 .journey-section{ 
  background: var(--color2);
  position: relative;
  /* overflow: hidden; */   
  padding:50px 0; margin: 0px 0 0 0;
}

.journey-row{ display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-between; margin: 10px 0;}
.journey-box{ width: calc(49% - 10px); padding: 10px; position: relative;}

.journey-box h6{ display: flex; align-items: start; align-items: center;}
.journey-box h6 img{ width: 60px; border-radius: 10px; border: 1px solid #ddd;}
.journey-box span{ padding-left: 15px; font-family: var(--font-family-1); font-size: 28px; font-weight: 700; color: var(--color2);}
.journey-box  small{ display: block; font-size: 15px; font-weight: 400; color: var(--color1);}
.journey-box p {font-family: var(--font-family-2);
    font-size: 17px;
    line-height: 24px !important;
    font-weight: 500;
    color: var(--text-color);
    letter-spacing: 0.30px;
    padding: 0 0px;
}

.journey-img{position: relative; margin-top: -100px;}

@media only screen and (max-width:600px) { 
 .journey-box{ width: calc(100% - 10px); padding: 10px; }

 .journey-img{position: relative; margin-top: 0px;}

 
}
 

 /*==========================================================*/



  .Process-list {padding: 0px; margin-top: 0px; list-style: none; display: flex; flex-direction: row; flex-wrap:wrap; justify-content: center;}
  .Process-list li{ width: calc(33% - 20px); text-align: center; border: 1px solid #e8e8e8; border-radius: 8px; padding: 20px; margin-bottom: 20px; margin-right: 10px; margin-left:10px;}
  .Process-list li h4{font-size: 40px; font-weight: 700; color: var(--color2); padding: 0px;}
   .Process-list li h5{font-size: 30px; font-weight: 500; color: var(--color1); padding: 0px;}
     .Process-list li p {
    font-size: 17px;
    line-height: 24px !important;
    font-weight: 400;
    color: var(--text-color);
    letter-spacing: 0.50px;
    padding: 0 0px;}
  
  @media only screen and (max-width:600px) { 
  .Process-list li{ width: calc(100% - 10px); padding: 10px; }
    }


 


    
     
 

    
.solutions-bx { font-family: var(--font-family-2);
  display: flex; flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0px 0;
}

.solutions-bx aside { display: flex; flex-direction: row;
  flex-wrap: nowrap; align-items: start; padding: 15px 0; width: calc(49% - 15px);
} 

.solutions-bx p { font-family: var(--font-family-2);
font-size: 16px;
    line-height: 24px !important;
    font-weight:400;
    color: var(--text-color);
    letter-spacing: 0.30px;
  padding: 0 0 0px 0; margin: 0;
}

.solutions-bx h3 {
  font-family: var(--font-family-1);
  font-size: 22px !important;
  font-weight: 700 !important;
  color: var(--color2) !important;
  padding: 1px 0 0 0;
  margin: 0 !important;
}

.solutions-bx h3 span {
  display: block;
  padding: 10px 0;
  font-size: 55px !important;
  font-weight: 600 !important;
}

 

.solutions-bx .col1{background: var(--color1); border-radius: 6px;
  width:40px; height:40px;    margin-right: 10px; display: flex; justify-content: center; align-items: center;}
.solutions-bx img { width: 35px;   }

@media only screen and (max-width: 992px) {
  .solutions-bx aside {   
    width: calc(100%);
  }
}

 

@media only screen and (max-width:767px) {
   .solutions-bx aside { width: calc(100%);
    display: flex;
    flex-direction: column; justify-content: center; align-items: center;
    flex-wrap: nowrap; text-align: center; padding: 20px; border: 1px solid #e9e9e9; border-radius: 12px; 
    margin: 10px 0;
  
}
  
}


/*=================================================================*/

  
.cases-bx { font-family: var(--font-family-2);
  display: flex; flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0px 0;
}

.cases-bx aside { display: flex; flex-direction: row;
  flex-wrap: nowrap; align-items: start; padding: 10px 0; width: 100%;
} 

.cases-bx p { font-family: var(--font-family-2);
font-size: 16px;
    line-height: 24px !important;
    font-weight:400;
    color: var(--text-color);
    letter-spacing: 0.30px;
  padding: 0 0 0px 0; margin: 0;
}

.cases-bx h3 {
  font-family: var(--font-family-1);
  font-size: 45px !important;
  font-weight: 700 !important;
  color: var(--color2) !important;
  padding: 1px 0 0 0;
  margin: 0 !important;
}

.cases-bx h3 span { color: var(--heading-color);
  display: block;
  padding: 0px 0;
  font-size: 30px !important;
  font-weight:300 !important;
}

@media only screen and (max-width:767px) {
  .cases-bx h3 { 
  font-size:24px !important; 
}

.cases-bx h3 span {  
  font-size: 20px !important;  font-weight:400 !important;
}
}


/*===================================================================*/

.timeline-bk{
   background: url(../../images/timeline-bk.jpg) #fff;
  background-position: top center;
  background-repeat: no-repeat;
  background-size:cover;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
   padding: 60px 0; 
}

 .timeline-row{ display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-between; margin: 40px 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; min-height: 200px;  display: line; 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(--heading-color);}
.time-text p{font-family: var(--font-family-2); font-size: 15px; font-weight: 500; color: var(--text-color);}

.time-dots{ width: 40px; height: 40px; background: var(--color1); 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(--color1); 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(--color2);
  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(--color2); 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;   } */
    
}

/***===========================================================================*/
 
.milestones-list{ margin: 0px;}
.milestones-list ul{list-style: none; padding: 0; display: flex; flex-direction: row; flex-wrap: wrap; }
.milestones-list ul li{ width: calc(31.33% - 10px); padding: 10px; margin-right: 30px; margin-bottom: 20px; border-left: 4px solid var(--color1); border-radius: 20px; background: #fff;  box-shadow: 1px 3px 11px 1px rgba(0, 0, 0, 0.15); font-family: var(--font-family-2); font-size: 19px; font-weight: 500; color: var(--text-color); min-height:120px; display: flex; align-items: center;}


@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: 4px solid var(--color1); 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-color);
  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-color);
  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(--color2);
  padding: 6px 12px;
  color: var(--text-color);
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  margin-top: 5px;
}

.btn-pr:hover {
  background: var(--color1);
  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;}*/
}

/*------------------------------------------------------*/

/*=================================================================*/

.content-area {
  position: relative;
  /* background: #fff; */
  border-radius: 0px;
  padding: 0 0;
  margin: 0px 0;
}

@media only screen and (max-width: 600px) {
  .content-area {
    position: relative;
    border-radius: 0px;
    padding: 0 0.5rem;
    margin: 0px 0;
  }
}

.content-text {
  font-family: var(--font-family-2);
  text-align: left; 
}

.content-text p { 
  font-size: 16px;
  line-height: 24px !important;
  font-weight:400;
  color: var(--text-color);
  letter-spacing: 0.30px;
  padding: 0 0px;
}

.content-text p span {
  color: var(--color1) !important;
}

.content-text h3 {
  font-family: var(--font-family-1);
  color: var(--color2);
  font-size: 30px;
  font-weight: 700;
  margin: 30px 0px 10px 0;
  padding: 0px 0;
}

.content-text h3 span{ display: block; 
  font-size:16px !important; 
  font-weight:400 !important;}

 

.content-text h4 { font-family: var(--font-family-2);
  color: var(--color1);
  font-size: 36px;
  font-weight: 400;
  margin: 0px 0px 10px 0;
  padding: 0px 0;  
}

.content-text h4 span{ display:block; margin: 0; padding: 0;
}

.content-text h4 span small{ display:inline-block;  background: var(--color2);
  font-size:13px !important;  color: #000;
  font-weight:500 !important; letter-spacing:2px; padding: 3px; border-radius: 2px; text-transform: uppercase;
}


.content-text h5 { font-family: var(--font-family-2);
  color: var(--color1);
  font-size: 17px;
  font-weight:800;
  margin:15px 0;
  padding: 0px 0;
}

.content-text h6 {
  font-family: var(--font-family-1);
  color: var(--text-color);
  font-size: 20px;
  font-weight: 400;
  margin: 0px 0 10px 0;
  padding: 0px 0;
}
 

.content-text ul {
  padding: 5px 0 0 0px;
}

.content-text li {position: relative;
  /* list-style: url(../../images/list1.png); */ 
  list-style: none; 
  font-size: 15px;
  line-height: 24px !important;
  font-weight:500;
  color: var(--text-color);
  letter-spacing: 0.20px;
  padding: 4px 1px; 
  /* display: flex; */padding-left: 20px;
}


.content-text li:before {
  content: "\F26E";
  font-family: "bootstrap-icons"; font-weight: 800;
 
  /* margin-left: -1.5em; */
  color:var(--color3); 
  padding-right:5px;
  margin-right: 15px;
 
    left: 0;
    position: absolute;
    
}

.content-text li strong{ font-weight: 600;} 

.content-text li ul{ margin-left: 15px;}

.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;
  }
}
 


  

/*===========================================*/
 

/*=================================================*/
 
@media only screen and (max-width: 767px) { 
  .row-display {
    display: flex;
    flex-direction: column-reverse;
    padding: 0 0px;
  }
}

 
 /*=======================================*/
  
/* .know-more-btn {
   
  background: var(--color1);
  padding: 15px 14px;
  font-family: var(--font-family-1);
  color: #fff;
  font-size: 15px;
  font-weight:600;
  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(--color2);
  padding-left:30px;
  color: #fff;
   
} */


  .know-more-btn { display: inline-flex; align-items: center; 
  background:var(--gradient-bk1);
  padding: 10px 15px;
  font-family: var(--font-family-1);
  color:var(--white-color);
  font-size: 15px;
  font-weight:600;
  letter-spacing: 0.50px;
  border: 0px solid var(--color2);
  border-radius: 50px;
  margin: 10px 0 0 0;
  /* display: inline-block; */
  text-transform: inherit;
  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 .circle{width:32px; height: 32px; background: var(--color1); border-radius: 100%; display: flex !important; align-items: center;   justify-content: center; text-align: center; margin-left: 10px; }

 .know-more-btn i{ color: var(--white-color); font-size: 16px; font-weight: 700; padding:5px;    }
 
 .know-more-btn:hover {
  background:var(--color1);
  color:var(--white-color);
  padding-left:20px;  
}

 

/*========================================================*/


.location-section{background:#fff; box-shadow: 1px 0px 31px 0px rgba(0, 0, 0, 0.12); padding: 30px; border-radius: 20px; margin-top: 20px;}
 
.address-list{margin-top: 20px; border-left:0px solid #ddd; padding: 20px;}

.address-list p {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: start;

    font-family: var(--font-family-2);
    font-weight: 400;
    color: var(--text-color);
    font-size: 16px !important;
    text-decoration: none;
    letter-spacing: 0.30px; 
}


.address-list p i {
    font-size: 20px !important;
    color: var(--color1);
}


.address-list p span {
    padding-left: 10px;
}

.address-list p a{color: var(--text-color);}

.address-list p strong {
    display: block;
    font-weight: 700;
    color: var(--color2);
}



.address-list .btn.btn-social {
  margin-right: 9px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color:var(--white-color);
  border: 1px solid #d1d1d1;
  border-radius: 35px;
  transition: 0.3s;
  background:var(--color1);
}

.address-list .btn.btn-social:hover {
  color: var(--white-color);
  background: var(--color2);
}

.btn-outline-light:hover {
  color: #000;
  background-color: var(--color2);
  border: 0px #fff;
}
 




/*========================================================*/


 
.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: 5px 0px;
  border: 0px solid #ddd;
  border-radius: 12px;
  text-align: left; margin-bottom: 10px;
}

.contact { position: relative; background: #EBEFF3;
  padding:  10px 20px;
  font-family: var(--font-family-1);  
  margin: 0px 0 0 0px;
  z-index: 9 !important; border-radius: 10px;
}



.contact h6 { display: flex; align-items: center;
  text-align: left;
  color:var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  margin: 0px 0px 5px 0;
  padding: 0px 0; text-transform: inherit;
}

.contact h6 i {  
  font-size: 20px;
  color: var(--color1);
  padding: 0 5px;
  
}

.contact h6 span { 
  padding: 0 2px;  
}

.contact h1 {
  color:var(--heading-color);
  font-size: 40px;
  font-weight:500;
  margin: 0 0px 10px 0;
  padding: 0 0 7px 0;
}

.contact p {font-family: var(--font-family-2);  
  color: var(--text-color);
  font-size: 15px;
  font-weight: 500;
  margin: 0 0px 5px 0;
  padding: 0px 0px;
  line-height: 24px; letter-spacing: 0.30px;
}

.contact p strong {
 color: var(--color2);
  font-weight:700;
  font-size: 16px;
}

.contact p a {
  color: var(--text-color);
}

.contact .btn.btn-social { background:var(--color1);
  margin-right: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color2);
  border: 1px solid #ddd;
  border-radius: 35px;
  transition: 0.3s;
}

.contact .btn.btn-social:hover {
  color: #fff; background:var(--color3);
  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;
  }
}


 /*========================================================*/

  .form-section{
    margin: 0; padding: 15px;
    position: relative;
   background: linear-gradient(0deg,rgba(244, 159, 30, 1) -30%, rgba(3, 65, 124, 1) 100%);
    /* height: 550px; */
    }
  
  /* .form-section:after {
    content: "";
    width:42%;
    height: 100%;
    background-image: url(../../images/contact.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size:cover;  
    position: absolute;
    left: 0;
    top: 0;
  } */

  @media only screen and (max-width: 767px) {
    .form-section{
       height: auto;
      }

    .form-section:after {
      display: none;
    }
  }


.form-section h2{font-family: var(--font-family-1); font-size: 22px; color: #fff; font-weight: 700; margin-bottom: 10px;}
.form-section h2 i{font-size: 18px; background: var(--color1); padding: 5px; border-radius: 4px; }

/*==================================================================*/

.form-control {
  display: block;
  width: 100%;
  height: 40px !important;
  background: #154E86;
  padding: 2px 12px ;
  font-family:var(--font-family-2);
  font-size: 15px;
  font-weight: normal;
  letter-spacing: 0.2px;
  line-height: 1.42857143;
  color: var(--white-color);
  border: 0;
  border-bottom:0px solid #ddd;
  border-radius: 6px; 
  min-height: calc(1.5rem + calc(var(--bs-border-width) * 1)) !important;
}

.form-control1 {
  width: 100%;
  height: 32px !important;
}

.form-group {
  margin-bottom: 10px;
}

.form-group p {
  font-size: 14px;
  color: var(--white-color);
  font-weight: 500;
  margin: 10px 0;
}

.form-group h6 {
  font-size: 13px;
  color: var(--text-color);
  font-weight: 500;
  margin: 0 0 10px 0;
}

.form-floating{ background: var(--color2); border-radius: 6px;}

.form-floating > label { color: var(--white-color);
  font-size: 13px; opacity: 0.7; padding: 8px 5px;  font-family: var(--font-family-2);
}

.form-group label {
  font-size: 16px;
  color: var(--white-color);
  font-weight: 500;
  margin-bottom: 0px;
}


.form-floating>.form-control:not(:placeholder-shown)~label::after{
background-color: transparent !important; color: #fff;
}

.form-group label small {
  font-size: 16px;
  color: #f01818;
}

.form-check-label {
  font-weight: 400 !important;
  font-size: 13px !important;
  color: var(--text-color);
}

.form-select{ background-color: transparent; border: 0;
  border-bottom: 0px solid #ddd;
  border-radius: 0px; background: transparent; }

.form-floating>.form-select~label { background: transparent; color: #fff;
  font-size: 15px; opacity: 0.7;
}

textarea.form-control{ height: 60px !important;}
 

.form-floating>.form-select~label::after{background: transparent; }

.form-floating>.form-select{ font-size: 14px; font-family: var(--font-family-2);}

.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-color);
  font-weight: 500;
  padding: 10px 0;
}


.submit-link { 
  background: var(--color1);
  padding: 6px 10px;
  font-family: var(--font-family-1);
  color: #fff;
  font-size: 18px;
  font-weight:600;
  border-radius:10px;
  margin: 0px 0 0 0;
  display: block; width: 100%;
 
  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(--color2);
 
  color: #fff;
   
}
 

.btn-danger {
  color: #fff;
  background-color: var(--color2);
  border-color: var(--color2);
}

.btn-danger:hover {
  color: #fff;
  background-color: var(--color1);
  border-color: var(--color1);
}

/*---------------------------------------------------*/

.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: 700;
  color: var(--heading-color);
  text-align: left;
  vertical-align: middle;
  text-transform: uppercase;
}

.table > :not(:first-child) {
  border-top: 0px solid currentColor;
}

.table td { 
  font-size: 16px;
  color: var(--text-color) !important;
  font-weight: 400;
  text-align: left;
  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-color);
  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-2) !important;
  text-align: left !important;
  font-size: 16px !important;
 
}

.sm-table td {   font-family: var(--font-family-2) !important;
  text-align: left !important;
  font-size: 16px;
    line-height: 24px !important;
    font-weight: 400;
    color: var(--text-color);
}


 
.btn-theme-colorbtn { border: 0; border-radius: 4px;
  color: #fff;
  background-color: var(--color1);
  border-color: #2098d1; padding: 1px 6px !important; 
  display: inline-flex; align-items: center; justify-content: space-between;
}

.btn-theme-colorbtn  i{ font-size: 12px; padding-right: 2px;}
.btn-theme-colorbtn  strong{ font-size: 11px; font-weight: 500;}
 
.btn-theme-colorbtn:hover{  background-color: var(--color3);   color: #fff;}

/*--=====================================-footer---================================================--*/



.footer {
   background-image: linear-gradient(90deg, rgba(244, 159, 30, 0.6) 0%, rgba(244, 159, 30, 0.1) 50%, rgba(3, 65, 124, 0.3) 100%) ;  
  padding: 40px 0px 10px 0px;
  position: relative; 
  border-top: 1px solid #eeeeee;
  margin-top: 0px;

}

.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: 100%;
  padding: 0 0px 0 0;
}

.footer-col .ft-col-2 {
  width: 18%;
  padding: 0 0px 0 0;
}

.footer-col .ft-col-3 {
  width: 22%;
  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:600;
  color: var(--text-color);
  font-size: 20px;
  margin: 20px 0;
  text-transform: inherit;
  position: relative;
  padding-bottom: 0px;
  
}

/* .footer h4 :before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width:50px;
  height: 4px;
  border-radius: 10px;
  background:var(--color2);} */

/* .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-2);
  font-weight:500;
 color: var(--text-color);
  font-size: 15px !important;
  text-decoration: none;
  letter-spacing: 0.50px;
}

.footer p a {
color: var(--text-color);
}

.footer p a:hover {
  color:var(--color1);
}

.footer p strong {   display: block;
  font-weight: 500;
 color: var(--text-color);
}

.footer p i {   
  font-size: 17px !important;
color: var(--text-color);
}
 

.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: var(--text-color);
  font-size: 20px;
  margin: 0px;
}

.footer_links {
  padding: 0px 0 0 0;

  display: flex;
  flex-direction: column;
  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; display: flex; flex-direction: row; justify-content: center;
}

.footer_links li { display: flex; align-items: start; 
  padding: 5px 0;
  margin: 0px;
  border-bottom: 0px dashed #1d1d1d;
}

/* .footer_links li:before {  
  content: none;
  content: "\f285";
  font-family: "bootstrap-icons"; font-size: 11px; font-weight: 400;
  float: left;
 
  color: var(--text-color);
  padding-right:5px; margin-top: 3px;
} */

.footer_links li a {
  font-family: var(--font-family-1);
  font-weight:500;
 color: var(--text-color);
  font-size: 16px !important;
  text-decoration: none;
  letter-spacing: 0.1px; padding:0 20px;
}

.footer_links li a:hover {
  color: var(--color1);
  -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;
 
}

.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: 0px 0px;  
  border-bottom: 1px solid #d1d1d1; display: flex; justify-content: space-between; align-items: center;
}

.footer-logo {  margin:  0;}

.footer-logo img { width: 160px;}

.footer_bottom {
  margin: 0px 0 0 0;
  padding: 20px 0px;
 background-image: linear-gradient(90deg, rgba(244, 159, 30, 0.6) 0%, rgba(244, 159, 30, 0.1) 50%, rgba(3, 65, 124, 0.3) 100%) ; 
  border-top: 1px solid #d2d5ab;
}

.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-2);
  font-weight:500;
  color:var(--text-color);
  font-size: 14px !important;
  text-decoration: none;
  margin: 0px;
}

.footer_bottom p a {
    color:var(--text-color) !important;
}


.footer-about { text-align: center; font-family: var(--font-family-1); margin-top: 20px;}
.footer-about img{ width: 100px; border-radius: 0px; 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(--color2);
}

.footer .btn.btn-social {
  margin-right: 9px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color:var(--color2);
  border: 1px solid #d1d1d1;
  border-radius: 35px;
  transition: 0.3s;
  background:var(--color4);
}

.footer .btn.btn-social:hover {
  color: var(--white-color);
  background: var(--color3);
}

.btn-outline-light:hover {
  color: #000;
  background-color: var(--color2);
  border: 0px #fff;
}

@media only screen and (max-width: 430px) {
  .footer .btn.btn-social {
  margin-right: 2px;
  width: 28px;
   height: 28px;
 padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color:var(--color1);
  border: 1px solid #d1d1d1;
  border-radius: 50px;
  transition: 0.3s;
  background:var(--white-color);
}

.footer .btn.btn-social i{font-size: 12px;}

}







@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 {  
 
    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;
  }

  .footer_links li span{ display: none;}

  .footer_links ul {
    list-style: none;
    padding: 0px 0 0px 0px;
    text-align: left;
    display: flex;
    flex-direction: row; flex-wrap: wrap;
    justify-content: space-between;
}

  .footer_links ul li { width: 48%;}

}

@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(--color2);
    border-bottom: 1px solid var(--color2);
  }

  .footer_center .footer_center_1 {
    width: 100%;
    padding: 10px 0px;
    border-right: 0px solid var(--color2);
  }

  .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_links ul li { width: 100%;}
}

.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(--color2);
  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(--color2);
  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(--color2);
  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: 0px 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: 0 0 30px 0px !important;   padding: 15px;
   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-box1 {
    width: calc(33% - 20px) !important;  
}

@media only screen and (max-width: 991px) {
  .testimonials-box1 {
    width: calc(49% - 10px) !important;  
}
}

@media only screen and (max-width: 600px) {
  .testimonials-box1 {
    width: calc(100% - 0px) !important;  
}
}

.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: 5px;
  position: relative; text-align: left;
}

.testimonials-thumb .icon {
  /* width: 70px;
  height: 70px; */
  /* background: var(--color2); */
  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(--color2);}

.testimonials-content .icon img {
  width: 40px !important;
  height: 40px !important;}

  .testimonials-content h4 { font-family: var(--font-family-1); color:var(--color2);
    font-size:17px;
    font-weight: 600; 
    margin-bottom: 1px;  margin-top: 15px;
} 

.testimonials-content h4 span{display: block; font-size: 14px; color: var(--text-color); font-weight:400; }
 
.testimonials-box p{ font-family: var(--font-family-2);
    font-size: 15px;
    line-height: 24px !important;
    font-weight:500;
    color: var(--text-color);
    padding: 0 0px; margin-bottom: 10px;
}
 
.testimonials-content i{ font-size: 40px;}
.testimonials-content .quote-1{ color: var(--color1);}
.testimonials-content .quote-2{ color: var(--color2);}
.testimonials-content .quote-3{ color: var(--color3);}

.tb-m1{margin-top: 100px !important;}
.tb-m2{margin-top: 50px !important;}
  

.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-color);}

@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(--color1);
        left: 0px;
        top: 0;
        z-index: 0;
    } */

    .tb-m1{margin-top: 0px !important;}
.tb-m2{margin-top: 0px !important;}

    
}


#testimonials .owl-nav {
  display: flex;
  justify-content: center;
  margin-top:30px;
}

#testimonials .owl-prev, #testimonials .owl-next{ 
  display: flex; align-items: center; justify-content: center; text-align: center;
  background: var(--color1);
  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(--color2);}



 /*=============================testimonials page===============================================*/

 

.testi-view { margin: 0px 0; display: flex; flex-direction: row; flex-wrap: wrap; justify-content: start;}

.testi-view-box{  position: relative; /*width: calc(49.33% - 10px);*/ border-radius: 12px; text-align: left; background: #fff; margin:15px;   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);  
  }

 .testi-view-box-width{width: calc(23.33% - 15px);}

.testi-view-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;}

.testi-view-thumb {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.testi-view-thumb img{ width: 100%;}
 

.testi-view-content {
  padding: 10px;
  position: relative; text-align: center;
}

 

.testi-view-content h4 { font-family: var(--font-family-1); color: var(--heading-color);
    font-size:16px;
    font-weight: 700;
    margin: 0px 0;
}

.testi-view-content h6 { font-family: var(--font-family-1); color: var(--color1);
  font-size:14px;
  font-weight: 600;
  margin: 0px 0;
}
 
.testi-view-box p{font-family: var(--font-family-1); color: var(--text-color); font-size: 14px; font-weight:400; line-height: 24px; margin: 0; padding: 0; }

.testi-view-content .know-more-btn { margin-bottom: 10px !important;}

.testi-view-content .know-more-btn {
    background:transparent;
    padding: 13px 0px;
    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;
  }
  .testi-view-content .know-more-btn i{padding: 0 10px;}
  
  .testi-view-content .know-more-btn:hover {
    background: var(--color2);
    padding-left:30px;
    color: #fff;     
  } 

  
 

 

.testi-view-box:hover { display: block; /*background:var(--color2);*/
  -webkit-transform: translateY(-6px);
  -moz-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);   
}

.testi-view-box:hover span{color: var(--color2);}

@media only screen and (max-width: 1024px) {
  .testi-view-box-width{width: calc(23.33% - 15px);}
}

@media only screen and (max-width: 768px) {
  .testi-view-box-width{width: calc(30.33% - 10px);}
}

@media only screen and (max-width: 600px) {
  .testi-view-box-width{width: calc(45.33% - 10px);}
}

@media only screen and (max-width: 460px) {
  .testi-view-box-width{width: calc(100% - 0px);}
}

@media only screen and (max-width: 480px) { 
 }

  
 
/*==========================================================================*/

 

     
 

  /*==========================================================================*/
 
  /*========================================================*/


.news-media-bg {
  /* background: #F4F4F4;   */
  position: relative;
  padding: 50px 0 0 0;
  margin: 0 0 0px 0;  
}

.news-media-bg:before { 
  background: #f4f4f4;   
    position: absolute;
    width:100%;
    height: 85%;
    content: '';
    left:0%;
    top: 0; 
    z-index: 0;
}
 
  

.events-list{   margin: 10px 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(--color3);  */
  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); */
  }
.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: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-content .icon {
  /* width: 70px;
  height: 70px; */
  /* background: var(--color2); */ 
  align-items: center;
  justify-content: center;
  font-family: var(--font-family-1);
  font-size:16px;  font-weight: 600;
  text-transform: uppercase;
  line-height: 0;
  color: #fff;
  /* border: 3px solid #fff; */
  border-radius:0 10px 0 0px; 
  padding:15px  0px; 
  position: relative;
  left: 0px;
  top: 0px;
  z-index: 2;
  transition: all .4s ease-out 0s;
}
.events-content .icon span{position: relative;}

.events-content .icon img {
  width: 40px !important;
  height: 40px !important;}

.events-content .title { font-family: var(--font-family-1); color: var(--white-color);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px; margin-top: 10px;
}
.events-content .title a span{font-weight: 400;}
.events-content .title a{text-decoration: none; color: inherit;}
.events-content .title a:hover {
  color: var(--color1);
}
 
.events-box p{ 
    font-size: 24px;
    line-height: 24px !important;
    font-weight: 300;
    color: var(--white-color);
    letter-spacing: 0.20px;
    padding: 0 0px; margin: 0;
}

.events-box h6{ 
  font-size: 22px;
  line-height: 24px !important;
  font-weight:700;
  color: var(--white-color);
  letter-spacing: 0.20px;
  padding: 4px 0px; margin: 0;
}
.events-content .know-more-btn {
    background:transparent;
    padding: 13px 0px;
    font-family: var(--font-family-1);
    color:var(--white-color);
    font-size: 14px;
    font-weight:600;
    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;
  }
  .events-content .know-more-btn i{padding: 0 10px;}
  
  .events-content .know-more-btn:hover {
    background: var(--color1);
    padding-left:10px;
    color: #fff;     
  } 
 

.events-box.color1 {
  background: #f5f5f5;
 }
 
 .events-box.color2 {
   background: #f1f7fc;
 } 

.events-box:hover { display: block; /*background:var(--color2);*/
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);   
}

/* .menu-box:hover span{color: var(--color2);} */


#events-list .owl-nav {
  display: flex;
  justify-content: start;
  margin-top: 0px;
  position: absolute;
  left: -100px;
  bottom:0px; z-index:1;
}

#events-list .owl-prev, #events-list .owl-next{ 
  display: flex; align-items: center; justify-content: center; text-align: center;
  background: var(--color1);
  padding: 0px;
  margin: 2px 5px;
  position: relative;
  border: 0px solid #ddd;
  width: 40px;
  height: 40px; color: #fff;border-radius: 20%; 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(--color1);}
 

#events-list .owl-dots{ display: none;}

@media only screen and (max-width: 768px) {
  #events-list .owl-nav {
    display: flex;
    justify-content: center;
    margin-top: 0px;
    position: relative;
    left: 0px;
    bottom:-20px; z-index:1;
  }
  
}

 

@media only screen and (max-width:768px) {
 
 
}


/*===================================================================*/

 

.events-list-1{   margin: 0px 0; display: flex; flex-direction: row; flex-wrap: wrap; justify-content: center;  }

.events-box-1{  position: relative; 
  width: calc(16.33%);    
  margin:0px 15px 30px 15px;   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-1 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-1 {  
  overflow: hidden;
  position: relative;
}

.events-thumb-1 img {  
 width: 100%;
}
.events-animate-1 {
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.events-animate-1: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-1 {
  padding: 10px 0;
  position: relative;
}

.events-content-1 .icon {
  /* width: 70px;
  height: 70px; */
  /* background: var(--color2); */ 
  align-items: center;
  justify-content: center;
  font-family: var(--font-family-1);
  font-size:16px;  font-weight: 600;
  text-transform: uppercase;
  line-height: 0;
  color: #fff;
  /* border: 3px solid #fff; */
  border-radius:0 10px 0 0px; 
  padding:15px  0px; 
  position: relative;
  left: 0px;
  top: 0px;
  z-index: 2;
  transition: all .4s ease-out 0s;
}
.events-content-1 .icon span{position: relative;}

.events-content-1 .icon img {
  width: 40px !important;
  height: 40px !important;}

.events-content-1 .title { font-family: var(--font-family-1); color: var(--white-color);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px; margin-top: 10px;
}
.events-content-1 .title a span{font-weight: 400;}
.events-content-1 .title a{text-decoration: none; color: inherit;}
.events-content-1 .title a:hover {
  color: var(--color1);
}
 
.events-box-1 p{ 
    font-size: 24px;
    line-height: 24px !important;
    font-weight: 300;
    color: var(--white-color);
    letter-spacing: 0.20px;
    padding: 0 0px; margin: 0;
}

.events-box-1 h6{ 
  font-size: 22px;
  line-height: 24px !important;
  font-weight:700;
  color: var(--white-color);
  letter-spacing: 0.20px;
  padding: 4px 0px; margin: 0;
}


@media only screen and (max-width: 580px) {
  .events-list-1{   margin: 0px 0; display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-between;  }

  .events-box-1{  position: relative; 
    width: calc(47.33%);    
    margin:0px 5px 15px 5px;    
  
    }
}


@media only screen and (max-width: 400px) {
  .events-list-1{   margin: 0px 0; display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-between;  }

  .events-box-1{  position: relative; 
    width: calc(45.33%);    
    margin:0px 5px 20px 5px;    
  
    }
}




/*===================================================================*/
  
.members-listing{margin: 30px 0 0 0;}
 
 .members-listing ul{ list-style: none; padding: 0 0 0 0px; margin: 0; display: flex; flex-direction: row; flex-wrap: wrap; justify-content: center;} 
.members-listing ul li{   
  width:calc(22.33% - 0px);margin: 0 10px 30px ; 
   background: #fff; border-radius: 0px; padding: 0px;  border: 0px solid #ddd;
  /* -webkit-box-shadow: 0 1px 7px rgba(0,0,0,0.20);  -moz-box-shadow: 0 1px 7px rgba(0,0,0,0.20); box-shadow: 0 1px 7px rgba(0,0,0,0.20); */
} 

.members-listing ul.team-box li{width:calc(33.33% - 20px);margin: 0 20px 30px ; }

.members-listing ul li .members-img{  width:100%;  padding: 0 0px 0 0; border-right: 0px dashed #ddd;}
.members-listing ul li .members-details{ width: 100%;   padding: 15px 5px; text-align: left;} 

.members-listing ul li h4{ margin: 2px 0;font-family:var(--font-family-1); font-size: 22px; font-weight:500; color:var(--color1); text-transform: inherit;  }
 
.members-listing ul li h6{margin: 8px 0;  font-family:var(--font-family-1); font-size: 12px; font-weight:600; color:var(--color2); text-transform: uppercase; }
.members-listing ul li p{ font-size: 14px;    font-weight: 500; color: var(--text-color);
  letter-spacing: 0.15px; margin: 0;}

.members-listing ul li .members-img img{ width: 100%; border-radius: 0px; } 

/* @media only screen and (max-width :1024px) {
    .members-listing ul li{ display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-between; width: 100%; background: #fff; padding: 10px; margin: 0 20px 20px 0; } 
} */

@media only screen and (max-width :768px) {
   .members-listing ul{ list-style: none; padding: 0 0 0 0px; display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-between;} 

    .members-listing ul li{  width:calc(48.33% - 0px); background: #fff; padding: 10px; margin: 0 0px 20px 0; } 

    .members-listing ul li .members-img{  width:100%;  padding: 0 0px 0 0; border-right: 0px dashed #ddd; }
.members-listing ul li .members-details{ width: 100%;   padding: 0px 0px;} 
.members-listing ul li .members-img img{ width: 100%; margin-bottom: 10px;  } 

.members-listing ul.team-box li{width:calc(50% - 40px);margin: 0 20px 30px ; }

}

@media only screen and (max-width :430px) {
  .members-listing ul li{  width:calc(100% - 0px); background: #fff; padding: 10px; margin: 0 0px 20px 0; }
  .members-listing ul.team-box li{width:calc(100% - 0px);margin: 0  0 20px 0px ; } 
}

/*===================================================================*/
.team-associates{display: inline-flex; flex-direction: row;justify-content:center; flex-wrap: wrap; margin: 30px 0 0 0;}
    .team-associates img{ width: 10%; filter: grayscale(100%);}
    @media only screen and (max-width: 375px) { 
        .team-associates img{ width: 20%;}  
   }
 /*=============================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-around; 
padding:10px 0px; margin: 0 80px;  z-index: 10;  position: relative;  
 }
.counter-card { text-align: center; width: 30%;  padding:20px 20px;   margin-bottom:20px; border-radius: 15px; z-index: 1; border: 1px solid var(--color2);}
/* .counter-card:last-child{ border: 0px;} */
.counter-card h2 span{  text-align: center;}

/* .counter-card:nth-child(odd) {  color:var(--white-color);
 background:var(--color1);
}

.counter-card:nth-child(even) {
  background:var(--color2);
} */

.counter-card img{ width: 65px; margin-bottom: 10px;}

 
.counter-card h2{font-family: var(--font-family-1);font-weight:600;font-size:45px; color: var(--color1); text-transform: inherit; margin: 0px; padding: 0px;  }

.counter-card h2 small{display: block; font-weight: 500;font-size:19px; color: var(--color2);}

.counter-card h3{ font-family: var(--font-family-1); font-weight: 300;  font-size:36px; color: var(--color1); text-transform: inherit; margin: 0px;  padding: 0px; letter-spacing: -1px;  }

.counter-card h3 span{ display: block; font-weight:500;  font-size:45px;}

.counter-right{ position: relative; border-top: 1px solid var(--color2); border-bottom: 1px solid var(--color1);}

@media only screen and (max-width: 1180px) {
   
}

@media only screen and (max-width: 1024px) {
   
}

 
@media only screen and (max-width:700px) { 
.counter-row{  display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-between;  padding:10px 0px; margin: 0 10px;  z-index: 10;  position: relative;
 }

  .counter-card { text-align: center; width: 100%; padding:10px 0;   margin-bottom:20px;  }
 
} 


.text-masking{  
  text-align: center;
  position: relative;}

.text-masking h1 { 
  font-size:450px;
  margin: 0;
   text-transform: uppercase;
  font-family:var(--font-family-3); font-weight:700 ;
  line-height:0.8; 
  letter-spacing:-50px;
}
  
.text-masking img { 
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;  
  /* height: 100%;  */
 
}

.light {
  background: #fff;
}

/* .light h1 {
  color: #000;
  font-size:180px;
} */
.light img {
  mix-blend-mode: lighten;
}


@media only screen and (max-width: 580px) {
  .text-masking h1 { 
    font-size:350px;
    margin: 0;
     text-transform: uppercase;
    font-family:var(--font-family-3); font-weight:700 ;
    line-height:0.8; 
    letter-spacing:-20px;
  }
}


@media only screen and (max-width: 425px) {
  .text-masking h1 { 
    font-size:300px;
     
  }
}

@media only screen and (max-width: 360px) {
  .text-masking h1 { 
    font-size:260px;
 
  }
}


/*=======================================================================*/
 
 
 
  





/*=============================================================*/
 
.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(--heading-color);
  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-color); 
  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(--heading-color);
  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(--color1);
}

/* .section-title::after {
  position: absolute;
  content: "";
  width: 45px;
  height: 2px;
  top: 50%;
  right: -55px;
  margin-top: -1px;
  background: var(--color1);
} */

.section-title i {
  background: var(--color1);
  padding: 2px 5px;
  border-radius: 10%;
  color: var(--white-color);
  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(--color2);
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
}


 /*========================================================================*/
 
 
  
.clients-scroll{ margin: 20px 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: 1px 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; margin-top: 20px;  list-style: none; display: flex; flex-wrap: wrap; justify-content:start; }

.client-list li{ list-style:none; margin: 7px; padding: 10px; 
  width: 30.33%;  /* min-height: 110px !important;  */
  border:1px 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; justify-content: 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) {
   
}

@media only screen and (max-width: 768px) {
 
}
 
@media only screen and (max-width:500px) {
 
}

@media only screen and (max-width:490px) {
  .client-list li{  width:45%;   }	
}

@media only screen and (max-width:340px) {
   
}


/*-=============================================================-*/
 
.client-list-1 {
  list-style: none;
  margin: 30px 0 0 0;
  padding: 0px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.client-list-1 li {   
  margin: 0px;
  text-align: left;
  padding: 10px;   border: 0px solid #ddd;
  margin:  10px;
  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-color);
  text-align: center;
  padding: 10px;
}

.client-list-1 li img {
  height:68px;
}

@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: center;
  }

  .client-list-1 li img {
    height: 60px;
  }
}

@media only screen and (max-width: 680px) {
  .client-list-1 li {
    padding: 10px;  
      margin: 5px;
  }

  .client-list-1 li img {
    height: 60px;
  }
}

@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: 10px;  
    margin:  10px ;
  }

  /* .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: 10px;  
    margin:   10px ;
  }

  .client-list-1 li img {
    height: 70px;
  }
}

@media only screen and (max-width: 390px) {
  .client-list-1 li {
    padding: 10px;  
    margin:  10px;
  }

  .client-list-1 li img {
    height: 60px;
  }
}

@media only screen and (max-width: 360px) {
  .client-list-1 {
    list-style: none;    
    padding: 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content:center;
  }

  .client-list-1 li {
    width: 42%;
    padding: 5px;  
      margin:  10px ;
  }

  .client-list-1 li img {
 
    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%;
  }
} */

/*==============================================================*/
 


 



/* #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(--color2); /* --- 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(--color2); /* --- 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(--color1); /* --- 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: 20px 0 0 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-color);
}
.tabs ul li a:hover {
  /* background: var(--color1); */
  background-position: 0 0;
  color: #fff;
}

 .tabs ul li a.active { 
  color:var(--color2); font-weight: 700;
}


.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: 16px;
  line-height: 24px !important;
  font-weight: 400;
  color: var(--text-color);
  letter-spacing: 0.50px;
  padding: 0 0px;
}
.tabbed-content .item .item-content h3 {
  font-family: var(--font-family-2);
  font-size: 30px;
  color: var(--heading-color);
  font-weight: 600;
  text-transform: inherit;
  text-align: left !important;
  position: relative;
  margin: 20px 0 0 0;
  line-height: 1.2;
}

.tabbed-content .item .item-content figure {
   cursor: pointer;
}

.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(--color1); border-radius: 8px  8px 0 0;}
  .tabs-sm a{color: #fff; font-size: 22px; font-weight: 400; font-family: var(--font-family-2);}
}

@media all and (min-width: 768px) {
  .tabbed-content .tabs {
    display: block;
  }
  .tabbed-content .tabs li {
    display: inline-block; border-bottom: 1px solid #ebebeb;
  }
  .tabbed-content .tabs li a {
    display: flex; align-items: center; justify-content: end;  font-family: var(--font-family-2); 
    color: var(--heading-color); font-weight: 400; font-size: 24px; 
    background-image: linear-gradient(to left,
    transparent,
    transparent 50%,
    var(--color1) 50%,
    var(--color1));
  background-position: 100% 0;
    background-size: 200% 100%;
    transition: all .25s ease-in;
  }

  .tabbed-content .tabs li a span{    
    padding-left:10px ; 
  }

  .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;
} */

.modal-content {
  width: 100%;
  color: transparent; 
  background-color:transparent; 
  border: 0;
  border-radius:0;
  outline: 0;
}

.modal-body { 
  padding:0; text-align: right;
}

.btn-close { 
  background: #fff var(--bs-btn-close-bg) center / 1em auto no-repeat;
  border: 0;
  border-radius: 0; 
}

 

/*============================================================*/


.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;}
}




  /* .Enquireicon{ position:fixed;	bottom:10px;left:16%;
  	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: row; align-items: center; justify-content: center; 	box-shadow: 1px 1px 7px #000;  background: var(--color1); padding: 15px 30px; border-radius: 6px;}
 
  .Enquireicon i {   font-size:19px;	 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;}

  .Enquireicon span{ font-family: var(--font-family-1); color: #fff; font-size: 18px; font-weight: 400; padding: 0 0 0 10px ;    transition: All 0.5s ease;    -webkit-transition: All 0.5s ease;
    -moz-transition: All 0.5s ease;
    -o-transition: All 0.5s ease;}

  .Enquireicon:hover{ background: var(--color2);}
 
.Enquirehide{display: none;}
.Enquireshow{display: inherit !important; position: relative !important;} */


 
@media only screen and (max-width : 767px){}
    
  .Enquireicon{position:fixed;	bottom:200px;  right:10px;   
    /* left: 95% !important; */
  	text-align:center; 
    z-index:100; text-decoration: none; display: flex; flex-direction: column; align-items: center; justify-content: center; background:none; padding:0px; border-radius: 0px; box-shadow:none;
  
    
  }
 
  .Enquireicon i {border-radius:50px;  width:40px;height:40px;background-color:#fff;	
    /* box-shadow: 1px 1px 7px #000;   */ border: 1px solid var(--color2);
    font-size:18px;	 color:var(--color2);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;}

  .Enquireicon span{display: block; font-family: var(--font-family-1); color:var(--color1);  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; 

    /* -webkit-transform: rotate(-90deg);
-moz-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
-o-transform: rotate(-90deg); */

    }

  .Enquireicon:hover i,.Enquireicon:hover span{  -webkit-transform: translateY(-6px);
    -moz-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    transform: translateY(-6px);}

   .Enquireicon:hover{ background: none;}

 
 

.offcanvas.offcanvas-bottom{ height: 350px;}
.offcanvas-body{padding: 5px;}
.offcanvas-title {
  display: block;
    font-family: var(--font-family-1);
    font-size: 28px;
    color: var(--color1);
    font-weight: 600;
    text-transform: inherit;
    letter-spacing: -1px;
}




/*==================sidebar=========================================*/

  
.sidebar {
  width: 25%;
  /* height: 25vh; */  height: 100%;
  /* min-height: 300px; */
 overflow: auto;
  position: -webkit-sticky;
  position: sticky;
  top: 5%;
}

.main {
  width: 70%; 
  display: flex;
  flex-direction: column;
}

.main,
.sidebar {
   border: 0px solid #222; 
  padding: 1px; 
}

.wrapper {
  display: flex;
  justify-content: space-between;
}
 
  


/* Mixins */
/* Vars */
 

.tabs_wrapper {
  /* width: 85%; */
   
  margin: 0 auto;
  background: transparent;
}

ul.tabs {  font-family: var(--font-family-1);
  display:flex; flex-direction: column;
  vertical-align: top;
  position: relative;
  z-index: 10;
  margin: 0px 0 0;
  padding: 0;
  /* width: 23%; */
  /* min-width: 175px; */
  list-style: none;
  -ms-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  
}
ul.tabs li {  font-family: var(--font-family-1);
  margin: 0;
  cursor: pointer;
  padding: 2px 15px;
  line-height: 51px;
  color: var(--text-color);
  text-align: left; font-size: 16px; font-weight: 600; 
  -ms-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; border-bottom: 1px solid #ddd; border-radius: 4px;
}

ul.tabs li:hover {
  background:var(--color3);  
  color: #fff;
  -ms-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

ul.tabs li.active {
  background:var(--color2);   
  color: #fff;
  -ms-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

ul.tabs li a{color: var(--heading-color); display: block;}

ul.tabs li:hover a { 
  color: #fff; 
}

ul.tabs li.active a{
 color: #fff;
 
}



.tab_container {
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 20;
  /* left: -2%; */
  /* width: 70%; */
  /* min-width: 10px; */
  text-align: left;
  /* background: white;
  border-radius: 12px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5); */
}

.tab_content {
  padding: 0px;
  height: 100%;
  display: none;

  font-family: var(--font-family-2);
  text-align: left;
}

.tab_drawer_heading {
  display: none;
}

 

.tab_content h2 {
  font-family: var(--font-family-1);
    font-weight:700;
    font-size:35px;
    color: var(--color2);
}

.tab_content h6 { font-family: var(--font-family-1);
  font-size: 18px;
  line-height: 24px !important;
  font-weight:500;
  color: var(--text-color);
  letter-spacing: 0.50px;
  padding: 0 0px; border-bottom: 1px solid #ddd;  padding-bottom: 10px; display: flex; justify-content: space-between;
}

.tab_content h6 span{border-left: 2px solid #ddd; padding: 0 0 0 20px; font-size: 20px; color: var(--color2);}

.tab_content p { 
  font-size: 15px;
  line-height: 24px !important;
  font-weight:500;
  color: var(--text-color);
  letter-spacing: 0.50px;
  padding: 0 0px;
}

.tab_content p span {
  color: var(--color1) !important;
} 


.tab_content h3 {
  font-family: var(--font-family-1);
  color: var(--color2);
  font-size: 28px;
  font-weight:600;
  margin: 20px 0 10px 0;
  padding: 0px 0; 
} 

.tab_content h3 span{ display: block; 
  font-size:16px !important; 
  font-weight:400 !important;}

 

.tab_content h4 { font-family: var(--font-family-1);
  color: var(--color1);
  font-size: 22px;
  font-weight:500;
  margin: 0px 0px 0px 0;
  padding: 0px 0;  
}

 

.tab_content h5 { font-family: var(--font-family-2);
  color: var(--color1);
  font-size: 17px;
  font-weight:800;
  margin:15px 0;
  padding: 0px 0;
}

 

.tab_content ul {
  padding: 5px 0 0 0px;
}

.tab_content li {position: relative;
  /* list-style: url(../../images/list1.png); */ 
  list-style: none; 
  font-size: 15px;
  line-height: 24px !important;
  font-weight:500;
  color: var(--text-color);
  letter-spacing: 0.20px;
  padding: 4px 1px; 
  /* display: flex; */padding-left: 20px;
}

 

.tab_content li:before {
  content: "\F26E";
  font-family: "bootstrap-icons"; font-weight: 800;
 
  /* margin-left: -1.5em; */
  color:var(--color3); 
  padding-right:5px;
  margin-right: 15px;
 
    left: 0;
    position: absolute;
    
}

.tab_content li strong{ font-weight: 700;} 

.tab_content li ul{ margin-left: 15px;}

.ul-flex1 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.ul-flex1 li { 
  width: 50%;
   
}

@media only screen and (max-width: 600px) {
  .ul-flex1 li {
    width: 100%;
  
  }
}



@media screen and (max-width: 781px) {

  .sidebar { height: auto;
  min-height: auto;
 
}

.wrapper {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
  .main {
    width: 100%;
     
}

  ul.tabs {
    display: none;
  }

  .tab_container {
    display: block;
    margin: 0 auto;
    width: 100%;
    border-top: none;
    border-radius: 0;
    
  }

  .tab_drawer_heading {
  font-family: var(--font-family-1);
    font-weight:400;
    font-size:20px;

    background:var(--color2);     
    color: #fff;
    margin: 0 0 10px 0;
    padding: 10px 8px; border-radius:6px;
    display: block;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: left;
  }
  .tab_drawer_heading:hover {    
    background: var(--color3);
   color: #fff;
  }

  .d_active { 
    background: var(--color3);    
    color: #fff;
    
  }

  .tab_content h2 {
   display: none;
}

.tab_content h6 {  
  font-size: 17px;
  line-height: 24px !important;
  font-weight:500;
  /* color: var(--color1);  */
  padding: 5px 0px;  
}

}