

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;   
  font-family: "Montserrat", sans-serif;

}

:root {
  --white: #fff;
  --primary: #e8a430;
  --secondary: #2c589d;
  --black: #000000;
  --darkblue: #192335;
}
/* *******************  Header ****************************** */

body {
  overflow-x: hidden;
}

.navbar .navbar-nav .nav-link {
  color: #000;
  padding: 10px 0px;
  position: relative;
  margin:0px 35px 0px 0px;
  font-size: 17px;
}
.navbar .navbar-nav .nav-link::after{
  content: "";
  position: absolute;
  width: 0px;
  height: 3px;
  transition: .6s;
  background-color: #2ca7dc;
  bottom: 0;
  left: 0;
}




.navbar .navbar-nav .nav-link:hover::after {
  width: 100%;
}


#navbarNav .nav-link.menu-active::after {
  width: 100% !important;
  background-color: #2ca7dc;
  height: 3px;
  display: block;
}



.header-social {
  padding: 5px;
  margin-right: 10px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e8e4e4;
}

.header-social.fb {
  color: #0066e7;
}
.header-social.tw {
  color: #1aa3f9;
}

.contact-info p,
.contact-info a {
  color: #666464;
}

/* *******************  Header End ****************************** */
#banerslider .slide,
#banerslider img {
  width: 100%;
}
#banerslider .slide{
 padding:0px 10px
}
#banerslider img {

}
#banerslider .slick-arrow i {
  font-size: 20px;
}
#banerslider .slick-next,
#banerslider .slick-prev {
  top: 95%;
  right: 60px !important;
  display: none;
}

#banerslider .slick-prev {
  left: 92% !important;
}
#banerslider .slick-arrow i::before {
  color: white;
}
#banerslider .slide.slick-slide {
  z-index: 1;
  position: relative;
}
#banerslider .slick-next:before {
  content: "→";
}

#banerslider .slick-prev,
#banerslider .slick-next {
  z-index: 999;
}

.landing {
  position: relative;
}

.banner-content {
  position: absolute;
  z-index: 200;
  top: 50%;
  left: 50%;
  bottom: 0;
  /* width: 100%; */

  height: fit-content;
  max-width: 500px;
  text-align: center;
  transform: translate(-50%, -50%);
}
.banner-content h6 {
  color: var(--primary);
  font-size: 35px;
  font-weight: 700;
}

.banner-content p {
  color: #fff;
  font-size: 18px;
}

.over-lay {
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  z-index: 10;
  width: 100%;
}

.border-white {
  border: solid 1px #fff;
}
/* main  */
.landing-card {
  text-align: center;
}
.landing-card img {
  width: 80px;
  height: 70px;
}
.main {
  position: relative;
}

.color-primary {
  color: var(--primary);
}
.color-primary:hover {
  color: var(--primary);
}
.color-secondary {
  color: var(--secondary);
}

.dark-bg {
  background-color: var(--darkblue);
}

.hightlight {
  color: var(--primary);
}

.pt-100 {
  padding-top: 100px;
}

.pt-150 {
  padding-top: 150px;
}

.pb-100 {
  padding-bottom: 100px;
}

.btn-1 {
  background-color: white;
  border: solid 1px #192335;
  color: black;
}

.btn-1:hover {
  background-color: var(--darkblue);
  border: solid 1px #192335;
  color: white;
}

.right-boy {
  position: absolute;
  right: 0;
  bottom: 0;
}

.right-boy img {
  width: 100%;
}

.aboutus-section h2 {
  color: var(--secondary);

  font-size: 45px;
  text-align: center;

  font-weight: 700;
}

.aboutus-section p {
  color: #6f6f6f;

  font-size: 20px;
  padding-bottom: 20px;
  font-style: normal;
  font-weight: 400;
  margin: 0;
  line-height: normal;
}

.highlight-2 {
  color: var(--primary);
}

.aboutus-section .card img {
  max-height: 265px;
  height: 100%;
}

.aboutus-section .card p {
  text-align: left;
  font-size: 16px;
  padding-bottom: 20px;
}

.aboutus-section .card-title {
  font-size: 24px;
}

/* about end  */
/* service  */

.service {
  background: var(--secondary);
}

.heart {
  padding: 5px;
  border: solid #3333 1px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aboutus-section .card-bottom i {
  color: #a0a0a0;
}

.aboutus-section .card-bottom div {
  font-size: 14px;
}

.card-bottom-user {
  padding-top: 20px;
}

.aboutus-section .user {
  color: #6b7385;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.aboutus-section .user img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  padding: 3px;
  border: solid #eaedf0 3px;
  margin-right: 10px;
}

.card-bottom-user {
  border-top: #3333 solid 1px;
}

.slick-arrow::before {
  display: none;
}

.aboutus-section .slick-arrow.slick-prev {
  left: -20px;
}

.aboutus-section .slick-arrow.slick-next {
  right: -10px;
}

.btn-2,
.btn-2:hover {
  background-color: var(--darkblue);
  border: solid 1px #192335;
  color: var(--white);
}

.bg-light-gray {
  background-color: #f9f9f6;
}

.aboutus-section {
  position: relative;
}

.fether {
  position: absolute;
  bottom: 30%;
  left: 0;
  display: none;
  transform: translate(50%, -20%);
  width: 100px;
}

.fether img {
  transform: rotate(100deg);
}

.background-gradient {
  background: linear-gradient(
    94deg,
    #006177 -2.6%,
    #269089 67.39%,
    #7abc82 110.84%
  );
}

/* partner-section  */
.partner-section h2,
.partner-section p {
  text-align: center;
}
.partner-section h2 {
  color: var(--secondary);
  font-size: 45px;
  font-weight: 700;
  margin: 0;
}
.partner-section p {
  font-size: 25px;
  font-weight: 400;
}
/* footer section  */
ul {
  margin: 0px;
  padding: 0px;
}

.footer-section {
  position: relative;
  background-image: url("../images/footbg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.footer-section .overlay {
  position: absolute;
  z-index: 1;
  background: #001c47;
  width: 100%;
  height: 100%;
  opacity: 0.9;
}

.footer-cta {
  border-bottom: 1px solid #04305a;
}

footer .title {
  font-size: 26px;
  font-weight: 500;
  color: var(--white);
}
footer p {
  font-size: 17px;
  font-weight: 300;
  color: var(--white);
}
footer ul li a {
  font-size: 18px;
  font-weight: 300;
  text-decoration: none;
  color: var(--white);
}
footer ul li {
  padding: 10px 0;
  list-style: none;
}
.column-2 img {
  width: 20px;
  height: 29px;
  margin-right: 10px;
}
.column-3 p {
  font-size: 18px;
  font-weight: 300;
  text-decoration: none;
  color: var(--white);
  display: flex;
  align-items: center;
}
.home2-service-slider {
  background: url(../images/anchorbg.png) #EDF5FF;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 200px;
}
.single-cta i {
  color: #ff5e14;
  font-size: 30px;
  float: left;
  margin-top: 8px;
}

.cta-text {
  padding-left: 15px;
  display: inline-block;
}

.cta-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}

.cta-text span,
.footer-menu {
  color: #757575;
  font-size: 15px;
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-content p,
.footer-content a {
  color: #fff;
  margin: 0;
}

.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}

.footer-logo {
  margin-bottom: 30px;
}

.footer-logo img {
  max-width: 200px;
}

.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
  color: #6b7385;
  line-height: 28px;
}

.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: "M PLUS 1p", sans-serif;

  margin-bottom: 20px;
}

.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}

.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}

.facebook-bg {
  background: #3b5998;
}

.twitter-bg {
  background: #55acee;
}

.google-bg {
  background: #dd4b39;
}

.copyright-area {
  padding: 15px 0;
  border-top: 3px solid #04305a;
  position: relative;
  z-index: 10;
}

.copyright-text p {
  margin: 0;
  font-size: 16px;
  text-align: left;
  color: #878787;
}

.copyright-text p a {
  color: #ff5e14;
}

.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}

.footer-menu li:hover a {
  color: #ff5e14;
}

.footer-menu li a {
  font-size: 14px;
  color: #878787;
}

.footer-last > div {
  display: flex;
  margin-bottom: 20px;
  padding: 10px;
  border-radius: 10px;
  align-items: start;
  border: solid 1px #1d3563;
}

.footer-last div span {
  color: var(--white);
}

.footer-top {
  text-align: center;
}

.footer-top h4,
.footer-top p {
  color: white;
}

.footer-top h4 {
  font-size: 32px;

  font-weight: 700;
}

.footer-top p {
  font-size: 20px;
}

.social-container i {
  color: var(--white);
  font-size: 10px;
  /* margin: 0 2px; */

  padding: 3px 5px;
  overflow: hidden;
  background-color: rgba(168, 168, 168, 0.2);

  border-radius: 50%;
}

/* brand slider  */

.customer-logos .slick-slide {
  margin: 0px 20px;
}

.customer-logos .slick-slide img {
  width: 100%;
}

.customer-logos .slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.customer-logos .slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.customer-logos .slick-list:focus {
  outline: none;
}
.customer-logos .slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.customer-logos .slick-slider .slick-track,
.customer-logos .slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.customer-logos .slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.customer-logos .slick-track:before,
.customer-logos .slick-track:after {
  display: table;
  content: "";
}
.customer-logos .slick-track:after {
  clear: both;
}
.customer-logos .slick-loading .slick-track {
  visibility: hidden;
}

.customer-logos .slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.customer-logos .slick-slide img {
  display: block;
}
.customer-logos .slick-slide.slick-loading img {
  display: none;
}
.customer-logos .slick-slide.dragging img {
  pointer-events: none;
}
.customer-logos .slick-initialized .slick-slide {
  display: block;
}
.customer-logos .slick-loading .slick-slide {
  visibility: hidden;
}
.customer-logos .slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.customer-logos .slick-arrow.slick-hidden {
  display: none;
}
.home2-service-section .home2-service-slider .service-single-item .img-wrapper {
  display: inline-block;
  overflow: hidden;
  padding: 15px;
}

.home2-service-section
  .home2-service-slider
  .service-single-item
  .srv2-service-content
  p {
  margin-top: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.viewmore {
  color: #000;
  text-decoration: underline;
}

.card-custom {
  overflow: hidden;
  min-height: 450px;
  box-shadow: 0 0 15px rgba(10, 10, 10, 0.3);
}

.card-custom-img {
  height: 200px;
  min-height: 200px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-color: inherit;
}

/* First border-left-width setting is a fallback */
.card-custom-img::after {
  position: absolute;
  content: "";
  top: 161px;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-top-width: 40px;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 545px;
  border-left-width: calc(575px - 5vw);
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: inherit;
}

.vision h6 {
  font-size: 30px;
  font-weight: 600;
  color: #013a6f;
}

.vision p {
  font-size: 19px;
  font-weight: 400;
  color: #767373;
}

/* newsletter  */

.newsletter {
  
  background-image: url("../images/help-bg.png");
}
.newsletter a {
  padding: 10px 30px;
  border: 1px solid #fff;
  color: white;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
}
.newsletter h2 {
  font-size: 33px;
  font-weight: 600;
  color: var(--white);
}
.newsletter p {
  font-size: 19px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0px;
}

.home2-service-slider p {
  font-weight: 600;
  font-size: 19px;
  color: #808080;
  text-align: center;
  margin-bottom: 0;
}
.home2-service-slider h2 {
  font-weight: 700;
  font-size: 35px;
  color: #013a6f;
  text-align: center;
  margin-bottom: 30px;
}

.home2-service-slider .card {
  overflow: hidden;
}

.home2-service-slider .card .view {
  font-size: 17px;
  font-weight: 500;
  text-align: left;
  display: none;
  position: absolute;
  left: 31px;
  border: 0;
  z-index: 5000;
  bottom: 0;
}
.home2-service-slider .card .card-title {
  font-size: 23px;
  font-weight: 700;
  text-align: left;
  color: #013a6f;
  margin: 10px 0px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.home2-service-slider .card .card-content {
  font-size: 18px;
  font-weight: 400;
  text-align: left;
  color: #767373;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.home2-service-slider .card:hover .view {
  display: block;
  color:#fff;
}
.home2-service-slider .card .card-body {
  background: #f5f5f5;
  padding: 30px;
  padding-top: 0px;
}
.home2-service-slider .card:hover .card-body {
  background: #013a6f;
}
.home2-service-slider .card:hover .card-title,
.home2-service-slider .card:hover .card-content {
  color: var(--white);
}
.home2-service-slider .card:hover .card-body {
  background: #013a6f;
  position: relative;
  overflow: hidden;
}

.home2-service-slider .card .img {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.home2-service-slider .card .img::after {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  height: 0;
  border-left: 0 solid transparent;
  border-right:422px solid transparent;
  border-bottom: 65px solid #f5f5f5;
  bottom: 0;
}
.home2-service-slider .card:hover .img::after {
  border-bottom: 65px solid #013a6f;
}

.home2-service-slider .card .img::before {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  height: 0;
  border-left: 0 solid transparent;
  border-right: 534px solid transparent;
  border-bottom: 88px solid #ececec;
  bottom: 0;
}
.home2-service-slider .card:hover .img::before {
  border-bottom: 88px solid #2ca7dc;
}
.home2-service-slider .view-more a {
  border: 1px solid #013a6f;
  padding: 10px 30px;
  text-decoration: none;
  color: #013a6f;
  font-size: 17px;
  font-weight: 600;
}
.home2-service-slider .view-more {
  text-align: center;
  margin-top: 40px;
}
.slider-service .slick-slide {
  margin-right: 10px;
  height: 100%;
}

header a {
  color: var(--black);
  text-decoration: none;
}
header .phone {
  background-color: #013a6f;
  padding: 10px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

header .phone img {
  width: 20px;
}
#navbarNav {
  position: relative;
}
.logo {
  position: absolute;
  z-index: 1;
  left: 50%;
  background: white;
  transform: translate(-49%, 0%);
  border-radius: 10px;
  padding: 10px;
  top: -13px;
}
.logo img {
  width: 143px;
}
.mobile-logo {
  display: none;
}
.home2-service-slider .view-more a:hover{
  color: var(--white);
  background-color: #001c47;
}
@media screen and (max-width: 768px) {
  .videoabout iframe{
    min-height: 350px !important;
  }
  .m-flex-reverse {
    flex-direction: column-reverse;
  }
  .logo {
    display: none;
  }
  .mobile-logo {
    display: block;
  }
  .footer-widget {
    padding: 0 !important;
    margin: 10px 0;
  }
  .m-justify-start {
    justify-content: flex-start;
  }
  .m-justify-center {
    justify-content: center !important;
  }
  .vision .col-md-6 {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 995px) {
  .toggle-btn {
    display: block !important;
  }
  .mapmobile{
    width: 100%;
    height: 400px;
  }
  .landing {
    position: relative;
    padding-top: 92px;
  }
  .mobile-logo {
    display: block;
  }
  .mobile-col {
    display: flex;
    justify-content: space-between;
  }
  .m-justify-start {
    justify-content: flex-start !important;
  }
  .footer-widget {
    padding: 0 !important;
    margin: 10px 0;
  }
  .home2-service-slider p,
  footer .title {
    font-size: 20px;
  }
  .home2-service-slider h2 {
    font-size: 35px;
  }
  .home2-service-slider .card .card-title,
  .vision h6 {
    font-size: 25px;
  }
  .home2-service-slider .card .card-content,
  .home2-service-slider .view-more a,
  .newsletter a,
  .column-3 p,
  footer p {
    font-size: 15px;
  }
  .vision p,
  .newsletter p {
    font-size: 19px;
  }
  .newsletter h2 {
    font-size: 30px;
  }
  #navbarNav {
    position: absolute;
    top: 70px;
    left: 0;
    background-color: var(--white);
    z-index: 1;
    /* width: 100%; */
    padding: 10px;
  }
  
}

@media screen and (max-width: 1500px) {
  .home2-service-slider p,
  footer .title {
    font-size: 20px;
  }
  .home2-service-slider h2 {
    font-size: 35px;
  }
  .home2-service-slider .card .card-title,
  .vision h6 {
    font-size: 25px;
  }
  .home2-service-slider .card .card-content,
  .home2-service-slider .view-more a,
  .newsletter a,
  .column-3 p,
  footer p {
    font-size: 15px;
  }
  .vision p,
  .newsletter p {
    font-size: 19px;
  }
  .newsletter h2 {
    font-size: 30px;
  }
}

.headerhome {
  position: absolute;
  width: 100%;
  background: #fff;
  z-index: 5;
}
.headerinside {
  position: relative;
  width: 100%;
  background: #fff;
  z-index: 5;
}
.mobile-logo img {
  width: 100%;
}
.mobile-logo {
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 135px;
  background: #fff;
  padding: 10px 10px 15px;
  top: 0;
  border-radius: 15px;
}
@media screen and (max-width: 1200px) {
  .navbar .navbar-nav .nav-link {
    color: #000;
    padding: 10px 0px;
    position: relative;
  }
  .emaildiv{
    display: none;
  }
}
.copyright-area b{
  font-weight: 700;
}
.breadcrumb-area .breadcrumb-wrap h2 {
  font-weight: 700;
  font-size: 40px;
  line-height: 50px;
  margin-bottom: 0px;
  color: #fff;
}
.breadcrumb-area .breadcrumb-wrap ul.breadcrumb-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0px;
}
.breadcrumb-area .breadcrumb-wrap ul.breadcrumb-links li {
  font-size: 16px;
  color: #ff7f47;
  font-weight: 500;
  list-style: none;
  margin-right: 10px;
}
.breadcrumb-area .breadcrumb-wrap ul.breadcrumb-links li a {
  color: #fff;
  text-decoration: none;
}

.bread-banner {
  padding-top: 125px;
  padding-bottom: 55px;
  text-align: center;
}
.videoabout iframe{
  width: 100%;
  height: 100%;
}
.bg-g2 {
  border: 1px solid #dedede;
  padding: 25px;
  background: #E4F1F7;
}
.bg-g2 img {
  width: 50px;
}
.bg-g {
  background: #f0f0f0;
}
.btn-bl {
  background: #013A6F;
  color: #fff;
  padding: 11px 25px;
  font-size: 18px;
  border-radius: 0px;
}
.home2-service-slider .card .card-body a {
  text-decoration: none;
  display: block;
  position: relative;
}
.listservices li {
  list-style: none;
  margin-bottom: 20px;
  background-image: url(../images/anchor-ser.svg);
  padding: 0px 0px 0px 45px;
  background-repeat: no-repeat;
  background-size: 36px;
  background-position: 0px 6px;
  min-height: 49px;
  align-items: center;
}
.listservices h4{
    font-size:21px;
}
.sub-h4 {
  color: #013A6F;
  font-weight: 600;
}
.titleh2 {
  background: #DDECFB;
  font-size: 27px;
  padding: 11px 25px;
}

.listservices2 li {
  list-style: none;
  margin-bottom: 15px;
  background-image: url(../images/anchor-ser.svg);
  padding: 1px 0px 0px 22px;
  background-repeat: no-repeat;
  background-size: 18px;
  background-position: 0px 6px;
  min-height: 25px;
  display: flex;
  align-items: center;
}
.services-inner img{
  border:1px solid #dedede;
}
.hero,
.hero_content {
  position: relative;
  width:100%;
  height:100vh;
}

.hero {
  overflow: hidden;
  background: url("https://www.saintfuckingpetersburg.com/img/drone_shot.44a2dd58.jpg") no-repeat 50% fixed;
  background-size: cover;
}

.hero_video,
.hero iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 56.25vw;
  /* 9/16*100 = 56.25 */
  min-height: 100vh;
  min-width: 177.77vh;
  /* 16/9*100 = 177.77 */
}

.hero iframe {
  opacity: 0;
}

.hero iframe.loaded {
  opacity: 1;
}

.hero_content {
  z-index: 8675309;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero_content_title {
  color: #fff;
  font-family: Georgia, Times, Times New Roman, serif;
  font-size: clamp(1.5rem, 5vw, 3.25rem);
  line-height: 1.75rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.375em;
  font-weight: lighter;
  margin-bottom: 2.625rem;
}

.hero_content_play {
  display: block;
  position: relative;
  width: 4rem;
  height: 4rem;
  border: 2px solid transparent;
  border-radius: 50%;
  background: rgba(22, 22, 16, 0.75);
  text-indent: -9999px;
  transition: border-color 0.3s ease;
  -webkit-animation: pulse 3s infinite;
          animation: pulse 3s infinite;
}

.hero_content_play:hover {
  border-color: #fff;
  -webkit-animation: none;
          animation: none;
}

.hero_content_play:after {
  content: "";
  display: block;
  position: absolute;
  top: 1rem;
  left: 1.425rem;
  width: 0;
  height: 0;
  border: 0;
  border-color: transparent transparent transparent #fff;
  border-style: solid;
  border-width: 1rem 0 1rem 1.5rem;
}

@-webkit-keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(205, 170, 147, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(205, 170, 147, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(205, 170, 147, 0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(205, 170, 147, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(205, 170, 147, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(205, 170, 147, 0);
  }
}
.mobile-nav.nav-bar {
  display: none;
}
.mobile-nav.nav-bar.menu-open{
  display: flex !important;
}

.mobile-nav {
  position: fixed;
  z-index: 2500;
  background: rgba(0,0,0,0.9);
  width: 100%;
  height: 100%;
  text-align: center;
  justify-content: center;
  align-items: center;
  left: 0;
  top: 0;
}
.mobile-close {
  position: absolute;
  right: 0;
  top: 0;
  padding: 25px;
  color: #fff;
  cursor: pointer;
}
.mobilemenu li a {
  color: #fff;
  padding: 10px 0px;
  display: block;
  text-decoration: navajowhite;
  font-size: 22px;
}
.navbar-toggler-icon {
  cursor: pointer;
}

.toggle-btn {
  padding: 6px;
  border: 1px solid #dedede;
  border-radius: 5px;
  display: none;
}
.mainids b {
  color: #fff;
  font-weight: normal;
  font-size: 18px;
  font-weight: 300;
  display: block !important;
}
.whapfix {
  position: fixed;
  width: 55px;
  height: 55px;
  right: 30px;
  bottom: 30px;
  z-index: 2500;
  display: block;
}
.whapfix img {
  width: 55px;
  height: 55px;
}