button {
  border: none;
  background: transparent;
  outline: none;
  cursor: pointer;
  padding: 0;
}

button:hover .line {
  stroke: #fff;
}

svg {
  display: block;
  width: 200px;
  height: 200px;
}

.line {
  fill: none;
  stroke: #fff;
  stroke-width: 6px;
  stroke-linecap: round;
  stroke-linejoin: round;
  border-radius: 5px;
}

/* Hamburger */
.line.top,
.line.bottom {
  stroke-dasharray: 50px 600px;
  stroke-dashoffset: 0px;
}

.line.cross {
  stroke-dasharray: 50px 60px;
  stroke-dashoffset: 0px;
}

/* Cross */
.on .line.top,
.on .line.bottom {
  stroke-dasharray: 70.71px 600px;
  stroke-dashoffset: -392px;
}

.on .line.cross {
  stroke-dasharray: 50px 60px;
  stroke-dashoffset: 51px;
}

/* Timing */
.line.cross {
  -webkit-transition: 0.35s stroke-dasharray ease 0.35s, 0.35s stroke-dashoffset ease 0.35s, 0.35s stroke ease 0s;
  transition: 0.35s stroke-dasharray ease 0.35s, 0.35s stroke-dashoffset ease 0.35s, 0.35s stroke ease 0s;
}

.line.top {
  -webkit-transition: 0.525s stroke-dasharray ease 0s, 0.525s stroke-dashoffset ease 0s, 0.35s stroke ease 0s;
  transition: 0.525s stroke-dasharray ease 0s, 0.525s stroke-dashoffset ease 0s, 0.35s stroke ease 0s;
}

.line.bottom {
  -webkit-transition: 0.35s stroke-dasharray ease 0.35s, 0.35s stroke-dashoffset ease 0.35s, 0.35s stroke ease 0s;
  transition: 0.35s stroke-dasharray ease 0.35s, 0.35s stroke-dashoffset ease 0.35s, 0.35s stroke ease 0s;
}

.on .line.cross {
  -webkit-transition: 0.35s stroke-dasharray ease 0s, 0.35s stroke-dashoffset ease 0s, 0.35s stroke ease 0s;
  transition: 0.35s stroke-dasharray ease 0s, 0.35s stroke-dashoffset ease 0s, 0.35s stroke ease 0s;
}

.cursor-dot,
.cursor-dot-outline {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.3s ease-in-out,
 -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out,
 -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out,
 transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out,
 transform 0.3s ease-in-out,
 -webkit-transform 0.3s ease-in-out;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: #dc5656;
}

.cursor-dot-outline {
  width: 40px;
  height: 40px;
  background-color: rgba(229, 128, 128, 0.5);
}

a {
  outline: none;
  text-decoration: none;
  color: #fff;
  -webkit-transition: .2s;
  transition: .2s;
}

h2 {
  margin: 0;
  font-size: 1.5rem;
  color: #fff;
}

.article__container p {
  max-width: -webkit-max-content !important;
  max-width: -moz-max-content !important;
  max-width: max-content !important;
}

.back-link {
  color: rgba(255, 255, 255, 0.6);
  border-bottom: 2px solid rgba(255, 255, 255, 0.6);
}

.back-link:hover, .back-link:focus {
  border-color: #fff;
  color: #fff;
}

.article__pointer {
  position: absolute;
  height: 40px;
  width: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  background-color: #00a8ec;
  color: #fff;
}

.article__pointer:hover {
  color: #fff;
}

.article__layer {
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100px;
  width: 100px;
  border-radius: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  will-change: transform;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: .6s ease-in-out;
  transition: .6s ease-in-out;
}

.article__layer_blue {
  background: #2980b9;
  -webkit-box-shadow: 0 0 0 100vw #2980b9, 0 0 0 100vh #2980b9;
          box-shadow: 0 0 0 100vw #2980b9, 0 0 0 100vh #2980b9;
}

.article__panel {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  will-change: opacity, transform;
  -webkit-transition: .2s;
  transition: .2s;
}

.article__panel:target {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: .2s .4s;
  transition: .2s .4s;
}

.article__panel:target ~ a {
  z-index: 1;
}

.article__panel:target ~ a span {
  -webkit-transform: scale(0.6);
          transform: scale(0.6);
  position: relative;
  top: -300px;
}

.article__panel_blue {
  background: #2980b9;
  width: 60%;
}

.article__body {
  max-height: 100%;
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  padding: 40px 20px;
  line-height: 1.6;
  letter-spacing: .025em;
  color: rgba(255, 255, 255, 0.75);
  -webkit-overflow-scrolling: touch;
}

.article__container {
  max-width: 600px;
  margin: auto;
}

.article__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

a:active, a:focus, a:hover, a:visited {
  text-decoration: none;
}

.has-offcanvas {
  position: fixed;
}

.row {
  margin-left: auto;
  margin-right: auto;
  padding-right: 30px;
  padding-left: 30px;
  width: 1150px;
  max-width: 100%;
}

.header-row {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hamburger-toggle {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
  height: 60px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  outline: none;
}

.hamburger-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 30px;
  height: 20px;
}

.line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
}

.line--middle {
  width: 80%;
}

.line--bottom {
  width: 60%;
}

.hamburger-toggle__circle {
  width: 60px;
  height: 60px;
  fill: #F6595D;
  pointer-events: none;
  -webkit-transform: scale(1) translateZ(1%, 1%, 0);
          transform: scale(1) translateZ(1%, 1%, 0);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
}

.has-offcanvas .hamburger-toggle__circle {
  -webkit-transform: scale(75) translate3d(1%, 1%, 0);
          transform: scale(75) translate3d(1%, 1%, 0);
}

.offcanvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  min-height: 100vh;
  pointer-events: none;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity .5s, -webkit-transform .3s;
  transition: opacity .5s, -webkit-transform .3s;
  transition: opacity .5s, transform .3s;
  transition: opacity .5s, transform .3s, -webkit-transform .3s;
}

.has-offcanvas .offcanvas {
  pointer-events: auto;
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

.offcanvas-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.offcanvas-nav__item {
  font-family: 'Bree Serif', serif;
  font-size: 32px;
  text-align: center;
  text-transform: uppercase;
}

@media screen and (min-width: 1400px) {
  .offcanvas-nav__item {
    font-size: 64px;
  }
}

.offcanvas-nav__item + .offcanvas-nav__item {
  margin-top: 15px;
}

.offcanvas-nav__link {
  color: #fff;
  text-decoration: none;
}

.toggle-circle {
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 90px;
  padding: 15px 0;
}

.toggle-circle .row {
  text-align: end;
}
/*# sourceMappingURL=style.css.map */
.customer-say img{
  width: 160px !important;
}
.youtube-icon-footer{
  background-color: #FF0000 !important;
}

.phone-no{
  display: flex !important;
  flex-wrap: wrap;
  flex-direction: column;
  -ms-flex-direction: column;
}
@media screen and (max-width: 1400px) {

}

.wegbl-logo img{
  width: 95px;
  margin-top: -4px;
}

.pb-250{
  padding-bottom: 30px;
}