/* Googlefont Poppins CDN Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body{
  min-height: 100vh;
	background-color: #e8eaea
}
nav{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 70px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 99;
}
nav .navbar{
  height: 100%;
  max-width: 1250px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  /* background: red; */
  padding: 0 50px;
}
.navbar .logo a{
	font-size: 30px;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
}
nav .navbar .nav-links{
  line-height: 70px;
  height: 100%;
}
nav .navbar .links{
  display: flex;
}
nav .navbar li a:hover{
  background: #E9E8E8;
	padding: 0 10px 0 10px;
	border-radius: 4px;
}
nav .navbar .links li{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0 14px;
}
nav .navbar .links li a{
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color: #2b4e70;
  font-size: 15px;
  font-weight: 500;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow{
  transform: rotate(0deg);
  }

nav .navbar .links li .arrow{
  /* background: red; */
  height: 100%;
  width: 22px;
  line-height: 70px;
  text-align: center;
  display: inline-block;
  color: #2b4e70;
  transition: all 0.3s ease;
}
nav .navbar .links li .sub-menu{
  position: absolute;
  top: 70px;
  left: 0;
  line-height: 40px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  display: none;
  z-index: 2;
}
nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu{
  display: block;
}
.navbar .links li .sub-menu li{
  padding: 0 22px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.navbar .links li .sub-menu a{
  color: #2b4e70;
  font-size: 15px;
  font-weight: 500;
}
.navbar .links li .sub-menu .more-arrow{
  line-height: 40px;
}
.navbar .links li .htmlCss-more-sub-menu{
  /* line-height: 40px; */
}
.navbar .links li .sub-menu .more-sub-menu{
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}
.links li .sub-menu .more:hover .more-sub-menu{
  display: block;
}
.navbar .search-box{
  position: relative;
  height: 40px;
  width: 40px;
}
.navbar .search-box i{
  position: absolute;
  height: 100%;
  width: 100%;
  line-height: 40px;
  text-align: center;
  font-size: 22px;
  color: #2b4e70;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.navbar .search-box .input-box{
  position: absolute;
  right: calc(100% - 40px);
  top: 80px;
  height: 60px;
  width: 300px;
  background: #2b4e70;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}
.navbar.showInput .search-box .input-box{
  top: 65px;
  opacity: 1;
  pointer-events: auto;
  background: #2b4e70;
}
.search-box .input-box::before{
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  background: #2b4e70;
  right: 10px;
  top: -6px;
  transform: rotate(45deg);
}
.search-box .input-box input{
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  height: 35px;
  width: 280px;
  outline: none;
  padding: 0 15px;
  font-size: 16px;
  border: none;
}
.navbar .nav-links .sidebar-logo{
  display: none;
}
.navbar .bx-menu{
  display: none;
}
@media (max-width:920px) {
  nav .navbar{
    max-width: 100%;
    padding: 0 25px;
  }

  nav .navbar .logo a{
    font-size: 27px;
  }
  nav .navbar .links li{
    padding: 0 10px;
    white-space: nowrap;
  }
  nav .navbar .links li a{
    font-size: 15px;
  }
}
@media (max-width:800px){
  nav{
    /* position: relative; */
  }
  .navbar .bx-menu{
    display: block;
	  	cursor: pointer;
  }
  nav .navbar .nav-links{
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    max-width: 270px;
    width: 100%;
    background:  #fff;
    line-height: 40px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 1000;
  }
  .navbar .nav-links .sidebar-logo{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .sidebar-logo .logo-name{
    font-size: 25px;
    color: #2b4e70;
  }
    .sidebar-logo  i,
    .navbar .bx-menu{
      font-size: 25px;
      color: #2b4e70;
    }
  nav .navbar .links{
    display: block;
    margin-top: 20px;
  }
  nav .navbar .links li .arrow{
    line-height: 40px;
  }
nav .navbar .links li{
    display: block;
  }
nav .navbar .links li .sub-menu{
  position: relative;
  top: 0;
  box-shadow: none;
  display: none;
}
nav .navbar .links li .sub-menu li{
  border-bottom: none;

}
.navbar .links li .sub-menu .more-sub-menu{
  display: none;
  position: relative;
  left: 0;
}
.navbar .links li .sub-menu .more-sub-menu li{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow{
  transform: rotate(0deg);
  }
  .navbar .links li .sub-menu .more-sub-menu{
    display: none;
  }
  .navbar .links li .sub-menu .more span{
    /* background: red; */
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
  }

  .links li .sub-menu .more:hover .more-sub-menu{
    display: none;
  }
  nav .navbar .links li:hover .htmlCss-sub-menu,
  nav .navbar .links li:hover .js-sub-menu{
    display: none;
  }
.navbar .nav-links.show1 .links .htmlCss-sub-menu,
  .navbar .nav-links.show3 .links .js-sub-menu,
  .navbar .nav-links.show2 .links .more .more-sub-menu{
      display: block;
    }
    .navbar .nav-links.show1 .links .htmlcss-arrow,
    .navbar .nav-links.show3 .links .js-arrow{
        transform: rotate(180deg);
}
    .navbar .nav-links.show2 .links .more-arrow{
      transform: rotate(90deg);
    }
}
@media (max-width:370px){
  nav .navbar .nav-links{
  max-width: 100%;
} 
}

.section_holder_softgrey {
	width: 100%;
	padding: 40px 0 40px 0;
	margin: 0px;
	float: left;
	background-color: #41ac21;
}

/*---------------------------------------
  PARTNERS              
-----------------------------------------*/
.partners-section {
  text-align: center;
  padding-top: 25px;
  padding-bottom: 50px;
}

.partners-section-title {
  border-radius: var(--border-radius-large);
  display: inline-block;
  position: relative;
  bottom: 50px;
  margin-bottom: -50px;
  padding: 10px 20px;
}

.partners-image {
  display: block;
  width: 150px;
  margin: auto;
  transition: all 0.3s;
}

.partners-image:hover {
  transform: scale(1.05);
}

/*---------------------------------------
  WEB OLD             
-----------------------------------------*/
/*classic version title*/
.title_classic {
    font-size: 25px;
    font-weight: bold;
    margin: 0;
    padding: 0;
    text-align: center;
    text-transform: uppercase;
    color: #03BB24;
    line-height: 39px;
}
.title_classic_top {
	width:5%;
	height:3px;
    margin:0 auto 40px auto;
    padding: 0;
	background-color:#2b4e70;
}
.title_classic_top.white {
	background-color:#fff;
}
.title_classic_smalltext {
    margin: 40px auto 90px;
    padding: 0;
	font-size:14px;
	font-weight:normal;
    text-align: center;
    width: 45%;
}
.title_classic_smalltext2 {
    margin-top: 20px;
    margin-right: auto;
    margin-left: 0px;
    margin-bottom: 5px;
    padding: 0;
    font-size: 14px;
    font-weight: normal;
    text-align: left;
    width: 45%;
}

.divider_line1 {
	float: left;
	width: 100%;
	padding-top: 0px;
	margin-bottom: 0px;
	border-bottom: 1px solid #e5e5e5;
	margin-left: 0px;
}

.google-map {
	width: 100%;
	padding: 20px;
	height: 400px;
	border: 1px solid #d9d9d9;	
}
.google-map.two {
	width: 100%;
	padding: 20px;
	height: 350px;
	border: none;
}

.section_holder50 {
	width: 100%;
	padding-top: 30px;
	padding-right: 0;
	padding-left: 0;
	padding-bottom: 30px;
	margin: 0px;
	float: left;
	text-align: center;
}
.section_holder50 .text_holder {
	width: 60%;
	padding: 0;
	margin: 0 auto;
}
.section_holder50 .img {
	width: 100px;
	height: 100px;
	padding: 0;
	border-radius: 100%;
	background: url(../images/img115.jpg);
	margin: 0 auto;
}
.section_holder50 .img.two {
	background: url(../images/img116.jpg);
}

.section_holderpromo {
	width: 100%;
	padding-top: 20px;
	padding-right: 0;
	padding-left: 0;
	padding-bottom: 80px;
	margin: 0px;
	float: left;
}

.table-list5 {
	padding: 0;
	border-spacing: 0;
	float: left;
	background-color: #fff;
	border: 1px solid #e4e4e4;
	width: 100%;
}
.table-list5 th {
	padding: 5px 5px;
	color: #fff;
	font-weight: 600;
	font-size: 12px;
	text-align: center;
	border-right: 1px solid #727272;
	background-color: #161616;
}
.table-list5 th.noline {
	border-right: none;
}
.nomar {
	margin-bottom: 0;
}
.table-list5 td {
    padding: 0 5px;
    text-align: left;
    height: 15px;
    font-size: 12px;
    line-height: 30px;
    color: #000;
    border-bottom: 1px solid #e4e4e4;
    border-right: 1px solid #e4e4e4;
    background-color: #f2f2f2;
}
.table-list5 td.lite {
	background-color: #fff;
}
.table-list5 td.red {
	background-color: #bff5f7;
}
.table-list5 td.auto {
	background-color: #f8ecf2;
}
.table-list5 td.alim {
	background-color: #fdebcf;
}
.table-list5 td.sal {
	background-color: #e9d7f3;
}
.table-list5 td.med {
	background-color: #dae9c7;
}
.table-list5 td.redborder {
	border-right: 1px solid #aee7e9;
	border-bottom: 1px solid #aee7e9;

}
.table-list5 td.right_last {
	border-right: none;
}
.table-list5 td.bot_last {
	border-bottom: none;
}
.table-list5 td.center {
	text-align: center;
}
.table-list5 td i {
	color: #89be21;
	font-size: 20px;
}
.table-list5 td.paddbot {
	padding-top: 30px;
	padding-bottom: 30px;
}
.table-list5 td a {
    padding: 5px 5px;
    text-align: left;
    font-size: 14px;
    margin: 0;
    color: #2708EC;
    border-radius: 2px;
    line-height: 20px;
}
.table-list5 td span.price {
	padding: 0;
	font-size: 20px;
	margin: 0;
	font-weight: 500;
	text-align: center;
	color: #2b4e70;
}
.table-list5 td a:hover {
	color: darkseagreen;
}
.table-list5 td.hilit {
	padding: 5px 5px;
	text-align: left;
	background-color: #fff;
}
.table-list5 td.hilit span {
	display: block;
	padding: 0px;
	margin: 0px;
	height: 32px;
}
.table-list5 td.hilit2 {
	padding: 13px 10px;
	text-align: left;
	background-color: #f2f2f2;
}
.table-list5 td.hilit2 span {
	display: block;
	padding: 0px;
	margin: 0px;
	height: 32px;
}

.one_half, .one_third, .one_fourth, .two_third, .three_fourth, .one_fifth {
    position: relative;
    margin-right: 2%;
    float: left;
}
/*one third*/
.one_full {
    width: 100%;
    text-align: left;
}
.one_half {
    width: 48%;
    padding-left: 60px;
    padding-bottom: 30px;
}
.one_third {
	width: 30.650%;
	padding-bottom: 30px;
	padding-left: 1px;
}
.one_third1 {
	width: 20.650%;
}
.section_holder1 a i {
	margin-left: 10px;
}
/*hover and active style*/
.section_holder1 .one_third:hover .title_holder h4, .section_holder1 .one_third.active .title_holder h4 {
	color: #2b4e70;
}
.section_holder1 .one_third:hover .icon_holder .icon, .section_holder1 .one_third.active .icon_holder .icon {
	color: #2b4e70;
	border: 1px solid #2b4e70;
}
.section_holder1 .one_third:hover .topline, .section_holder1 .one_third.active .topline {
	background-color: #2b4e70;
}
.section_holder1 .one_third:hover a, .section_holder1 .one_third.active a {
	color: #2b4e70;
}
.section_holder19 a:hover {
	color: #2b4e70;
}
/*hover and active styles*/
.section_holder19 .one_third:hover .icon, .section_holder19 .one_third.active .icon {
	color: #2b4e70;
	border: 1px solid #2b4e70;
}
.section_holder19 .one_third:hover h4, .section_holder19 .one_third.active h4 {
	color: #2b4e70;
}
.section_holder19 .one_third:hover a, .section_holder19 .one_third.active a {
	color: #2b4e70;
}.section_holder36 .one_third:hover .icon, .section_holder36 .one_third.active .icon {
	color: #fff;
	background-color: #2b4e70;
}
.section_holder36 .one_third:hover .icon, .section_holder36 .one_third.active .icon {
	color: #fff;
	background-color: #2b4e70;
}

.carousel-control {
    width: 5%;
}

.carousel-control .glyphicon-chevron-left,
.carousel-control .icon-prev {
    font-size: 18px;
    padding: 5px;
    background: #fff;
    border-radius: 50%;
    color: transparent;
    margin-left: 0;
    margin-top: 50px;
}
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next {
    font-size: 18px;
    padding: 5px;
    background: #fff;
    border-radius: 50%;
    color: transparent;
    margin-right: 0;
    margin-top: 50px;
}
    .carousel-control .glyphicon-chevron-right,
    .carousel-control .icon-next {
        margin-top: 30px;
    }
    .carousel-control .glyphicon-chevron-left,
    .carousel-control .icon-prev {
        margin-top: 30px;
    }
