/* ----------------- Fonts Starts----------------- */
@font-face {
    font-family: 'Neue Montreal';
    src: url('../fonts/NeueMontreal-Medium.eot');
    src: url('../fonts/NeueMontreal-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/NeueMontreal-Medium.woff2') format('woff2'),
        url('../fonts/NeueMontreal-Medium.woff') format('woff'),
        url('../fonts/NeueMontreal-Medium.ttf') format('truetype'),
        url('../fonts/NeueMontreal-Medium.svg#NeueMontreal-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('../fonts/NeueMontreal-Regular.eot');
    src: url('../fonts/NeueMontreal-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/NeueMontreal-Regular.woff2') format('woff2'),
        url('../fonts/NeueMontreal-Regular.woff') format('woff'),
        url('../fonts/NeueMontreal-Regular.ttf') format('truetype'),
        url('../fonts/NeueMontreal-Regular.svg#NeueMontreal-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('../fonts/NeueMontreal-Bold.eot');
    src: url('../fonts/NeueMontreal-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/NeueMontreal-Bold.woff2') format('woff2'),
        url('../fonts/NeueMontreal-Bold.woff') format('woff'),
        url('../fonts/NeueMontreal-Bold.ttf') format('truetype'),
        url('../fonts/NeueMontreal-Bold.svg#NeueMontreal-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('../fonts/NeueMontreal-Light.eot');
    src: url('../fonts/NeueMontreal-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/NeueMontreal-Light.woff2') format('woff2'),
        url('../fonts/NeueMontreal-Light.woff') format('woff'),
        url('../fonts/NeueMontreal-Light.ttf') format('truetype'),
        url('../fonts/NeueMontreal-Light.svg#NeueMontreal-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('../fonts/NeueMontreal-BoldItalic.eot');
    src: url('../fonts/NeueMontreal-BoldItalic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/NeueMontreal-BoldItalic.woff2') format('woff2'),
        url('../fonts/NeueMontreal-BoldItalic.woff') format('woff'),
        url('../fonts/NeueMontreal-BoldItalic.ttf') format('truetype'),
        url('../fonts/NeueMontreal-BoldItalic.svg#NeueMontreal-BoldItalic') format('svg');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('../fonts/NeueMontreal-Italic.eot');
    src: url('../fonts/NeueMontreal-Italic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/NeueMontreal-Italic.woff2') format('woff2'),
        url('../fonts/NeueMontreal-Italic.woff') format('woff'),
        url('../fonts/NeueMontreal-Italic.ttf') format('truetype'),
        url('../fonts/NeueMontreal-Italic.svg#NeueMontreal-Italic') format('svg');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('../fonts/NeueMontreal-MediumItalic.eot');
    src: url('../fonts/NeueMontreal-MediumItalic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/NeueMontreal-MediumItalic.woff2') format('woff2'),
        url('../fonts/NeueMontreal-MediumItalic.woff') format('woff'),
        url('../fonts/NeueMontreal-MediumItalic.ttf') format('truetype'),
        url('../fonts/NeueMontreal-MediumItalic.svg#NeueMontreal-MediumItalic') format('svg');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('../fonts/NeueMontreal-LightItalic.eot');
    src: url('../fonts/NeueMontreal-LightItalic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/NeueMontreal-LightItalic.woff2') format('woff2'),
        url('../fonts/NeueMontreal-LightItalic.woff') format('woff'),
        url('../fonts/NeueMontreal-LightItalic.ttf') format('truetype'),
        url('../fonts/NeueMontreal-LightItalic.svg#NeueMontreal-LightItalic') format('svg');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}
/* ----------------- Fonts End----------------- */

/* ----------------- Varibale Declaration Start----------------- */
:root{
    --fonts: 'Neue Montreal' !important;
    --blue: #011A2B;
    --body-gray: #757575;
    --light--blue: #3FACC9;
    --white: #ffffff;
    --font-16: 16px;
}
/* ----------------- Varibale Declaration End----------------- */
*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-family: var(--fonts) !important;
}
 
  img {
    max-width: 100%;
    height: auto;
  }
  
  h1, h2, h3, h4, h5, h6 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  a:focus {
    outline:none !important;
  }
  p {
    margin: 0;
    font-size: var(--font-16);
    line-height: 1.5;
  }
  
  input:focus,
  select:focus-visible,
  textarea:focus-visible {
    outline: none !important;
    box-shadow: inherit !important;
  }
  a {
    text-decoration: none;
  }
  .post, .page{
    margin-bottom: 0px !important;
  }
  ul {
    padding: 0px;
    margin: 0px !important;
    list-style: none;
  }

  .pw__container {
    width: 100%;
    max-width: 1280px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
  }

  .pw___pad--container {
    padding: 0 50px;
  }

  .pw__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -15px;
  }
.pw__col--25{
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px
}
.pw__col--40{
  flex: 0 0 40%;
  max-width: 40%;
  padding: 0 15px
}
.pw__col--60{
  flex: 0 0 60%;
  max-width: 60%;
  padding: 0 15px
}
.pw__col--33{
  flex: 0 0 33.33%;
  max-width: 33.33%;
  padding: 0 15px
}
.pw__col--50{
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 15px
}
.mt-50{
  margin-top: 50px;
}
.mt-30{
  margin-top: 30px;
}
.ptb-60{
  padding: 60px 0px;
}
.ptb-120{
  padding: 120px 0px;
}
@media(max-width:767px){
  .pw__col--33,.pw__col--60,.pw__col--40,.pw__col--25,.pw__col--50{
    flex: 0 0 100%;
    max-width: 100%;
  }
  .ptb-60{
    padding: 30px 0px;
  }
}

.btn {
  padding: 15px 40px;
  border: 2px solid var(--light--blue);
  box-sizing: border-box;
  border-radius: 40px;
  display: inline-block;
  text-align: center;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  background-color: transparent;
}
.pw__form--btn{
  position: relative;
  width: fit-content;
  margin-left: auto;
}
.pw__form--btn svg{
  position: absolute;
  right: 25px;
  top: 17px;
}
.pw__form--btn input[type="submit"]{
  font-family: Neue Montreal;
  font-style: normal;
  font-weight: 500;
  font-size: 21px;
  line-height: 25px;
  color: #011A2B;
  padding: 13px 50px 13px 35px;
  cursor: pointer;
}
.pw__form--btn:hover input[type="submit"]{
  background-color: var(--light--blue);
  color: var(--white);
  -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}
.pw__form--btn:hover  svg path{
  fill: var(--white);
  -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}
@media (min-width: 576px) {
    .pw__container {
      max-width: 640px;
    }
  }
  
  @media (min-width: 768px) {
    .pw__container {
      max-width: 760px;
    }
  }
  
  @media (min-width: 992px) {
    .pw__container {
      max-width: 1040px;
    }
  }
  
  @media (min-width: 1200px) {
    .pw__container {
      max-width: 1280px;
    }
  }
/*Header Css Start*/
.pw__header .logo a {
    display: inline-block;
}
.header {
  position: fixed;
  top: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,.3);
  padding: 15px 0px;
  z-index: 1010;
  -webkit-transition: all ease-out .5s;
  -moz-transition: all ease-out .5s;
  -o-transition: all ease-out .5s;
  transition: all ease-out .5s;
  background-color: var(--blue);
}
.pw__darkheader{
  background-color: var(--blue);
  -webkit-transition: all ease-out .5s;
  -moz-transition: all ease-out .5s;
  -o-transition: all ease-out .5s;
  transition: all ease-out .5s;
}
.d-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.pw__header .site-branding {
    flex: 0 0 20%;
    max-width: 20%;
}
.pw__header #site-navigation {
    flex: 0 0 80%;
    max-width: 80%;
}
.pw__header .main-navigation ul{
  justify-content: flex-end;
  align-items: center;
}
.header .logo img {
  max-width: 215px;
}
.pw__banner-img img {
    width: 100%;
}
.pw__header--contact {
    border: 2px solid #3DABC8 !important;
    border-radius: 40px;
    padding: 7px 40px !important;
    line-height: 30px !important;
}
/* Mobile menu */
#menu-icon {
    display: block;
    position: absolute;
    top: 45%;
    right: 40px;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    opacity: 1;
    transform: translate(-50%,-50%);
    font-size: 27px;
    z-index: 1;
}

#menu-icon:hover {
  opacity: 0.85;
  text-decoration: none;
  border: none;
}

.navbar {
  max-height: 0;
  overflow: hidden;
  -moz-transition: max-height 0.4s;
  -o-transition: max-height 0.4s;
  -webkit-transition: max-height 0.4s;
  transition: max-height 0.4s;
  -ms-transition: max-height 0.4s;
   right: 0;
}

.navbar .menu {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.navbar .menu li {
  list-style-type: none;
  display: block;
}

.navbar .menu li a {
    display: block;
    text-decoration: none;
    font-family: var(--fonts);
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 25px !important;
    color:var(--white);
    padding: .9em 2.5em;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}
.navbar .menu li a:hover{
    color: var(--light--blue);
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.header .expand {
    position: absolute;
    top: 0px;
    background-color: #011a2b;
    width: 100%;
    right: 50px;
    padding: 0 20px 30px;
    max-width: 100%;
    max-height: 100vh;
    opacity: 1;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}
.pw__header--contact img {
    position: relative;
    right: -6px;
    width: 16px;
    top: 3px;
}
.pw__header .main-navigation .current-menu-item a {
    color: #3dabc8;
    position: relative;
}

.pw__header .main-navigation .current-menu-item a:before {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    width: 75px;
    height: 2px;
    background-color: #3dabc8;
    transform: translate(-50%);
}
.pw__header--contact:hover{
    background-color: var(--light--blue);
    color: var(--white) !important;
}

@media only screen and (min-width: 993px) {
  .logo {
    margin-left: 0;
  }

  .logo,
  .navbar {
    display: inline-block;
  }

  /* Mobile menu icon */
  #menu-icon {
    display: none;
  }
  
  .navbar {
    max-height: none;
  }

  .navbar .menu li {
    list-style-type: none;
    display: inline-block;
    text-align: center;
  }

  .navbar .menu li a {
    display: block;
    border-bottom: 0;
  }
  .menu-toggle{
    display: none;
  }
  
  
}

/* Banner Section Css Start */
.pw__banner--main {
    height: 100vh;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}
video#myVideo {
    height: 100vh;
    width: 100%;
    position: absolute;
    object-fit: cover;
    max-height: 100vh;
    z-index: -1;
}
.pw__banner--main:before {
  content: '';
  position: absolute;
  background: rgba(1, 26, 43, 0.35);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.pw__banner--main .pw__container{
    height: 100vh;
}
.pw__banner--textmain {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.pw_banner-warpper h1 {
  font-family: var(--fonts);
  font-style: normal;
  font-weight: normal;
  font-size: 4.8vw;
  line-height: 4.8vw;
  text-align: center;
  text-transform: uppercase;
  color: var(--white);
  max-width: 63.020833333333336vw;
  margin: 0 auto;
  background: 50% 100% / 50% 50% no-repeat    radial-gradient(ellipse at bottom, #77C6FC, transparent, transparent);
  -webkit-background-clip: text;
  background-clip: text;
  animation: reveal 3000ms ease-in-out forwards 100ms,
  glow 2500ms linear infinite 2000ms;
}
.pw_banner-warpper h1 span{
  color: #77C6FC;
  position: relative;
}
.pw_banner-warpper h1 span svg{
    position: absolute;
    top: -7px;
    left: -20px;
    width: 120%;
}

@keyframes reveal {
  80%{
    letter-spacing: 9px;
  }
  100% {
    background-size: 300% 300%;
  }
}
@keyframes glow {
  40% {
    text-shadow: 0 0 6px #77C6FC;
  }
}

.pw_banner-warpper p{
  font-family: var(--fonts);
    font-style: normal;
    font-weight: normal;
    font-size: 28px;
    line-height: 35px;
    text-align: center;
    color: var(--white);
    max-width: 920px;
    margin: 30px auto 0px;
}
.pw__scroll--down img {
    transform: rotate(90deg);
    position: relative;
    top: 4px;
    left: -5px;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}
.pw__scroll--down a{
  font-family: var(--fonts);
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  color: #FFFFFF !important;
}
.pw__map .ol-attribution {
    display: none;
}
.pw__banner--main .pw__scroll--down {
    position: absolute;
    left: 47%;
    bottom: 140px;
    transform: rotate(-90deg)translate(-50%,-50%);
    -webkit-transform: rotate(-90deg)translate(-50%,-50%);
    -moz-transform: rotate(-90deg)translate(-50%,-50%);
    -ms-transform: rotate(-90deg)translate(-50%,-50%);
    -o-transform: rotate(-90deg)translate(-50%,-50%);
    color: var(--white);
    animation: bounce 1600ms infinite cubic-bezier(0.445, 0.05, 0.55, 0.95);
    -webkit-animation: bounce 1600ms infinite cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
@keyframes bounce {
 50% {
    bottom: 120px;
  }
}
.mobile-img{
    display:none;
  }
@media(max-width: 1600px){
  .pw_banner-warpper h1 span svg{
      top: 0px;
      height: 100px;
  }
}
@media(max-width: 1600px){
  .pw_banner-warpper h1 span svg{
      top: -3px;
  }
}
@media(max-width: 1280px){
  .pw_banner-warpper h1 span svg{
    top: -7px;
  }
}
@media(max-width: 1199px){
    .navbar .menu li a{
        padding: .9em 1.8em; 
        padding-left: 0px;
    }
    @keyframes reveal {
      80%{
        letter-spacing: 4px;
      }
      100% {
        background-size: 300% 300%;
      }
    }
    .pw_banner-warpper p{
      font-size: 24px;
      max-width: 800px;
    }
}
@media(max-width: 992px){
    .pw__header--contact{
        width: max-content;
        border-color:var(--white) !important;
    }
    .pw___pad--container{
        padding: 0 15px;
    }
    #menu-icon{
        right: 0;
    }
    .pw__header .main-navigation .current-menu-item a:before{
      left: 40px;
    }
    .pw_banner-warpper p{
        font-size: 20px;
        line-height: 25px;
        max-width: 650px;
    }
    .pw__header--contact{
      margin-top: 15px;
    }
    .navbar {
        max-height: 0;
        overflow: hidden;
        -moz-transition: max-height 0.4s;
        -o-transition: max-height 0.4s;
        -webkit-transition: max-height 0.4s;
        transition: max-height 0.4s;
        -ms-transition: max-height 0.4s;
        position: absolute;
        top: 70px;
        background-color: var(--light--blue);
        width: 100%;
        right: -800px;
        padding: 0 20px 30px;
        max-width: 320px;
        opacity: 0;
      }
      .pw_banner-warpper h1 span svg{
        height: 100px;
        top: -30px;
      }
      .header .expand{
        position: fixed;
        height: 100%;
        right: 0;
        transition: all 0.4s ease;
        -webkit-transition: all 0.4s ease;
        -moz-transition: all 0.4s ease;
        -ms-transition: all 0.4s ease;
        -o-transition: all 0.4s ease;
      }
       .pw__header .site-branding {
          flex: 0 0 50%;
          max-width: 50%;
      }
      .menu-toggle{
        display: none !important;
      } 
      .pw__header .main-navigation ul{
        display: block;
      }
      .pw__header #site-navigation{
        flex: 0 0 100%;
        max-width: 100%;
      }
      .pw__menu-toggle {
        position: relative;
        display:  inline-block;
        width: 35px;
        height: 30px;
      }
      .pw__menu-toggle span {
        margin: 0 auto;
        position: relative;
        top: 12px;
        transition-duration: 0s;
        transition-delay: .2s;
        transition: background-color 0.3s;
      }
      .pw__menu-toggle span:before, .pw__menu-toggle span:after {
        position: absolute;
        content: '';
      }
      .pw__menu-toggle span, .pw__menu-toggle span:before, .pw__menu-toggle span:after {
        width: 35px;
        height: 3px;
        background-color: #3DABC8;
        display: block;
        opacity: 1;
      }
      .pw__menu-toggle span:before {
        margin-top: -10px;
        transition-property: margin, transform;
        transition-duration: .2s;
        transition-delay: .2s, 0;  
      }
      .pw__menu-toggle span:after {
        margin-top: 10px;
        transition-property: margin, transform;
        transition-duration: .2s;
        transition-delay: .2s, 0;  
      }

      .pw__menu-toggle-active span {
        background-color: rgba(0,0,0,0);
        transition: 0.3s background-color;
      }
      .pw__menu-toggle-active span:before {
        margin-top: 0;
        transform: rotate(45deg);
        transition-delay: 0, .2s;
      }
      .pw__menu-toggle-active span:after {
        margin-top: 0;
        transform: rotate(-45deg);
        transition-delay: 0, .2s;
      }
      .pw__header .menu-primary-container{
        padding-top: 60px;
      }
}
@media(max-width:767px){
  
  .pw__banner--main .pw__scroll--down{
    left: 38%;
    bottom: 180px;
  }
  @keyframes bounce {
    50% {
      bottom: 140px;
    }
  }
  .pw_banner-warpper h1{
    font-size: 8.25vw;
    line-height: 10.25vw;
    max-width: 100%;    
  }
  @keyframes reveal {
    80%{
      letter-spacing: 1px;
    }
    100% {
      background-size: 250% 250%;
    }
  }
  .mobile-img{
    display: block;
    margin-top: 30px;
  }
  .pw__meetphonix--svg{
    display: none;
  }
}
/*pw Secound Section Css Start*/
.pw__secound--main {
    padding: 60px 0;
    position: relative;
}
.first-animation svg{
  position: absolute;
  top: 50px;
  left: 0;
  z-index: -1;
}
.zoom-anime{
  animation: zoom-anime 4s ease-out infinite;
  transform-origin: center center;
  transform-box: fill-box;
  -webkit-animation: zoom-anime 4s ease-out infinite;
}
.secound-animation  svg {
  -moz-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  filter: FlipH;
  -ms-filter: "FlipH";
}
.secound-animation {
  position: absolute;
  right: 0;
  bottom: 50px;
  z-index: -1;
}
@keyframes zoom-anime {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(.6, .6);
    -webkit-transform: scale(.6, .6);
    -moz-transform: scale(.6, .6);
    -ms-transform: scale(.6, .6);
    -o-transform: scale(.6, .6);
}
  100% {
    transform: scale(1, 1);
  }
}
.pw__tv--frame,.pw__desktop--frame,.pw__mobile--frame {
    position: relative;
    overflow: hidden;
}
.pw__tv--frame video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    border: 10px solid #171717;
    max-width: 480px;
    left: 50%;
    transform: translate(-50%);
}
.pw__desktop--frame #desktopframe {
    position: absolute;
    top: 3px;
    left: 50%;
    width: 100%;
    border-radius: 10px;
    padding: 10px;
    max-width: 480px;
    transform: translate(-50%);
}
.pw__mobile--frame #mobileframe{
    position: absolute;
    left: 50%;
    top: 53%;
    width: 100%;
    height: 100%;
    padding: 0px 15px;
    transform: translate(-50%,-50%);
    border-bottom-left-radius: 75px;
    border-bottom-right-radius: 80px;
    max-width: 236px;
}
.pw__mobile--frame:hover #pasued-video,
.pw__tv--frame:hover #pasued-videotv,
.pw__desktop--frame:hover #pasued-videodesk{
  opacity: 1;
  visibility: visible;
  transition: all .3s ease-in-out;
}
#pasued-video,#pasued-videodesk,#pasued-videotv {
    /*background-color: #77c6fc;*/
    display: none;
    height: 50px;
    width: 50px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    border-radius: 45px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease-in-out;
    z-index: 1;
}
#pasued-videodesk{
  top: 36%;
}
.stop #Capa_1{
  display: none;
}
#pasued-video.stop #Capa_2,
#pasued-videotv.stop #Capa_2,
#pasued-videodesk.stop #Capa_2{
  display: block;
}
#pasued-video #Capa_1,
#pasued-video #Capa_2,
#pasued-videodesk #Capa_1,
#pasued-videodesk #Capa_2,
#pasued-videotv #Capa_1,
#pasued-videotv #Capa_2 {
    width: 22px;
    height: 22px;
    margin: 0 auto;
    position: relative;
    top: 14px;
}
#pasued-video #Capa_2,#pasued-videotv #Capa_2,#pasued-videodesk #Capa_2 {
  display: none;
  left: 3px;
}
#pasued-video #Capa_1 path,
#pasued-video #Capa_2 path,
#pasued-videotv #Capa_1 path,
#pasued-videotv #Capa_2 path,
#pasued-videodesk #Capa_1 path,
#pasued-videodesk #Capa_2 path {
    fill: #ffffff;
}
.pw__secound--main .pw__row :nth-child(2) .pw__pro--img, 
.pw__secound--main .pw__row :nth-child(3) .pw__pro--img {
    position: relative;
    left: 50px;
}
.pw__secound--content p {
    font-family: var(--fonts);
    text-align: center;
    font-style: normal;
    font-weight: 400;
    font-size: 21px;
    line-height: 28px;
    color: var(--blue);
    max-width: 970px;
    margin: 0 auto;
    margin-bottom: 10px;
}
.pw__secound--content p:last-child{
    margin-bottom: 0;
}
.pw__secound--content p a{
    font-weight: 500;
    text-decoration: underline;
    color: #000000;
}
.pw__secound--content{
    margin-bottom: 50px;
}
.pw__secound--main .pw__row {
    align-items: center;
}
.pw__pro--img {
    text-align: center;
}
.learn-more {
  text-align: center;
}
.learn-more a{
  font-family: var(--fonts);
  font-style: normal;
  font-weight: 500;
  font-size: 21px;
  line-height: 25px;
  color: var(--blue) !important;
}
.learn-more a:hover{
  background-color: var(--light--blue);
  color: var(--white) !important;
}
.learn-more a svg{
  position: relative;
  right: -3px;
  top: 3px;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
}
.learn-more a:hover svg path{
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
}
.learn-more a:hover svg path{
  fill: #ffffff;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
}
@media(max-width: 992px){
  .pw__desktop--frame #desktopframe {
    position: absolute;
    top: 5px;
    left: 50%;
    width: 100%;
    border-radius: 10px;
    padding: 7px;
    max-width: 480px;
    transform: translate(-50%);
}
}
@media(max-width:767px){
  .pw__secound--content p{
    font-size: 18px;
  }
  .pw__pro--img {
    margin-bottom: 30px;
  }
}
/* ------ we Global Css ------ */
.pw__weare--global {
  background-color: var(--blue);
}
.pw__comman--title {
  text-align: center;
  padding: 0 15px
}
.pw__comman--title h2{
  font-family: var(--fonts);
  font-style: normal;
  font-weight: bold;
  font-size: 62px;
  line-height: 72px;
  color:var(--white);
  margin-bottom: 10px !important;
}
.pw__comman--title p{
  font-family: var(--fonts);
  font-style: normal;
  font-weight: normal;
  font-size: 32px;
  line-height: 42px;
  color: var(--light--blue);
}
.pw__progress--wrapper{
  display: flex;
  flex-wrap: wrap;
}
.pw__progress--wrapper .pw__col--33{
  position: relative;
}
.pw__progress--wrapper .pw__col--33:before {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    border-right: 1.5px solid rgba(255, 255, 255, 0.1);
    height: 50%;
    transform: translateY(-50%);
}
.pw__progress--wrapper .pw__col--33:last-child:before{
  content: none;
}
.map svg {
  width: 100%;
  height: auto;
}
.pw__weare--global .pw___pad--container {
  padding-left: 12vw;
  padding-right: 15px;
}
.pw__weare--global .pw__row {
  margin-top: 80px;
  align-items: center;
}
.global-text h5 {
  font-family: var(--fonts);
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  text-align: center;
  letter-spacing: 0.03em;
  color: var(--light--blue);
}
.global-text p{
  font-family: var(--fonts);
  font-style: normal;
  font-weight: 500;
  font-size: 21px;
  line-height: 28px;
  text-align: center;
  letter-spacing: 0.03em;
  color:var(--white);
  }
  .location{
    animation: zoom-in-zoom-out 2s ease-out infinite;
    -webkit-animation: zoom-in-zoom-out 2s ease-out infinite;
    transform-origin: center center;
    transform-box: fill-box;
}
.white{
  stroke: var(--white);
}
  @keyframes zoom-in-zoom-out {
    0% {
      transform: scale(1, 1);
    }
    50% {
      transform: scale(1.2, 1.2);
      -webkit-transform: scale(1.2, 1.2);
      -moz-transform: scale(1.2, 1.2);
      -ms-transform: scale(1.2, 1.2);
      -o-transform: scale(1.2, 1.2);
}
    100% {
      transform: scale(1, 1);
    }
  }
/* Progreess Animation */
.progressbar {
  position: relative;
  width: 170px;
  height: 170px;
  margin: 1em;
  transform: rotate(-90deg);
}

.progressbar__svg {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  border-radius: 50%;
}


.aos-animate .progressbar__svg-circle {
  width: 100%;
  height: 100%;
  fill: none;
  stroke-width: 20;
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
  stroke: #4472C4;
  stroke-linecap: round;
  transform: translate(5px, 5px);
}
.aos-animate .circle-html {
  -webkit-animation: anim_circle-html 1s ease-in-out forwards;
  animation: anim_circle-html 1s ease-in-out forwards;
  transform: center center;
  -webkit-transform: center center;
  -moz-transform: center center;
  -ms-transform: center center;
  -o-transform: center center;
  transform-box: fill-box;
}
.progressbar__text {
  padding: 0.25em 0.5em;
  border-radius: 0.25em;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 25px;
  text-transform: uppercase;
  color: var(--blue);
  font-family: var(--fonts);
}
.progress__text--wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate( 90deg);
  text-align: center;
  -webkit-transform: translate(-50%, -50%) rotate( 90deg);
  -moz-transform: translate(-50%, -50%) rotate( 90deg);
  -ms-transform: translate(-50%, -50%) rotate( 90deg);
  -o-transform: translate(-50%, -50%) rotate( 90deg);
}
.progress__text--wrapper h4{
  font-family: var(--fonts);
  font-style: normal;
  font-weight: bold;
  font-size: 32px;
  line-height: 42px;
  letter-spacing: 0.03em;
  color: var(--blue);
}
.global-text {
  padding: 0 15px;
}
@-webkit-keyframes anim_circle-html {
  to {
    stroke-dashoffset: 22;
  }
}

@keyframes anim_circle-html {
  to {
    stroke-dashoffset: 22;
  }
}
.pw__progress--wrapper .pw__col--33 {
  text-align: center;
}
.pw__progress--title p{
  font-family: var(--fonts);
  font-style: normal;
  font-weight: 500;
  font-size: 21px;
  line-height: 28px;
  text-align: center;
  color:var(--white);
  padding: 0 20px;
}
@media(max-width: 992px){
  .pw__comman--title h2{
    font-size: 40px;
    line-height: 45px;
  }
  .pw__comman--title p{
    font-size: 22px;
    line-height: 30px;
  }
}
@media(max-width:767px){
  .progressbar{
    margin: 0 auto 30px;
  }
  .pw__weare--global .pw___pad--container{
    padding-left: 15px;
  }
  .global-text h5{
    font-size: 18px;
  }
  .pw__comman--title h2{
    font-size: 34px;
    line-height: 35px;
    margin-bottom: 15px !important;
  }
  .map{
    margin-top: 50px;
  }
  .pw__progress--wrapper .pw__col--60, .pw__progress--wrapper .pw__col--40 {
      padding: 0;
  }
  .global-text{
    margin-top: 0px;
  }
  .pw__weare--global .pw__progress--wrapper{
    margin-bottom: 30px;
  }
  .pw__progress--wrapper .pw__col--33{
    margin-bottom: 50px;
  }
}
/* third section Css Start*/
.pw__meetphonix-section {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.meetphonix--top-left{
  position: absolute;
  top: 0px;
  left: 0;
  z-index: -1;
}
.meetphonix--top-right {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.pw__phonix--svg {
  position: absolute;
  left: 0;
  bottom: 50px;
}
.anime2 {
  animation: zoom-anime2 4s ease-out infinite;
  transform-origin: center center;
  transform-box: fill-box;
  -webkit-animation: zoom-anime2 4s ease-out infinite;
}
@keyframes zoom-anime2 {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(.6, .6);
    -webkit-transform: scale(.6, .6);
    -moz-transform: scale(.6, .6);
    -ms-transform: scale(.6, .6);
    -o-transform: scale(.6, .6);
}
  100% {
    transform: scale(1, 1);
  }
}
.pw__meetphonix-section .pw__comman--title h2{
  color: var(--blue);
}
.pw__meetphonix--tile h5 {
  font-family: var(--fonts);
  font-style: normal;
  font-weight: 500;
  font-size: 32px;
  line-height: 42px;
  color: #011A2B;
  margin-bottom: 20px !important;
  position: relative;
  z-index: 1;
}
.pw__meetphonix--tile .inner--title{
  max-width: fit-content;
  position: relative;
}
.pw__meetphonix--tile p {
  font-family: var(--fonts);
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.03em;
  color: #757575;
  margin-bottom: 15px;
  max-width: 83%;
}
.pw__meetphonix--tile {
  position: relative;
}
.pw__meetphonix--tile svg {
  position: absolute;
  top: -20px;
  right: -20px;
}
.pw__meetphonix--svg{
  position: relative;
}
.pw__meetphonix--svg svg {
    width: 100%;
    height: auto;
}
.pw__meetphonix--svg .slide1{
  position: absolute;
  top: 120px;
  left: 0%;
}
.pw__meetphonix--svg .slide2{
  position: absolute;
  top: 70px;
  left: 7%;
}
.pw__meetphonix--svg .slide3{
    position: absolute;
    top: -25px;
    left: 23%;
    z-index: -1;
}
.pw__meetphonix--svg .slide4{
  position: absolute;
  top: 90px;
  right: 17%;
}
.pw__meetphonix--svg .slide5{
    position: absolute;
    top: 160px;
    right: 1%;
    z-index: -1;
}
.pw__meetphonix--svg .slide4 video, .pw__meetphonix--svg .slide2 video {
    width: 100%;
    max-width: 200px;
}
.pw__meetphonix-section .pw___pad--container  {
  padding-left: 12vw;
  padding-right: 7vw;
}
.pw__meetphonix-section .pw__row {
  align-items: center;
}
.pw__meetphonix--svg img{
   filter: drop-shadow(0px 0px 21.8337px rgba(0, 0, 0, 0.15));
  }
@media(max-width:1279px){
  .pw__meetphonix-section .pw__col--40,.pw__meetphonix-section .pw__col--60{
    flex: 0 0 100%;
    max-width: 100%;
  }
  .pw__meetphonix--svg{
    margin-top: 50px;
  }
  .pw__meetphonix--svg img{
    width: 100%;
  }
  .pw__meetphonix--svg{
    max-width: 900px;
    margin: 0 auto;
    margin-top: 80px;
  }
}
@media(max-width:1199px){
  .pw__meetphonix--tile p{
    max-width: 100%;
  }
  .pw__meetphonix--tile h5{
    font-size: 28px;
  }
  .pw__meetphonix--tile svg{
    right: -45px;
  }
  
}
@media(max-width:992px){
  .pw__meetphonix--tile h5{
    font-size: 26px;
  }
}
@media(max-width:767px){
  .pw__meetphonix--tile p{
    max-width: 100%;
    font-size: 16px;
  }
  .pw__meetphonix-section  .pw__col--40,.pw__meetphonix-section  .pw__col--60{
    flex: 0 0 100%;
    max-width: 100%;
  }
  .pw__meetphonix--tile h5{
    font-size: 22px;
  }
  .pw__meetphonix--tile svg {
      right: -20px;
      width: 65%;
      top: -17px;
  }
}
/* Our Partners Css */
.pw__our--partners{
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  overflow-x: hidden;
}
.pw__our--partners .pw__comman--title h2 {
  color: var(--blue);
}
.pw__slider--info{
  text-align: center;
}
.pw__testimonial--slider{
  margin-top: 50px;
}
.pw__slider--text p{
  font-family: var(--fonts);
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 25px;
  text-align: center;
  letter-spacing: 0.03em;
  color: var(--blue);
  max-width: 950px;
  margin: 0 auto 20px;
}
.pw_quote{
  margin-bottom: 15px;
}
.pw__slider--wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: fit-content;
  margin: 20px auto 0;
  position: relative;
}
.pw__slider--wrapper .pw__bottomslider--left{
  padding-right: 10px;
}
.pw__slider--wrapper .pw__bottomslider--left img{
  max-width: 50px;
}
.pw__slider--wrapper .pw__bottomslider--right{
  border-left:2px solid rgba(0, 0, 0, 0.15);
  padding-left: 10px;
}
.pw__bottomslider--right h4 {
  font-family: var(--fonts);
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0.03em;
  color: #011A2B;
}
.pw__testimonial--slidermain{
  position: relative;
  margin-bottom: 60px;
  z-index: 1;
}
.pw__bottomslider--right p {
  font-family: var(--fonts);
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #011A2B;
  text-align: left;
  margin-bottom: 0px !important;
}
.pw__testimonial--slidermain .swiper-pagination {
  left: 50%;
  transform: translate(-50%);
  bottom: -60px;
}
.pw__testimonial--slidermain .swiper-pagination-bullet {
  width: 18px;
  height: 18px;
  background: transparent;
  opacity: 1;
  border: 2px solid #77C6FC;
  margin: 3px;
  padding: 5px;
  position: relative;
}
.pw__testimonial--slidermain .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background-color: #77c6fc;
  border-radius: 50px;
  transform: translate(-50%,-50%);
}
.pw__partners--wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pw__partners--img{
  -webkit-box-flex: 0;
  -ms-flex: 0 0 14.28%;
  flex: 0 0 14.28%;
  max-width: 14.28%;
  text-align: center;
  padding: 0 15px;
}
.pw__partners--images{
  margin-top: 120px;
}
.pw__testimonial--slidermain:before{
  content: '';
  position: absolute;
  top:0;
  left: calc(100% - 107%);
  background-image: url(https://ocpremiumthemes.com/prequel/wp-content/uploads/2021/08/left_testimonial.svg);
  width: 17vw;
  height: 17vw;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}
.pw__testimonial--slidermain:after{
  content: '';
  position: absolute;
  top:0;
  right: calc(100% - 107%);
  background-image: url(https://ocpremiumthemes.com/prequel/wp-content/uploads/2021/08/right_testimonial.svg);
  width: 17vw;
  height: 17vw;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

@media(max-width: 1700px){
  .pw__testimonial--slidermain:after{
    right: calc(100% - 105%);
  }
  .pw__testimonial--slidermain:before{
    left: calc(100% - 103%);
  }
  .pw__meetphonix-section .pw___pad--container,.pw__weare--global .pw___pad--container{
    padding: 0 50px;
  }
  .pw__weare--global .pw__col--40,
  .pw__weare--global .pw__col--60{
    flex: 0 0 50%;
    max-width: 50%;
  }
  .progressbar{
    margin: 0 auto 20px auto;
  }
}
@media(max-width:1366px){
  .pw__slider--text p{
    max-width: calc(80% - 200px);
    font-size: 16px;
  }
  .pw__meetphonix-section .pw___pad--container, .pw__weare--global .pw___pad--container{
    padding: 0 30px;
  }
   .pw__testimonial--slidermain:after{
    right: calc(100% - 100%);
  }
  .pw__testimonial--slidermain:before{
    left: calc(100% - 100%);
  }
  .pw__secound--main .pw__row :nth-child(2) .pw__pro--img, 
  .pw__secound--main .pw__row :nth-child(3) .pw__pro--img {
    left: 0px;
  }
}
@media(max-width:1279px){
  .pw__weare--global .pw__col--40, .pw__weare--global .pw__col--60{
    flex: 0 0 100%;
    max-width: 100%;
  }
  .pw__progress--wrapper{
    margin-bottom: 50px;
  }
}
@media(max-width: 1024px){
  .pw__testimonial--slidermain:before,.pw__testimonial--slidermain:after{
    content: none;
  }
  .pw__slider--text p {
      max-width: calc(100% - 200px);
      font-size: 16px;
  }
  .pw___pad--container {
      padding: 0px 15px;
  }
}
@media(max-width:992px){
  .pw__slider--text p {
      max-width: calc(100% - 0px);
      font-size: 16px;
  }
  .pw__partners--img{ 
    flex: 0 0 20%;
    max-width:20%;
   }
   .pw__partners--wrapper{
    flex-wrap: wrap;
   }
}
@media(max-width: 767px){
  .pw__partners--img{ 
    flex: 0 0 100%;
    max-width:100%;
   }
}
/* Contact Section Css Start */
.pw__contact--title h3 {
  font-family: var(--fonts);
  font-style: normal;
  font-weight: bold;
  font-size: 3.125vw;
  line-height: 3.64583vw;
  letter-spacing: 0.03em;
  color: #011A2B;
  margin-bottom: 20px !important;
}
.pw__form--wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
  margin-bottom: 15px;
}
.pw__form--wrapper .pw__form--group {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 10px;
}
.pw__form--group label{
  display: inline-block;
  width: 100%;
}
.pw__form--conrol {
  width: 100% !important;
  padding: 5px 0px !important;
  border: none !important;
  border-bottom: 1px solid rgba(1, 26, 43, 0.15) !important;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.03em;
  color: #011A2B !important;
  font-family: var(--fonts) !important;
  background-color: transparent;
  border-radius: 0px !important;
}
.pw__form--conrol:focus{
  outline: none !important;
}
.pw__contact--formmain label {
  font-family: var(--fonts);
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.03em;
  color: rgba(1, 26, 43, 0.15);
}
.pw__form--groupfull{
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 10px;
}
.pw__contact--formmain textarea{
  height: 120px;
  resize: none;
}
.pw__form--groupfull{
  margin-bottom: 20px;
}
.pw__come--work .pw__comman--title h2{
  font-family: var(--fonts);
  color: #011A2B;
  margin-bottom: 0px;
}
.pw__comman--title{
  margin-bottom: 70px;
  margin-top: 10px;
}
.pw__comework h5{
  font-style: normal;
  font-weight: 500;
  font-size: 21px;
  line-height: 28px;
  letter-spacing: 0.03em;
  color: #011A2B;
  height: 100%;
}
.pw__comework li{
  list-style: none;
}
.pw__comework li a {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.03em;
  color: #3FACC9;
  transition: all .4s ease-in-out;
}
.pw__comework li a:hover{
  color: #011a2b;
  transition: all .4s ease-in-out;
}
.pw__come--work .pw__col--33 {
  border-right: 1px solid rgba(1, 26, 43, 0.15);
}
.pw__come--work .pw__row .pw__col--33:last-child {
  border-right: 0px;
}
/*Footer Css*/
.pw__footer{
  padding: 60px 0px 30px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  z-index: 1;
}
.pw__footer--animation {
  position: absolute;
  left: 30px;
  bottom: 30px;
  z-index: -1;
}
.pw__footer-content{
  text-align: center;
}
.pw__footer-links {
  margin-top: 30px;
}

.pw__footer-links li {
  display: inline-block;
  padding: 0 30px;
}

.pw__footer-links li a {
  display: inline-block;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0.03em;
  color: #FFFFFF;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
}
.pw__footer-links li a:hover{
  color: var(--light--blue);
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
}
.pw__download--kit a {
  font-family: var(--fonts);
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: var(--white) !important;
  border: 2px solid #3FACC9;
  padding: 10px 30px 17px 30px;
  margin-top: 30px;
  display: inline-block;
  border-radius: 45px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
}
.pw__download--kit a:hover{
  background-color: #3FACC9;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
}
.pw__download--kit a img{
  padding-left: 5px;
  position: relative;
  top: 5px;
}
.pw__footer-content{
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);;
}
.pw__footer-contactinfo .footer-contact--info ul li a {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0.03em;
  color: #FFFFFF;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
}
.pw__footer-contactinfo .footer-contact--info ul li a:hover{
  color: var(--light--blue);
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
}
.pw__footer-contactinfo .footer-contact--info ul li {
  display: inline-block;
}
.pw__footer-contactinfo {
  text-align: left;
  padding-bottom: 12px;
}
.pw__footer-contactinfo .footer-contact--info ul li:first-child {
  border-right: 2px solid #ffffff;
  padding-right: 15px;
}

.pw__footer-contactinfo .footer-contact--info ul li:last-child {
  padding-left: 15px;
}
.pw__footer--sociallinks ul li {
  display: inline-block;
  padding: 0 12px;
}
.pw__footer--sociallinks ul {
  text-align: right;
}
.pw__footer-contactinfo{
  margin-top: 40px;
}
.pw__copyrights-text p,.pw__bottom--links li a  {
  font-family: var(--fonts);
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.3);
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
}
.pw__bottom--links li{
  display: inline-block;
}
.pw__bottom--links li:last-child{
  padding-left: 30px;
}
.pw__bottom--links {
  text-align: right;
}
.pw__bottom--footer{
  padding-top: 15px;
}
.pw__footer--sociallinks ul li a svg path{
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
}
.pw__footer--sociallinks ul li a:hover svg path{
  fill: #ffffff;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
}
.pw__bottom--links li a:hover{
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  color: var(--light--blue);
}
.ob_banner--shop .tax-product_cat .woocommerce-ordering:before{
  content: none;
}
@media(max-width: 1700px){
  .pw__phonix--svg svg {
      width: 13vw;
  }
  .pw__footer--animation svg{
    width: 10vw;
  }
  .first-animation svg,.secound-animation svg{
    width: 15vw;
  }
  .pw__phonix--svg {
      bottom: -10px;
  }
}
@media(max-width: 1400px){
  .meetphonix--top-left svg,
  .pw__phonix--svg svg,
  .secound-animation svg,
  .first-animation svg,
  .pw__footer--animation svg,.pw__letstalk--svg svg{
    max-width: 70%;
  }
  .pw__phonix--svg{
    bottom: 0;
  }
  .pw__letstalk--svg{
    display: none;
  }
  .first-animation svg{
    top: 0px;
  }
  .secound-animation svg {
    max-width: 100%;
}
}
@media(max-width: 1280px){
  .meetphonix--top-left,
  .pw__phonix--svg,
  .secound-animation,
  .first-animation,
  .pw__footer--animation,.pw__letstalk--svg,.meetphonix--top-right{
    display: none;
  }
}
@media(max-width:992px){
  .pw__meetphonix-section{
    background-position: bottom right;
  }
  .pw__our--partners{
    background-position: top left;
  }
  .pw__map,.pw__map img{
    height: 100%;
    object-fit: cover;
  }
  .pw__contact--title h3 {
      font-size: 4.125vw;
      line-height: 4.64583vw;
  }
}
@media(max-width: 767px){
  .pw__comman--title{
    margin-bottom: 0px;
  }
  .pw__slider--text p{
    max-width: 100%;
  }
  .pw__testimonial--slidermain:before,.pw__testimonial--slidermain:after{
    content: none;
  }
  .pw__partners--wrapper{
    flex-wrap: wrap;
  }
  .pw__partners--img{
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
  .pw__partners--wrapper .pw__partners--img:nth-child(-n+3) {
      margin-bottom: 15px;
  }
  .pw__map{
    margin-top: 30px;
  }
  .pw__come--work .pw__comework{
    border-right: 0px;
  }
  .pw__come--work .pw__comman--title {
      margin-bottom: 30px;
  }
  .pw__comework{
    margin-bottom: 20px;
    text-align: center;
  }
  .pw__footer-links li a,.pw__footer-contactinfo .footer-contact--info ul li a{
    font-size: 14px;
  }
  .pw__footer-links li{
    padding: 0 7px;
  }
  .pw__footer-contactinfo,.pw__footer--sociallinks ul,.pw__bottom--links,.pw__copyrights-text{
    text-align: center;
  }
  .pw__footer--sociallinks,.pw__bottom--links{
    margin-top: 15px;
  }
  .pw__form--wrapper .pw__form--group{
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 10px;
  }
  .pw__contact--title h3{
    font-size: 8.125vw;
    margin-bottom: 30px;
  }
  .pw__meetphonix-section .pw___pad--container, .pw__weare--global .pw___pad--container{
    padding: 0px 15px;
  }
  .pw__footer-links #primary-menu li:last-child  {
      display: none;
  }
  .pw__copyrights-text p{
    margin-bottom: 0px !important;
  }
}

.pw__letstalk--svg {
  position: absolute;
  top: 0;
  right: 0px;
}
.pw__letstalk--section {
  position: relative;
  background-color: #EDF5FA;
}
.footer--logo{
  margin-bottom: 30px;
}
.pw__footer-links #primary-menu li:last-child {
    display: none;
}
/* ----- About Page Css ----- */
.pw__about--bg {
    padding: 90px 0px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.pw__banner--content h1 {
    font-family: var(--fonts);
    font-style: normal;
    font-weight: 500;
    font-size: 62px;
    line-height: 72px;
    text-align: center;
    letter-spacing: 0.03em;
    color: var(--white);
    margin-bottom: 15px !important;
}
.pw__banner--content h1 span{
  color: #3DABC8;
}
.pw__banner--content  p{
  font-family: var(--fonts);
  font-style: normal;
  font-weight: normal;
  font-size: 21px;
  line-height: 28px;
  text-align: center;
  letter-spacing: 0.03em;
  color: var(--white);
  max-width: 830px;
  margin: 0 auto;
  margin-bottom: 10px;
}
.pw__banner--content p:nth-child(3){
  max-width: 720px;
}
.pw__form--btn.learn-more .ajax-loader {
    display: none;
}
.pw__form--btn.learn-more .wpcf7-submit {
    border: 2px solid var(--light--blue);
    box-sizing: border-box;
    border-radius: 40px;
    display: inline-block;
    text-align: center;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    background-color: transparent;
}
@media(max-width: 1024px){
  .pw__banner--content h1{
    font-size: 44px;
  }
  .pw__banner--content  p{
    font-size: 16px;
    max-width: 630px;
  }
  .pw__banner--content p:nth-child(3){
    max-width: 500px;
  }
}
@media(max-width: 767px){
  .pw__banner--content h1{
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 0 !important;
  }

}

/* Journey Section css */
.pw__journey--content h3 {
    font-family: var(--fonts);
    font-style: normal;
    font-weight: bold;
    font-size: 62px;
    line-height: 72px;
    color: var(--blue);
    text-align: center;
    margin-bottom: 15px !important;
}
.pw__journey--content p{
  font-family: var(--fonts);
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 25px;
  text-align: center;
  letter-spacing: 0.03em;
  color: var(--blue);
  margin-bottom: 15px !important;
  max-width: 950px;
  margin: 0 auto;
}
.pw__ourjournery--progress {
    position: relative;
    padding-top: 20px;
    margin-top: 40px;
    padding: 0 15px;
    height: 350px;
    cursor: all-scroll;
}
.pw__ourjournery--progress:before{
    content: '';
    position: absolute;
    top: 170px;
    left: 0;
    border-top: 1px solid #011A2B;
    width: 100%;
}
#box{
     overflow-y: hidden;
    overflow-x: hidden;
    white-space: nowrap;
    border-spacing: 5px;
    flex-wrap: nowrap;
    padding-top: 8px;
}
.pw__jounery-col{
   position: relative;
   min-width:20%;
   width:20%;
  /*flex: calc(100% / 5);
  max-width: calc(100% / 5);*/
  padding: 0 15px;
}
.pw__content p {
    font-family: var(--fonts);
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 25px;
    text-align: center;
    letter-spacing: 0.03em;
    color: var(--blue);
    max-width: 290px;
    margin: 0 auto;
}
.pw__content p span{
   color: #77C6FC;
}
.back-orange {
    background: #fc6429;
}
.pw__ourjournery--progress .pw__row{
  height: 100%;
}
  .step-wrap {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid #77C6FC;
    position: absolute;
    top: 161px;
    left: 50%;
    transform: translate(-50%,-50%);
}
.steps-stops {
    height: 25px;
    width: 25px;
    margin: 11px 10.1px;
    border-radius: 50%;
    background:#77C6FC;
    position: relative;
}
.steps-stops:before{
  content: '';
  height: 45px;
  width: 3px;
  background-color: var(--blue);
  position: absolute;
  left: 50%;
  bottom: 37px;
  transform: translate(-50%);
}
.steps-stops:after{
  content: '';
  height: 12px;
  width: 12px;
  border-radius: 45px;
  background-color: #77C6FC;
  position: absolute;
  left: 50%;
  bottom: 82px;
  transform: translate(-50%);
}
.pw__year {
    position: absolute;
    top: 72%;
    left: 50%;
    transform: translate(-50%);
}
.pw__year h4{
  font-family: var(--fonts);
  font-style: normal;
  font-weight: bold;
  font-size: 32px;
  line-height: 38px;
  text-transform: capitalize;
  color: var(--blue);
}
.pw__ourjournery--progress .pw__row .pw__jounery-col:nth-child(even) .pw__year{
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%);
}
.pw__ourjournery--progress .pw__row .pw__jounery-col:nth-child(even) .pw__content p{
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translate(-50%);
    width: 100%;
    max-width: 240px;
    height: 80px;
}
.pw__ourjournery--progress .pw__row .pw__jounery-col:nth-child(odd) .pw__content p{
    position: absolute;
    top: 34px;
    left: 50%;
    transform: translate(-50%);
    width: 100%;
    max-width: 240px;
    height: 80px;
}
.pw__ourjournery--progress .pw__rows .pw__jounery-col:nth-child(even) .steps-stops:after{
  bottom: -67px;
}
 .pw__ourjournery--progress .pw__rows .pw__jounery-col:nth-child(even) .steps-stops:before{
      bottom: -56px;
}
.pw__ourjournery--progress #box .pw__jounery-col:nth-child(odd) .steps-stops:before{
  bottom: -56px;
}
.pw__ourjournery--progress #box .pw__jounery-col:nth-child(odd) .steps-stops:after{
  bottom: -65px;
}

@media(max-width:1600px){
  .pw__content p{
    font-size: 16px;
    line-height: 20px;
  }
}
@media(max-width:1366px){
  .pw__content p{
    line-height: 20px;
  }
}
@media(max-width:1199px){
  .pw__content p{
    font-size: 13px;
    line-height: 18px;
  }
  .pw__jounery-col{
    padding: 0 2px;
  }
}
@media(max-width: 992px){
  .pw__ourjournery--progress{
    height: auto;
  }
  .pw__jounery-col{
    max-width: 100%;
    min-width: 100%;
    width: 100%;
  }
  .pw__ourjournery--progress .pw__row{
    display: block;
  }
  .pw__year{
    position: static;
    transform: inherit;
    text-align: center;
  }
  .pw__content p {
      font-size: 15px;
      line-height: 18px;
      background-color: #ffffff;
      filter: drop-shadow(0px 0px 21.8337px rgba(0, 0, 0, 0.1));
      padding: 15px;
      max-width: 250px !important;
      margin-bottom: 15px;
  }
  .pw__ourjournery--progress .pw__row .pw__jounery-col:nth-child(odd) .pw__content p{
    position: static;
    transform: inherit;
  }
  .step-wrap{
    display: none;
  }
  .pw__ourjournery--progress .pw__row .pw__jounery-col:nth-child(even) .pw__year,
  .pw__ourjournery--progress .pw__row .pw__jounery-col:nth-child(even) .pw__content p{
    position: static;
    transform: inherit;
  }
  .pw__jounery-col{
    margin-bottom: 30px;
  }
  .pw__ourjournery--progress:before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      width: 2px;
      height: 100%;
      background-color: #011A2B;
  }
  .pw__year h4 {
      width: fit-content;
      margin: 0 auto;
      background-color: #ffffff;
      position: relative;
      top: 11px;
  }
}
/*Our Mission Css*/
.pw__full-content .pw__row {
    margin: 0;
}
.pw__full-content .pw__col--50:first-child{
  padding: 0px;
  background-image: url(https://ocpremiumthemes.com/prequel/wp-content/uploads/2021/08/squre-bg.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.pw__mission--content h4 {
     font-family: var(--fonts);
    font-style: normal;
    font-weight: bold;
    font-size: 52px;
    line-height: 62px;
    text-align: center;
    letter-spacing: 0.03em;
    color: #FFFFFF;
    margin-bottom: 15px !important;
}
.pw__mission--content {
    height: 100%;
    padding: 7vw 10.3vw;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.pw__mission--content p{
   font-family: var(--fonts);
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 25px;
  text-align: center;
  letter-spacing: 0.03em;
  color: #FFFFFF;
}
.pw__misson--icon {
    position: relative;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid #77C6FC;
    border-radius: 50%;
}
.pw__icon--inner {
    height: 140px;
    width: 140px;
    background: rgba(119, 198, 252, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pw__mission--circle {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pw__mission--circlewrpper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.pw__mission--col h5 {
     font-family: var(--fonts);
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    text-align: center;
    letter-spacing: 0.03em;
    color: #000000;
    max-width: 125px;
    margin: 0 auto;
    margin-top: 15px !important;
}
.pw__mission--col{
  padding: 0 15px;
}

@media(max-width: 1700px){
  .pw__mission--content {
    padding: 5vw;
  }
}
@media(max-width: 1366px){
  .pw__mission--content {
    padding: 4vw;
  }
  .pw__icon--inner{
    height: 110px;
    width: 110px;
  }
  .pw__misson--icon{
    height: 150px;
    width: 150px;
  }
  .pw__icon--inner svg{
    width: 60px;
  }
}
@media(max-width: 992px){
  .pw__our--mission .pw__full-content .pw__col--50{
    flex: 0 0 100%;
    max-width: 100%;
  }
  .pw__mission--circle{
    padding: 6vw 0vw;
  }
}
@media(max-width: 992px){
  
  .pw__misson--icon{
    margin: 0 auto;
  }
}
@media(max-width: 767px){
  .pw__mission--col{
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }
}
/*Our Team Css Start*/
.pw__team--img {
    padding: 33% 0%;
    height: 100%;
    background-size: cover;
    background-position: center center;
}
.pw__our--team .pw__full-content .pw__col--50:last-child{
    padding: 0px;
    background-image: url(https://ocpremiumthemes.com/prequel/wp-content/uploads/2021/08/squre-bg.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.pw_team--content strong{
  font-family: var(--fonts);
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 25px;
  text-align: center;
  letter-spacing: 0.03em;
  color: #3DABC8;
  display: block;
  margin-top: 10px;
}

/* Our Managment css Start */
.pw__our--management .pw__journey--content p{
  max-width: 850px;
}
.pw__our--management .pw__journey--content p:last-child{
  max-width: 760px;
}
.pw__our--management .pw__row {
    justify-content: center;
    margin-top: 70px;
}
.pw__our--management .pw__managment--col{
  padding: 0 15px;
}
.pw__managment--col{
  position: relative;
  flex: 0 0 480px;
  max-width: 480px;
}
.pw__col--warpper{
    position: relative;
    overflow: hidden;
}
.pw__managment--img {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}
.pw__managment--img img{
  display: block;
   -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out

}
.pw__managment--col:hover .pw__managment--img img{
    -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out
}
.pw__managment--img:before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: 0;
    background: linear-gradient(
360deg
, #14151B 10.84%, rgba(23, 24, 30, 0.515625) 67.63%, rgba(27, 28, 33, 0) 100%);
    height: 70%;
    width: 100%;
    transition: all .4s ease-in-out;
    z-index: 1;
}
.pw__managment--content {
    position: absolute;
    bottom: -50%;
    left: 0px;
    transition: all .4s ease-in-out;
    font-family: var(--fonts);
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 0.03em;
    color: var(--white);
    z-index: 2;
    padding: 0 40px;
}
.pw__managment--content p{
  margin-bottom: 0px;
}
.pw__managment--col:hover .pw__managment--content {
  bottom: 20px;
  transition: all .4s ease-in-out;
}
.pw__managment--col:hover .pw__managment--img:before{
  bottom: 0;
  transition: all .4s ease-in-out;
}
.pw__managment--info {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}
.managment__info--left{
  flex: 0 0 85%;
  max-width: 85%;
}
.managment__info--right{
  flex: 0 0 15%;
  max-width: 15%;
}
.pw_data h3 {
     font-family: var(--fonts);
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 39px;
    letter-spacing: 0.03em;
    color: #3DABC8;
}
.pw_data p{
  font-family: var(--fonts);
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0.03em;
  color: #011A2B;
}
.pw_social{
  text-align: right;
}
.pw__our--management{
  position: relative;
  overflow: hidden;
}
.pw__team--right {
    position: absolute;
    right: 100px;
    top: 0;
}
.pw__bottom--line {
    position: absolute;
    bottom: -15px;
    left: 250px;
}
.pw__botto--round svg {
    position: absolute;
    right: -7%;
    bottom: 15%;
    -webkit-animation: mover6 1s infinite  alternate;
    animation: mover6 1s infinite  alternate;
        z-index: -1;
}
@keyframes mover6 {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
.pw__content small {
    font-size: 18px;
    position: relative;
}
.pw__content small:before{
  content: '';
  position: absolute;
  left: -10px;
  top: 2px;
  background-image: url(https://ocpremiumthemes.com/prequel/wp-content/uploads/2021/08/best-imp.svg);
  width: 60px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
}
.pw__ourjournery--progress .pw__row .pw__jounery-col:nth-child(3) .pw__content small:before {
    width: 90px;
    top: -3px;
} 
.pw__ourjournery--progress .pw__row .pw__jounery-col:nth-child(5) .pw__content small:before{
    background-image: url(https://ocpremiumthemes.com/prequel/wp-content/uploads/2021/08/Vector-7_animated.svg);
    width: 100%;
    left: -2px;
    top: -13px;
    background-size: 100% 100%;
    height: 50px;
}

@media(max-width: 1600px){
  .pw__bottom--line {
    left: 150px;
  }
  .pw__managment--col{
      flex: 0 0 360px;
      max-width: 360px;
  }
  .pw__managment--content{
    padding: 0 20px;
  }
  .pw__come--work .pw__container {
      padding: 0 120px;
  }
  .pw__comman--title{
    margin-bottom: 40px;
  }
}
@media(max-width: 1280px){
  .pw__bottom--line {
    left: 100px;
  }
  .pw__our--management .meetphonix--top-left{
    display: block;
  }
  .pw__team--right{
    right: 20px;
  }
}
@media(max-width: 1199px){
  .pw__bottom--line{
    display: none;
  }
  .pw__content small{
    font-size: 13px;
  }
}
@media(max-width: 992px){
  .pw__our--team .pw__full-content .pw__col--50{
    max-width: 100%;
    flex: 0 0 100%;
  }
  .pw__mission--content{
    padding: 7vw;
  }
  .pw__team--img{
    padding: 25% 0%;
  }
  .pw__managment--col {
      position: relative;
      flex: 0 0 50%;
      max-width: 50%;
  }
  .pw__journey--content h3,.pw__mission--content h4{
    font-size: 40px;
    line-height: 45px;
  }
  .pw__managment--img img{
    width: 100%;
  }
}
@media(max-width: 767px){
.pw__managment--col {
      position: relative;
      flex: 0 0 100%;
      max-width: 100%;
  }
  .pw__our--management .pw__team--right, 
  .pw__our--management .meetphonix--top-left {
      display: none;
  }
}
/* Come Work Css */
.pw__come--work {
    background-color: #EDF5FA;
    position: relative;
}
.pw__comework--animation svg{
  position: absolute;
  top: 0;
  right: 0;
}
.pw__come--work .pw__about-come .pw__col--33 {
    flex: 0 0 100%;
    max-width: 100%;
    border-right: 0;
}
.pw__come--work .pw__about-come .pw__comework {
    border-right: 0;
    border-bottom: 1px solid rgba(1, 26, 43, 0.15);
    padding: 15px 0px;
}
.pw__come--work .pw__about-come .pw__col--33:last-child  .pw__comework{
    border-bottom: 0px;
}
.pw__come--work .pw__about-come .pw__comework li a{
  display: inline-block;
  width: 100%;
  position: relative;
}
.pw__come--work .pw__about-come .pw__comework li a img {
    position: absolute;
    right: 0;
    top: 5px;
}
.pw__aboutcome--work {
    height: 100%;
    display: flex;
    align-items: center;
}
.pw__contact--formmain .wpcf7 form.invalid .wpcf7-response-output, 
.pw__contact--formmain .wpcf7 form.unaccepted .wpcf7-response-output {
    border-color: #ff0000;
    color: red;
    background-color: #ffd5d5;
    padding: 3px 15px;
    margin-top: 10px;
    border: 1px solid;
    width: fit-content;
}
.wpcf7-not-valid-tip{
  color: red;
}
.screen-reader-response{
  display: none;
}
@media(max-width: 1280px){
  .pw__comework--animation svg{
    display: none;
  }
}
@media(max-width: 767px){
  .pw__come--work .pw__about-come .pw__comework li a img{
    position: static;
  }
  .pw__come--work .pw__map{
    margin-top: 0px;
  }
}
@media screen and (min-width: 320px) and (max-width: 767px) and (orientation: landscape) {
   .pw__scroll--down a{
      font-size: 0px;
   }
   .pw__banner--main .pw__scroll--down {
      left: 50%;
      bottom: 30px;
  }
  @keyframes bounce {
    50% {
      bottom: 50px;
    }
  }
  .pw__scroll--down img{
    width: 30px;
  }
}

/* Contact Page Working */
.pw__contact--banner {
    padding: 120px 0px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    margin-top: 88px;
}
.pw__contact--form{
  position: relative;
  background-color: #EDF5FA;
}
.pw__contact-info h2 {
    font-family: var(--fonts);
    font-style: normal;
    font-weight: bold;
    font-size: 32px;
    line-height: 42px;
    text-align: center;
    color: #011A2B;
    margin-top: 15px !important;
}
.pw__contact-info p{
  font-family: var(--fonts);
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 25px;
  text-align: center;
  color: #011A2B;

}
.pw__contact-info{
  /*position: relative;*/
  top: 10px;
}
.pw__map #wpgmza_map {
    margin-bottom: 15px !important;
}
@media(max-width: 992px){
  .pw__contact--page .pw__map, .pw__map img{
    height: auto;
  }
}
@media(max-width: 767px){
  .pw__contact--banner{
    padding-bottom: 110px;
  }
}

/* Extra css */
.pw__header .main-navigation .current-menu-item .pw__header--contact:before {
    content: none;
}

.pw__terms--buttons-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.pw__terms--buttons-row .learn-more {
    margin-right: 15px;
}

@media(max-width: 767px){
    .pw__terms--buttons-row .learn-more{
        margin-top: 20px;
	margin-right: 0px;
        width: 100%;
    }
    .pw__terms--buttons-row .learn-more a {
        width: 100%;
    }
}

/* ----- Jobs Page Css Start ----- */
.pw__jobs_section {
    padding: 60px 0px;
    position: relative;
}
.pw__jobs_section h2{
    font-family: var(--fonts);
    font-style: normal;
    font-weight: bold;
    font-size: 30px;
    line-height: 35px;
    color: var(--blue);
    margin-bottom: 15px !important;
}
.pw__jobs_section p,.pw__jobs_section ul li{
    font-family: var(--fonts);
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 0.03em;
    color: var(--blue);
    margin-bottom: 15px !important;
}
.pw__jobs_section h4{
    font-family: var(--fonts);
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 33px;
    color: var(--light--blue);
    margin-bottom: 5px !important;
}
.pw__jobs_section ul li{
  margin-bottom: 3px !important;
}
.pw__jobs_section ul {
    padding-left: 22px;
}
.pw__job--ul{
  margin-bottom: 30px;
  padding-left: 20px;
  margin-top: 30px;
}
.pw__job--ul ul{
  margin-bottom: 15px !important;
}
@media(max-width: 992px){
  .pw__jobs_section .pw__team--right{
    display: none;
  }
}
@media(max-width: 767px){
  .pw__jobs_section h2{
    font-size: 24px;
  }
}

/* ----- Publisher Page Css Start ----- */
.pw__commanbanner-bg{
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    margin-top: 88px;
}
.pw__publisher--bg{
  padding: 120px 0px;
}
.pw__publisherfirst--content p{
  font-family: var(--fonts);
  font-style: normal;
  font-weight: normal;
  font-size: 21px;
  line-height: 28px;
  text-align: center;
  letter-spacing: 0.03em;
  color: var(--blue);
  max-width: 940px;
  margin: 0 auto 10px;  
}
.pw__publisherfirst--section .pw__row {
    justify-content: center;
}
.pw__publisherfirst--section .pw__row .pw__publisher-col{
  margin: 50px 50px 0px;
}
.pw__publisherfirst--section {
  position: relative;
}
.pw__publisherfirst--section .first-animation svg{
  z-index: 0;
  top: auto;
  bottom: 0;
 -webkit-transform: scaleY(-1);
      -ms-transform: scaleY(-1);
          transform: scaleY(-1);
} 
.pw__publisherfirst--section .secound-animation{
  z-index: 0;
  top: 30px;
  bottom: auto;
  -webkit-transform: scaleY(-1);
      -ms-transform: scaleY(-1);
          transform: scaleY(-1);
}
/* Monitization Section Start */
.pw__sup--monitization {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding-top: 60px;
}
.pw__monitization--img svg{
  width: 100%;
  max-width: 80%;
  height: auto;
}
.pw__comman--sectiontitle h3 {
    font-family: var(--fonts);
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 39px;
    color: #011A2B;
    margin-bottom: 20px !important;
    position: relative;
    z-index: 1;
}
.pw__phonix--subtitle{
  color: var(--blue) !important;
}
.pw__comman--sectiontitle p{
      font-family: var(--fonts);
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0.03em;
    color: #757575;
    margin-bottom: 15px;
    max-width: 400px;
}
.pw__sup--monitization .pw__row{
  align-items: center;
}
.pw__right--animation {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: scaleX(-1);
      -ms-transform: scaleX(-1);
          transform: scaleX(-1);
}
.pw__rightbottom--animation {
  position: absolute;
  bottom: 50px;
  right: 0;
  -webkit-transform: scaleX(-1);
      -ms-transform: scaleX(-1);
          transform: scaleX(-1);
}
.pw__triples-section .pw__row .pw__col--60{
  order: 2;
}
.pw__triples-section .pw__row .pw__col--40{
  order: 1;
}
.pw__triples-section .pw__rightbottom--animation ,
.pw__triples-section .pw__right--animation {
  right: auto;
  left: 0;
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}
.pw__triples-section .pw___pad--container{
    padding-left: 15vw;
    padding-right: 0vw;
}
.pw__triples-section .pw__monitization--img{
  text-align: right;
}
.pw__triples-section .pw__monitization--img svg{
  max-width: 100%;
  height: auto;
}
.pw__triples-section{
  padding: 60px 0px;
}
.pw__triples-section  .pw__comman--sectiontitle h3 {
  max-width: 74%;
}
.pq__dsk--img {
    position: absolute;
    top: 0;
    left: 0;
}
.pw__meetphonix--svg .slide2 video,
.pw__meetphonix--svg .slide4 video{
  border: 6px solid #000000;
}
@media(max-width: 1600px){
  .pw__triples-section{
    padding: 30px 0px;
  }
  .pw__triples-section .pw__rightbottom--animation svg,
  .pw__triples-section .pw__right--animation svg,
  .pw__rightbottom--animation svg,
  .pw__right--animation svg{
    max-width: 70%;
    height: auto;
  }
  .pw__triples-section .pw__rightbottom--animation{
    bottom: 10px;
  }
  .pw__triples-section .pw__comman--sectiontitle h3{
    max-width: 100%;
  }
  .pw__triples-section .pw___pad--container{
    padding-left: 12vw;
  }
  .pw__comework--animation svg {
      top: -100px;
      width: 90px;
  }
}
@media(max-width: 1280px){
  .pw__sup--monitization .pw__rightbottom--animation svg{
   display: none;
  }
  .pw__triples-section .pw__rightbottom--animation svg{
    display: block;
  }
  .pw__advertiser--first .pw__rightbottom--animation {
      display: none;
  }
}
@media(max-width: 1024px){
  .pw__comman--sectiontitle h3{
    font-size: 28px;
  }
  .pw__monitization--img svg{
    max-width: 100%;
  }
   .pw__triples-section .pw__rightbottom--animation svg,
  .pw__triples-section .pw__right--animation svg,
  .pw__rightbottom--animation svg,
  .pw__right--animation svg{
    max-width: 50%;
    height: auto;
  }
  .pw__triples-section .pw___pad--container{
    padding: 0px 15px !important;
  }
}

@media(max-width: 991px){
 
  .pw__monitization--img svg {
      max-width: 100%;
      height: auto;
  }
  .pw__monitization--img{
    text-align: center;
    margin-top: 30px;
  }
  .pw__sup--monitization{
    padding: 30px 0px;
  }
  .pw__sup--monitization .pw__row .pw__col--60,
  .pw__sup--monitization .pw__row .pw__col--40{
    flex: 0 0 50%;
    max-width: 50%;
  }
  .pw__triples-section .pw___pad--container{
    padding-left: 10vw;
  }
  .pw__triples-section .pw__rightbottom--animation svg{
    display: none;
  }
}
@media(max-width: 767px){
  .pw__sup--monitization .pw__row .pw__col--60{
    order: 2;
  }
  .pw__publisherfirst--content p{
    font-size: 16px;
  }
  .pw__comman--sectiontitle h3{
    font-size: 28px;
  }
  .pw__monitization--img svg {
      max-width: 100%;
      height: auto;
  }
  .pw__sup--monitization .pw__row .pw__col--60,
  .pw__sup--monitization .pw__row .pw__col--40{
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Phonix Page Css Start */
.pw__phonix--thousand .pw__comman--sectiontitle h3{
  max-width: 440px;
}
.pw__phonix--thousand .pw__comman--sectiontitle small{
    font-family: var(--fonts);
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0.03em;
    color: #3DABC8;
    margin-bottom: 15px;
    max-width: 400px;
    display: inline-block;
}
.pw__phonix--thousand .pw__comman--sectiontitle p{
  max-width: 415px;
}
.pw__phonix--sefty .pw__comman--sectiontitle p{
  max-width: 460px;
}

@media(max-width: 1024px){
   .pw__rightbottom--animation svg,
  .pw__right--animation svg,.pw__triples-section .pw__rightbottom--animation svg{
    display: none;
  }
}
@media(max-width: 767px){
  .pw__phonix--thousand .pw__comman--sectiontitle p,
  .pw__phonix--sefty .pw__comman--sectiontitle p{
    max-width: 100%;
  }
}

/* Advertisers Page Css */
.pw__advertiser--first-left,.pw__advertiser--first-right{
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 15px;
}
.pw__advertiser--img img{
  width: 100%;
  max-width: 85%;
}
.pw__advertiser--img{
  text-align: center;
}
.pw__advertiser--text p,.pw__advertiser--text h6{
    font-family: var(--fonts);
    font-style: normal;
    font-weight: 400;
    font-size: 21px;
    line-height: 28px;
    color: var(--blue);
    margin-bottom: 15px !important;
}
.pw__advertiser--text h6{
    font-weight: 600;
}
.pw__advertiser--first {
    background-size: cover;
    background-position: bottom center;
    position: relative;
    background-repeat: no-repeat;
    padding: 100px 0px;
}
.pw__advertiser--first .pw__right--animation {
    right: auto;
    left: 0;
    transform: scale(1);
}
.pw__brand--safe .pw__monitization--img svg{
  width: 100%;
  max-width: 80%;
}
.pw__brand--safe .pw__monitization--img{
  text-align: center;
}
.pw__brand--safe .pw__comman--sectiontitle p{
  max-width: 100%;
}
.pw__brand--safe .pw__comman--sectiontitle h5{
  font-family: var(--fonts);
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 26px;
  color: var(--blue);
  margin: 15px 0px !important;
}
.pw__publisher--title h5{
  font-family: var(--fonts);
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: 39px;
  color: var(--blue);
}
.pw__publisher--title {
    max-width: 770px;
    margin: 0 auto 60px;
    text-align: center;
}
.pw__publisher--title p{
  font-family: var(--fonts);
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 35px;
    color: var(--light--blue);
}
.pw__our--publishers .pw__row{
    justify-content: center;
} 
.pw__our--publishers .pw__row .pw__publisher--col{
    margin: 0 40px;
}
.pw__our--publishers{
    background-size: cover;
    background-position: bottom center;
    position: relative;
    background-repeat: no-repeat;
}
.pw__our--publishers .pw__left--animation{
  position: absolute;
  bottom: 0;
  left: 50px;
    -webkit-transform: scaleY(-1);
  -ms-transform: scaleY(-1);
  transform: scaleY(-1);
}
.pw__customer--section .pw__monitization--img svg{
  max-width: 70%;
}
.pw__customer--section .pw__monitization--img{
  text-align: center;
}
.pw__customer--section .pw__right--animation{
  right: 60px;
}
.pw__customer--section .pw__right--animation svg{
  height: auto;
}
.pw__customer--section .pw__comman--sectiontitle h3{
      max-width: 440px;
}
.pw__customer--section .pw__comman--sectiontitle p{
  max-width: 425px;
}
.pw__advertiser--img svg{
  width: 100%;
}
.pw__meet--customer .pw__comman--sectiontitle h3{
  max-width: 400px;
}
.meetcust--slider .pw__desktop--frame #desktopframe{
  max-width: 93.1%;
  padding: 6px;
}
.meetcust--slider .pw__mobile--frame #mobileframe{
 max-width: 105px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.meetcust--slider .pw__tv--frame video {
    max-width: 93%;
    top: 2px;
    border: 5px solid #000000;
}
.meetcust--slider .pw__mobile--frame img {
    width: 100%;
    max-width: 120px;
}

.meetcust--slider .pw__mobile--frame {
    text-align: center;
}
.pw__person--svg {
    margin: 0px auto;
    width: max-content;
    position: relative;
    z-index: 10;
    left: -150px;
    margin-top: -100px;
}
.meetcust--slider .swiper-slide{
  opacity: .5;
  left: 10px;
}
.meetcust--slider .swiper-slide-next{
  opacity: 1;
}
.meetcust--slider .swiper-slide:nth-child(6),.meetcust--slider .swiper-slide:nth-child(10){
  left: 30px;
}
.pw__person--svg img {
    max-width: 70%;
}
.meetcust--slider{
  margin-top: 120px;
}
.pw__meet--customer .pw__col--60{
  position: relative;
}
.pw__meet--customer .pw__col--60:before{
  content: '';
  position: absolute;
  top: -70px;
  left: 50;
  background-image: url(https://ocpremiumthemes.com/prequel/wp-content/uploads/2021/09/slider-bg.png);
  height: 100%;
  width: 100%;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  max-width: 670px;
}
.meetcust--slider .swiper-wrapper {
    align-items: center;
}
.pw__cross--device .pw__secound--content h1 {
    font-family: var(--fonts);
    font-style: normal;
    font-weight: bold;
    font-size: 62px;
    line-height: 72px;
    color: var(--blue);
    margin-bottom: 10px !important;
    text-align: center;
}
.pw__cross--device {
  padding: 80px 0px;
}
.pw__cross--device .first-animation svg{
  top: auto;
  bottom: 20px;
}
.pw__cross--device .secound-animation{
bottom: auto;
top: 50px;
}
@media(max-width:1500px){
  .pw__comman--title h2{
    font-size: 50px;
    line-height: 60px;
  }
  .pw__comman--title p{
    font-size: 24px;
  }
  .meetcust--slider .swiper-slide-next{
      margin: 0px 30px 0px 0px !important;
  }
  .meetcust--slider .pw__desktop--frame #desktopframe{
    border-radius: 0px;
    padding: 4px;
  }
  .meetcust--slider .swiper-slide{
    left: -1px;
  }
  .meetcust--slider .swiper-slide-next{
    left: 15px;
  }
}
@media(max-width:1280px){
  .pw__customer--section .pw__right--animation{
    right: 30px;
  }
  .pw__advertiser--first .pw__right--animation,
  .pw__triples-section .pw__right--animation,
  .pw__triples-section .pw__rightbottom--animation,
  .pw__our--publishers .pw__left--animation{
    display: none;
  }
  .pw__customer--section .pw__monitization--img svg{
    max-width: 80%;
  }
  .pw__customer--section .pw__monitization--img{
    text-align: inherit;
  }
}
@media(max-width: 1024px){
  .pw__advertiser--first,.pw__our--publishers{
    padding: 30px 0px;
  }
  .pw__brand--safe .pw__row .pw__col--60,
  .pw__brand--safe .pw__row .pw__col--40,
  .pw__meet--customer .pw__row .pw__col--40,
  .pw__meet--customer .pw__row .pw__col--60{
    flex: 0 0 50%;
    max-width: 50%;
  }
  .pw__cross--device .pw__secound--content h1{
    font-size: 55px;
    line-height: 55px;
  }
  .meetcust--slider .swiper-slide:nth-child(6), .meetcust--slider .swiper-slide:nth-child(10){
    left: -1px;
  }
  .meetcust--slider .pw__mobile--frame #mobileframe{
    max-width: 90px;
  }
  .meetcust--slider .pw__desktop--frame #desktopframe {
      border-radius: 0px;
      padding: 2px;
      left: 51%;
  }
}
@media(max-width: 991px){
  .pw__our--publishers .pw__row .pw__publisher--col{
    margin: 0 40px 40px;
  }
  .pw__brand--safe .pw__row .pw__col--60,
  .pw__brand--safe .pw__row .pw__col--40,
  .pw__advertiser--first-left,
  .pw__advertiser--first-right,
  .pw__customer--section .pw__row .pw__col--60,
  .pw__customer--section .pw__row .pw__col--40,
  .pw__meet--customer .pw__row .pw__col--40,
  .pw__meet--customer .pw__row .pw__col--60 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .pw__customer--section .pw__monitization--img {
    text-align: center;
  }
  .pw__customer--section .pw__row .pw__col--60{
    order: 2;
  }
  .pw__advertiser--img{
    margin-bottom: 30px;
  }
  .pw__customer--section .pw__comman--sectiontitle h3,
  .pw__customer--section .pw__comman--sectiontitle p,
  .pw__meet--customer .pw__comman--sectiontitle h3, 
  .pw__meet--customer .pw__comman--sectiontitle p{
    max-width: 100%;
  }
  .pw__meet--customer .pw__comman--sectiontitle{
    margin-bottom: 30px;
  }
  .pw__brand--safe  .pw__row .pw__col--60{
    order: 1;
  }
  .pw__person--svg{
    left: -70px;
  }
  .pw__cross--device .pw__secound--content h1{
    font-size: 40px;
    line-height: 45px;
  }
}
@media(max-width: 767px){
  .meetcust--slider .swiper-slide{
    opacity: 1;
  }
  .meetcust--slider .pw__desktop--frame #desktopframe{
    padding: 15px;
  }
  .meetcust--slider .pw__mobile--frame img {
      width: 100%;
      max-width: 195px;
  }
  .meetcust--slider .pw__tv--frame video {
      max-width: 97%;
      top: -3px;
      border: 10px solid #171717;
      left: 50%;
  }
  .pw__person--svg{
    margin-top: -140px;
  }
  .meetcust--slider .pw__mobile--frame #mobileframe {
      max-width: 170px;
  }
  .pw__sup--monitization .pw__comman--sectiontitle p {
      max-width: 100%;
  }
  .pw__cross--device .pw__tv--frame img{
    width: inherit;
  }
  .meetcust--slider .pw__desktop--frame #desktopframe{
    left: 50%;
  }
  .meetcust--slider{
    margin-top: 0px;
  }
}



/* Advertiser fourth section play button make in center */
.pw__our--publishers #pasued-video #Capa_1
{
	left: 14px !important;
}
.pw__publisher--col .pw__mobile--frame a svg,
.pw__desktop--frame a svg,.pw__mobile--frame a svg{
    width: 22px;
    height: 22px;
    margin: 0 auto;
    position: relative;
    top: 14px;
    left: 14px;
}
.pw__desktop--frame a svg,.pw__mobile--frame a svg{
  left: 1px;
}
.pw__publisher--col .pw__mobile--frame a svg path,
.pw__desktop--frame a svg path,.pw__mobile--frame a svg path{
  fill: #ffffff;
}
#mobileframe-1,#mobileframe-2,#mobileframe-3{
    position: absolute;
    left: 50%;
    top: 53%;
    width: 100%;
    height: 100%;
    padding: 0px 13px;
    transform: translate(-50%,-50%);
    border-bottom-left-radius: 75px;
    border-bottom-right-radius: 80px;
    max-width: 230px;
}
#pasued-mobile-1,#pasued-mobile-2,#pasued-mobile-3,#pasued-videodesk-1,#pasued-video-1{
   /* background-color: #77c6fc;*/
    display: none;
    height: 50px;
    width: 50px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    border-radius: 45px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease-in-out;
    z-index: 1;
}
#pasued-videodesk-1{
  top: 36%;
}
.pw__mobile--frame:hover #pasued-mobile-1,
.pw__mobile--frame:hover #pasued-mobile-2,
.pw__mobile--frame:hover #pasued-mobile-3,
.pw__mobile--frame:hover #pasued-video-1,
.pw__desktop--frame:hover #pasued-videodesk-1{
 opacity: 1;
 visibility: visible;
  transition: all .3s ease-in-out;
}
.pw__mobile--frame #pasued-mobile-1 #Capa_2,
.pw__mobile--frame #pasued-mobile-2 #Capa_2,
.pw__mobile--frame #pasued-mobile-3 #Capa_2,
.pw__mobile--frame #pasued-video-1 #Capa_2,
.pw__desktop--frame #pasued-videodesk-1 #Capa_2{
  display: none;
}
.pw__mobile--frame #pasued-mobile-1.stop #Capa_2,
.pw__mobile--frame #pasued-mobile-2.stop #Capa_2,
.pw__mobile--frame #pasued-mobile-3.stop #Capa_2,
.pw__mobile--frame #pasued-video-1.stop #Capa_2,
.pw__desktop--frame #pasued-videodesk-1.stop #Capa_2{
  display: block;
  left: 3px;
}
#desktopframe-1 {
    position: absolute;
    top: 3px;
    left: 50%;
    width: 100%;
    border-radius: 10px;
    padding: 10px;
    max-width: 480px;
    transform: translate(-50%);
}
/*Sounds Effects Css*/
.pw__headphone--frame{
  position: relative;
}
#bars {
    left: 50%;
    position: absolute;
    bottom: 21%;
    width: 80px;
    height: auto;
    transform: translateX(-50%);
}

.bar {
    background: #011a2b;
    bottom: 1px;
    height: 3px;
    width: 5px;
    animation: sound 0ms -800ms linear infinite alternate;
    display: inline-flex;
}
@keyframes sound {
    0% {
       opacity: .35;
        height: 3px; 
    }
    100% {
        opacity: 1;       
        height: 28px;        
    }
}
.bar:nth-child(1)  { animation-duration: 474ms; }
.bar:nth-child(2)  { animation-duration: 433ms; }
.bar:nth-child(3)  { animation-duration: 407ms; }
.bar:nth-child(4)  { animation-duration: 458ms; }
.bar:nth-child(5)  { animation-duration: 400ms; }
.bar:nth-child(6)  { animation-duration: 427ms; }
.bar:nth-child(7)  { animation-duration: 441ms; }
.bar:nth-child(8)  { animation-duration: 419ms; }
.bar:nth-child(9)  { animation-duration: 487ms; }
.bar:nth-child(10) { animation-duration: 442ms; }
.pw__meet--customerslider .swiper-slide .bar{
  width: 3px;
}
.pw__meet--customerslider .swiper-slide #bars{
  width: 60px;
}
.pq__ad--img {
    position: absolute;
    left: 50%;
    top: 53%;
    width: 100%;
    height: 100%;
    padding: 0px 13px;
    transform: translate(-50%,-50%);
    border-bottom-left-radius: 75px;
    border-bottom-right-radius: 80px;
    max-width: 230px;
    object-fit: contain;
}
.pw__form--btn.learn-more .submit-svg {
    position: absolute;
    top: 19px;
    right: 23px;
}

.pw__form--btn.learn-more:hover .submit-svg {
    filter: brightness(0) invert(1);
    transition: all .3s ease-in-out;
}
.pw__phonix--thousand .pw__comman--sectiontitle ul {
    padding-left: 18px;
    list-style: none;
    margin-top: -15px !important;
    display: flex;
    flex-wrap: wrap;
    max-width: 550px;
}

.pw__phonix--thousand .pw__comman--sectiontitle ul li {
    position: relative;
    font-family: var(--fonts);
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0.03em;
    color: #757575;
	margin-right: 25px;
    margin-bottom: 6px;
}

.pw__phonix--thousand .pw__comman--sectiontitle ul li:before {
    content: '';
    position: absolute;
    left: -16px;
    top: 7px;
    height: 7px;
    width: 7px;
    background: #3cabc8;
    border-radius: 50px;
}
.pw__phonix--thousand .pw__comman--sectiontitle ul li:fist-child:before{
	content: none;
}
.pw__phonix--thousand .pw__comman--sectiontitle ul li:first-child:before {
    content: none;
}
.pw__phonix--thousand .pw__comman--sectiontitle ul li:first-child {
    margin-left: -16px;
}
@media(max-width: 1600px){
  .pw__meet--customerslider .swiper-slide .bar{
    width: 1px;
  }
  .pw__meet--customerslider .swiper-slide #bars{
    width: 36px;
  }
}
@media(max-width: 1199px){
  .pw__meet--customerslider .swiper-slide .bar {
    width: 4px;
  }
  .pw__come--work .pw__container{
    padding: 0 50px;
  }
  .pw__meet--customerslider .swiper-slide #bars {
      width: 70px;
      zoom: 0.4;
  }
}
@media(max-width: 991px){
  .pw__come--work .pw__container{
    padding: 0 15px;
  }
  .pw__meet--customerslider .swiper-slide .bar {
    width: 2px;
  }
  .pw__meet--customerslider .swiper-slide #bars{
    width: 46px;
  }
}
@media(max-width: 767px){
  .pw__meet--customerslider .swiper-slide .bar {
    width: 5px;
  }
}




/* .popup-open {
  overflow: hidden;
  } */
  .popup-open .modal {
  display: block;
  }

  .modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 46, 83, 0.59);
  z-index: 999999;
  overflow: hidden;
  overflow-y: auto;
  display: none;
  }
  .modal .modal__content {
  max-width: 100%;
  margin: 1.75rem auto;
  min-height: calc(100% - 3.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: auto;
  }
  .modal .modal__content .modal__body {
  position: relative;
  padding: 50px 80px;
  width: 100%;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  }
  .modal .modal-title {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 30px;
  }
  .modal .close__modal {
  position: absolute;
  top: 50px;
  right: 90px;
  text-align: center;
  color: #020203;
  font-size: 30px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  z-index: 9;
  }
  .modal .close__modal:hover {
  color: var(--primary-color);
  transition: all 0.4s ease-in-out;
  }
  .modal.video-modal .modal__content {
  max-width: 90%;
  }
  .modal.video-modal .modal__content .modal__body {
  padding: 0;
  }
  .modal.video-modal .modal__content .modal__body .close__modal {
  top: 20px;
  right: 20px;
  color: #ffffff;
  background-color: var(--primary-color);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  }
  .modal.video-modal .modal__content .modal__body .close__modal:hover {
  background-color: var(--secondry-color);
  color: var(--primary-color);
  }
  .modal .bf__video--box {
  padding-top: 48%;
  position: relative;
  overflow: hidden;
  }
  .modal .bf__video--box iframe, .modal .bf__video--box video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
      object-fit: cover;
  }
  .modal .bf__video--box .bf__play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  right: auto;
  bottom: auto;
  z-index: 9;
  }
  @media(min-width:991px) and (max-width: 1399px){
    #primary-menu a {
        padding: 25px 20px;
    }
}