.topnav {
  overflow: hidden;
  background-color: transparent;
}

.bg_safety{
background: #bbd6e5;
}

.safety_card{

background:transparent;
border:0px;
}

.safety_card p, h1{
color:#212121;
}

.topnav a {
  float: left;
  display: block;
  color: #111;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {

  color: #056aa0;
}

.topnav a.active {

  color: #056aa0;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}



/*---------------------------------------------
              FAQ
-----------------------------------------------*/

.parcel_accordion .accordion dl {
  box-sizing: border-box;
}
.parcel_accordion .accordion dt > a {
  text-align: center;
  font-weight: 700;
  padding: 2em;
  display: block;
  text-decoration: none;
  color: #fff;
  -webkit-transition: background-color 0.5s ease-in-out;
}
.parcel_accordion .accordion dd {
  background-color: #1abc9c;
  color:#fafafa;
  font-size: 1em;
  line-height: 1.5em;
}
.parcel_accordion .accordion dd > p {
  padding: 1em 2em 1em 2em;
}

.parcel_accordion .accordion {
  position: relative;
  background-color: #16a085;
}

.parcel_accordion .accordionTitle {
  background-color: #22313F;
  border-bottom: 1px solid #2c3e50;
}
.parcel_accordion .accordionTitle:before {
  content: "+";
  font-size: 1.5em;
  line-height: 0.5em;
  float: left;
  -moz-transition: -moz-transform 0.3s ease-in-out;
  -o-transition: -o-transform 0.3s ease-in-out;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
}
.parcel_accordion .accordionTitle:hover {
  background-color: #2c3e50;
}

.parcel_accordion .accordionTitleActive {
  background-color:#34495e;
}
.parcel_accordion .accordionTitleActive:before {
  -webkit-transform: rotate(-225deg);
  -moz-transform: rotate(-225deg);
  transform: rotate(-225deg);
}

.parcel_accordion .accordionItem {
  height: auto;
  overflow: hidden;
}
@media all {
  .parcel_accordion .accordionItem {
    max-height: 50em;
    -moz-transition: max-height 1s;
    -o-transition: max-height 1s;
    -webkit-transition: max-height 1s;
    transition: max-height 1s;
  }
}
@media screen and (min-width: 48em) {
  .parcel_accordion .accordionItem {
    max-height: 15em;
    -moz-transition: max-height 0.5s;
    -o-transition: max-height 0.5s;
    -webkit-transition: max-height 0.5s;
    transition: max-height 0.5s;
  }
}

.parcel_accordion .accordionItemCollapsed {
  max-height: 0;
}

.animateIn {
  -webkit-animation-name: accordionIn;
  -webkit-animation-duration: 0.65s;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-direction: normal;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: both;
  -webkit-animation-delay: 0s;
  -moz-animation-name: normal;
  -moz-animation-duration: 0.65s;
  -moz-animation-iteration-count: 1;
  -moz-animation-direction: alternate;
  -moz-animation-timing-function: ease-in-out;
  -moz-animation-fill-mode: both;
  -moz-animation-delay: 0s;
  animation-name: accordionIn;
  animation-duration: 0.65s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
  animation-delay: 0s;
}

.animateOut {
  -webkit-animation-name: accordionOut;
  -webkit-animation-duration: 0.75s;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-direction: alternate;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: both;
  -webkit-animation-delay: 0s;
  -moz-animation-name: accordionOut;
  -moz-animation-duration: 0.75s;
  -moz-animation-iteration-count: 1;
  -moz-animation-direction: alternate;
  -moz-animation-timing-function: ease-in-out;
  -moz-animation-fill-mode: both;
  -moz-animation-delay: 0s;
  animation-name: accordionOut;
  animation-duration: 0.75s;
  animation-iteration-count: 1;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
  animation-delay: 0s;
}

@-webkit-keyframes accordionIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
  }
}
@-moz-keyframes accordionIn {
  0% {
    opacity: 0;
    -moz-transform: scale(0.8);
  }
  100% {
    opacity: 1;
    -moz-transform: scale(1);
  }
}
@keyframes accordionIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@-webkit-keyframes accordionOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.8);
  }
}
@-moz-keyframes accordionOut {
  0% {
    opacity: 1;
    -moz-transform: scale(1);
  }
  100% {
    opacity: 0;
    -moz-transform: scale(0.8);
  }
}
@keyframes accordionOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.8);
  }
}


/*------------------------------------
-------------------------------------*/
.vertical-line {
  display: inline-block;
  border-left: 1px solid #31BB9E;
  margin: 0 0px;
  height: 225px;
  vertical-align: middle;
}

.techno_menu > ul > li > a:hover {

  color:#056aa0;

}

.techno_menu > ul > li > a:active{
  color:#056aa0;
}

.fa:hover {
  color:#056aa0;
}


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

.sub-text a {
  color: #fff;
  font-weight: 500;
  font-size: 14px;
}

.sub-text .vert-line {
  background-color: #e0e0e0;
  margin: 0px 10px;
}


element.style {
}
.sub-text .vert-line {
    background-color: #e0e0e0;
    margin: 0px 10px;
}
.vert-line {
    width: 2px;
    height: 20px;
    background: #a9a9a9;
    margin: 0px 5px;
}

.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.app-icon h5 {
  font-weight: 500;
  font-size: 16px;
  margin-right: 9px;
}

.text-white {
  color: #fff !important;
  display:none;
}

.site-footer a {
  color: #fff;
  font-size: 13px;
}

.sub-footer {
  width: 100%;
  background-color: #000;
  padding: 15px 0px;
}


.app-icon img {
  max-width: 140px;
  margin-right: 10px;
  min-width: 140px;
}

.copyright_img img {
  width: 100px;
  margin-right: 5px;
}
.sub-text p {
  margin: 0px;
  color: #ffffff;
  font-size: 14px;
  margin-left: 0px;
}

.footer-social a {
  line-height: 0;
  color:#fff;
  border-radius: 50%;
  margin: 0 8px 5px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 30px;
  height: 30px;
  text-align: center;
  display: inline-block;
}

.footer-social a:hover {
  /* background: #fff; */
  border-color: #fff;
  color: #000;
}

.footer_nav .accordion:hover .accordion-item:hover .accordion-item-content,
.footer_nav .accordion .accordion-item--default .accordion-item-content {
    height: auto;
}
.footer_nav .accordion-item-content,
.footer_nav .accordion:hover .accordion-item-content {
    height: 0;
    overflow: hidden;
    transition: height .25s;
}

.footer_nav .accordion {
    padding: 0;
    margin: 0 auto;
    width: 100%;
    font-family: "PT Sans" sans-serif
}

.footer_nav .accordion .accordion-item {
  background-image:transparent;
  border-bottom: 0px solid #666;
  padding: 1em;
  color: #eee;
}

.footer_nav .accordion h1 {

    font-size: 15px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: bold;
    color: #fff;
}

.footer_nav .accordion p{

  font-size: 13px;
  margin-bottom: 20px;
  text-transform: capitalize;
  text-decoration: none;
  letter-spacing: .05em;
  color: #fff;
}

.footer_nav .accordion a{

  font-size: 13px;
  margin-bottom: 20px;
  text-transform: capitalize;
  text-decoration: none;
  letter-spacing: .05em;
  color: #fff;
}
.footer_nav .accordion a:hover{
  margin-left:3px;
  color:#056aa0;
}

.footer_nav .accordion .accordion-item:nth-child(1) {
  background-color: transparent;
  background-image: transparent;

}

@media screen and (max-width: 480px) {
  .app-icon img {
    max-width: 100px;
    min-width:100px;
    margin-bottom:20px;
    
} 

.footer_middle_area{
  overflow: hidden;
  text-align:center;
}
.footer_middle_social_icon{
text-align:center;
margin:auto 0px;
}
.footer_middle_social_icon a {
  height: 20px;
  width: 20px;
  line-height: 20px;
  display: inline-block;
  background:#056aa0;
  border-radius: 50%;
  font-size: 9px;
  color: #fff;
  text-align:center;
  margin: 0 5px;
  transition:.5s;
}
.footer_middle_social_icon a.color1{
  background: #ef6330;
}
.footer_middle_social_icon a.color2{
  background: #43baff;
}
.footer_middle_social_icon a.color3{
  background: #ff9000;
}
.footer_middle_social_icon a.color4{
  background:#e60023;
}
.footer_middle_social_icon a.color5{
  background: #00247e;
}
.footer_middle_social_icon a.color6{
  background: #6659d4;
}
.footer_middle_social_icon a.color7{
  background: #5eb414;
}

.footer_middle_social_icon a:hover{
background:#056aa0;
}
.footer_bottom_menu_inner {
  text-align: center;
}
.footer_bottom_menu_inner ul {
  list-style: none;
}
.footer_bottom_menu_inner ul li {
  display: inline-block;
}
.footer_bottom_menu_inner ul li a {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin: 0 5px;
  transition:.5s;
}
.footer_bottom_menu_inner ul li a:hover {
  color: #0c5adb ;
}
.footer_bg_shape {
  position: relative;
}
.footer_bg_shape:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 80%;
  width: 50%;
  /*background: url(assets/images/new/footer-bgdt.png);*/
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  left: 0;
  right: 0;
  margin: auto;
  opacity: .6;
}

.col_de_flex .d-flex {
  display: none!important;
  /* display: flex!important; */
}
  
}



/* sub menu style */
#d_It{
  width: 200%!important;
}


.it_drl{
  opacity: 0.5;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.it_drl h1 h6{
color:#fff;
}

.d_section{
  color:#056aa0;
}
.d_section1{
  color:#ffffff;
}

#software_text{
  text-align:justify;
}

#software_button a{
  padding: 10px 20px;
}

#software_text2{
  color:#111;
}
.software_section{
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity:0.2;

}

#breat_cont a{

color:#111;
}
