/*****Header-css*****/
.flex-class {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

li {
  list-style-type: none;
}

section.header {
  width: 100%;
  padding: 10px 0;
  z-index: 999;
  position: relative;
  background: transparent;
}

.header-nav {
  width: 100%;
  align-items: center;
}

section.header.fixed {
  position: fixed;
  background-color: #fff;
  z-index: 1000;
  top: 0;
  animation: fadeInUp 0.3s ease-out;
  box-shadow: 0 0 12px #c7c7c7;
  backdrop-filter: blur(17px);
  background: rgb(246 249 255 / 83%);
}

@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  50% {
    opacity: 0.5;
    transform: translateY(15%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    top: -50px;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}

.navigation-part .header-right {
  width: 30%;
  visibility: visible;
}

.header-left {
  width: 70%;
}

.navigation-part {
  width: 100%;
  align-items: center;
}

.responsive-nav {
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-end;
  padding: 10px 0 0;
}

.responsive-nav .header-right {
  display: none;
}

.resp-menu {
  display: none;
}

.header-nav li a {
  position: relative;
}

.header-nav li:nth-child(1) a {
  line-height: 25px;
}
.header-left ul li b.active,
.header-left ul li b:hover,
.header-left ul li a:hover,
.header-nav li a.active {
  color: #00adef;
}

span.close_spans {
  display: none;
}

.header-left ul {
  margin-bottom: 0;
  padding: 0;
  align-items: center;
  justify-content: flex-end;
  gap: 45px;
}

.header-left ul li a,
.header-left ul li b {
  color: #404040;
  text-decoration: none;
  /* text-transform: uppercase; */
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 600;
}

.header-left ul li span {
  width: 40px;
  height: 40px;
  background: #1b79e4;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

li.flex-class.last-list {
  gap: 10px;
  padding-right: 15px;
}

.btn {
  width: 150px;
  height: 40px;
  border-radius: 25px;
  position: relative;
  font-weight: 600;
  background: transparent;
  padding: 8px 0;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  outline: none;
  overflow: hidden;
}

.nav-btn {
  background: #ffc403;
  border: none;
  z-index: 1;
  border: 1px solid #1b79e4 !important;
  width: 150px !important;
  color: #1b79e4;
  background: unset;
  border-radius: 33px;
  padding: 10px 11px;
}

.nav-btn:after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background: #00adef;
  border-radius: 25px;
  box-shadow: inset 2px 2px 2px 0px #1eabe1, 7px 7px 20px 0px #1eabe1;
  transition: all 0.5s ease;
}

.nav-btn:hover {
  color: white !important;
}

.nav-btn:hover:after {
  left: 0;
  width: 150px;
}

/********footer*******/

.footer-sec {
  width: 100%;
  display: inline-block;
  padding: 0;
  border-top: 1px solid #005dff;
  /*    margin-top: 40px !important;
*/
}

.footer-content {
  width: 100%;
  padding: 50px 0 0 0;
  gap: 10px;
}

.footer-intro {
  width: 25%;
  position: relative;
}

.footer-intro::after {
  content: " ";
  position: absolute;
  width: 1px;
  height: 350px;
  top: -70px;
  right: 0;
  background: #005dff;
  display: none;
}

.footer-part {
  width: 100%;
  padding: 15px 0;
}

.footer-part p {
  color: #313131;
  padding: 10px 0;
  font-size: 14px;
}

.footer-links {
  width: 49%;
  justify-content: flex-end;
}

.footer-links p {
  color: #005dff;
  font-size: 18px;
  font-weight: 700;
}

.footer-links ul {
  color: #313131;
  list-style-type: none;
  padding-left: 0;
}

.footer-links ul li {
  font-size: 14px;
  padding: 6px 0;
  cursor: pointer;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: nowrap;
}

.footer-links ul li a {
  font-size: 14px;
  cursor: pointer;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: nowrap;
  color: #313131;
  text-decoration: none;
  line-height: 15px;
}

.footer-links ul li a:hover {
  color: #005dff;
  transition: 0.2s;
}

.footer-links {
  color: #313131;
  list-style-type: none;
  padding-left: 0;
}

.copy-rights {
  width: 100%;
  justify-content: center !important;
  padding: 35px 0 0 0;
  border-top: 1px solid #005dff;
}

.copy-rights ul {
  width: 100%;
  padding-left: 0;
  justify-content: flex-start;
  font-size: 14px;
}

.copy-rights ul li {
  width: 100%;
  text-align: center;
  text-transform: capitalize;
}

.copy-rights ul li a {
  color: black;
  text-decoration: none;
}

.copy-rights a.footer-a {
  color: #015eff;
}

.copy-rights ul li:nth-child(2) {
  font-size: 13px;
  padding: 5px 0;
  text-transform: none;
}

header.fixed {
  position: fixed;
  background-color: #fff;
  z-index: 100;
  top: 0;
}

section.header header.fixed .header-right.logo {
  position: relative;
  top: -21px;
}

.details-decs {
  display: inline-block;
  width: 100%;
  margin: 0;
  padding: 0;
}

.details-decs li {
  display: inline-block;
  margin: 5px 15px 0 0;
  width: 23.3%;
  vertical-align: top;
}

li.no-req {
  width: 100%;
  font-size: 14px;
  position: relative;
}

li.no-req:before {
  width: 7px;
  height: 7px;
  background-color: #0060ad;
  content: "";
  position: absolute;
  border-radius: 50%;
  left: -15px;
  top: 6px;
}

ul.ul-datatext {
  width: 100%;
  padding-left: 20px;
}

ul.ul-phone-list {
  width: 100%;
  display: flex;
  gap: 9px !important;
}

.dropdown.new-dropdown {
  padding: 0px !important;
}

ul.dropdown_menu.dd_menu_list.product_menu.phone-menu {
  left: -228px;
  top: 45px;
}

.call-btn {
  position: relative;
}

.call-btn:after {
  display: none;
  content: "";
  position: absolute;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 10px solid #1b79e4;
  top: 15px;
  left: 45px;
}

/*phone-dropdowm*/

.phone-drop {
  position: relative;
}

.contact-phone {
  position: absolute;
  width: 300px;
  float: left;
  background-color: white;
  right: -100%;
  z-index: 999;
  border-radius: 15px;
  opacity: 0;
  top: 60px;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  box-shadow: 0px 0px 8px #8080802e;
}

.contact-phone:before,
.contact-phone:after {
  content: " ";
  position: absolute;
  top: -20px;
  right: 42px;
  width: 0px;
  height: 0px;
}

.contact-phone:before {
  border-left: 26px solid transparent;
  border-right: 26px solid transparent;
  border-bottom: 24px solid #8080801f;
  right: 36px;
  top: -24px;
}

.contact-phone:after {
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 20px solid #ffffff;
}

.phone-drop:hover .contact-phone {
  opacity: 1;
  transition: all 0.6s cubic-bezier(0.52, 0.26, 0.79, 1.31);
  -webkit-transition: all 0.6s cubic-bezier(0.52, 0.26, 0.79, 1.31);
  -moz-transform: all 0.6s cubic-bezier(0.52, 0.26, 0.79, 1.31);
  transform: scale(1);
  -webkit-transform: scale(1);
}

.contact-phone h2 {
  width: 100%;
  font-size: 18px;
  padding: 12px 20px;
  margin: 0;
  border-bottom: 1px solid #dddd;
  color: #000;
  font-weight: 700;
}

.contact-details.flex-class {
  width: 100%;
  position: relative;
  padding: 25px 0;
}

.details-1.flex-class:nth-child(1) {
  padding-top: 0;
}

.details-1.flex-class {
  width: 80%;
  align-items: center;
  margin: 0 auto;
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}

.right-img {
  width: 100%;
}

.right-img h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact-phone span.case-span {
  background: none;
  font-weight: 700;
}

li.phone-list {
  width: 100% !important;
  padding: 0px 0px 0px 46px !important;
  font-size: 12px;
}

li.phone-list:nth-child(1) {
  background: url("../images/phone.webp") no-repeat;
  height: 16px;
  background-size: contain;
}

li.phone-list:nth-child(2) {
  gap: 0px !important;
  line-height: 0;
  margin: 5px 0;
}

li.phone-list:nth-child(3) {
  background: url("../images/whatsapp.webp") no-repeat;
  height: 16px;
  background-size: contain;
}

li.phone-list:nth-child(4) {
  background: url("../images/mail.webp") no-repeat;
  height: 14px;
  background-size: contain;
}

li.phone-list a {
  text-transform: lowercase !important;
  color: #616b84;
}

ul.contact-ul.flex-class {
  gap: 15px;
}

.referral-li {
  width: 100%;
  float: left;
  padding: 0px 0 4px;
  color: #a9b3d0;
  font-size: 13px;
  font-weight: 500;
}

.referral-li a {
  color: #1b79e4 !important;
  text-transform: lowercase !important;
}

.footer-links.last-data {
  width: 100%;
  position: relative;
  min-height: 60px;
}

.work-img {
  width: 100%;
  margin-left: 0px;
}

.footer-part-links {
  width: 25%;
  justify-content: flex-end !important;
}

.modal-dialog {
  transform: translate(-50%, -50%) !important;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 30px;
}

#success-message {
  background-color: #00000087;
  width: 100%;
  display: none;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  text-align: center;
  opacity: 1;
  height: 100vh;
  position: fixed;
  z-index: 100000;
}

#success-message .modal-dialog {
  max-width: inherit;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 30%;
}

#success-message img {
  width: 100px;
  top: 50%;
  position: relative;
}

#success-message .modal-content {
  float: left;
  width: 100%;
  border-radius: 20px;
  background-color: #fff;
  border: none;
  box-shadow: 0 5px 15px rgb(191 182 182 / 30%);
  padding: 15px;
}

#success-message .modal-content .modal-header {
  padding: 0;
  border: none !important;
  width: 300px;
  margin: 0 auto;
}

#success-message .success-popup {
  text-align: center;
}

#success-message .modal-content .modal-header h4.modal-title {
  color: #333333c7;
  font-size: 23px;
  text-align: center;
  font-weight: 700 !important;
}

#success-message .modal-content .modal-body {
  padding: 0px 15px 30px 15px;
  text-align: center;
}

#success-message .modal-content .modal-body p {
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  padding: 0px 10px;
  font-weight: 500;
  color: #3333339e;
}

button#cl_btn {
  width: 25%;
  margin: 0 auto;
  border: 1px solid #fa9038;
  background-color: rgb(255, 212, 177);
  border-radius: 10px;
  outline: none;
}

.contact-details.flex-class .details-1.flex-class:nth-child(2) {
  display: none;
}

.details-1.flex-class:nth-child(1) {
  border: none;
}

.responsive-nav .product-search {
  display: none;
}

ul.dropdown_menu.dd_menu_list li a {
  text-transform: capitalize;
  display: inline-block;
  width: 100%;
}

ul.dropdown_menu.dd_menu_list li a p {
  margin-bottom: 0;
  width: 80% !important;
  font-weight: 600;
}

ul.dropdown_menu.dd_menu_list li a p:hover {
  color: #00adef;
}

ul.dropdown_menu.dd_menu_list.product_menu {
  width: 250px !important;
}

ul.dropdown_menu.dd_menu_list {
  padding: 14px !important;
}

ul.dropdown_menu.dd_menu_list li a img {
  filter: none;
}

.dropdown_menu {
  top: 25px;
}

.header-nav ul.dropdown_menu.dd_menu_list.product_menu a.active {
  border-bottom: none;
  padding-bottom: 5px;
  color: #00adef;
}

/* new changes  */

.contact-slider {
  width: 420px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 50%);
  border-radius: 50px;
  margin: 8px;
  padding: 8px;
  height: 150px;
}

.contact-slider .item {
  width: 80%;
  height: 110px;
  box-shadow: 0px 3px 6px 0px #c5c5c5de;
  margin: 0 auto;
  border-radius: 10px;
  align-items: center;
}

.contact-slider .owl-carousel .owl-stage-outer {
  padding: 10px;
}

.data-contact {
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  width: 90%;
  margin: 0 auto;
}

.data-contact span {
  width: 25px;
  height: 25px;
  display: inline-block;
}

.data-contact span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 4px 0;
}

.data-contact i {
  font-style: normal;
  font-weight: 700;
  font-size: 25px;
  color: #ffc403;
}

.data-content-color i {
  color: #1b79e4;
}

.data-content-color span {
  width: 40px;
  height: 30px;
}

.buzzr-logo {
  width: 150px;
  height: 69px;
}

.footer-certificate {
  width: 48%;
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-certificate p {
  width: 270px;
  height: 191px;
  margin: 0;
}

.footer-certificate p img {
  object-fit: none;
  cursor: pointer;
}

/**new-changes**/

.certificate-proof .certificate-head {
  font-size: 14px !important;
  color: #000;
  padding: 10px;
}

.certificate-proof .modal-dialog {
  max-width: 780px !important;
}

.certificate-proof .modal-content {
  border-radius: unset !important;
}

.certificate-proof .modal-dialog {
  border-radius: 0;
}

/*********/

@media only screen and (max-width: 991px) {
  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    background-color: black;
    z-index: 9999;
    margin: 0;
    padding: 0 20px;
    height: 100%;
    overflow-y: auto;
    overflow: visible;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    align-content: flex-start;
  }
  .resp-menu {
    display: block;
  }
  .resp-menu i {
    color: black;
  }
  span.close_spans {
    display: block;
    margin-left: 0px;
    width: 100%;
    margin-top: 15px;
  }
  .header-nav.fixed {
    right: 0 !important;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    height: 1000vh;
  }
  span.close_spans i {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: #fff;
    line-height: 30px;
    text-align: center;
    box-shadow: 1px 2px 7px #8a8a8a;
    cursor: pointer;
    border-radius: 50%;
  }
  .header-left {
    width: 100%;
  }
  .header-left ul {
    gap: 10px;
    justify-content: flex-start;
  }
  .header-left ul li {
    width: 100%;
  }
  .header-left ul li a,.header-left ul li b {
    color: white;
    font-size: 14px !important;
  }
  ul.dropdown_menu.dd_menu_list li a p {
    color: #000000;
  }
  .navigation-part .header-right {
    display: none;
  }
  .navigation-part {
    width: 100%;
    padding: 30px 0;
  }
  .nav-btn {
    width: 80%;
  }
  .responsive-nav .header-right {
    width: 95px;
    display: block;
    margin-right: auto;
  }
  .responsive-nav .header-right img {
    width: 100% !important;
    height: auto;
  }
  .contact-phone ul li a {
    color: #000;
  }
  #success-popup-message .modal-body {
    margin-top: 0px !important;
    line-height: 20px !important;
    float: left;
    width: 100%;
  }
  .dropdown a img {
    filter: invert(1);
  }
  .responsive-nav .product-search {
    width: auto !important;
    margin-left: 15px;
    display: block;
  }
  .responsive-nav .product-search input {
    padding: 15px 0 !important;
  }
  .responsive-nav .product-search img {
    right: 0 !important;
  }
}

@media only screen and (max-width: 767px) {
  /********footer*******/
  .footer-intro {
    width: 100%;
    position: unset;
  }
  .buzzr-logo img {
    width: 100%;
  }
  .work-img {
    width: 50%;
    display: flex;
    margin: 0;
    padding: 10px 0;
  }
  .footer-links {
    width: 49%;
  }
  .footer-intro::after {
    display: none;
  }
  .copy-rights ul {
    width: 95%;
  }
  .copy-rights ul li:first-child {
    width: 100%;
  }
  .copy-rights ul li {
    width: 100%;
    text-align: left;
  }
  section.header {
    padding: 0;
  }
  .nav-part {
    padding: 0 0 10px;
  }
  /**new changes**/
  .footer-certificate p {
    width: 48%;
    height: auto;
  }
  .footer-certificate p img {
    object-fit: unset;
  }
  .certificate-proof .modal-dialog {
    max-width: 98% !important;
  }
  .footer-part p {
    margin: 0;
  }
}

@media screen and (min-width: 576px) and (max-width: 767px) {
  /**new-changes***/
  .certificate-proof .modal-dialog {
    max-width: 88% !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  /* footer */
  .footer-intro::after {
    display: none;
  }
  .buzzr-logo img {
    width: 100%;
  }
  /* .footer-links,
    .footer-intro,
    .footer-part-links {
        width: 100%;
    } */
  .copy-rights ul li,
  .copy-rights ul li:nth-child(2) {
    width: 100%;
    padding-left: 20px;
    text-align: left;
  }
  .work-img {
    width: 100%;
    margin-left: 0px;
  }
  /**new changes**/
  .footer-certificate p {
    width: 48%;
    height: auto;
  }
  .certificate-proof .certificate-head {
    padding-top: 0;
  }
  .footer-certificate p img {
    height: 197px;
  }
  .footer-part p {
    margin: 0;
  }
  .certificate-proof .modal-dialog {
    max-width: 81% !important;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .navigation-part .header-right {
    width: 10%;
  }
  .header-left {
    width: 85%;
  }
  .certificate-proof .modal-dialog {
    max-width: 700px !important;
  }
}

@media only screen and (max-width: 965px) {
  .footer-intro,
  .footer-certificate,
  .footer-part-links {
    width: 100%;
  }
}

@media screen and (min-width: 768px) and (max-width: 965px) {
  .footer-certificate {
    justify-content: flex-start;
    gap: 15px;
  }
}

@media screen and (min-width: 966px) and (max-width: 1200px) {
  .footer-certificate {
    width: 61%;
  }
  .footer-part-links {
    width: 37%;
    justify-content: flex-start !important;
    align-items: flex-start;
  }
  .work-img {
    gap: 10px;
    display: flex;
  }
}
