html,
body {
  font-family: "Source Sans Pro", arial, sans-serif;
  font-size: 16px;
  color: #444;
  background-color: #fff;
}

body {
  font-size: 1rem;
  overflow-x: hidden;
  width: 100%;
}

section {
  position: relative;
  z-index: 10;
}

img {
  max-width: 100%;
  height: auto;
  width: auto;
}

div {
  box-sizing: border-box;
}

.onhide {
  display: none;
  height: 0;
  width: 0;
}

.content {
  width: 95%;
  max-width: 1100px;
}

.border-hover-out {
  position: relative;
  z-index: 5;
  background-color: #fff;
}

.border-hover-out:before {
  content: "";
  height: 100%;
  width: 100%;
  background-color: #666;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -webkit-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  z-index: -1;
}

.border-hover-out:hover:before {
  left: 4px;
  top: 4px;
}

.display_table {
  display: table;
  width: 100%;
}

.display_cell {
  width: 100%;
  display: table-cell;
}

.green-text {
  color: #80ccb3;
}

.brown-text {
  color: #51140f;
}

.blue-text {
  color: #0080c8;
}

.darkblue-text {
  color: #004070;
}

.main-title {
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 500;
  color: #51140f;
  font-family: "Rubik";
}

/********************************************************TOP HEADER*****************************/
.top-header-section {
  background-color: #0080c8;
  color: #e0ffff;
  font-size: 0.9rem;
  padding: 10px 0;
}

.nettalk {
  display: block;
  float: left;
  text-transform: uppercase;
  line-height: 24px;
  font-size: 0.8rem;
}

.item_talk {
  display: block;
  float: left;
  margin-left: 15px;
  padding-left: 15px;
  border-left: #85b2c9 1px solid;
  color: #f9f9f9;
  line-height: 24px;
}

.item_talk:hover {
  color: #fff;
}

.item_talk i {
  line-height: 24px;
}

.ftop_item {
  margin: 0;
  padding: 0;
  float: left;
}

.ftop_item li {
  display: block;
  float: left;
}

.ftop_item li a,
.ftop_item li a:visited {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  margin-left: 15px;
  line-height: 24px;
  color: #0080c8;
  float: left;
  height: 24px;
  width: 24px;
  border-radius: 50%;
  text-align: center;
  background-color: #e0ffff;
}

.ftop_item:hover {
  color: #fff;
}

.ftop_item i {
  line-height: 24px;
}

/*************************HEADER *********************/
.header-section {
  z-index: 20;
  padding: 10px 0;
  margin-bottom: 0px;
}

.header-section .content {
}

.logo {
}

.logo img {
  display: block;
  height: 80px;
  width: auto;
}

.menu-button {
  height: 80px;
  display: none;
  align-content: center;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.menu-button i {
  background-color: #ddd;
  color: #0080c8;
  padding: 10px;
}

.contact-button {
  margin-right: 10px;
  display: none;
}

.contact-button i {
  color: #51140f;
}

.close-menu-button {
  display: none;
  font-size: 1.2rem;
  color: #000;
  background-color: #ededed;
  text-align: right;
  padding: 15px 30px;
}

.hold-main-navigation {
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-content: space-between;
  align-items: flex-end;
  width: 80%;
  flex-direction: column;
}

.main-navigation {
  height: 80px;
  width: 100%;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  -webkit-box-pack: justify;
  -webkit-justify-content: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.main-navigation li {
  float: none;
  margin: 0 25px;
  position: relative;
}

.main-navigation li:nth-last-child(2) {
  margin-right: 0;
}

.main-navigation li a,
.main-navigation li a:visited {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.95rem;
  display: block;
  color: #666;
  position: relative;
  cursor: pointer;
}

.main-navigation li a:after {
  content: "";
  height: 3px;
  background-color: #51140f;
  position: absolute;
  bottom: -10px;
  width: 0%;
  left: 0;
  transition: all ease-in-out 0.2s;
}

.main-navigation li a:hover,
.main-navigation li:hover > a,
.main-navigation li.current-menu-item a {
  color: #51140f;
  text-decoration: none;
}

.main-navigation li a:hover:after,
.main-navigation li.current-menu-item a:after {
  width: 100%;
}

.main-navigation li ul {
  display: none;
  top: 100%;
  left: -100px;
  width: 330px;
  position: absolute;
  padding-top: 25px;
}

.main-navigation li:hover ul {
  display: block;
}

.main-navigation li ul div {
  background-color: #fff;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.7);
}

.main-navigation li ul li {
  margin: 0;
  float: none;
}

.main-navigation li ul li a,
.main-navigation li ul li a:visited {
  line-height: normal;
  padding: 15px 10px;
  font-size: 0.9rem;
}

.main-navigation li ul li a:visted {
}

.main-navigation li ul li a:after {
  height: 0px;
  bottom: 0px;
}
.ansubtitle small {
  color: lightgreen;
  text-transform: uppercase;
  display: block;
}
.ansubtitle i {
  font-size: 1.1rem;
}

.hold_sliders .ansubtitle small {
  font-weight: bold;
  font-size: 1.2rem;
}
.subpage-dp-title.ansubtitle small {
  margin-top: 12px;
  font-size: 1.3rem;
}

/*****************FOOTER************************/
.footer-section {
  padding: 80px 0;
  margin-top: 0;
  font-size: 0.9rem;
}

.footer-section .content {
  position: relative;
  z-index: 12;
  opacity: 0;
  transition: all ease-in-out 1s;
}

.footer-section .content.active {
  opacity: 1;
}

.one_footer {
  width: 20%;
}

.one_footer:nth-child(1) {
  width: 15%;
}

.one_footer:nth-child(2) {
  width: 45%;
  margin: 0 5%;
}

.one_footer:nth-child(3) {
  width: 30%;
}

.footer_logo {
  margin-bottom: 15px;
}

.footer_logo img {
  height: 90px;
  width: auto;
  margin: 0 auto;
}

.all_cert_partners {
}

.all_cert_partners a {
  height: 80px;
  background-position: left center;
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
}

.all_cert_partners a:hover {
}

.all_cert_partners a img {
}

.in_one_footer {
  width: 50%;
}

.footer-title {
  color: #51140f;
  font-size: 1.1rem;
  font-family: "Rubik";
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
}

.footer-navigation {
}

.footer-navigation li {
  float: none;
  display: block;
  margin: 0;
  margin-bottom: 10px;
}

.footer-navigation li a,
.footer-navigation li a:visited {
  color: #fff;
  font-size: 0.9rem;
  text-transform: capitalize;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.footer-navigation li a:hover {
  color: #fff;
}

.btm_footer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: solid 1px rgba(255, 255, 255, 0.2);
}

.social-navigation {
}

.social-navigation li {
  float: left;
  margin-left: 30px;
}

.social-navigation li a,
.social-navigation li a:visited {
  color: #85b2c9;
  font-size: 1.2rem;
}

.social-navigation li a:hover {
}

.cont_info {
  margin: 0;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.contact_item {
  color: #e0ffff;
  font-size: 0.9rem;
  float: left;
  line-height: 2em;
  margin: 5px 10px;
}

.contact_item i {
  color: #fff;
  margin-right: 5px;
}

.cont_good {
  font-size: 1.1rem;
  color: #2bba5a;
  font-weight: 700;
  margin-top: 10px;
}

.error_message {
  margin: 10px auto;
  background: #f22121;
  color: #fff;
  display: block;
  font-size: 0.9rem;
  line-height: 1.8em;
  padding: 20px;
}

.cr {
  color: #eee;
  font-size: 0.8rem;
  margin-top: 10px;
  text-align: center;
  color: #e0ffff;
}

.cr a {
  color: #85b2c9;
}

.the-background-box {
  position: absolute;
  z-index: 10;
  background-color: #0080c8;
  width: 100%;
  right: 0%;
  height: 100%;
  top: 0;
  transition: all ease-in-out 0.5s;
}

.the-background-box.active {
  right: 0%;
}

/*contact section*/
.contact-us-section {
  padding: 0;
}

.left_cont,
.right_cont {
  width: 35%;
  box-sizing: border-box;
  padding: 100px 20px;
}

.left_cont {
  background-color: #f0f0f0;
  min-height: 700px;
}

.cont_header,
.petop_c,
.cheaddress {
  padding: 0 10%;
}

.cont_header,
.chctitle {
  font-size: 1.1rem;
  color: #51140f;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Source Sans Pro";
  margin-bottom: 20px;
}

.petop_c {
  font-size: 1rem;
  color: #666;
  margin-bottom: 10px;
  display: block;
}

.cheaddress {
  color: #666;
  margin-top: 10%;
}

.chctitle {
}

.tce_address {
  font-size: 1rem;
  margin-bottom: 10px;
  display: block;
}

.close_contact {
}

.right_cont {
  width: 60%;
}

.right_cont .cont_header {
  padding: 0;
}

.map {
  height: 100%;
  width: 100%;
  background-color: #ededed;
}

.form_contact_us {
  margin-top: 10px;
}

.input_item {
  display: block;
  margin-bottom: 10px;
  padding: 15px 10px;
  border: solid 1px #ddd;
  width: 100%;
}

.input_item:active {
  border: #51140f solid 1px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

.send_btn {
  display: block;
  background-color: #0080c8;
  padding: 15px;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  color: #fff;
  font-weight: 600;
}

.send_btn:hover {
  background-color: #0080c8;
}

/*************************HOME PAGE**********************/
.slider-section {
  position: relative;
}

.overlay_slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 11;
  height: 100%;
  opacity: 0;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#51140f+0,51140f+100&1+0,0+100 */
  /*background: -moz-linear-gradient(left, rgba(81,20,15,1) 0%, rgba(81,20,15,0) 100%); 
    background: -webkit-linear-gradient(left, rgba(81,20,15,1) 0%,rgba(81,20,15,0) 100%); 
    background: linear-gradient(to right, rgba(81,20,15,1) 0%,rgba(81,20,15,0) 100%); 
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#51140f', endColorstr='#0051140f',GradientType=1 ); */
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#0080c8+0,0080c8+100&1+0,0+100 */
  background: -moz-linear-gradient(
    left,
    rgba(0, 128, 200, 1) 0%,
    rgba(0, 128, 200, 0) 100%
  );
  /* FF3.6-15 */
  background: -webkit-linear-gradient(
    left,
    rgba(0, 128, 200, 1) 0%,
    rgba(0, 128, 200, 0) 100%
  );
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to right,
    rgba(0, 128, 200, 1) 0%,
    rgba(0, 128, 200, 0) 100%
  );
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0080c8', endColorstr='#000080c8', GradientType=1);
  /* IE6-9 */
}

.overlay_slider.show_overlay {
  opacity: 1;
}

.hold_sliders {
  width: 100%;
  position: relative;
  z-index: 19;
  height: 470px;
  overflow: hidden;
}

.one_slider {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  display: none;
  height: 100%;
}

.slider_img {
  width: 100%;
  position: relative;
  z-index: 10;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
}

.slider_img img {
  width: 100%;
  display: block;
  height: auto;
}

.slider_description {
  position: absolute;
  z-index: 16;
  bottom: 30%;
  left: 10%;
}

.slider_title {
  font-size: 2.3rem;
  color: #fff;
  line-height: 1.5em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: "Rubik";
}

.slider_desc {
  color: #fff;
  margin-bottom: 15px;
  font-size: 1.2rem;
  width: 100%;
}

.hold_slider_btn {
  color: #fff;
  font-size: 1.2rem;
  line-height: 40px;
}

.hold_slider_btn:hover {
  text-decoration: none;
}

.slider_btn {
  color: #0080c8;
  font-size: 1.3rem;
  background-color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-align: center;
  align-content: center;
  justify-content: center;
  align-items: center;
  display: flex;
  float: left;
  margin-right: 10px;
}

.slider_btn i {
}

.slider_title,
.slider_desc,
.hold_slider_btn,
.slider_btn {
  position: relative;
  top: 30px;
  opacity: 0;
  transition: all ease-in-out 0.5s;
}

.slider_title.active,
.slider_desc.active,
.hold_slider_btn.active,
.slider_btn.active {
  top: 0px;
  opacity: 1;
}

.bottom_slider {
  margin-top: 20px;
  position: relative;
  z-index: 9;
}

.slider-arrows {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
}

.slider-arrows a {
  width: 20px;
  height: 5px;
  display: block;
  margin: 0 3px;
  background-color: #999;
  transition: all ease-in-out 0.2s;
}

.slider-arrows a.active {
  width: 50px;
  background-color: #0080c8;
  position: relative;
}

.slider-arrows a:hover {
}

.slider-count {
  position: relative;
  display: block;
  text-align: center;
  width: 100%;
  margin-top: 10px;
}

.hold_lines_s {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 9;
}

/*******/
.about-section {
  padding: 40px 0;
  z-index: 8;
  background: #e8eeee;
}

.all_about_history {
  position: relative;
  z-index: 15;
  width: 45%;
}

.about_header {
  text-align: left;
}

.about_header .main-title {
  font-size: 1.2rem;
  color: #0080c8;
  position: relative;
  display: inline-block;
}

.after_line {
  position: absolute;
  top: calc(50% - 2px);
  left: 110%;
  width: 50px;
  height: 2px;
  background-color: #666;
}

.hold_left_header .main-title {
}

.hold_about_us {
  width: 100%;
  margin: 0 auto;
}

.home_hightlight {
  font-size: 2rem;
  font-weight: 300;
  line-height: 2.7rem;
  margin-top: 15px;
  font-family: "Rubik";
  color: #51140f;
}

.about_desc {
  margin-top: 10px;
}
.img_iso_cert {
  z-index: 10000;
  position: absolute;
  top: 20px;
  left: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
}
.img_iso_cert img {
  display: block;
  width: auto;
  height: 57px;
  margin: 0 5px;
}
.about_icons {
}

.abt_readmore {
  width: 120px;
  text-align: center;
  margin: 20px 0;
  color: #0080c8;
  border-radius: 40px;
  border: solid 1px #0080c8;
  padding: 8px 0;
  font-size: 0.9rem;
}

.abt_readmore:hover {
  background-color: #0080c8;
  text-decoration: none;
  color: #fff;
}

.hold_abt_imgs {
  width: 50%;
  position: relative;
  margin-top: 50px;
}

.hil_img {
  height: 300px;
  background-size: cover;
  background-position: center;
  width: 100%;
  position: absolute;
  top: 0;
}

.hil_img_one {
  top: 200px;
  right: -5%;
}

.hil_img_two {
  left: 0%;
  width: 90%;
}

.omgabout {
  position: absolute;
  top: -20%;
  font-size: 30vh;
  text-transform: uppercase;
  opacity: 0.1;
  color: #ccc;
  font-weight: 700;
  z-index: -1;
}

/****/
.services-section {
  padding: 70px 0;
  background-color: #fcd440;
}

.services-section .content {
  position: relative;
}

.services_header {
  text-align: center;
  margin-bottom: 20px;
}

.services_header .main-title {
  font-size: 2.5rem;
  color: #fff;
  position: relative;
  font-weight: 700;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  display: inline-block;
}

.services-section .omgabout {
  color: #fff;
  font-size: 15rem;
  opacity: 0.2;
  top: 40%;
}

.left_header {
  position: relative;
}

.left_header.active {
  opacity: 1;
  top: -30px;
}

.sub-title {
  font-size: 1.1rem;
  text-transform: uppercase;
}

.right_serv_content {
  position: relative;
  opacity: 0;
  top: -50px;
  transition: all ease-in-out 0.5s;
}

.right_serv_content.active {
  opacity: 1;
  top: 0px;
}

.all_services {
  position: relative;
  min-height: 350px;
}

.one_service {
  display: block;
  position: relative;
  width: 49%;
  padding: 50px 0;
  overflow: hidden;
  float: left;
  background-color: #fff;
  padding: 0;
  margin-top: 20px;
  background-color: #f0f0f0;
}

.one_service:hover {
  background-color: #fff !important;
  text-decoration: none;
}

.one_service:hover .service_right {
  opacity: 0.5;
}

.one_service .contents {
  position: relative;
  z-index: 20;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.one_service:nth-child(2),
.one_service:nth-child(3) {
  background-color: #e0ffff;
}

.one_service:nth-child(2n) {
  float: right;
}

.one_service:first-child {
}

.hold_icon_s {
  position: relative;
  display: block;
  width: 100%;
  opacity: 0.1;
  font-size: 6rem;
  margin-bottom: 10px;
  z-index: -1;
  text-align: center;
}

.hold_icon_s i {
  color: #333;
}

.service_left {
  width: 50%;
  position: relative;
  opacity: 1;
  transition: all ease-in-out 0.3s;
  padding: 10px;
  text-align: center;
  order: 2;
}

.one_service:nth-child(2n) .service_right {
  order: 2;
}

.service_left.active {
  opacity: 1;
}

.service-title {
}

.service-title a,
.service-title span {
  display: block;
  font-size: 1.1rem;
  color: #004070;
  font-family: "Rubik";
  font-weight: 500;
  text-transform: capitalize;
}

.service-title a:hover,
.service-title span:hover {
  color: #0080c8;
  text-decoration: none;
}

.service-description {
  color: #444;
  margin: 30px 0;
  line-height: 1.8em;
  display: none;
}

.more_service {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #666;
  font-weight: 600;
  position: relative;
  display: none;
}

.more_service:hover {
  text-decoration: none;
  color: #0080c8;
}

.more_service:after {
  content: "";
  position: absolute;
  bottom: -5px;
  height: 2px;
  left: 0;
  width: 40px;
  background-color: #666;
  transition: all ease-in-out 0.2s;
}

.more_service:hover:after {
  background-color: #0080c8;
  width: 60px;
}

.service_right {
  width: 50%;
  background-color: #f9f9f9;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.service_right img {
  display: block;
  width: 100%;
}

.hold_serv_arrows {
  position: absolute;
  right: -50px;
  bottom: 0;
  z-index: 20;
}

.serv_arrow {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: #51140f;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  float: left;
  color: #fff;
}

.serv_arrow:first-child {
  background-color: #fff;
  color: #51140f;
}

.serv_arrow i {
}

.hold_serv_next {
  position: absolute;
  top: 0;
  right: 0;
  transform: rotate(-90deg);
  transform-origin: top right;
  height: 50px;
  line-height: 50px;
  width: 240px;
}

.hstitle {
  text-transform: capitalize;
  font-size: 1rem;
  width: 90%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hold_serv_nav {
}

.hold_serv_nav a {
}

.hold_serv_nav a:hover {
}

/*******clients section**/
.clients-section {
  padding: 70px 0;
  border-top: solid 1px #f9f9f9;
}

.clients-section .content {
  position: relative;
  max-width: 1200px;
}

.matrix {
}

.hold-header {
  width: 100%;
  position: relative;
  text-align: center;
  margin-bottom: 20px;
}

.title-description {
}

.all_clients {
  position: relative;
  z-index: 10;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.one_client {
  height: 120px;
  margin-bottom: 20px;
  width: 16.66%;
  background-color: #fff;
  box-sizing: border-box;
  opacity: 0;
  transition: all ease-in-out 0.5s;
}

.one_client.active {
  opacity: 1;
}

.one_client:nth-child(5n) {
}

.one_client span {
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  display: block;
  height: 100%;
}

.one_client:hover span {
}

/*about page*/
.about-main-image {
  height: 350px;
  width: 100%;
}

.about_bimg {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.hold-page-title {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 12;
  text-align: center;
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  color: #fff;
  flex-direction: column;
}

.page-about-title {
  font-size: 2.5rem;
  font-family: "Source Sans Pro";
  font-weight: 600;
  text-transform: capitalize;
  margin-top: 15px;
}

.about-overlay {
  position: relative;
  height: 100%;
  width: 100%;
  background-color: #000;
  opacity: 0.5;
  z-index: 11;
}

.page_abt_desc {
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
  padding: 30px 0;
}

.abt01_header {
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "Rubik";
  margin-bottom: 15px;
  color: #0080c8;
}

.abt01_content {
  font-family: "Source Sans Pro";
  font-weight: 400;
  text-align: center;
  line-height: 1.8em;
  font-size: 1rem;
}

.about-two-section {
  background-color: #f7f9fb;
  padding: 100px 0;
}

.leftabt_content {
  width: 48%;
}

.contabt_desc {
  line-height: 1.8em;
  text-align: justify;
}

.abtcontentak {
  font-size: 1.6rem;
  text-align: left;
  margin-bottom: 10px;
  color: #51140f;
  font-family: "Source Sans pro";
  font-weight: 400;
  line-height: 1.4em;
}

.contabt_img {
  display: block;
}

.contabt_img img {
  display: block;
  width: 100%;
}

.rightabt_content {
}

/**Service Page**/
/*************************************************************--------------------------------DPR Page**/
.subpage-dp-title {
  font-size: 1.4rem;
  margin-top: 7px;
  color: #fff;
  font-weight: 600;
}

.topan-dpr-section {
}

.topan-dpr-section .content {
  padding: 0px 0;
  padding-top: 50px;
  max-width: 768px;
  text-align: center;
  font-size: 1.3rem;
  line-height: 1.8em;
  color: #51140f;
}

.video-section {
  padding: 0;
  height: 300px;
  overflow: hidden;
}

.left_video,
.right_video {
  width: 50%;
  height: 100%;
  position: relative;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.left_video {
}

.hold_vid_img {
  width: 100%;
  height: 100%;
  top: 0%;
  left: 0;
  position: absolute;
  z-index: 1;
  background-position: center;
  background-size: cover;
}

.hold_vid_background {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.hold_vid_play_icon {
  font-size: 4rem;
  color: #fff;
  display: block;
  text-align: center;
  position: relative;
  z-index: 20;
  margin-bottom: 10px;
}

.wvideo {
  position: relative;
  z-index: 20;
  display: block;
  width: 250px;
  text-transform: uppercase;
  text-align: center;
  font-size: 1.5rem;
  color: #fff;
  margin: 0 auto;
  font-weight: 600;
}

.wvideo:hover {
  text-decoration: none;
  color: #85b2c9;
}

.hold-video-pop-up {
  padding-top: 4%;
  position: fixed;
  top: 0%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}

.hold_video_yt {
  max-width: 768px;
  margin: 0 auto;
  width: 90%;
  display: block;
}

.close_vid_pop {
  max-width: 768px;
  margin: 0 auto;
  width: 90%;
  margin-bottom: 10px;
  color: #fff;
  font-size: 1.5rem;
  text-align: right;
  position: relative;
  display: block;
  top: 5%;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.right_video {
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  background-color: #004070;
}

.download_icon {
  font-size: 4rem;
  color: #fff;
  margin-bottom: 20px;
}

.download_icon i {
}

.dwnload_dpr_br {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 15px 0;
  background-color: #fff;
  max-width: 530px;
  font-size: 1rem;
  color: #004070;
  font-weight: 600;
  text-transform: uppercase;
}

.dwnload_dpr_br:hover {
  text-decoration: none;
  background-color: #0080c8;
  color: #fff;
}

/**drpr top section*/
.dpr-top-section {
  padding: 70px 0;
}

.dpr-top-section .omgabout {
  top: 10%;
  opacity: 0.2;
  font-size: 10rem;
  z-index: 15;
}

.dpr-top-section .content {
  z-index: 17;
  position: relative;
}

.done_title {
  font-size: 1.5rem;
}

.left_desc_dpr {
  width: 45%;
}

.dpr_desc {
  line-height: 1.8em;
  margin-top: 20px;
  text-align: justify;
}

.left_desc_dpr p {
  margin: 15px 0;
}

.onddpr_title {
  color: #51140f;
  margin-bottom: 30px;
}

.right_img_dpr {
  width: 55%;
}

.right_img_dpr img {
  width: 100%;
}

.stake-holder-section {
  background-color: #0080c8;
  padding: 50px 0;
  color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.sth-title {
  font-size: 2rem;
  font-family: "Source Sans Pro";
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  font-weight: 400;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.sth_desc {
  line-height: 1.6em;
  max-width: 768px;
  text-align: center;
  margin: 0 auto;
}

.sth_icons {
  max-width: 640px;
  margin: 0 auto;
  margin-top: 20px;
  color: #004070;
}

.one_sth {
  width: 49%;
  float: left;
  background-color: #f7f9fb;
  height: 180px;
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.one_sth:nth-child(2n) {
  float: right;
}

.one_sth * {
  transition: all ease-in-out 0.3s;
  -webkit-transition: all ease-in-out 0.3s;
  -moz-transition: all ease-in-out 0.3s;
  -ms-transition: all ease-in-out 0.3s;
}

.sth_name {
  display: block;
  height: 100%;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-transform: uppercase;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.2rem;
  color: #333;
}

.sth_name i {
  display: block;
  text-align: center;
  margin-bottom: 5px;
  font-size: 3rem;
  color: #ccc;
}

.one_sth:hover .sth_name {
  top: 100%;
}

.app_sth_desc {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  text-transform: capitalize;
  height: 100%;
  bottom: -95%;
  width: 100%;
  font-size: 1rem;
  line-height: 1.5em;
  background: #fcd440;
  color: #fff;
}

.one_sth:hover .app_sth_desc {
  bottom: 0;
}

.areas-of-use-section {
  background-color: #f3f9fc;
  padding: 70px 0;
  color: #666;
}

.areas-of-use-section .omgabout {
  top: 40%;
  opacity: 0.3;
}

.areas-of-use-section .content {
}

.areas-of-use-section .sth-title {
  color: #333;
  text-shadow: none;
}

.aou_desc {
  margin-top: 20px;
}

.aoleft {
  width: 55%;
  position: relative;
  z-index: 3;
}

.aou_desc ul {
  display: block;
  list-style: none;
}

.aou_desc ul li {
  display: block;
  color: #333;
  padding: 0px 0;
  padding-left: 24px;
  box-sizing: border-box;
  font-size: 1.2rem;
  line-height: 32px;
  position: relative;
}

.aou_desc ul li:before {
  content: "\F111";
  position: absolute;
  left: 0;
  width: 20px;
  height: 32px;
  line-height: 32px;
  font-family: "FontAwesome";
  font-size: 0.8rem;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  color: #2bba5a;
}

.aou_desc ul li:nth-child(2n) {
}

.aofuse_imgs {
  width: 43%;
  position: relative;
  height: 250px;
  z-index: 2;
}

.aou_one_img {
  position: absolute;
  top: 20%;
  width: 100%;
  left: 0;
  height: 100%;
  background-color: #fff;
  background-position: center;
  background-size: cover;
}

.aou_one_img:nth-child(2) {
  top: 00%;
  left: -20%;
}

.dpr-why-section {
  padding: 70px 0;
}

.dpr-why-section .omgabout {
  top: 40%;
  opacity: 0.2;
  font-size: 5rem;
}

.dpr-why-section .content {
}

.dpr_why_title {
  text-align: center;
}

.all_why_dpr {
  margin-top: 20px;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
}

.one_why_dpr {
  width: 25%;
  padding: 30px 20px;
  text-align: center;
  box-sizing: border-box;
}

.why_icon {
  font-size: 4.5rem;
  color: #0080c8;
  display: block;
  margin-bottom: 20px;
}

.why_icon i {
}

.why_desc {
  line-height: 1.5em;
}

.data-avail-section {
  padding: 70px 0;
  background-color: #e8eeee;
}

.pav_data {
}

.left_davail {
  width: 48%;
}

.left_davail img {
  display: block;
  width: 100%;
}

.right_davail {
  width: 50%;
}

.dpr_avail_title {
  font-size: 2rem;
  font-family: "Source Sans Pro";
  line-height: 1.2em;
  margin-bottom: 20px;
  color: #51140f;
}

.dpr_avail_desc {
  line-height: 2rem;
  font-size: 1.1rem;
}

.subscription-section {
  background-color: #fff;
  padding: 70px 0;
}

.subs_desc {
  font-size: 1.1rem;
  color: #666;
  max-width: 768px;
  margin: 0 auto;
  margin-top: 20px;
  text-align: center;
  line-height: 1.5em;
}

.all_subs {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  align-content: space-around;
  align-items: center;
  justify-content: space-around;
  text-align: center;
}

.one_subs {
  width: 30%;
  height: 320px;
  border: solid 1px #ccc;
  padding: 30px 10px;
  background-color: #0080c8;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.subs_title {
  font-size: 1.1rem;
  text-align: center;
  font-weight: 500;
  margin-bottom: 10px;
  color: #fff;
  text-transform: uppercase;
}

.one_subs_desc {
  line-height: 1.5em;
  color: #fff;
  text-align: left;
}

.one_subs_desc ul {
  display: block;
}

.one_subs_desc li {
  display: block;
  margin: 5px 0;
  padding-left: 5px;
  margin-left: 10px;
  text-align: center;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.one_subs_desc li:before {
  content: "\E809";
  font-family: "Fontello";
  width: 18px;
  text-align: center;
  background-color: #fff;
  left: -5px;
  position: relative;
  top: 0;
  color: #0080c8;
  display: inline-block;
  line-height: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 0.5rem;
}

.video_two_a {
  display: block;
  position: relative;
  overflow: hidden;
  width: 90%;
  margin-right: 0;
  float: right;
  clear: right;
}

.video_two_a img {
  display: block;
  position: relative;
  z-index: 2;
}

.video_two_a i {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 3rem;
}

.cost-estimation-section {
  padding: 50px 0;
  background-color: #f9f9f9;
}

.left_cest {
  width: 46%;
}

.right_cest {
  width: 51%;
  font-size: 1.4rem;
  line-height: 1.6em;
  color: #51140f;
  text-align: justify;
}

.dpr-tsep-section {
  padding: 50px 0;
}

.dpr-tsep-section .content {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}

.left_tsep {
  width: 70%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-around;
}

.one_tsepts {
  width: 30%;
  text-align: center;
}

.one_tsepts span {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  margin-bottom: 15px;
}

.one_tsepts span i {
  font-size: 2.5rem;
  color: #004070;
}

.one_tsepts h5 {
  font-size: 1rem;
  color: #004070;
}

.right_tsep {
  width: 27%;
  margin-right: 0;
  margin-left: auto;
}

.right_tsep a {
  display: block;
  width: 100%;
  background-color: #0080c8;
  color: #fff;
  font-size: 1.1rem;
  text-transform: uppercase;
  padding: 15px 0;
  text-align: center;
  border-radius: 5px;
  font-weight: 700;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.right_tsep a:hover {
  background-color: #004070;
  text-decoration: none;
}

.mid-tsep-section {
  padding: 70px 0;
  background-color: #fff;
}

.mid-tsep-section:nth-child(2n) {
  background-color: #e8eeee;
}

.mid-tsep-section .content {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: space-between;
}

.mid-tsep-section:nth-child(2n) .content {
  flex-direction: row-reverse;
}

.left_img_tsep_info {
  width: 50%;
}

.left_img_tsep_info img {
  display: block;
  width: 100%;
}

.right_desc_tsep_info {
  width: 47%;
}

.right_desc_tsep_info h2 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.desctsep_info {
  line-height: 1.5em;
  color: #000;
}

.desctsep_info p {
  margin: 10px 0;
}

/****-----------------------outinks--------------------*/
.outlink-pages-section {
  padding: 40px 0;
  background: #0080c8;
}
.outlink_all {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
}
.outlink_one {
  width: 24%;
  text-align: center;
  display: block;
  text-decoration: none;
  transition: all ease-in-out 0.2s;
}
.outlink_one:hover {
  text-decoration: none;
  color: #fff;
  opacity: 1;
  transform: scale(1.05);
}
.outlink_img {
  margin-bottom: 10px;
}
.outlink_img img {
  display: block;
  margin: 0 auto;
  max-width: 130px;
  max-height: 40px;
}
.outlink_one h4 {
  padding-top: 20px;
  border-top: dashed 1px rgba(255, 255, 255, 0.2);
  font-size: 1rem;
  color: #fff;
  margin-top: 20px;
  margin-bottom: 2px;
}
.outlink_one h5 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}

/*************************CORROSION*************/
.top-corr-section {
  padding: 70px 0;
}

.top-corr-section .omgabout {
  font-size: 6rem;
  opacity: 0.15;
  text-align: center;
  top: 20%;
}

.cor_top_text {
  font-size: 1.6rem;
  color: #0080c8;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.two_images_holder {
  margin: 0 auto;
  margin-top: 20px;
  max-width: 768px;
}

.one_corr_img {
  width: 48%;
}

.one_corr_img img {
  width: 100%;
  display: block;
}

.two-corr-section {
  padding: 70px 0;
  background-color: #f3f9fc;
}

.hold_cor_description {
  width: 48%;
}

.cor_two_text {
  line-height: 1.6em;
  margin-top: 0px;
  text-align: justify;
}

.cor_two_text p:first-child {
  margin-top: 0;
}

.hold_corr_img {
  width: 50%;
}

.hold_corr_img img {
  width: 100%;
  display: block;
}

/*************************************************SP PAGE**/
.sp-top-section {
  padding: 70px 0;
  overflow: hidden;
}

.sp-top-section .omgabout {
  font-size: 5rem;
  opacity: 0.2;
}

.hold_cert_img {
}

.hold_cert_img img {
  display: block;
  width: 90%;
  max-width: 500px;
  margin: 0 auto;
  margin-top: 20px;
}

.sp_top_text {
  font-size: 1rem;
  color: #51140f;
  margin: 0 auto;
  max-width: 640px;
  text-align: center;
  line-height: 1.8rem;
}

.sp_top_text h3 {
  color: #0080c8;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.sp-vid-section {
  background-color: #e0ffff;
}

.coating-main-section {
  padding: 70px 0;
}

.coat_details {
  margin-top: 20px;
}

.sp_cm_left {
  width: 48%;
  line-height: 2em;
}

.sp_cm_left h3 {
  font-size: 1.5rem;
  color: #51140f;
  margin-bottom: 20px;
}

.sp_cm_right {
  width: 50%;
  position: relative;
}

.sp_cm_right img {
  width: 100%;
}

.cold-main-section {
  padding: 70px 0;
  background-color: #0080c8;
}

.cold-main-section .main-title {
  color: #fff;
}

.cold-main-section .sp_cm_left,
.cold-main-section .sp_cm_left h3 {
  color: #fff;
}

.benefits-section {
  padding: 70px 0;
  background-color: #f9f9f9;
}

.sppar_img {
  position: absolute;
  top: 0%;
  left: 10%;
  width: 100%;
}

.sppar_img img {
  max-width: 300px;
  margin: 0 auto;
}

.sppar_img:nth-child(2) {
  left: -20%;
}

.top-pcon-section {
  padding: 70px 0;
}

.top-pcon-section .omgabout {
  font-size: 8rem;
  top: 00%;
}

.hold_pcon_img {
  margin: 0 auto;
  margin-top: 20px;
  max-width: 960px;
  width: 90%;
  display: flex;
  align-content: space-around;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.hold_pcon_img img {
  width: 24%;
  display: block;
  box-shadow: 0 0 5px #999;
}

.pcon_desc_main {
  margin: 0 auto;
  max-width: 960px;
  width: 90%;
  display: block;
  column-count: 2;
  column-gap: 50px;
  line-height: 1.8em;
  text-align: justify;
  margin-top: 30px;
}

/*********************/
.service-main-image {
}

.service-main-image .right_slider {
  height: 300px;
  max-height: 100%;
}

.left_service_img {
  position: relative;
}

.left_service_img img {
  display: block;
  width: 100%;
}

.main-page-title {
  position: absolute;
  bottom: 20%;
  left: 10%;
  font-size: 2.4rem;
  color: #fff;
  text-transform: uppercase;
  z-index: 20;
  font-weight: 700;
}

.main-page-title small {
  font-size: 1.2rem;
}

.breadcrumb-section {
  padding: 10px 0;
}

.bread_crumbs {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
}

.bread_crumbs li {
  color: #fff;
  text-transform: capitalize;
  font-size: 0.8rem;
  margin-right: 10px;
}

.bread_crumbs li a,
.bread_crumbs li a:visited {
  color: #fff;
  font-size: 1rem;
}

.bread_crumbs li a:hover {
  color: #eee;
  text-decoration: none;
}

.service-section {
  padding: 30px 0;
  padding-bottom: 100px;
}

.service-section {
  font-size: 1.1rem;
}

.single-page-title {
  text-align: center;
  color: #51140f;
  text-transform: capitalize;
  font-size: 1.5rem;
  font-weight: 700;
}

.siteorigin-panels-stretch {
  width: 95%;
  max-width: 1100px;
  margin: 0 auto;
}

#pg-55-3,
#pg-55-2 {
  background-color: #f9f9f9;
}

.download_dpr_btn {
  display: block;
  font-size: 1.1rem;
  color: #fff;
  background-color: #0080c8;
  text-align: center;
  padding: 15px 15px;
  text-decoration: none;
}

.download_dpr_btn:hover {
  background-color: #004070;
  text-decoration: none;
}

.type-two-breadcrumbs-section {
  padding: 15px 0;
  background-color: #eee;
}

.type-two-breadcrumbs-section .bread_crumbs {
  display: block;
}

.type-two-breadcrumbs-section .bread_crumbs li {
  float: left;
  color: #004070;
}

.type-two-breadcrumbs-section .bread_crumbs li a {
  color: #004070;
  font-size: 1rem;
}

.type-two-breadcrumbs-section .bread_crumbs li a:hover {
}

/************************************NEWS PAGE***/
.news-section {
  padding: 30px 0;
  padding-bottom: 70px;
}

.latestnews-title {
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 300;
}

.all_news {
  margin-top: 20px;
}

.one_news_item {
  width: 23%;
  margin-right: 2.5%;
  margin-bottom: 30px;
  min-height: 450px;
  background-color: #f5f5f5;
  padding: 0;
  box-sizing: border-box;
  position: relative;
}

.one_news_item:nth-child(4n) {
  margin-right: 0;
}

.news_img {
  display: block;
}

.news_img img {
  display: block;
  width: 100%;
}

.hold_news_desc {
  padding: 10px 20px;
}

.news-title {
  font-size: 1.1rem;
  margin: 10px 0;
}

.news-title a {
  color: #51140f;
  font-weight: 600;
}

.news-exde {
  color: #666;
  line-height: 1.4rem;
  font-size: 1rem;
}

.news_rmore {
  position: absolute;
  left: 20px;
  bottom: 20px;
  color: #0080c8;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.news_rmore:hover {
  color: #51140f;
}

.latest-news-section {
  padding: 70px 0;
}

.latest-news-section .one_news_item {
  background-color: #fff;
  min-height: 380px;
  margin-top: 15px;
}

.single-news-section {
  padding: 40px 0;
}

.left_news_one {
  width: 66%;
}

.single_header {
  font-size: 1.5rem;
  font-family: "Source Sans Pro";
  font-weight: 500;
}

.hold_categories {
  margin: 10px 0;
  display: none;
}

.ffeat_cats {
}

.ffeat_cats a {
  font-size: 1rem;
  color: #999;
  margin-right: 10px;
}

.ffeat_cats a:hover {
  color: #0080c8;
}

.hold_information {
  margin: 10px 0;
}

.dsdate {
  font-size: 1rem;
  color: #666;
}

.social_share {
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #f9f9f9;
}

.social_share li {
  float: left;
  margin-right: 10px;
}

.social_share li a,
.social_share li a:visited {
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  height: 24px;
  width: 24px;
  font-size: 0.8rem;
  color: #666;
  border-radius: 50%;
  border: solid 1px #ccc;
}

.single_content {
  margin: 20px 0;
  line-height: 1.5em;
}

.single_content img {
  margin: 15px auto;
  max-width: 100%;
}

.right_news_one {
  width: 30%;
}

.exe_img {
  width: 40px;
  height: 40px;
  background-image: url("https://steelcorr.com/wp-content/uploads/2018/12/exemain.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  display: inline-block;
}

.dpr-testimonials-section {
  padding: 70px 0;
  background-color: #e8eeee;
}

.dpr-testimonials-section .omgabout {
  font-size: 5rem;
  color: #666;
}

.dpr_outer_testimonials {
  width: 100%;
  overflow: hidden;
  margin-top: 25px;
}

.dpr_testimonials {
  padding: 0;
  display: block;
}

.one_testimonial {
  width: 100%;
  text-align: center;
  padding-bottom: 30px;
  margin-bottom: 30px;
  position: relative;
}

.one_testimonial:after {
  content: "\f006";
  position: absolute;
  top: calc(100% - 10px);
  left: 0;
  width: 100%;
  height: 20px;
  line-height: 20px;
  text-align: center;
  font-family: "FontAwesome";
  color: #0080c8;
}

.one_testimonial:last-child:after {
  display: none;
}

.the_testimonial {
  font-size: 1rem;
  line-height: 1.6em;
  color: #000;
  font-style: italic;
}

.the_testimonial small {
  font-size: 0.7em;
  margin: 0 5px;
  color: #666;
  vertical-align: text-top;
}

.test_person {
  margin-top: 20px;
  margin-bottom: 5px;
  font-size: 1.2rem;
  color: #000;
  font-weight: 600;
}

.test_company,
.test_position {
  margin-bottom: 3px;
  font-size: 1rem;
  color: #51140f;
  text-transform: uppercase;
}

.test_position {
}

.one_test_nav {
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.one_test_nav a {
  display: block;
  margin: 0 5px;
  height: 15px;
  background-color: #666;
  width: 15px;
  border-radius: 50%;
}

.one_test_nav a.active {
  background-color: #2bba5a;
}

.popup-news-section {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.popup-news-section .content {
  max-width: 768px;
  background: #fff;
  position: relative;
}

.close_popn {
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  background-color: #51140f;
  color: #fff;
}

.popup_cont {
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.left_popct {
  width: 50%;
  background-color: #ededed;
  height: 350px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.left_popct img {
  display: block;
  width: 100%;
}

.right_popct {
  width: 50%;
  text-align: center;
  padding: 0 20px;
}

.right_popct h2 {
  color: #51140f;
  text-transform: uppercase;
  font-size: 1.3rem;
  font-weight: 600;
}

.ppu_desc {
  margin: 25px 0;
  line-height: 1.5rem;
}

.rmore_ppu {
  width: 100%;
  max-width: 200px;
  display: block;
  font-size: 0.9rem;
  border: solid 1px #999;
  color: #666;
  padding: 10px 0;
  text-transform: uppercase;
  text-align: center;
  margin: 0 auto;
}

.rmore_ppu:hover {
  background-color: #eee;
  color: #222;
  text-decoration: none;
}

.the-team-section {
  padding: 50px 0;
}
.the-team-section:nth-child(2n + 1) {
  background: #e8eeee;
}
.the-team-section h3 {
  font-size: 1.8rem;
  color: #51140f;
  text-align: center;
  font-weight: 600;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.all_team_members {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  align-content: flex-start;
  flex-wrap: wrap;
}
/*$P$BwPvZK06w9TN3ff022fOdWmBKqdb6b0*/
.one_team_member {
  width: 48%;
  margin-bottom: 20px;
}
.team_image {
  display: block;
  width: 100%;
  min-height: 200px;
}
.team_image img {
  display: block;
  width: 100%;
}

.team_mdetails {
  padding: 10px 0;
}
.team_mdetails h4 {
  font-size: 1.2rem;
  color: #000;
  letter-spacing: 0.04em;
  font-weight: 700;
  text-transform: uppercase;
}
.team_mdetails h5 {
  font-size: 1rem;
  margin: 5px 0;
  color: #000;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.team_mdetails p {
  line-height: 1.5em;
}

.pricing-section {
  padding: 50px 0;
}
.mainptitle {
  font-size: 1.5rem;
  color: #004070;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.all_pricings {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-content: center;
  flex-wrap: wrap;
}
.one_pricing {
  width: 31%;
  border: solid 1px #ddd;
  border-radius: 10px;
  overflow: hidden;
}
.pricing_title {
  font-size: 1.4rem;
  padding: 13px 10px;
  text-align: center;
  color: #004070;
  text-align: center;
  font-weight: bold;
  background: rgba(0, 128, 200, 0.2);
}
.pricing_sub_title {
  padding: 20px 30px;
  text-align: center;
  color: #004070;
  height: 100px;
  font-size: 1.3rem;
  font-weight: 600;
}
.pricing_sub_title small {
  display: block;
  margin-top: 50px;
  font-size: 0.8rem;
  font-weight: normal;
}
.feature_pricing {
  padding: 20px;
  border-top: solid 1px #ddd;
  height: 200px;
}
.feature_pricing h3 {
  font-size: 0.9rem;
  text-transform: capitalize;
  margin-bottom: 15px;
  font-weight: 700;
  color: #333;
}
.feature_pricing ul {
  display: block;
}
.feature_pricing ul li {
  margin: 7px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  align-content: center;
}
.feature_pricing ul li i {
  margin-right: 7px;
  height: 16px;
  width: 16px;
  font-size: 0.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  color: #666;
}
.feature_pricing ul li i.green {
  background-color: #2bba5a;
  color: #fff;
  font-size: 0.6rem;
}

@media screen and (max-width: 1024px) {
  .menu-button {
    display: flex;
  }

  .close-menu-button {
    display: block;
  }

  .contact-button {
    display: none;
  }

  .close_top_contact {
    display: none;
  }

  .hold-main-navigation {
    position: fixed;
    top: 0%;
    right: -100%;
    width: 100%;
    height: 100%;
    display: block;
    background-color: #fff;
    overflow-y: scroll;
    z-index: 2000;
  }

  .main-navigation {
    height: auto;
    width: 100%;
    display: block;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  }

  .main-navigation li {
    margin: 0;
    position: relative;
    display: block;
    width: 100%;
    box-sizing: border-box;
    float: none;
  }

  .main-navigation li a,
  .main-navigation li a:visited {
    padding: 15px 20px;
    border-top: solid 1px #ccc;
    text-align: left;
  }

  .main-navigation li a:after {
    display: none;
  }

  .main-navigation li a:hover,
  .main-navigation li:hover > a,
  .main-navigation li.current-menu-item a {
    color: #51140f;
    text-decoration: none;
  }

  .main-navigation li ul {
    display: block;
    top: 0%;
    left: 0;
    width: 100%;
    position: relative;
    padding-top: 0;
  }

  .main-navigation li:hover ul {
    display: block;
  }

  .main-navigation li ul div {
    background-color: #f0f0f0;
    box-shadow: none;
  }

  .main-navigation li ul li {
    margin: 0;
    float: none;
  }

  .main-navigation li ul li a,
  .main-navigation li ul li a:visited {
    padding: 15px 40px;
    color: #000;
  }

  .hil_img {
    top: 30px;
  }

  .hil_img_two {
    left: -5%;
    width: 90%;
  }

  .omgabout {
    font-size: 25vh;
  }

  .services-section .omgabout {
    font-size: 30vh;
    top: 80%;
  }

  .hold_icon_s {
    font-size: 5rem;
  }

  .service-title a,
  .service-title span {
    font-size: 1rem;
  }
}

@media screen and (max-width: 960px) {
  .all_about_history {
    width: 50%;
  }

  .hold_abt_imgs {
    width: 45%;
  }

  .hil_img {
    height: 250px;
  }

  .hold_sliders {
    height: 400px;
  }

  .slider_description {
    bottom: 5%;
    left: 5%;
  }

  .slider_title {
    font-size: 1.8rem;
  }

  .slider_desc {
    font-size: 1rem;
  }

  .hold_slider_btn {
    font-size: 1rem;
  }

  .slider_btn {
    font-size: 1.1rem;
  }

  .aofuse_imgs {
    width: 100%;
    margin-top: 20px;
    float: none;
    display: none;
  }

  .omgabout {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  body,
  html {
    font-size: 15px;
  }

  .top-header-section {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    width: 100%;
    z-index: 2000;
    text-align: center;
  }

  .close_top_contact {
    display: block;
  }

  .one_topin {
    float: none;
    width: 100%;
    padding: 20px 0;
    border-top: solid 2px rgba(255, 255, 255, 0.1);
  }

  .one_topin:nth-child(2) {
    border: none;
  }

  .close_top_contact {
    background: none;
    color: #fff;
  }

  .nettalk {
    float: none;
    margin-bottom: 20px;
    line-height: 32px;
    font-size: 1.4rem;
  }

  .item_talk {
    display: block;
    float: none;
    font-size: 1.2rem;
    margin: 5px auto;
    text-align: center;
    border-left: #85b2c9 1px none;
    line-height: 32px;
  }

  .item_talk i {
    line-height: 32px;
  }

  .ftop_item {
    float: none;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
  }

  .ftop_item li a,
  .ftop_item li a:visited {
    line-height: 32px;
    float: none;
    height: 32px;
    width: 32px;
    margin: 0 10px;
  }

  .contact-button {
    display: flex;
  }

  .hold_sliders {
    height: 500px;
  }

  .one_slider {
    height: 100%;
  }

  .slider_img {
    height: 300px;
  }

  .overlay_slider {
    display: none;
  }

  .slider_description {
    position: relative;
    bottom: auto;
    left: auto;
    padding: 0px 20px;
    background: #0080c8;
    height: 200px;
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
  }

  .slider_title {
    font-size: 1.5rem;
  }

  .slider_desc {
    font-size: 1rem;
    width: auto;
  }

  .hold_slider_btn {
    font-size: 1rem;
    line-height: 30px;
  }

  .slider_btn {
    font-size: 1.2rem;
    width: 30px;
    height: 30px;
  }

  .all_about_history {
    width: 100%;
  }

  .hold_abt_imgs {
    display: none;
  }

  .one_service {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 20px;
    float: none !important;
    max-width: 560px;
  }

  .one_news_item {
    width: 47%;
    margin-right: 6%;
    margin-bottom: 30px;
  }

  .one_news_item:nth-child(2n) {
    margin-right: 0;
  }

  .one_client {
    width: 25%;
  }

  .footer-section {
    padding: 50px 0;
  }

  .one_footer {
    width: 50%;
  }

  .one_footer:nth-child(1) {
    width: 100%;
  }

  .one_footer:nth-child(2) {
    width: 100%;
    margin: 30px 0%;
  }

  .one_footer:nth-child(3) {
    width: 100%;
  }

  .about-main-image {
    height: 300px;
  }

  .leftabt_content {
    width: 100%;
    margin: auto;
    margin-bottom: 40px;
    max-width: 640px;
    float: none;
  }

  .contabt_desc {
    line-height: 1.6em;
  }

  .abtcontentak {
    font-size: 1.5rem;
  }

  .left_desc_dpr {
    width: 100%;
    float: none;
  }

  .dpr_desc {
    line-height: 1.6em;
  }

  .left_desc_dpr p {
    margin: 15px 0;
  }

  .right_img_dpr {
    margin-top: 20px;
    width: 100%;
  }

  .right_img_dpr img {
    display: block;
    margin: 0 auto;
    max-width: 640px;
  }

  aoleft {
    width: 100%;
    float: none;
  }

  .all_subs {
    margin-top: 30px;
    align-content: center;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .one_subs {
    width: 48%;
    margin: 0 1%;
    margin-bottom: 20px;
  }

  .subs_title {
    font-size: 1.2rem;
  }

  .one_subs_desc li {
    font-size: 1rem;
  }

  .one_why_dpr {
    width: 33.33%;
  }

  .hold_cor_description {
    width: 100%;
    float: none;
  }

  .hold_corr_img {
    float: none;
    margin-top: 20px;
    width: 100%;
  }

  .page-about-title {
    width: 90%;
    font-size: 1.8rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .bread_crumbs li a {
    max-width: 150px;
    white-space: nowrap;
    overflow: hidden;
    display: block;
    text-overflow: ellipsis;
  }

  .sp_cm_left,
  .sp_cm_right {
    width: 100%;
    line-height: 1.8em;
    float: none;
  }

  .sp_cm_right {
    margin-top: 20px;
  }

  .sppar_img {
    display: none;
  }

  .hold_pcon_img img {
    width: 48%;
    margin-bottom: 20px;
  }

  .pcon_desc_main {
    max-width: 640px;
    column-count: 1;
    column-gap: 0px;
    line-height: 1.6em;
  }

  .left_news_one,
  .right_news_one {
    width: 100%;
    float: none;
    margin-bottom: 20px;
  }

  .left_cont,
  .right_cont {
    width: 100%;
    padding: 50px 20px;
    margin: 0 auto;
    float: none;
  }

  .left_cont {
    background-color: #fff;
    min-height: 200px;
    border-top: solid 2px #eee;
  }

  .right_cont {
  }

  .left_cest,
  right_cest {
    width: 100%;
    float: none;
    margin: 15px auto;
  }
  .one_pricing {
    width: 100%;
    margin: 10px auto;
    max-width: 400px;
  }

  .outlink_all {
    display: block;
  }
  .outlink_one {
    width: 100%;
    margin-bottom: 20px;
  }
  .dpr-tsep-section .content {
    display: block;
  }
  .left_tsep,
  .right_tsep {
    width: 100%;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 640px) {
  .main-title {
    font-size: 1.7rem;
  }

  .one_client {
    width: 33.33%;
    height: 100px;
  }

  .in_one_footer {
    width: 100%;
    margin-bottom: 20px;
  }

  .one_news_item {
    width: 100%;
    float: none;
    margin: 0 auto !important;
    margin-bottom: 30px !important;
    max-width: 300px;
  }

  .one_news_item:nth-child(2n) {
  }

  .hold_icon_s {
    display: none;
  }

  .hold_sliders {
    height: 500px;
  }

  .one_slider {
    height: 100%;
  }

  .slider_img {
    height: 200px;
  }

  .overlay_slider {
    display: none;
  }

  .slider_description {
    height: 300px;
    flex-direction: row;
    align-content: center;
  }

  .slider_title {
    font-size: 1.3rem;
  }

  .about-main-image {
    height: 200px;
  }

  .abt01_header {
    font-size: 1.4rem;
  }

  .one_why_dpr {
    width: 50%;
  }

  .one_subs {
    width: 100%;
    margin: 0% auto;
    margin-bottom: 20px;
    max-width: 400px;
  }

  .left_davail {
    width: 100%;
    float: none;
  }

  .left_davail img {
    max-width: 480px;
    margin: 0 auto;
  }

  .right_davail {
    width: 100%;
    float: none;
    margin-top: 20px;
  }

  .video-section {
    height: auto;
  }

  .left_video,
  .right_video {
    width: 100%;
    height: 180px;
    padding: 10px;
  }

  .popup_cont {
    display: block;
    text-align: center;
  }

  .left_popct {
    width: 100%;
    height: 200px;
  }

  .right_popct {
    width: 100%;
    padding: 30px 10px;
  }
}

@media screen and (max-width: 480px) {
  .one_tsepts {
    width: 100%;
  }
}

/*XpertLab Code for Cookie Starts*/
#cookieModal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  max-width: 500px;
  width: 100%;
  box-sizing: border-box;
}

#cookieModalContent {
  padding: 20px; 
  background: white; 
  border-radius: 8px; 
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.btn{
  
  border-radius: 10px;
  padding:10px 20px;
  border:0px;
  cursor:pointer;
}
#acceptCookies{
  background-color: #0d59b5;
  color: #fff;
}
/*XpertLab Code for Cookie Ends*/

@media screen and (max-width:767px) {
  .hold-video-pop-up{
    margin-top:50%;
  }
}