/*------------------------------------------------------------------------------
  Hero Intro
------------------------------------------------------------------------------*/
.hero-text {
  position: relative;
  overflow: hidden;
}
.footer__bottom__logo img {
    max-width: 200px;
}
.hero-text__gradient {
  position: absolute;
  top: 80px;
  left: 50%;
  width: 50%;
  aspect-ratio: 1;
  transform: translateX(-50%) rotate(152.044deg);
  border-radius: 9999px;
  background: linear-gradient(180deg, rgba(0, 233, 228, 0.18) 0%, rgba(160, 79, 244, 0.2) 100%);
  filter: blur(100px);
}

@media screen and (max-width: 1024px) {
  .hero-text__gradient {
    width: 80%;
    filter: blur(50px);
  }
}

.hero-text .container-fluid {
  position: relative;
}

.hero-text__inner {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  align-items: flex-end;
  padding-top: 10rem;
}

@media (min-width: 1024px) {
  .hero-text__inner {
    padding-top: 7rem;
    padding-bottom: 3rem;
  }
}

.hero-text__left {
  display: flex;
  flex-direction: column;
  grid-column: span 12 / span 12;
  align-self: flex-start;

  @media screen and (min-width: 768px) {
    grid-column: span 7 / span 7;
  }

  @media (min-width: 1024px) {
    grid-column: span 6 / span 6;
  }
}

.hero-text__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-column: span 12 / span 12;

  @media screen and (min-width: 768px) {
    grid-column: span 7 / span 7;
  }

  @media (min-width: 1024px) {
    grid-column: span 5 / span 5;
    grid-column-start: 8;
  }

  @media (min-width: 1280px) {
    grid-column: span 4 / span 4;
    grid-column-start: 9;
  }
}

.hero-text__subtitle {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: white;
}

.hero-text__title {
  margin-bottom: 2rem;
  font-size: clamp(40px, 5vw, 70px);
  font-weight: 400;
  line-height: 1.2;
  color: white;
}

.hero-text__description {
  margin-bottom: 3rem;
  font-size: clamp(16px, 2vw, 24px);
  line-height: 1.375;
  color: white;
}

.hero-text__description a {
  color: inherit;
  text-decoration: none;
}

.hero-intro__button {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  padding: 0.625rem 1.5rem 0.625rem 0.625rem;
  background: #151515;
  color: white;
  gap: 1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  align-self: flex-start;
}

.hero-intro__button-image {
  position: relative;
  width: 3rem;
  aspect-ratio: 1;
  background-color: white;
  border-radius: 50%;
  overflow: hidden;
}

.hero-intro__button-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-intro__button-text {
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 400;
  text-align: left;
}

.hero-intro__button-arrow {
  width: 0.75rem;
  transition: all 0.3s ease-in-out;
}

.hero-intro__button:hover .hero-intro__button-arrow {
  margin-left: 0.5rem;
}

/*------------------------------------------------------------------------------
  About Charle
------------------------------------------------------------------------------*/
.about-charle {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: white;

  @media (min-width: 1024px) {
    padding-top: 9rem;
    padding-bottom: 9rem;
  }
}

.about-charle__inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(1, 1fr);
  align-items: end;
  gap: 2rem;

  @media (min-width: 1280px) {
    gap: 8rem;
  }
}

.about-charle__left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  grid-column: span 5 / span 5;

  @media (min-width: 1280px) {
    grid-column: span 3 / span 3;
  }
}

.about-charle__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  grid-column: span 5 / span 5;

  @media (min-width: 1280px) {
    grid-column: span 2 / span 2;
  }
}

.about-charle__heading {
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.15;
  color: black;
}

.about-charle__offerings {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.75rem;
  overflow-x: auto;
  width: 100vw;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin-left: -1.25rem;
  margin-right: -1.25rem;
  -webkit-overflow-scrolling: touch;
}

.about-charle__offer {
  padding: 0.625rem;
  background-color: #f3f3f3;
  font-family: "Season Serif", serif;
  font-size: 14px;
  line-height: 1.15;
  color: black;
  white-space: nowrap;
  border-radius: 4px;
}

.about-charle__description {
  font-size: clamp(18px, 2vw, 24px);
  color: black;
  line-height: 1.5;
}

/*------------------------------------------------------------------------------
  Charle Video
------------------------------------------------------------------------------*/
.charle-video {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
}

.charle-video__video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  transform: scale(0.75);
  border-radius: 50px;
  overflow: hidden;
}

@supports (animation-timeline: scroll()) and (animation-range: 0 100%) {
  .charle-video {
    view-timeline: --video-scroll;
  }

  .charle-video__video {
    animation-name: video-scale;
    animation-fill-mode: both;
    animation-timeline: --video-scroll;
    animation-range: entry 50% exit -20%;
  }
}

@keyframes video-scale {
  0% {
    transform: scale(0.75);
    border-radius: 50px;
  }
  100% {
    transform: scale(1);
    border-radius: 0px;
  }
}

.charle-video__video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/*------------------------------------------------------------------------------
  Clients
------------------------------------------------------------------------------*/
.clients {
  padding-top: 6rem;
  padding-bottom: 8rem;

  @media (min-width: 1024px) {
    padding-top: 9rem;
    padding-bottom: 11rem;
  }
}

.clients__bg-one {
  position: absolute;
  top: 80px;
  left: 180px;
  width: 949px;
  height: 949px;
  transform: rotate(152.044deg);
  border-radius: 949px;
  background: linear-gradient(180deg, rgba(0, 233, 228, 0.18) 0%, rgba(160, 79, 244, 0.2) 100%);
  filter: blur(100px);
}

.clients__bg-two {
  position: absolute;
  right: -420px;
  bottom: -270px;
  width: 949px;
  height: 949px;
  transform: rotate(152.044deg);
  border-radius: 949px;
  opacity: 0.6;
  background: linear-gradient(180deg, rgba(0, 233, 228, 0.3) 0%, rgba(160, 79, 244, 0.6) 100%);
  filter: blur(100px);
}

@media (max-width: 1024px) {
  .clients__bg-two {
    display: none;
  }
}

.clients__heading {
  margin-bottom: 4rem;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1;
  color: white;
  text-align: center;

  @media (min-width: 1024px) {
    margin-bottom: 7rem;
  }
}

.clients__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  column-gap: 3rem;
  row-gap: 2rem;

  @media (min-width: 1024px) {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(3, 1fr);
    row-gap: 6rem;
  }
}

.clients__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.clients__list img {
  display: block;
  margin: auto;
  max-width: 100%;
  height: auto;
}

/*------------------------------------------------------------------------------
  Projects
------------------------------------------------------------------------------*/
.projects {
  --radius: 25px;

  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: white;
  border-radius: var(--radius) var(--radius) 0 0;
  margin-top: calc(-1 * var(--radius));

  @media (min-width: 1024px) {
    --radius: 35px;

    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.about-charle--handbook {
  --radius: 25px;

  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: white;
  border-radius: var(--radius) var(--radius) 0 0;
  margin-top: calc(-1 * var(--radius));

  @media (min-width: 1024px) {
    --radius: 35px;

    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.projects__heading {
  margin-bottom: 3rem;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.2;
  color: black;
  text-align: center;

  @media (min-width: 1024px) {
    margin-bottom: 5rem;
  }
}

.projects__carousel {
  width: 100%;
  position: relative;
  margin-bottom: 3rem;

  @media (min-width: 1024px) {
    margin-bottom: 6rem;
  }
}

.projects__carousel .swiper {
  overflow: visible;
}

.projects__carousel__arrows {
  position: absolute;
  width: 100%;
  top: 0;

  /* Mobile: 1.25 slides */
  --single-slide-width: calc((100vw - 40px) / 1.25);
  height: calc(var(--single-slide-width) * (70 / 53));

  /* Tablet: 2 slides */
  @media (min-width: 768px) {
    --single-slide-width: calc((100vw - 64px) / 2);
    height: calc(var(--single-slide-width) * (70 / 53));
  }

  /* Small desktop: 2.25 slides */
  @media (min-width: 1024px) {
    --single-slide-width: calc(1024px / 2.25);
    height: calc(var(--single-slide-width) * (70 / 53));
  }

  /* Large desktop: 3 slides */
  @media (min-width: 1280px) {
    --single-slide-width: calc(((100vw - 48px) - 96px) / 3);
    height: calc(var(--single-slide-width) * (70 / 53));
  }

  @media (min-width: 1536px) {
    --single-slide-width: calc((1536px - (24px * 2)) / 3);
    height: calc(var(--single-slide-width) * (70 / 53));
  }
}

.projects__carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 9999px;
  background-color: white;
  z-index: 10;
  transition: all 0.3s ease;

  @media (min-width: 1024px) {
    width: 60px;
    height: 60px;
  }
}

.projects__carousel__arrow:hover {
  opacity: 0.8;
}

.projects__carousel__arrow--prev {
  left: 10px;
}

.projects__carousel__arrow--next {
  right: 10px;
}

.projects .project {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.project__media {
  display: block;
  position: relative;
  aspect-ratio: 53 / 70;
  border-radius: 15px;
  overflow: hidden;
}

.project__media__video,
.project__media__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project__logo {
  display: block;
  position: absolute;
  top: 30px;
  left: 30px;
  width: calc(var(--width) / 496 * 100%);
  height: auto;
}

.project__content {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  gap: 1rem;
}

.project__thumbnail {
  display: block;
  position: relative;
  background: #f8f8f8;
  aspect-ratio: 1;
  border-radius: 6px;
  overflow: hidden;
}

.project__thumbnail img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project__text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.project__title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  color: black;
}

.project__title a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.project__title a:hover {
  opacity: 0.6;
}

.project__type {
  font-size: 15px;
  line-height: 1;
  color: black;
}

.projects__cta {
  display: flex;
  justify-content: center;
}

/*------------------------------------------------------------------------------
  Podcast
------------------------------------------------------------------------------*/
.podcasts {
  --radius: 25px;

  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: white;
  border-radius: var(--radius) var(--radius) 0 0;
  margin-top: calc(-1 * var(--radius));

  @media (min-width: 1024px) {
    --radius: 35px;

    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.podcasts__intro {
  display: grid;
  margin-bottom: 3rem;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 1.5rem;

  @media screen and (min-width: 768px) {
    margin-bottom: 4rem;
    gap: 3rem;
  }

  @media screen and (min-width: 1280px) {
    margin-bottom: 5rem;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
  }
}

.podcasts__intro__left {
  display: flex;
  flex-direction: column;
  grid-column: span 2 / span 2;
  gap: 0.5rem;

  @media screen and (min-width: 768px) {
    grid-column: span 1 / span 1;
    gap: 2rem;
  }

  @media screen and (min-width: 1280px) {
    grid-column: span 2 / span 2;
  }
}

.podcasts__intro__right {
  display: flex;
  flex-direction: column;
  grid-column: span 2 / span 2;
  align-items: flex-start;
  gap: 1.5rem;

  @media screen and (min-width: 768px) {
    grid-column: span 1 / span 1;
    gap: 2rem;
  }

  @media screen and (min-width: 1280px) {
    grid-column: span 2 / span 2;
    grid-column-start: 4;
  }
}

.podcasts__subtitle {
  font-size: clamp(18px, 3vw, 32px);
  line-height: 1;
  color: black;
}

.podcasts__title {
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.2;
  color: black;
}

.podcasts__description {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
  color: black;
}

.podcasts__carousel {
  width: 100%;
  position: relative;
  margin-bottom: 3rem;

  @media (min-width: 1024px) {
    margin-bottom: 6rem;
  }
}

.podcasts__carousel .swiper {
  overflow: visible;
}

.podcasts__carousel__arrows {
  position: absolute;
  width: 100%;
  top: 0;

  /* Mobile: 1.25 slides */
  --single-slide-width: calc((100vw - 40px) / 1.25);
  height: calc(var(--single-slide-width) * (70 / 53));

  /* Tablet: 2 slides */
  @media (min-width: 768px) {
    --single-slide-width: calc((100vw - 64px) / 2);
    height: calc(var(--single-slide-width) * (70 / 53));
  }

  /* Small desktop: 2.25 slides */
  @media (min-width: 1024px) {
    --single-slide-width: calc(1024px / 2.25);
    height: calc(var(--single-slide-width) * (70 / 53));
  }

  /* Large desktop: 3 slides */
  @media (min-width: 1280px) {
    --single-slide-width: calc(((100vw - 48px) - 96px) / 3);
    height: calc(var(--single-slide-width) * (70 / 53));
  }

  @media (min-width: 1536px) {
    --single-slide-width: calc((1536px - (24px * 2)) / 3);
    height: calc(var(--single-slide-width) * (70 / 53));
  }
}

.podcasts__carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 9999px;
  background-color: white;
  z-index: 10;

  @media (min-width: 1024px) {
    width: 60px;
    height: 60px;
  }
}

.podcasts__carousel__arrow--prev {
  left: 10px;
}

.podcasts__carousel__arrow--next {
  right: 10px;
}

.podcasts .podcast {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.podcast__media {
  display: block;
  position: relative;
  aspect-ratio: 87 / 76;
  border-radius: 15px;
  overflow: hidden;
}

.podcast__media__video,
.podcast__media__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.podcast__logo {
  display: block;
  position: absolute;
  top: 30px;
  left: 30px;
  width: calc(var(--width) / 496 * 100%);
  height: auto;
}

.podcast__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.podcast__title {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  line-height: 1.375;
  color: black;
}

.podcast__title a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.podcast__title a:hover {
  opacity: 0.6;
}

.podcast__details {
  font-family: "Season Serif", sans-serif;
  font-size: 16px;
  line-height: 1;
  color: black;
}
/*syntac custom css*/

.header__brand img {
    max-width: 200px;
}

  

  
  
  /**** PAGE SWIPES ****/
  

  #stripe1 {
    
    position: fixed;
    top: 0;
    left: 0;
    width: 25%;
    height: 100%;
    z-index: 400;
    background: #000;
  }
  
    #stripe2 {
    
    position: fixed;
    top: 0;
    left: 25%;
    width: 25%;
    height: 100%;
    z-index: 400;
    background: #000;
  }
  
    #stripe3 {
    
    position: fixed;
    top: 0;
    left: 50%;
    width: 25%;
    height: 100%;
    z-index: 400;
    background: #000;
  }
  
    #stripe4 {
    
    position: fixed;
    top: 0;
    left: 75%;
    width: 25%;
    height: 100%;
    z-index: 400;
    background: #000;
  }
  
  
@font-face {
    font-family: 'CharleFont';
    src: url('/fonts/charlefont/HelveticaNeue-Medium.eot');
    src: url('/fonts/charlefont/HelveticaNeue-Medium.eot?#iefix') format('embedded-opentype'),
        url('/fonts/charlefont/HelveticaNeue-Medium.woff2') format('woff2'),
        url('/fonts/charlefont/HelveticaNeue-Medium.woff') format('woff'),
        url('/fonts/charlefont/HelveticaNeue-Medium.ttf') format('truetype'),
        url('/fonts/charlefont/HelveticaNeue-Medium.svg#HelveticaNeue-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
  
  }
  
  

  
  .fadeinscroll {
    
    opacity: 0;
  }


  
  #ourstorybkg {
    
    opacity: 0;
  }
  

  
  
/**** HOMEPAGE SCREEN RESPONSIVE ****/
  
/* EXTRA LARGE SCREEN */
@media only screen and (min-width: 1600px) { 
  
        #navagation a:link {
        color: #fff;
        text-decoration: none;
        -o-transition: 1s;
        -ms-transition: 1s;
        -moz-transition: 1s;
        -webkit-transition: 1s;
        transition: 1s;
      }

      #navagation a:visited {
        color: #fff;
        text-decoration: none;
      }

      #navagation a:hover {
        color: #fff;
        text-decoration: none;
      }

      #navagation a:active {
        color: #fff;
        text-decoration: none;
      }
  
  
    
  #pagetitlebkg {
    
    width: 100%;
     background: -moz-linear-gradient(145deg, #000 50%, #60389b 80%, #1ba6a4 90%);
      background: -webkit-linear-gradient(145deg, #000 50%, #60389b 80%, #1ba6a4 90%);
      background: linear-gradient(145deg, #000 50%, #60389b 70%, #1ba6a4 90%);
    position: relative;
    padding-top: 200px;
    padding-bottom: 200px;
    min-height: calc(100% - 300px);
    
    
  }
  
  #shopifyexperts {
    
    
    color: #FFF;
      font-family: CharleFont;
    text-align: center;
    color: #FFF;
    font-size: 20px;
    padding-bottom: 50px;
    
  }
  
  #pagetitlecontainer {
    
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    
    
    max-width: 1480px;
  
    font-family: CharleFont;
    text-align: center;

    
  

    
    
  }
  
  #aboutheading {
    
    font-size: 40px;
    letter-spacing: -2px;
    line-height: 50px;
    color: #FFF;
  }
  
  #aboutteamthumb {
    position: absolute;
    bottom: -50px;
    width: 100%;
    left: 0;
    z-index: 1;
  }
  
  
    
  #videoshowreel {
    position: absolute;
    bottom: -25%;
    width: 100%; 
    z-index: 1;
      background: #efefef;

  }
  
  #videocontainer {
    
    width: 100%;
    height: 50%;
    overflow: hidden;
    position: relative;
    
    background: #efefef;


  }
  
  
  
/*** OUR STORY ***/
  
  #ourstorybkg {
    
    width: 100%;
    background: #FFF;
    position: relative;
    
    
  }
  
  #ourstorycontainer {
    
     background: -moz-linear-gradient(-145deg, #000 50%, #60389b 80%, #1ba6a4 90%);
      background: -webkit-linear-gradient(-145deg, #000 50%, #60389b 80%, #1ba6a4 90%);
      background: linear-gradient(-145deg, #000 50%, #60389b 70%, #1ba6a4 90%);
    padding-top: 180px;
    padding-bottom: 180px;
    color: #fff;
    text-align: center;
    width: 95%;
    
    position: relative;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    border-radius: 60px;
    
    margin-bottom: 35px;
    
    
  }
  
  .storytext {
    
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    position: relative;
  }
  
  
  
  /*** OUR TEAM **/
  
  #teambkg {
    
    width: 100%;
    background: #FFF;
    padding-top:100px;
    padding-bottom: 100px;
  }
  
  #teamcontainer {
    width: 75%;
    max-width: 1200px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    right: 0;
    left: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    justify-content: center;
    
  }
  
  #teamheading {
    
    font-size: 40px;
    letter-spacing: -2px;
    padding-bottom: 50px;
    width: 100%;
    text-align: center;
  }
  
  #profile {
    
    width: 23%;
    padding-left: 1%;
    padding-right: 1%;
    float: left;
    padding-bottom: 50px;
  }
  
  #profileimage {
    
    width: 65%; 
    padding-left: 17.5%; 
    text-align: center;
  }
  
  #profileheading {
    
    font-size: 30px;
    letter-spacing: -2px;
    text-align: center;
    padding-top: 20px;
  }
  
  #profilesubheading {
    
    font-size: 16px;
    letter-spacing: -0.5px;
    text-align: center;
  }
  
  

  
  
  /****** OUR APRAOCH *****/
  
  #approachbkg {
    
    background: #FFF;
    width: 100%;
    padding-top: 115px;
    padding-bottom: 115px;
  }
  
  #approachcontainer {
    
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
  }
  
  .approachbodytext {
    
    width: 60%;
    margin-bottom: 65px;
  }
  
  #approachheading {
    
    font-family: CharleFont;
    color: #FFF;
    font-size: 48px;
    padding-bottom: 10px;
  }
  
  
  #approachthumb1 {
    
    width: 25%;

    border-radius: 20px;
    float: left;
    box-shadow: 0px 0px 25px 10px rgba(0, 0, 0, 0.3);
       background: -moz-linear-gradient(145deg, #000 60%, #25153d 80%, #0e6968 100%);
      background: -webkit-linear-gradient(145deg, #000 60%, #25153d 80%, #0e6968 100%);
      background: linear-gradient(145deg, #000 60%, #25153d 80%, #0e6968 100%);
    color: #FFF;
    padding: 3%;

    transition:  all 0.5s ease;
    position: relative;
    
    
    
  }
  
  #approachthumb2 {
    
    width: 25%;

    border-radius: 20px;
    float: left;
    box-shadow: 0px 0px 25px 10px rgba(0, 0, 0, 0.3);
       background: -moz-linear-gradient(45deg, #000 60%, #25153d 80%, #0e6968 100%);
      background: -webkit-linear-gradient(45deg, #000 60%, #25153d 80%, #0e6968 100%);
      background: linear-gradient(45deg, #000 60%, #25153d 80%, #0e6968 100%);
    color: #FFF;
    padding: 3%;

    transition:  all 0.5s ease;
    position: relative;
    
    
    
  }
  
  #approachthumb3{
    
    width: 25%;

    border-radius: 20px;
    float: left;
    box-shadow: 0px 0px 25px 10px rgba(0, 0, 0, 0.3);
       background: -moz-linear-gradient(-45deg, #000 60%, #25153d 80%, #0e6968 100%);
      background: -webkit-linear-gradient(-45deg, #000 60%, #25153d 80%, #0e6968 100%);
      background: linear-gradient(-45deg, #000 60%, #25153d 80%, #0e6968 100%);
    color: #FFF;
    padding: 3%;

    transition:  all 0.5s ease;
    position: relative;
    
    
    
  }
  

  
  .approach1 {
    
    margin-right: 3.3333%
  }
  
  .approach2 {
    
    margin-right: 3.3333%;
  }
  
  
  
/* WHY CHOOSE CHARLE */
  
  #whycharlebkg {
    
    background: #FFF;
    width: 100%;
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
  }
  
  #whycharlecontainer {
    
    text-align: center;
    position: relative;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;

    
    
  }
  
  .whycharlebodytext {
    
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    margin-bottom: 50px;
  }
  
  #greybkg {
    
    background: #ebebeb;
    width: 100%;
    position: absolute;
    height: 40%;
    top: 260px;
  
  }
  
  
      
  #whycharletext {
    
    color: #FFF;
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%,-50%);
    width: 80%;
    font-family: CharleFont;
    font-size: 25px;
    line-height: 35px;
    
  }
  
  

  
  

  
  
  #image1 {
    
    float: left;
    width: 35%;
    background: url('https://www.charleagency.com/media/images/about/whycharleimage1.png') center center no-repeat;
    background-size: 100%;
    border-radius: 20px;
    box-shadow: 0px 0px 25px 10px rgba(0, 0, 0, 0.3);
    height: 450px;

    position: relative;
    margin-right: 2%;
    
  }
  
    #image2 {
    
    float: left;
    width: 63%;
    background: url('https://www.charleagency.com/media/images/about/whycharleimage2.png') center center no-repeat;
      background-size: 100%;
    border-radius: 20px;
    box-shadow: 0px 0px 25px 10px rgba(0, 0, 0, 0.3);
    height: 450px;
      

  }
  
  .imagetext {
    
    color: #FFF;
    position: absolute;
      top: 50%; 
  left: 50%;
  transform: translate(-50%,-50%);
    width: 80%;
    color: #FFF;
    
  }
  
  
  
  #image3 {
    
    float: left;
    width: 50%;
    background: url('https://www.charleagency.com/media/images/about/whycharleimage3.png') center center no-repeat;
    background-size: 120%;
    border-radius: 20px;
    box-shadow: 0px 0px 25px 10px rgba(0, 0, 0, 0.3);
    height: 725px;
    margin-top: 30px;
    position: relative;
    
  }
  
  
  #image4 {
    
    
    float: left;
    width: 48%;
    background: url('https://www.charleagency.com/media/images/about/whycharleimage4.png') center center no-repeat;
    background-size: 120%;
    border-radius: 20px;
    box-shadow: 0px 0px 25px 10px rgba(0, 0, 0, 0.3);
    height: 347.5px;
    margin-top: 30px;
    position: relative;
    margin-left: 2%;
    
    
  }
  
  
  
    
  #image5 {
    
    
    float: left;
    width: 48%;
    background: url('https://www.charleagency.com/media/images/about/whycharleimage5.png') center center no-repeat;
    background-size: 120%;
    border-radius: 20px;
    box-shadow: 0px 0px 25px 10px rgba(0, 0, 0, 0.3);
    height: 347.5px;
    margin-top: 30px;
    position: relative;
    margin-left: 5%;
    margin-left: 2%;
    
    
  }
  
  
  
  
    #image6 {
    
    float: left;
    width: 63%;
    background: url('https://www.charleagency.com/media/images/about/whycharleimage6.png') center center no-repeat;
      background-size: 100%;
    border-radius: 20px;
    box-shadow: 0px 0px 25px 10px rgba(0, 0, 0, 0.3);
    height: 450px;      
    margin-top: 30px;
      position: relative;
  }
  
  
    #image7 {
    
    float: left;
    width: 35%;
    background: #000;
    background-size: 100%;
    border-radius: 20px;
    box-shadow: 0px 0px 25px 10px rgba(0, 0, 0, 0.3);
    height: 450px;
  
    position: relative;
    margin-left: 2%;
    margin-top: 30px;
    
  }
  
    

  
  
  

  
  


  
  
  
}

  
  /* LARGE SCREEN  */
@media only screen and (min-width: 1200px)  and (max-width: 1599px) {
  #profile {
        display: flex;
        flex-direction: column;
        text-align: center;
        justify-content: center;
        align-items: center;
    }
  
      #navagation a:link {
        color: #fff;
        text-decoration: none;
        -o-transition: 1s;
        -ms-transition: 1s;
        -moz-transition: 1s;
        -webkit-transition: 1s;
        transition: 1s;
      }

      #navagation a:visited {
        color: #fff;
        text-decoration: none;
      }

      #navagation a:hover {
        color: #fff;
        text-decoration: none;
      }

      #navagation a:active {
        color: #fff;
        text-decoration: none;
      }
  
  
    
  #pagetitlebkg {
    
    width: 100%;
       background: -moz-linear-gradient(145deg, #000 50%, #60389b 80%, #1ba6a4 90%);
      background: -webkit-linear-gradient(145deg, #000 50%, #60389b 80%, #1ba6a4 90%);
      background: linear-gradient(145deg, #000 50%, #60389b 70%, #1ba6a4 90%);
    position: relative;
    
    position: relative;
    
    padding-top: 150px;
    padding-bottom: 150px;
    
    min-height: calc(105% - 300px);
    
    
  }
  
    #shopifyexperts {
    
    
    color: #FFF;
      font-family: CharleFont;
    text-align: center;
    color: #FFF;
    font-size: 20px;
    padding-bottom: 50px;
    
  }
  
  #pagetitlecontainer {
    
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    
    color: #FFF;
    

    
    max-width: 1480px;
  
    font-family: CharleFont;
    text-align: center;
  
    
  }
  
#aboutheading {
    
    font-size: 40px;
    letter-spacing: -2px;
    line-height: 50px;
    color: #FFF;
  }
  
  #aboutteamthumb {
    position: absolute;
    bottom: -50px;
    width: 100%;
    left: 0;
    z-index: 1;
  }
  
    
  #videoshowreel {
    position: absolute;
    bottom: -25%;
    width: 100%; 
    z-index: 1;
      background: #efefef;

  }
  
  #videocontainer {
    
    width: 100%;
    height: 50%;
    overflow: hidden;
    position: relative;


  }
  
  
  
/*** OUR STORY ***/
  
  #ourstorybkg {
    
    width: 100%;
    background: #FFF;
    position: relative;

    
  }
  
  #ourstorycontainer {
    
           background: -moz-linear-gradient(-145deg, #000 60%, #25153d 80%, #0e6968 100%);
      background: -webkit-linear-gradient(-145deg, #000 60%, #25153d 80%, #0e6968 100%);
      background: linear-gradient(-145deg, #000 60%, #25153d 80%, #0e6968 100%);
    padding-top: 180px;
    padding-bottom: 180px;
    color: #fff;
    text-align: center;
    width: 95%;
    
    position: relative;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    
    border-radius: 60px;
    
    margin-bottom: 35px;
    
    
    
    
  }
  
  .storytext {
    
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    position: relative;
  }
  
  
  /*** OUR TEAM **/
  
  #teambkg {
    
    width: 100%;
    background: #FFF;
    padding-top:100px;
    padding-bottom: 100px;
  }
  
  #teamcontainer {
    width: 75%;
    max-width: 1200px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    right: 0;
    left: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    
  }
  
  #teamheading {
    
    font-size: 40px;
    letter-spacing: -2px;
    padding-bottom: 50px;
    width: 100%;
    text-align: center;
  }
  
  #profile {
    
    width: 23%;
    padding-left: 1%;
    padding-right: 1%;
    float: left;
    padding-bottom: 50px;
  }
  
  #profileimage {
    
    width: 65%; 
    text-align: center;
  }
  
  #profileheading {
    
    font-size: 30px;
    letter-spacing: -2px;
    text-align: center;
    padding-top: 20px;
  }
  
  #profilesubheading {
    
    font-size: 16px;
    letter-spacing: -0.5px;
    text-align: center;
  }
  
  

  
  
    
  /****** OUR APRAOCH *****/
  
  #approachbkg {
    
    background: #FFF;
    width: 100%;
    padding-top: 80px;
    padding-bottom: 90px;
  }
  
  #approachcontainer {
    
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
  }
  
  .approachbodytext {
    
    width: 60%;
    margin-bottom: 65px;
  }
  
    #approachheading {
    
    font-family: CharleFont;
    color: #FFF;
    font-size: 38px;
    padding-bottom: 10px;
  }

  
  #approachthumb1 {
    
    width: 25%;

    border-radius: 20px;
    float: left;
    box-shadow: 0px 0px 25px 10px rgba(0, 0, 0, 0.3);
       background: -moz-linear-gradient(145deg, #000 60%, #25153d 80%, #0e6968 100%);
      background: -webkit-linear-gradient(145deg, #000 60%, #25153d 80%, #0e6968 100%);
      background: linear-gradient(145deg, #000 60%, #25153d 80%, #0e6968 100%);
    color: #FFF;
    padding: 3%;

    transition:  all 0.5s ease;
    
    
    
  }
  
    #approachthumb2 {
    
    width: 25%;

    border-radius: 20px;
    float: left;
    box-shadow: 0px 0px 25px 10px rgba(0, 0, 0, 0.3);
       background: -moz-linear-gradient(45deg, #000 60%, #25153d 80%, #0e6968 100%);
      background: -webkit-linear-gradient(45deg, #000 60%, #25153d 80%, #0e6968 100%);
      background: linear-gradient(45deg, #000 60%, #25153d 80%, #0e6968 100%);
    color: #FFF;
    padding: 3%;

    transition:  all 0.5s ease;
    
    
    
  }
  
    #approachthumb3 {
    
    width: 25%;

    border-radius: 20px;
    float: left;
    box-shadow: 0px 0px 25px 10px rgba(0, 0, 0, 0.3);
       background: -moz-linear-gradient(-45deg, #000 60%, #25153d 80%, #0e6968 100%);
      background: -webkit-linear-gradient(-45deg, #000 60%, #25153d 80%, #0e6968 100%);
      background: linear-gradient(-45deg, #000 60%, #25153d 80%, #0e6968 100%);
    color: #FFF;
    padding: 3%;

    transition:  all 0.5s ease;
    
    
    
  }
  

  
  .approach1 {
    
    margin-right: 3.3333%
  }
  
  .approach2 {
    
    margin-right: 3.3333%;
  }
  
  
  
/* WHY CHOOSE CHARLE */
  
  #whycharlebkg {
    
    background: #FFF;
    width: 100%;
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
  }
  
  #whycharlecontainer {
    
    text-align: center;
    position: relative;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;

    
    
  }
  
  .whycharlebodytext {
    
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    margin-bottom: 50px;
  }
  
  .whycharlebodytext {
    
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    margin-bottom: 50px;
  }
  
  #greybkg {
    
    background: #ebebeb;
    width: 100%;
    position: absolute;
    height: 40%;
    top: 60px;
  }
  
  
  
      
  #whycharletext {
    
    color: #FFF;
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%,-50%);
    width: 80%;
    font-family: CharleFont;
    font-size: 22px;
    line-height: 32px;
    
  }
  
  

  
  

  
  
  #image1 {
    
    float: left;
    width: 35%;
    background: url('https://www.charleagency.com/media/images/about/whycharleimage1.png') center center no-repeat;
    background-size: 120%;
    border-radius: 20px;
    box-shadow: 0px 0px 25px 10px rgba(0, 0, 0, 0.3);
    height: 400px;

    position: relative;
    margin-right: 2%;
    
  }
  
    #image2 {
    
    float: left;
    width: 63%;
    background: url('https://www.charleagency.com/media/images/about/whycharleimage2.png') center center no-repeat;
      background-size: 125%;
    border-radius: 20px;
    box-shadow: 0px 0px 25px 10px rgba(0, 0, 0, 0.3);
    height: 400px;
      

  }
  
  .imagetext {
    
    color: #FFF;
    position: absolute;
      top: 50%; 
  left: 50%;
  transform: translate(-50%,-50%);
    width: 80%;
    color: #FFF;
    
  }
  
  
  
  #image3 {
    
    float: left;
    width: 50%;
    background: url('https://www.charleagency.com/media/images/about/whycharleimage3.png') center center no-repeat;
    background-size: 135%;
    border-radius: 20px;
    box-shadow: 0px 0px 25px 10px rgba(0, 0, 0, 0.3);
    height: 625px;
    margin-top: 30px;
    position: relative;
    
  }
  
  
  #image4 {
    
    
    float: left;
    width: 48%;
    background: url('https://www.charleagency.com/media/images/about/whycharleimage4.png') center center no-repeat;
    background-size: 130%;
    border-radius: 20px;
    box-shadow: 0px 0px 25px 10px rgba(0, 0, 0, 0.3);
    height: 297.5px;
    margin-top: 30px;
    position: relative;
    margin-left: 2%;
    
    
  }
  
  
  
    
  #image5 {
    
    
    float: left;
    width: 48%;
    background: url('https://www.charleagency.com/media/images/about/whycharleimage5.png') center center no-repeat;
    background-size: 130%;
    border-radius: 20px;
    box-shadow: 0px 0px 25px 10px rgba(0, 0, 0, 0.3);
    height: 297.5px;
    margin-top: 30px;
    position: relative;
    margin-left: 5%;
    margin-left: 2%;
    
    
  }
  
  
  
  
    #image6 {
    
    float: left;
    width: 63%;
    background: url('https://www.charleagency.com/media/images/about/whycharleimage6.png') center center no-repeat;
      background-size: 125%;
    border-radius: 20px;
    box-shadow: 0px 0px 25px 10px rgba(0, 0, 0, 0.3);
    height: 400px;      
    margin-top: 30px;
      position: relative;
  }
  
  
    #image7 {
    
    float: left;
    width: 35%;
    background: #000;
    background-size: 100%;
    border-radius: 20px;
    box-shadow: 0px 0px 25px 10px rgba(0, 0, 0, 0.3);
    height: 400px;
  
    position: relative;
    margin-left: 2%;
    margin-top: 30px;
    
  }
  
    

  
  
  
  }
  
    
/*MEDIUM SCREEN */
@media only screen and (min-width: 992px)  and (max-width: 1199px) {
  
  
        #navagation a:link {
        color: #000;
        text-decoration: none;
        -o-transition: 1s;
        -ms-transition: 1s;
        -moz-transition: 1s;
        -webkit-transition: 1s;
        transition: 1s;
      }

      #navagation a:visited {
        color: #000;
        text-decoration: none;
      }

      #navagation a:hover {
        color: #000;
        text-decoration: none;
      }

      #navagation a:active {
        color: #000;
        text-decoration: none;
      }
  
  
    
  #pagetitlebkg {
    
    width: 100%;
     background: -moz-linear-gradient(145deg, #000 50%, #60389b 80%, #1ba6a4 90%);
      background: -webkit-linear-gradient(145deg, #000 50%, #60389b 80%, #1ba6a4 90%);
      background: linear-gradient(145deg, #000 50%, #60389b 70%, #1ba6a4 90%);
    position: relative;
  
    
    
    padding-bottom: 150px;
    padding-top: 150px;
    
    min-height: calc(100% - 300px);
    
    
  }
  
    #shopifyexperts {
    
    
    color: #FFF;
      font-family: CharleFont;
    text-align: center;
    color: #FFF;
    font-size: 20px;
    padding-bottom: 50px;
    
  }
  
  #pagetitlecontainer {
    
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    
    color: #FFF;
    

    
    max-width: 1480px;
  
    font-family: CharleFont;
    text-align: center;
  
    
  }
  
  #aboutheading {
    
    font-size: 40px;
    letter-spacing: -2px;
    line-height: 50px;
    color: #FFF;
  }
  
  #aboutteamthumb {
    position: absolute;
    bottom: -50px;
    width: 100%;
    left: 0;
    z-index: 1;
  }
  
  
    
  #videoshowreel {
    position: absolute;
    top:0;
    width: 100%; 
    z-index: 1;
      background: #efefef;

  }
  
  #videocontainer {
    
    width: 100%;
    height: 50%;
    overflow: hidden;
    position: relative;
    background: #000;


  }
  
  
  
/*** OUR STORY ***/
  
  #ourstorybkg {
    
    width: 100%;
    background: #FFF;
    position: relative;

    
  }
  
  #ourstorycontainer {
    
           background: -moz-linear-gradient(-145deg, #000 60%, #25153d 80%, #0e6968 100%);
      background: -webkit-linear-gradient(-145deg, #000 60%, #25153d 80%, #0e6968 100%);
      background: linear-gradient(-145deg, #000 60%, #25153d 80%, #0e6968 100%);
    padding-top: 100px;
    padding-bottom: 100px;
    color: #fff;
    text-align: center;
    width: 95%;
    
    position: relative;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    
    border-radius: 60px;
    
    margin-bottom: 35px;
    

    
    
  }
  
  .storytext {
    
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    position: relative;
  }
  
    /*** OUR TEAM **/
  
  #teambkg {
    
    width: 100%;
    background: #FFF;
    padding-top:100px;
    padding-bottom: 100px;
  }
  
  #teamcontainer {
    width: 75%;
    max-width: 1200px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    right: 0;
    left: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  #teamheading {
    
    font-size: 40px;
    letter-spacing: -2px;
    padding-bottom: 50px;
    width: 100%;
    text-align: center;
  }
  
  #profile {
    
    width: 23%;
    padding-left: 1%;
    padding-right: 1%;
    float: left;
    padding-bottom: 50px;
  }
  
  #profileimage {
    
    width: 65%; 
    padding-left: 17.5%; 
    text-align: center;
  }
  
  #profileheading {
    
    font-size: 30px;
    letter-spacing: -2px;
    text-align: center;
    padding-top: 20px;
  }
  
  #profilesubheading {
    
    font-size: 16px;
    letter-spacing: -0.5px;
    text-align: center;
  }
  
  

  
  
  
  /****** OUR APRAOCH *****/
  
    #approachbkg {
    
    background: #FFF;
    width: 100%;
    padding-top: 80px;
    padding-bottom: 80px;
  }
  
  #approachcontainer {
    
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
  }
  
  .approachbodytext {
    
    width: 60%;
    margin-bottom: 40px;
  }
  
    #approachheading {
    
    font-family: CharleFont;
    color: #FFF;
    font-size: 35px;
    padding-bottom: 7px;
  }
  
  
  #approachthumb1 {
    
    width: 28%;

    border-radius: 20px;
    float: left;
    box-shadow: 0px 0px 25px 10px rgba(0, 0, 0, 0.3);
           background: -moz-linear-gradient(145deg, #000 60%, #25153d 80%, #0e6968 100%);
      background: -webkit-linear-gradient(145deg, #000 60%, #25153d 80%, #0e6968 100%);
      background: linear-gradient(145deg, #000 60%, #25153d 80%, #0e6968 100%);
    color: #FFF;
    padding: 2%;

    transition:  all 0.5s ease;

    
    
    
  }
  
  
    #approachthumb2 {
    
    width: 28%;

    border-radius: 20px;
    float: left;
    box-shadow: 0px 0px 25px 10px rgba(0, 0, 0, 0.3);
           background: -moz-linear-gradient(45deg, #000 60%, #25153d 80%, #0e6968 100%);
      background: -webkit-linear-gradient(45deg, #000 60%, #25153d 80%, #0e6968 100%);
      background: linear-gradient(45deg, #000 60%, #25153d 80%, #0e6968 100%);
    color: #FFF;
    padding: 2%;

    transition:  all 0.5s ease;

    
    
    
  }
  
  
    #approachthumb3 {
    
    width: 28%;

    border-radius: 20px;
    float: left;
    box-shadow: 0px 0px 25px 10px rgba(0, 0, 0, 0.3);
           background: -moz-linear-gradient(-45deg, #000 60%, #25153d 80%, #0e6968 100%);
      background: -webkit-linear-gradient(-45deg, #000 60%, #25153d 80%, #0e6968 100%);
      background: linear-gradient(-45deg, #000 60%, #25153d 80%, #0e6968 100%);
    color: #FFF;
    padding: 2%;

    transition:  all 0.5s ease;

    
    
    
  }
  

  
  .approach1 {
    
    margin-right: 1%
  }
  
  .approach2 {
    
    margin-right: 1%;
  }
  
  
  
/* WHY CHOOSE CHARLE */
  
  #whycharlebkg {
    
    background: #FFF;
    width: 100%;
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
  }
  
  #whycharlecontainer {
    
    text-align: center;
    position: relative;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;

    
    
  }
  
  .whycharlebodytext {
    
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    margin-bottom: 50px;
  }
  
  .whycharlebodytext {
    
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    margin-bottom: 50px;
  }
  
  #greybkg {
    
    background: #ebebeb;
    width: 100%;
    position: absolute;
    height: 40%;
    top: 60px;
  }
  
  
      
  #whycharletext {
    
    color: #FFF;
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%,-50%);
    width: 80%;
    font-family: CharleFont;
    font-size: 16px;
    line-height: 26px;
    
  }
  
  

  
  

  
  
  #image1 {
    
    float: left;
    width: 35%;
    background: url('https://www.charleagency.com/media/images/about/whycharleimage1.png') center center no-repeat;
    background-size: 130%;
    border-radius: 20px;
    box-shadow: 0px 0px 25px 10px rgba(0, 0, 0, 0.3);
    height: 300px;

    position: relative;
    margin-right: 2%;
    
  }
  
    #image2 {
    
    float: left;
    width: 63%;
    background: url('https://www.charleagency.com/media/images/about/whycharleimage2.png') center center no-repeat;
      background-size: 130%;
    border-radius: 20px;
    box-shadow: 0px 0px 25px 10px rgba(0, 0, 0, 0.3);
    height: 300px;
      

  }
  
  .imagetext {
    
    color: #FFF;
    position: absolute;
      top: 50%; 
  left: 50%;
  transform: translate(-50%,-50%);
    width: 80%;
    color: #FFF;
    
  }
  
  
  
  #image3 {
    
    float: left;
    width: 50%;
    background: url('https://www.charleagency.com/media/images/about/whycharleimage3.png') center center no-repeat;
    background-size: 140%;
    border-radius: 20px;
    box-shadow: 0px 0px 25px 10px rgba(0, 0, 0, 0.3);
    height: 481px;
    margin-top: 30px;
    position: relative;
    
  }
  
  
  #image4 {
    
    
    float: left;
    width: 48%;
    background: url('https://www.charleagency.com/media/images/about/whycharleimage4.png') center center no-repeat;
    background-size: 130%;
    border-radius: 20px;
    box-shadow: 0px 0px 25px 10px rgba(0, 0, 0, 0.3);
    height: 225px;
    margin-top: 30px;
    position: relative;
    margin-left: 2%;
    
    
  }
  
  
  
    
  #image5 {
    
    
    float: left;
    width: 48%;
    background: url('https://www.charleagency.com/media/images/about/whycharleimage5.png') center center no-repeat;
    background-size: 130%;
    border-radius: 20px;
    box-shadow: 0px 0px 25px 10px rgba(0, 0, 0, 0.3);
    height: 225px;
    margin-top: 30px;
    position: relative;
    margin-left: 5%;
    margin-left: 2%;
    
    
  }
  
  
  
  
    #image6 {
    
    float: left;
    width: 63%;
    background: url('https://www.charleagency.com/media/images/about/whycharleimage6.png') center center no-repeat;
      background-size: 130%;
    border-radius: 20px;
    box-shadow: 0px 0px 25px 10px rgba(0, 0, 0, 0.3);
    height: 400px;      
    margin-top: 30px;
      position: relative;
  }
  
  
    #image7 {
    
    float: left;
    width: 35%;
    background: #000;
    background-size: 100%;
    border-radius: 20px;
    box-shadow: 0px 0px 25px 10px rgba(0, 0, 0, 0.3);
    height: 400px;
  
    position: relative;
    margin-left: 2%;
    margin-top: 30px;
    
  }
  

    

  
  }
  
  
  



  
/*SMALL SCREEN */
@media only screen and (min-width: 768px)  and (max-width: 991px) {
  
  
  
      

  
    
    
  #pagetitlebkg {
    
    width: 100%;
         background: -moz-linear-gradient(145deg, #000 50%, #60389b 80%, #1ba6a4 90%);
      background: -webkit-linear-gradient(145deg, #000 50%, #60389b 80%, #1ba6a4 90%);
      background: linear-gradient(145deg, #000 50%, #60389b 70%, #1ba6a4 90%);
    position: relative;

    position: relative;
    
    padding-bottom: 150px;
    padding-top: 150px;
    
    min-height: calc(90% - 300px);
    
    
  }
  
    #shopifyexperts {
    
    
    color: #FFF;
      font-family: CharleFont;
    text-align: center;
    color: #FFF;
    font-size: 16px;
    padding-bottom: 50px;
    
  }
  
  #pagetitlecontainer {
    
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    
    color: #FFF;
    

    
    max-width: 1480px;
  
    font-family: CharleFont;
    text-align: center;

    
  }
  
  #aboutheading {
    
    font-size: 30px;
    letter-spacing: -0.5px;
    line-height: 40px;
    color: #FFF;
  }
  
  #aboutteamthumb {
    position: absolute;
    bottom: -50px;
    width: 100%;
    left: 0;
    z-index: 1;
  }
  
  
    
  #videoshowreel {
    position: absolute;
    top: 0;
    width: 100%; 
    z-index: 1;
      background: #efefef;

  }
  
  #videocontainer {
    
    width: 100%;
    height: 40%;
    overflow: hidden;
    position: relative;
    background: #000;


  }
  
  
  
/*** OUR STORY ***/
  
  #ourstorybkg {
    
    width: 100%;
    background: #FFF;
    position: relative;

    
  }
  
  #ourstorycontainer {
    
           background: -moz-linear-gradient(-145deg, #000 60%, #25153d 80%, #0e6968 100%);
      background: -webkit-linear-gradient(-145deg, #000 60%, #25153d 80%, #0e6968 100%);
      background: linear-gradient(-145deg, #000 60%, #25153d 80%, #0e6968 100%);
    padding-top: 100px;
    padding-bottom: 100px;
    color: #fff;
    text-align: center;
    width: 95%;
    
    position: relative;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    
    border-radius: 60px;
    

    
    
  }
  
    .storytext {
    
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    position: relative;
  }
  
  
    /*** OUR TEAM **/
  
  #teambkg {
    
    width: 100%;
    background: #FFF;
    padding-top:100px;
    padding-bottom: 100px;
  }
  
  #teamcontainer {
    width: 90%;
    max-width: 1200px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    right: 0;
    left: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    
  }
  
  #teamheading {
    
    font-size: 30px;
    letter-spacing: -2px;
    padding-bottom: 50px;
    width: 100%;
    text-align: center;
  }
  
  #profile {
    
    width: 23%;
    padding-left: 1%;
    padding-right: 1%;
    float: left;
    padding-bottom: 50px;
  }
  
  #profileimage {
    
    width: 65%; 
    padding-left: 17.5%; 
    text-align: center;
  }
  
  #profileheading {
    
    font-size: 25px;
    letter-spacing: -2px;
    text-align: center;
    padding-top: 20px;
  }
  
  #profilesubheading {
    
    font-size: 14px;
    letter-spacing: -0.5px;
    text-align: center;
  }
  
  

  
  
  /****** OUR APRAOCH *****/
  
  
    #approachbkg {
    
    background: #FFF;
    width: 100%;
    padding-top: 75px;
    padding-bottom: 75px;
  }
  
  #approachcontainer {
    
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
  }
  
  .approachbodytext {
    
    width: 100%;
    margin-bottom: 30px;
  }
  
  
    #approachheading {
    
    font-family: CharleFont;
    color: #FFF;
    font-size: 28px;
    padding-bottom: 6px;
  }
  
  
  #approachthumb1 {
    
    width: 95%;
    margin-top: 30px;
    border-radius: 20px;
  
    box-shadow: 0px 0px 25px 10px rgba(0, 0, 0, 0.3);
               background: -moz-linear-gradient(145deg, #000 60%, #25153d 80%, #0e6968 100%);
      background: -webkit-linear-gradient(145deg, #000 60%, #25153d 80%, #0e6968 100%);
      background: linear-gradient(145deg, #000 60%, #25153d 80%, #0e6968 100%);
    color: #FFF;
    padding: 2.5%;

    transition:  all 0.5s ease;

    
    
    
  }
  
  #approachthumb2 {
    
    width: 95%;
    margin-top: 30px;
    border-radius: 20px;
  
    box-shadow: 0px 0px 25px 10px rgba(0, 0, 0, 0.3);
               background: -moz-linear-gradient(45deg, #000 60%, #25153d 80%, #0e6968 100%);
      background: -webkit-linear-gradient(45deg, #000 60%, #25153d 80%, #0e6968 100%);
      background: linear-gradient(45deg, #000 60%, #25153d 80%, #0e6968 100%);
    color: #FFF;
    padding: 2.5%;

    transition:  all 0.5s ease;

    
    
    
  }
  
  #approachthumb3 {
    
    width: 95%;
    margin-top: 30px;
    border-radius: 20px;
  
    box-shadow: 0px 0px 25px 10px rgba(0, 0, 0, 0.3);
               background: -moz-linear-gradient(-45deg, #000 60%, #25153d 80%, #0e6968 100%);
      background: -webkit-linear-gradient(-45deg, #000 60%, #25153d 80%, #0e6968 100%);
      background: linear-gradient(-45deg, #000 60%, #25153d 80%, #0e6968 100%);
    color: #FFF;
    padding: 2.5%;

    transition:  all 0.5s ease;

    
    
    
  }
  
  
  
  

  
  

  
  .approach1 {
    
    margin-right: 1%
  }
  
  .approach2 {
    
    margin-right: 1%;
  }
  
  
  
/* WHY CHOOSE CHARLE */
  
  #whycharlebkg {
    
    background: #FFF;
    width: 100%;
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
  }
  
  #whycharlecontainer {
    
    text-align: center;
    position: relative;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;

    
    
  }
  
  .whycharlebodytext {
    
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    margin-bottom: 50px;
  }
  
  .whycharlebodytext {
    
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    margin-bottom: 50px;
  }
  
  #greybkg {
    
    background: #ebebeb;
    width: 100%;
    position: absolute;
    height: 40%;
    top: 60px;
  }
  
      
  #whycharletext {
    
    color: #FFF;
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%,-50%);
    width: 80%;
    font-family: CharleFont;
    font-size: 16px;
    line-height: 26px;
    
    
  }
  
  

  
  

  
  
  #image1 {
    

    width: 100%;
    background: url('https://www.charleagency.com/media/images/about/whycharleimage1.png') center center no-repeat;
    background-size: 130%;
    border-radius: 20px;
    box-shadow: 0px 0px 25px 10px rgba(0, 0, 0, 0.3);
    padding-top: 75px;
    padding-bottom: 75px;

    position: relative;

    
  }
  
    #image2 {
    
    
      display: none;

      

  }

  
  
  
  #image3 {
  
    display: none;
    
  }
  
  
  #image4 {
    
    
    width: 100%;
    background: url('https://www.charleagency.com/media/images/about/whycharleimage4.png') center center no-repeat;
    background-size: 130%;
    border-radius: 20px;
    box-shadow: 0px 0px 25px 10px rgba(0, 0, 0, 0.3);
    padding-top: 75px;
    padding-bottom: 75px;
    margin-top: 30px;
    position: relative;

    
    
  }
  
  
  
    
  #image5 {
    
    
display: none;
    
    
  }
  
  
  
  
    #image6 {
    

    width: 100%;
    background: url('https://www.charleagency.com/media/images/about/whycharleimage6.png') center center no-repeat;
      background-size: 130%;
    border-radius: 20px;
    box-shadow: 0px 0px 25px 10px rgba(0, 0, 0, 0.3);
    padding-top: 75px;
    padding-bottom: 75px;     
    margin-top: 30px;
      position: relative;
  }
  
  
    #image7 {
    

  display: none;
    
  }
  


  

  
  
  }
  
  
/*MOBILE SCREEN */
@media only screen and (max-width: 767px) {
  
  
  
  

      

  
    
    
  #pagetitlebkg {
    
    width: 100%;
       background: -moz-linear-gradient(145deg, #000 50%, #60389b 80%, #1ba6a4 90%);
      background: -webkit-linear-gradient(145deg, #000 50%, #60389b 80%, #1ba6a4 90%);
      background: linear-gradient(145deg, #000 50%, #60389b 70%, #1ba6a4 90%);

    position: relative;
    
    padding-top: 150px;
    padding-bottom: 150px;
    
    height: calc(100% - 300px);
    
    
  }
  
  
      #shopifyexperts {
    
    
    color: #FFF;
      font-family: CharleFont;
    text-align: center;
    color: #FFF;
    font-size: 16px;
    padding-bottom: 50px;
    
  }
  
  #pagetitlecontainer {
    
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    
    color: #FFF;

    

    
    max-width: 1480px;
  
    font-family: CharleFont;
    text-align: center;
  
    
  }
  
    
  #aboutheading {
    
    font-size: 20px;
    letter-spacing: -0.5px;
    line-height: 30px;
    color: #FFF;
  }
  
  #aboutteamthumb {
    position: absolute;
    bottom: 25px;
    width: 100%;
    left: 0;
    z-index: 1;
  }
  
  
  
    
  #videoshowreel {
    position: absolute;
    top: 0;
    width: 100%; 
    z-index: 1;
      background: #efefef;

  }
  
  #videocontainer {
    
    width: 100%;
    height: 20%;
    overflow: hidden;
    position: relative;
    background: #efefef;


  }
  
  
  
/*** OUR STORY ***/
  #ourstorybkg {
    
    width: 100%;
    background: #FFF;
    position: relative;

    
  }
  
  #ourstorycontainer {
    
     background: -moz-linear-gradient(-145deg, #000 50%, #60389b 80%, #1ba6a4 90%);
      background: -webkit-linear-gradient(-145deg, #000 50%, #60389b 80%, #1ba6a4 90%);
      background: linear-gradient(-145deg, #000 50%, #60389b 70%, #1ba6a4 90%);
    padding-top: 30px;
    padding-bottom: 30px;
    color: #fff;
    text-align: center;
    width: 95%;
    
    position: relative;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    
    border-radius: 30px;
    

  }
  
  
  .storytext {
    
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    position: relative;
  }
  
    /*** OUR TEAM **/
  
  #teambkg {
    
    width: 100%;
    background: #FFF;
    padding-top:40px;
    padding-bottom: 20px;
  }
  
  #teamcontainer {
    width: 95%;
    max-width: 1200px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    right: 0;
    left: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    
  }
  
  #teamheading {
    
    font-size: 25px;
    letter-spacing: -0.5px;
    padding-bottom: 20px;
    width: 100%;
    text-align: center;
  }
  
  #profile {
    
    width: 48%;
    padding-left: 1%;
    padding-right: 1%;
    float: left;
    padding-bottom: 20px;
  }
  
  #profileimage {
    
    width: 75%; 
    padding-left: 12.5%; 
    text-align: center;
  }
  
  #profileheading {
    
    font-size: 18px;

    text-align: center;
    padding-top: 15px;
  }
  
  #profilesubheading {
    
    font-size: 12px;

    text-align: center;
  }
  
  
  
  /****** OUR APRAOCH *****/
  
  
      #approachbkg {
    
    background: #FFF;
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
        z-index: 2;
  }
  
  #approachcontainer {
    
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
  }
  
  
  .approachbodytext {
    
    width: 100%;
  }
  
    #approachheading {
    
    font-family: CharleFont;
    color: #FFF;
    font-size: 19px;
    padding-bottom: 5px;
  }
  
  
  #approachthumb1 {
    
    width: 95%;
  
    border-radius: 20px;
    
           background: -moz-linear-gradient(145deg, #000 60%, #25153d 80%, #0e6968 100%);
      background: -webkit-linear-gradient(145deg, #000 60%, #25153d 80%, #0e6968 100%);
      background: linear-gradient(145deg, #000 60%, #25153d 80%, #0e6968 100%);
  
    box-shadow: 0px 0px 25px 10px rgba(0, 0, 0, 0.3);
  
    color: #FFF;
    padding: 2.5%;

    transition:  all 0.5s ease;
    
    z-index: 2;

    
    
    
    
  }
  
  
    #approachthumb2 {
    
    width: 95%;
  
    border-radius: 20px;
    
           background: -moz-linear-gradient(45deg, #000 60%, #25153d 80%, #0e6968 100%);
      background: -webkit-linear-gradient(45deg, #000 60%, #25153d 80%, #0e6968 100%);
      background: linear-gradient(45deg, #000 60%, #25153d 80%, #0e6968 100%);
  
    box-shadow: 0px 0px 25px 10px rgba(0, 0, 0, 0.3);
  
    color: #FFF;
    padding: 2.5%;

    transition:  all 0.5s ease;
    
    z-index: 2;

    
    
    
    
  }
  
  
    #approachthumb3 {
    
    width: 95%;
  
    border-radius: 20px;
    
           background: -moz-linear-gradient(-45deg, #000 60%, #25153d 80%, #0e6968 100%);
      background: -webkit-linear-gradient(-45deg, #000 60%, #25153d 80%, #0e6968 100%);
      background: linear-gradient(-45deg, #000 60%, #25153d 80%, #0e6968 100%);
  
    box-shadow: 0px 0px 25px 10px rgba(0, 0, 0, 0.3);

    color: #FFF;
    padding: 2.5%;

    transition:  all 0.5s ease;
    
    z-index: 2;

    
    
    
    
  }
  

  

  
  .approach1 {
    
    margin-right: 1%;
    margin-bottom: 30px;
    margin-top:15px;;
  }
  
  .approach2 {
    
    margin-right: 1%;
    margin-bottom: 15px;
  }
  
  
  
/* WHY CHOOSE CHARLE */
    #whycharlebkg {
    
    background: #FFF;
    width: 100%;
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
  }
  
  #whycharlecontainer {
    
    text-align: center;
    position: relative;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;

    
    
  }
  
  .whycharlebodytext {
    
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    margin-bottom: 50px;
  }

  
  #greybkg {
    
    background: #ebebeb;
    width: 100%;
    position: absolute;
    height: 40%;
    top: 60px;
  
  }
  
  
    
  #whycharletext {
    
    color: #FFF;
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%,-50%);
    width: 80%;
    font-family: CharleFont;
    font-size: 14px;
    line-height: 24px;
    
  }
  
  

  
  

  
  
  #image1 {
    

    width: 100%;
    background: url('https://www.charleagency.com/media/images/about/whycharleimage1.png') center center no-repeat;
    background-size: 130%;
    border-radius: 20px;
    box-shadow: 0px 0px 25px 10px rgba(0, 0, 0, 0.3);
    padding-top: 75px;
    padding-bottom: 75px;

    position: relative;

    
  }
  
    #image2 {
    
    
      display: none;

      

  }
  
  .imagetext {
    
    color: #FFF;
    position: absolute;
      top: 50%; 
  left: 50%;
  transform: translate(-50%,-50%);
    width: 80%;
    color: #FFF;
    
  }
  
  
  
  #image3 {
  
    display: none;
    
  }
  
  
  #image4 {
    
    
    width: 100%;
    background: url('https://www.charleagency.com/media/images/about/whycharleimage4.png') center center no-repeat;
    background-size: 130%;
    border-radius: 20px;
    box-shadow: 0px 0px 25px 10px rgba(0, 0, 0, 0.3);
    padding-top: 75px;
    padding-bottom: 75px;
    margin-top: 30px;
    position: relative;

    
    
  }
  
  
  
    
  #image5 {
    
    
display: none;
    
    
  }
  
  
  
  
    #image6 {
    

    width: 100%;
    background: url('https://www.charleagency.com/media/images/about/whycharleimage6.png') center center no-repeat;
      background-size: 130%;
    border-radius: 20px;
    box-shadow: 0px 0px 25px 10px rgba(0, 0, 0, 0.3);
    padding-top: 75px;
    padding-bottom: 75px;     
    margin-top: 30px;
      position: relative;
  }
  
  
    #image7 {
    

  display: none;
    
  }
  

  
  
}
  
  
  
  


  
  #blackbutton {
    box-shadow: 0px 0px 60px 10px rgba(255, 255, 255, 0.2);
  }
  
  
  #nav-icon span{
    
        box-shadow: 0px 0px 20px 10px rgb(255 255 255 / 20%);
    
  }
  
  #navagation-CTA {
    
    box-shadow: 0px 0px 60px 10px rgba(255, 255, 255, 0.2);
  }
  
  
