/* * * * * * * * * * * * * * *
 * WordPress Content Classes
 * * * * * * * * * * * * * * */
 @font-face {
  font-family: 'Gill Sans';
  src: url('../fonts/gillsansmt-500.woff2') format('woff2'),
       url('../fonts/gillsansmt-500.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Gill Sans';
  src: url('../fonts/gillsansmt-700.woff2') format('woff2'),
       url('../fonts/gillsansmt-700.woff') format('woff');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Gill Sans';
  src: url('../fonts/gillsansmt-300.woff2') format('woff2'),
       url('../fonts/gillsansmt-300.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'ProximaNova';
  src: url('../fonts/ProximaNova-Light.woff2') format('woff2'),
       url('../fonts/ProximaNova-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'ProximaNova';
  src: url('../fonts/ProximaNova-Regular.woff2') format('woff2'),
       url('../fonts/ProximaNova-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'ProximaNova';
  src: url('../fonts/ProximaNova-Bold.woff2') format('woff2'),
       url('../fonts/ProximaNova-Bold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
}

/* * * * * * * * * * * * * * *
 * General
 * * * * * * * * * * * * * * */
html {
  font-size: 18px;
}
body {
  background-color: #fff;
  color: #333333;
  /* font-family: 'ProximaNova', arial, sans-serif;*/
  font-family: 'Gill Sans';
  font-weight: lighter;
  font-size: 1rem;
  line-height: 1.35;
  word-wrap: break-word;
}
figure {
  margin: 0;
}
img {
  border: none;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  object-fit: cover;
  object-position: top center;
}
a {
  /* text-decoration: underline; */
  color:black;
}
a, a:not([href]):not([tabindex]) {
  cursor: pointer;
}
b, strong {
  font-weight: 600;
}
h2 {
  font-size: 2.3rem;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
}
h3 {
  color: #3c445b;
  font-family: "Gill Sans";
  font-size: 3.22rem;
  font-weight: 300;
}
.section-testimonial h4 {
  color: #3c445b;
  font-family: "Gill Sans";
}
.error {
  font-size: 14px;
  color: red;
}
.screen-reader-response {
  display: none;
}
::selection {
  background: #5ba8d0; /* WebKit/Blink Browsers */
}
::-moz-selection {
  background: #5ba8d0; /* Gecko Browsers */
}
.alert.alert-info {
  background: transparent;
  border: 1px dashed #0c5460;
  color: #0c5460;
}
p:empty {
  display: none;
}

/* * * * * * * * * * * * * * *
 * Common classes
 * * * * * * * * * * * * * * */
.size-auto, .size-full, .size-large, .size-medium, .size-thumbnail {
  max-width: 100%;
  height: auto;
}
.alignright {
  float: right;
  margin: 0.4rem 0 1.6rem 1.6rem;
}
.alignleft {
  float: left;
  margin: 0.4rem 1.6rem 1.6rem 0;
}
.aligncenter {
  display: block;
  margin: 0.4rem auto 1.6rem auto;
}
.inline-block {
  display: inline-block;
  vertical-align: middle;
}
.flx {
  display: flex;
}
.flx.wrap {
  flex-wrap: wrap;
}
.flx.center {
  justify-content: center;
}
.flx.vmiddle {
  align-items: center;
  justify-content: center;
}
.hide {
  display: none !important;
}
.icon--sprite {
  background-image: url('./img/sprite.png');
  background-repeat: no-repeat;
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.logo {
  max-width: 100%;
  display: block;
}
.container {
  max-width: 1440px;
}
.relative {
  position: relative;
}
.content-half {
  max-width: 40rem;
  margin: 0 auto;
}

/* * * * * * * * * * * * * * *
 * Button
 * * * * * * * * * * * * * * */
.btn-theme,
.btn.btn-theme {
  width: 18rem;
  height: 3.55rem;
  font-size: 1rem;
  border-radius: 4px;
  background-color: #46cdb4;
  border: 0 none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  color: #fff;
  transition: 0.4s;
}
.btn-white,
.btn-line,
.btn.btn-white {
  width: 18rem;
  height: 3.55rem;
  font-size: 1rem;
  border-radius: 4px;
  background-color: #fff;
  border: 0 none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  color: #000;
  transition: 0.4s;
}
.btn-line {
  border: 1px solid;
  background: transparent;
}
.btn-theme.text-light {
  font-weight: 400;
  font-size: 1rem;
}
.btn:focus {
  box-shadow: none !important;
}
.form-control:focus {
  box-shadow: 4px 4px 20px rgba(71, 194, 248,0.2);
}
button.btn-theme:hover,
a.btn-theme:hover,
a.btn-theme:focus {
  text-decoration: none;
  color: #fff !important;
  box-shadow: 0 5px 0 0 #26ab92;
  transform: translateY(-2px);
  outline: 0 none;
}
button.btn-white:hover,
a.btn-white:hover {
  text-decoration: none;
  color: #000 !important;
  box-shadow: 0 5px 0 0 #ddd;
  transform: translateY(-2px);
  outline: 0 none;
}
button.btn-theme:active,
a.btn-theme:active,
button.btn-white:active,
a.btn-white:active {
  box-shadow: 0 0 0 0 #ddd;
  transform: translateY(0px);
  transition: 0s;
}
span.wpcf7-not-valid-tip {
  color: #ffa8a8;
  position: absolute;
  font-size: 85%;
}


/* * * * * * * * * * * * * * *
 * Header
 * * * * * * * * * * * * * * */
.main-header {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  padding: 2.77rem 0;
  z-index: 1051;
}
.site-logo img {
  width: 12rem;
}
.nav-contact {
  padding-top: 8px;
}
.nav-contact a {
  color: #fff;
}
.link-phone {
  font-size: 1rem;
  line-height: 1.5;
  margin-right: 2.2rem;
}
.link-phone i {
  background: url(../img/icon-phone.png) no-repeat center #46cdb4;
  border-radius: 50%;
  background-size: contain;
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  position: relative;
  top: -2px;
  margin-right: 8px;
}
.main-header .btn-theme {
  width: 16rem;
  height: 2.76rem;
  font-weight: normal;
  font-size: 0.9rem;
}


/* * * * * * * * * * * * * * *
 * Hero section
 * * * * * * * * * * * * * * */
.section-hero {
  position: relative;
}
.hero-img {
  display: block;
  width: 100%;
  max-height: 76vh; 
  min-height: 500px;
  vertical-align: middle;
  object-fit: cover;
  object-position: center center;
}
.overlay {
  background-color: #527286;
  opacity: 0.6;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}
.overlay.white {
  background: #fff;
  opacity: .94;
}
.hero-wrap {
  color: #fff;
  /* width: 60rem; */
  position: absolute;    
  bottom: 100px;
  z-index: 2;
  left: 0;
  right: 0;
  margin: auto;
}
/* .home-hero-wrap hgroup {
  border-bottom: 0.2rem solid #fff;
  padding-bottom: 1.2rem;
  margin-bottom: 1.7rem;
} */
.home-hero-wrap .logo {
  width: 5rem;
}
.home-hero-wrap hgroup figure {
  flex-shrink: 0;
}
.home-hero-wrap h1 {
  font-size: 2.5rem;
  font-weight: 500;
  border-left: 2px solid rgba(255,255,255,0.25);
  margin-left: 40px;
  padding-left: 30px;
  text-transform: uppercase;
}
.home-hero-wrap h4 {
  font-size: 1.4rem;
  letter-spacing: 0.29px;
  line-height: 1.5;
  font-weight: bold;
}
.home-hero-wrap p {
  /* color: #e0e0e0; */
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 500;
}
.home-hero-wrap .d-flex div:first-child {
  padding-right: 30px;
}


/* * * * * * * * * * * * * * *
 * Box Clouds section
 * * * * * * * * * * * * * * */
.box-cloud > div {
  width: 50%;
}
.section-clouds {
  position: relative;
  padding: 50px 0;
}
.box-cloud .content {
  /* padding-left: 20%; */
  margin-top: 10%;
}
.box-cloud .content p {
  margin: 20px 0 40px;
}
.box-cloud .clouds {
  position: relative;
  /* padding-left: 5%; */
}
.box-cloud .clouds .cloud-image {
  position: relative;
  display: block;
  width: 100%;
}
.box-cloud .addon-image {
  position: absolute;
  width: 13.33rem;
  top: 0;
  right: 30px;
  margin-top: 1%;
}
.box-cloud .clouds p {
  position: absolute;
  top: 0;
  left: 0;
  width: 6.8rem;
  height: 6.2rem;
  line-height: 1.3;
  font-size: 0.8rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.clouds-1 p:nth-child(1) {
  margin-top: 20.9%;
  margin-left: 23.3%;
}
.clouds-1 p:nth-child(2) {
  margin-top: 37.1%;
  margin-left: 62.3%;
}
.clouds-1 p:nth-child(3) {
  margin-top: 65.8%;
  margin-left: 27.4%;
}

.clouds-2 .addon-image {
  margin-top: 59%;
  width: 12.22rem;
  margin-right: 3%;
}
.clouds-2 p:nth-child(1) {
  margin-top: 20.9%;
  margin-left: 25.5%;
}
.clouds-2 p:nth-child(2) {
  margin-top: 38.7%;
  margin-left: 62.3%;
  width: 5rem;
}
.clouds-2 p:nth-child(3) {
  margin-top: 65.4%;
  margin-left: 27.4%;
}
.box-cloud .order-1 + .clouds {
  position: relative;
  left: -5%;
}
.box-cloud .content.order-1 {
  /* padding-left: 5%; */
  /* padding-right: 15%; */
}

.clouds-3 .addon-image {
  margin-top: 76%;
  margin-right: 5%;
}
.clouds-3 p:nth-child(1) {
  margin-top: 17.4%;
  margin-left: 56.4%;
  width: 5rem;
  height: 5rem;
}
.clouds-3 p:nth-child(2) {
  margin-top: 36.4%;
  margin-left: 33.1%;
  width: 6.1rem;
}
.clouds-3 p:nth-child(3) {
  margin-top: 50.8%;
  margin-left: 68.6%;
  width: 5rem;
  height: 5rem;
}
.clouds-3 p:nth-child(4) {
  margin-top: 70%;
  margin-left: 33.4%;
}
.section-clouds:before {
  /* background: #f0f0f0; */
  /* width: 2px; */
  /* height: 70%; */
  /* content: ''; */
  /* position: absolute; */
  /* left: 50%; */
  /* margin-left: -1px; */
  /* top: 15%; */
}


/* * * * * * * * * * * * * * *
 * Image sections
 * * * * * * * * * * * * * * */
.section-image {
  padding: 6% 0 5%;
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
}
.section-image h3 {
  color: #fff;
}
.section-image .container {
  position: relative;
  z-index: 2;
}
.section-communicate .content {
  width: 40%;
}
.section-communicate.section-image {
  padding: 6% 0 5%;
}
.section-communicate p {
  margin: 20px 0 40px;
}
.section-chat .content {
  /* width: 25rem; */
  margin-left: 55%;
  margin-bottom: 5%;
}
.section-chat p {
  margin: 20px 0 40px;
}
.section-chat p + p {
  margin-top: -10px;
  color: #bbb;
}



/* * * * * * * * * * * * * * *
 * Testimonial
 * * * * * * * * * * * * * * */
.section-testimonial {
  background-color: #eff7fa;
  padding: 5rem 0;
}
.section-testimonial h4 {
  color: #3c445b;
  font-family: "Gill Sans";
}
.testimonial {
  position: relative;
  padding: 3.3rem 20%;
}
.testimonial:before {
  content: '';
  display: inline-block;
  background: url(../img/icon-quote.png) no-repeat;
  background-size: contain;
  width: 1.88rem;
  height: 1.88rem;
  margin-bottom: 1.5rem;
}
.testimonial p {
  margin-bottom: 2rem;
  font-size: 1.5rem;
}
.testimonial h5 {
  font-weight: bold;
  font-size: 1.5rem;
  margin: 0 0 4px;
}
.testimonial cite {
  font-style: normal;
  font-size: 1rem;
}
.testimonial-list .swiper-pagination.swiper-pagination-bullets {
  text-align: center;
}
#three_boxes_accessible {
  background-image: url('/wp-content/uploads/2019/07/superHQ.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.left_side {
  width: 40% !important;
}

.right_side {
  width: 60% !important;
}
@media only screen and (max-width: 768px) {
  .left_side, .right_side {
    width: 100% !important;
  }
  .hide_on_mobile {
    display: none !important;
  }
  .site-logo img {
    width: 9rem;
  }
  .testimonial p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
  }
  .section-communicate .content {
    width: auto;
  }
  .testimonial {
    position: relative;
    padding: 2.3rem 0%;
  }
  .section-hard-soft {
    padding: 3rem 0 !important; 
  }
  #three_boxes_accessible {
    height: 38rem !important;
    background-position: center 11rem;
  }
  .form-control {
    width: 80% !important;
  }
  form {
    overflow: hidden;
  }
.link-phone, .link-phone span {
  display: inline-block !important;
}
}

/* * * * * * * * * * * * * * *
 * Clients Section
 * * * * * * * * * * * * * * */
.call-centre-image {
  width: 45%;
}
.section-call-centre h3 {
  margin-bottom: 3.3rem;
}
.section-call-centre {
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}
.section-call-centre .content > div {
  width: 792px;
  margin-left: auto;
  padding: 50px 15% 50px 0;
}
.section-call-centre .content {
  width: 55%;
}
.call-centre-image img {
  width: 100%;
  display: block;
  height: 100%;
}
.key-points {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 28.33rem;
}
.key-points li {
  position: relative;
  padding-left: 7.3rem;
  margin-bottom: 2.2rem;
  padding-top: 10px;
}
.key-points li:before {
  content: '';
  width: 5.3rem;
  height: 5.3rem;
  background: url(../img/icon-arrow.jpg) no-repeat center #eff7fa;
  background-size: 1.6rem auto;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
}
.key-points li h5 {
  font-size: 115%;
  font-weight: 400;
  font-family: "Gill Sans";
  color: #555;
}
.key-points li p {
  font-size: 80%;
}


/* * * * * * * * * * * * * * *
 * Clients Section
 * * * * * * * * * * * * * * */
.section-clients {
  padding: 3rem 0 4rem;
}
.section-clients h3 {
  margin-bottom: 5rem;
}
.client-list {
  justify-content: center;
}
.client-list img {
  height: 55px;
  object-fit: contain;
}
.client-list figure {
  margin: 0 4%;
}


/* * * * * * * * * * * * * * *
 * Chat Section
 * * * * * * * * * * * * * * */
.overlay.blue,
.section-form .overlay,
.section-chat .overlay {
   background-color: rgba(60, 68, 91, 0.76);
   opacity: 1;
}
.box-chats > div {
  width: 50%;
}
.box-chats .content {
  padding: 0 15% 0 12%;
}
.box-chats h3 {
  color: #46cdb4;
  line-height: 1.1;
  margin-bottom: 45px;
}
.box-chats .form-group {
  color: #fff;
  width: 24rem;
}
.form-control {
  background: none;
  color: #fff;
  border: 0 none;
  border-bottom: 2px solid #999;
  border-radius: 0;
  padding: 25px 0;
}
.form-control:focus {
  background: none;
  border-bottom: 2px solid #46cdb4;
  box-shadow: none;
  color: #fff;
}
.form-control::-webkit-input-placeholder { /* Internet Explorer 10-11 */
  color: #999;;
}
.form-control::-moz-placeholder { /* Firefox 19+ */
  color: #999;
}
.form-control:-ms-input-placeholder { /* Microsoft Edge */
  color: #999;
}
.section-form .btn-theme {
  margin-top: 20px;
}


/* * * * * * * * * * * * * * *
 * Credits Section
 * * * * * * * * * * * * * * */
.section-credits {
  overflow: hidden;
  padding: 20px 0;
}
.section-credits p {
  margin: 0;
  font-size: 0.8rem;
  color: #444;
}
.section-credits a {
  color: #444;
}


/* * * * * * * * * * * * * * *
 * Slider Section
 * * * * * * * * * * * * * * */
.section-hard-soft {
  padding: 8rem 0;
}
.preview-hard-soft {
  margin-right: 14%;
  width: 460px;
  margin-left: 6%;
  position: relative;
}
.section-hard-soft .content {
  width: 480px;
}
.line-nav {
  margin: 40px 0;
  display: flex;
}
.line-nav a {
  border-bottom: 2px solid #eee;
  color: #bbb !important;
  font-weight: lighter;
  padding: 18px 40px;
  cursor: pointer;
  text-decoration: none;
  outline: 0 none;
  transition: .35s;
}
.line-nav a:first-child {
  padding-left: 0;
  padding-right: 60px;
}
.line-nav a.active {
  color: #46cdb4 !important;
  font-weight: bold;
  border-bottom-color: #46cdb4;
}
.line-nav a:hover {
  color: #000 !important;
  border-bottom-color: #000;
}
#preview_swiper .swiper-slide {
  padding-bottom: 3.3rem;
}
.swiper-pagination.swiper-pagination-bullets {
  text-align: left;
}
span.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #fff;
  border: 2px solid #000;
}
span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #46cdb4;
  border-color: #46cdb4;
}
figure.preview-hsa {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  transform: scale(0.9) translateX(34%);
  opacity: 0.3;
  transition: .4s;
}
figure.preview-hsa.active {
  position: relative;
  transform: scale(1);
  opacity: 1;
  z-index: 1;
}


/* * * * * * * * * * * * * * *
 * VOIP Header
 * * * * * * * * * * * * * * */
.voip-hero-wrap {
  bottom: 100px;
}
.hero-voip .overlay {
  background-color: #444;
  opacity: 0.46;
}

.voip-hero-wrap .content {
  /* width: 480px; */
}

/* * * * * * * * * * * * * * *
 * VOIP Packages
 * * * * * * * * * * * * * * */
.section-packages {
  padding: 120px 0;
}
.section-packages h3 {
  margin-bottom: 90px;
}
.package {
  position: relative;
  width: 25%;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  padding: 2.8rem;
  position: relative;
}
.package h4 {
  text-align: center;
  font-weight: 700;
  color: #000;
  margin-bottom: 1.8rem;
}
.package.popular {
  position: relative;
  box-shadow: 0 6px 35px rgba(0, 0, 0, 0.2);
  z-index: 1;
  transform: scale(1.05);
}
.package .amount {
  display: table;
  margin: 0 auto 2.2rem;
  position: relative;
}
.package .amount strong {
  color: #ffaa46;
  font-size: 3.55rem;
  font-weight: 600;
  line-height: 0.8;
  vertical-align: bottom;
  padding: 0 10px;
}
.package .amount em {
  display: table-cell;
  vertical-align: bottom;
  color: #5b6b82;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.05em;
}
.package.custom .amount em {
  display: table-row;
  width: 100%;
  clear: left;
  text-align: center;
}
.package .amount:before {
  content: 'From £';
  position: absolute;
  transform: translateX(-60px);
  font-size: 110%;
  font-family: sans-serif;
}

.package ul {
  margin: 0 0 40px;
  list-style: none;
  padding: 0;
}
.package li {
  color: #5b6b82;
  font-size: 14px;
  font-weight: 300;
  position: relative;
  padding-left: 35px;
  margin: 0 0 25px;
}
.package li:before {
  background: url(../img/icon-tick-green.png) no-repeat center;
  background-size: 8px auto;
  position: absolute;
  content: '';
  width: 18px;
  height: 18px;
  border: 1px solid #3ccf8e;
  top: 0;
  left: 0;
  border-radius: 50%;
}
.package.popular {
  box-shadow: 0 6px 35px rgba(0, 0, 0, 0.2);
  z-index: 1;
  transform: scale(1.05);
}
.package mark {
  color: #ffffff;
  font-family: Montserrat;
  font-size: 11px;
  font-weight: 300;  /* Text style for "Most Popul" */
  text-transform: uppercase;
  border-radius: 2px;
  background-color: #46cdb4;
  text-align: center;
  position: absolute;
  top: 1px;
  right: 1px;
  padding: 4px 12px 5px;
  letter-spacing: 1px;
}

.package .btn-theme, .package .btn-line {
  font-size: 90%;
  width: 100%;
  height: 3.1rem;
  max-width: 13rem;
}
.package .btn-line {
  color: #777;
}

/* * * * * * * * * * * * * * *
 * VOIP Packages
 * * * * * * * * * * * * * * */
.section-get-started {
  background-color: #eff7fa;
  padding: 6rem 0 7rem;
}
.section-get-started h3 {
  margin-bottom: 5rem;
}
.getstarted {
  width: 1035px;
  height: 157px;
  box-shadow: 0 53px 36px rgba(35, 76, 98, 0.06);
  background-color: #ffffff;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.getstarted:nth-child(2) {
  width: 943px;
}
.getstarted:nth-child(3) {
  width: 823px;
}
.getstarted > div {
  width: 329px;
  color: #333333;
  font-size: 100%;
  font-weight: 300;
  letter-spacing: -0.18px;
}
.getstarted figure {
  position: relative;
}
.getstarted figure img {
  width: 80px;
}
.getstarted:nth-child(1) figure {
  left: -90px;
}
.getstarted:nth-child(2) figure {
  left: -45px;
}
.getstarted i {
  display: inline-block;
  margin: 0 70px;
  width: 19px;
  height: 20px;
  background-color: #46cdb4;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}
.getstarted-list {
  position: relative;
}
.getstarted:last-child {
  margin-bottom: 0;
}
.getstarted-list:after {
  position: absolute;
  content: '';
  top: 75px;
  bottom: 75px;
  left: 50%;
  width: 1px;
  background: #aaa;
  margin-left: -125px;
}

/* * * * * * * * * * * * * * *
 * VOIP Benifits
 * * * * * * * * * * * * * * */
 div#benifits_swiper {
  padding: 0 2%;
}
.section-benifits h3 {
  margin-bottom: 3.3rem;
}
.section-benifits .swiper-slide {
  width: 15%;
  height: 16rem;
  border-radius: 8px;
  background-color: transparent;
  border: 1px solid #fff;
  display: inline-flex;
  margin: 5% 2.5%;
  padding: 50px 2.5% 30px;
  text-align: center;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.5s;
}
.section-benifits .swiper-slide p {
  color: #ffffff;
  font-size: 1vw;
  font-weight: 400;
  letter-spacing: -0.18px;
  line-height: 24px;
  margin: 0;
  position: relative;
  text-transform: uppercase;
  transition: 0.5s;
}
.section-benifits .swiper-slide p:before {
  content: '';
  width: 30px;
  height: 1px;
  background: #aaa;
  display: block;
  margin: 0 auto 30px;
}
.section-benifits .swiper-slide figure {
  height: 48px;
  position: relative;
}
.section-benifits .swiper-slide br {
  display: none;
}
.section-benifits .swiper-slide img {
  height: 100%;
  position: absolute;
  transform: translateX(-50%);
  transition: 0.5s;
}
.section-benifits .swiper-slide .img-blue {
  opacity: 0;
}
/* ..swiper-slide-active */
.section-benifits .swiper-slide:hover .img-blue {
  opacity: 1;
}
.section-benifits .swiper-slide:hover .img-white {
  opacity: 0;
}
.section-benifits .swiper-slide:hover {
  background-color: #fff;
  box-shadow: 0 43px 26px rgba(26, 45, 60, 0.33);
}
.section-benifits .swiper-slide:hover p {
  color: #3c445b;
}

.swiper-button-next,
.swiper-button-prev {
  background: url(../img/icon-arrow.png) no-repeat center;
  background-size: 15px auto;
}
.swiper-button-prev {
  transform: rotate(180deg);
}

/* * * * * * * * * * * * * * *
 * SIP Trunks Page
 * * * * * * * * * * * * * * */
.sip-hero-wrap {
  bottom: 45%;
  transform: translateY(50%);
}
.sip-hero-wrap .sub-content {
  border-top: 1px solid #fff;
  padding-top: 1.5rem;
  /* margin-top: 4rem; */
}
.sip-hero-wrap figure {
  border-right: 1px solid rgba(255,255,255, 0.5);
  display: inline-block;
  padding-right: 20px;
  margin-right: 15px;
}
.sip-hero-wrap .logo {
  width: 6.66rem;
}
.sip-hero-wrap h1 {
  font-size: 2.5rem;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.25;
  letter-spacing: -0.025em;
}
.sip-hero-wrap h4 {
  font-size: 2rem;
  line-height: 1.35;
  letter-spacing: 0.29px;
  font-weight: bold;
  padding-bottom:1rem;
  /* max-width: 13rem; */
}
.sip-hero-wrap p, .sip-hero-wrap ul {
  /* color: #ccc; */
  font-size: 0.95rem;
  line-height: 19px;
}
.sip-hero-wrap ul {
  padding: 0 0 0 19px;
}
.sip-hero-wrap li {
  margin-bottom: 10px;
}


/* * * * * * * * * * * * * * *
 * SIP Trunks Page
 * * * * * * * * * * * * * * */
.section-sip-work {
  padding: 120px 0 130px;
}
.section-sip-work h3 {
  margin-bottom: 3.3rem;
  font-size: 2.77rem;
}
.section-sip-work .key-points {
  width: 100%;
}
.section-sip-work .key-points {
  display: flex;
}
.section-sip-work .key-points li {
  width: 33.33%;
  padding: 10px 40px 30px;
  margin-bottom: 0;
}
.section-sip-work .key-points li:before {
  position: relative;
  margin: 0 auto 20px;
  transform: scale(0.75);
}
.section-sip-work .key-points li p {
  font-size: 90%;
}
.section-expand-business .content {
  max-width: 35rem;
}
.section-expand-business.section-image {
  padding: 7% 0 8%;
}


/* * * * * * * * * * * * * * *
 * SIP Trunks Page
 * * * * * * * * * * * * * * */
.section-comparison {
  padding: 120px 0 130px;
}
.section-comparison h3 {
  color: #333333;
  margin-bottom: 3.3rem;
  font-size: 2.77rem;
}
.table.table-comparison {
  width: 55rem;
  margin: 0 auto 3.3rem;
  box-shadow: 0 3px 16px rgba(141, 141, 141, 0.11);
  border-radius: 10px;
  background-color: #ffffff;
}
.table.table-comparison th {
  vertical-align: middle;
  font-size: 0.9rem;
}
.table.table-comparison th img {
  height: 1.44rem;
  margin: 10px 0;
  object-fit: contain;
  object-position: center;
}
.table.table-comparison th:first-child,
.table.table-comparison td:first-child {
  text-align: left;
  width: 300px;
  padding-left: 25px;
}
.table.table-comparison th:nth-child(2),
.table.table-comparison td:nth-child(2) {
  background: #fff5f5;
}
.table.table-comparison td {
  color: #555555;
  font-size: 0.8rem;
  padding-top: 16px;
  padding-bottom: 16px;
  vertical-align: middle;
}
.icon-check {
  display: inline-block;
  width: 1.1rem;
  height: 1.1rem;
  background-color: #d0d0d0;
  background-image: url(../img/icon-tick.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.6rem auto;
  border-radius: 50%;
}
.icon-check.active {
  background-color: #3ccf8e;
}


/* * * * * * * * * * * * * * *
 * SIP Trunks - Why Choose
 * * * * * * * * * * * * * * */
 .section-circled-info {
  padding: 120px 0 130px;
}
.section-circled-info h3 {
  margin-bottom: 3.3rem;
  font-size: 2.77rem;
}
.list-circled {
  display: flex;
  list-style: none;
  justify-content: space-around;
  padding: 0;
  margin: 0 0 3.3rem;
}
.list-circled li {
  width: 340px;
  height: 340px;
  border: 10px solid #fff;
  border-radius: 50%;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}
.list-circled li p {
  font-size: 90%;
  /* opacity: 0.6; */
  margin: 0 15px;
}
.list-circled li h4 {
  font-size: 1.4rem;
  padding: 0 15%;
  opacity: 0.85;
  margin-bottom: 1rem;
}


/* * * * * * * * * * * * * * * * * *
 * Hide blocks for particular pages
 * * * * * * * * * * * * * * * * * */
.page-template-page-voip .section-testimonial {
  background-color: #fff;
}
.page-template-page-voip .section-clients {
  background-color: #eff7fa;
}
.nav-contact .link-phone,
.page-template-page-sip-trunks .nav-contact .link-phone,
.page-template-page-3cx .nav-contact .link-phone {
  display: none;
}


@media only screen and (max-width: 1500px) {
  html {
    font-size: 16px;
  }
  .container {
    max-width: 80%;
  }
  h3 {
    font-size: 2.6rem;
  }
  .section-call-centre .content > div {
    width: 100%;
    padding-left: 10%;
  }
  .package h4 {
    font-size: 1.4rem;
  }

  .package li {
    font-size: 13px;
    padding-left: 35px;
    margin: 0 0 17px;
  }

  .getstarted-list {
    transform: scale(0.9);
  }
  .section-get-started h3 {
    margin-bottom: 1rem;
  }

  .voip-hero-wrap {
    /* padding: 0 10%; */
  }

  .sip-hero-wrap {
    width: 60rem;
  }
}


@media only screen and (max-width: 1200px) {
  html {
    font-size: 14px;
  }
  .home-hero-wrap .logo {
    width: 4rem;
  }

  .box-cloud .clouds p {
    width: 19%;
    height: 18%;
    font-size: 1vw;
  }
  .clouds-1 p:nth-child(1) {
    margin-top: 18.7%;
    margin-left: 23.1%;
  }
  .clouds-1 p:nth-child(2) {
    margin-top: 34.7%;
  }
  .clouds-1 p:nth-child(3) {
    margin-top: 62.8%;
  }
  .clouds-2 p:nth-child(1) {
    margin-top: 18.9%;
  }
  .clouds-2 p:nth-child(2) {
    margin-top: 36.8%;
    margin-left: 61.3%;
    width: 15%;
  }
  .clouds-2 p:nth-child(3) {
    margin-top: 63.4%;
  }
  .clouds-3 p:nth-child(1) {
    margin-top: 17.1%;
    margin-left: 56.7%;
    width: 12%;
    height: 12%;
  }
  .clouds-3 p:nth-child(2) {
    margin-top: 34.8%;
    margin-left: 33.7%;
    width: 15%;
  }
  .clouds-3 p:nth-child(3) {
    margin-top: 50.5%;
    margin-left: 68.6%;
    width: 13%;
    height: 13%;
  }
  .clouds-3 p:nth-child(4) {
    margin-top: 67%;
    margin-left: 32.4%;
  }

  .box-cloud .addon-image,
  .clouds-2 .addon-image {
    width: 32%;
  }

  .package {
    padding: 30px 20px 20px;
  }
  .package li {
    padding-left: 27px;
    margin: 0 0 12px;
  }
  .package mark {
    font-size: 10px;
    padding: 3px 10px 4px;
  }
  .section-packages h3 {
    margin-bottom: 3rem;
  }

  .getstarted-list {
    transform: none;
  }
  .getstarted {
    width: 100%;
  }
  .getstarted:nth-child(2) {
    width: 90%;
  }
  .getstarted:nth-child(3) {
    width: 80%;
  }
  .getstarted i {
    margin: 0 2rem;
    width: 16px;
    height: 16px;
  }
  .getstarted:nth-child(1) figure {
    left: -30px;
  }
  .getstarted:nth-child(2) figure {
    left: -15px;
  }
  .getstarted > div {
    width: 20rem;
  }
  .getstarted-list:after {
    margin-left: -7.2rem;
  }
  .section-get-started h3 {
    margin-bottom: 3rem;
  }
  .section-benifits .swiper-slide {
    width: 20%;
  }

  .table.table-comparison th:first-child, .table.table-comparison td:first-child {
    width: 240px;
  }
  .list-circled li {
    width: 250px;
    height: 250px;
    border: 4px solid #fff;
  }
}


@media only screen and (max-width: 991px) {
  html {
    font-size: 14px;
  }
  .box-cloud .content {
    padding-right: 10%;
    margin-bottom: 90px;
  }
  .box-cloud .content.order-1 {
    padding-right: 5%;
  }
  .container {
    max-width: 100%;
    padding: 0 30px;
  }
  .call-centre-image {
    display: none;
  }
  .section-call-centre .content,
  .key-points {
    width: 100%;
  }
  .section-chat .content {
    width: 50%;
    margin-left: 40%;
  }
  .box-chats .content {
    padding: 0 10%;
  }
  .section-benifits .swiper-slide {
    width: 27.33%;
    margin-left: 3.1%;
    margin-right: 3.1%;
  }

  .sip-hero-wrap .logo {
    width: 4rem;
  }
  .sip-hero-wrap {
    width: 100%;
    padding: 0 10%;
  }
  .sip-hero-wrap h4 {
    font-size: 1.3rem;
  }
  .section-sip-work .key-points {
    display: block;
  }
  .section-sip-work .key-points li {
    width: 100%;
    padding: 10px 20% 30px;
  }
  .section-sip-work .key-points li:before {
    margin: 0 auto 10px;
  }
  .table.table-comparison {
    width: 100%;
  }
  .list-circled li {
    width: 230px;
    height: 230px;
    border: 4px solid #fff;
    padding: 20px;
  }
  .section-benifits .swiper-slide p {
    font-size: 100%;
  }
}

@media only screen and (max-width: 767px) {
  #flexible_title {
    margin-bottom: 50px;
  }
  .container {
    padding: 0 25px;
  }
  .gradwell_logo {
    display: none !important;
  }
  h3, 
  .section-comparison h3,
  .section-sip-work h3,
  .section-circled-info h3 {
    font-size: 2rem;
  }
  .main-header {
    padding: 1.5rem 0;
  }
  .link-phone span, .main-header .btn-theme, .section-clouds:before, .box-cloud .clouds .cloud-image, .getstarted i,
  .box-cloud .clouds p, .preview-hard-soft, .home-hero-wrap p, .getstarted-list:after {
    display: none;
  } 
  .link-phone, .link-phone i {
    margin-right: 0;
  }

  .hero-wrap {
    width: 100%;
    bottom: 45%;
    transform: translateY(50%);
    padding: 0 20px;
  }
  .home-hero-wrap .logo {
    width: 2.5rem;
  }
  .home-hero-wrap h1 {
    font-size: 2rem;
    margin-left: 0;
    padding-left: 0;
    margin-bottom: 0;
    align-self: center;
    border-left: none !important;
  }
  .home-hero-wrap h4 {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.3;
  }
  .home-hero-wrap div.d-flex {
    display: block !important;
  }

  .box-cloud {
    position: relative;
  }
  .box-cloud .content {
    padding-right: 0;
    margin-bottom: 70px;
    width: 100%;
  }
  .box-cloud .clouds,
  .box-cloud .order-1 + .clouds {
    position: absolute;
    padding-left: 0;
    width: 100%;
    top: 0;
  }
  .box-cloud .content.order-1 {
    padding: 0;
  }
  .box-cloud .addon-image, .clouds-2 .addon-image {
    width: 7rem;
    margin-top: -20px;
    right: 0;
    margin-right: 0;
  }
  .box-cloud .content p {
    margin-bottom: 25px;
  }
  .section-hard-soft .content {
    width: 100%;
  }
  .section-chat .content {
    width: 80%;
    margin-left: 0%;
  }
  .section-clouds {
    padding-bottom: 0;
  }
  section.section-communicate {
    background-position: 0 0;
    padding: 5rem 0;
  }

  .section-call-centre .content > div {
    padding: 50px 20px;
  }
  .key-points li {
    padding-left: 4.4rem;
    margin-bottom: 2rem;
    padding-top: 3px;
  }
  .key-points li:before {
    background-size: 1rem auto;
    width: 3rem;
    height: 3rem;
  }
  .testimonial {
    width: 100%;
  }
  .testimonial-list {
    flex-wrap: wrap;
  }
  .testimonial p {
    margin-bottom: 1rem;
  }
  .testimonial:before {
    margin-bottom: .5rem;
  }
  .section-testimonial {
    padding: 60px 0;
  }

  .d-flex.box-chats {
    display: block !important;
  }
  .box-chats > div {
    width: 100%;
  }
  .box-chats .content {
    padding: 0;
  }
  .box-chats h3 {
    margin-bottom: 10px;
  }

  .voip-hero-wrap .content {
    width: 100%;
  }

  .d-flex.packages-list {
    flex-wrap: wrap;
  }
  .package {
    padding: 30px 20px 20px;
    margin-bottom: 15px;
    width: 100%;
  }

  .section-packages {
    padding: 50px 0;
  }
  .getstarted:nth-child(2),
  .getstarted:nth-child(3) {
    width: 100%;
  }
  .getstarted:nth-child(1) figure,
  .getstarted:nth-child(2) figure,
  .getstarted:nth-child(3) figure {
    left: 0;
  }
  .getstarted figure img {
    width: 60px;
  }
  .getstarted > div {
    width: 80%;
    margin-left: 18px;
  }

  .section-benifits .swiper-slide {
    width: 44%;
    padding: 40px 10px;
  }
  .table.table-comparison th:first-child, .table.table-comparison td:first-child {
    width: auto;
    padding-left: 14px;
  }

  .section-sip-work,
  .section-comparison,
  .section-circled-info {
    padding: 50px 0;
  }
  .section-sip-work .key-points li:before {
    transform: scale(1);
  }
  .section-sip-work .key-points li {
    padding: 15px;
  }
  .section-sip-work h3 {
    margin-bottom: 15px;
  }
  .list-circled {
    display: block;
    margin-bottom: 1rem;
  }
  .list-circled li {
    width: 280px;
    height: 280px;
    padding: 25px;
    margin-bottom: 30px;
  }

  .sip-hero-wrap > .content.d-flex {
    display: block !important;
  }
  .sip-hero-wrap .sub-content {
    border-left: 0 none;
    padding-left: 0;
    margin-left: 0;
    padding-top: 1.5rem;
  }
  .sip-hero-wrap h4,
  .sip-hero-wrap p,
  .sip-hero-wrap ul {
    display: none;
  }
}


@media only screen and (max-width: 575px) {
  .section-benifits .swiper-slide {
    width: 60%;
    padding: 40px 25px;
    margin: 20px 20%;
  }
}

select {
  -webkit-appearance: menulist-button;
  color: white;
}
select:invalid {
  color: green;
}
.wpcf7-select.form-control {  
  color: #999;
  height: calc(3.5em + .75rem + 2px);
  padding: 0;
}
.wpcf7-select.form-control:valid {
  color: #fff;
}
select option {
  margin: 40px;
  background: rgba(0, 0, 0, 0.3);
  color: #495057;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
}
.section-welcome {
  padding: 5rem 0;
  background-size: cover;
  background-position: center;
}
.section-welcome .container {
  position: relative;
  z-index: 1;
}
.section-welcome h3 {
  margin-bottom: 3.5rem;
}
.section-welcome .col-welcome {
  margin-bottom: 3rem;
}
.section-welcome .col-welcome figure {
  width: 2.5rem;
  min-width: 2.5rem;
  /* margin-right: 1rem; */
}
.section-welcome .col-welcome p {
  font-size: 1rem;
  margin: 0;
  text-align: left;
  /* letter-spacing: 0.05rem; */
}
.col-welcome p {
  padding-right: 2rem;
  padding-left: 2rem;
}
#empty_space {
  height: 24vw;
  margin-bottom: 7vw;
}
#empty_space2 {
  height: 20vw;
  margin-bottom: 7vw;
}

@media only screen and (max-width: 768px) {

#three_boxes_accessible {
background-size: 170% !important;
}
#empty_space {    
  height: 63vw;
  margin-bottom: 0;
}
#empty_space2 {
  height: 40vw;
  margin-bottom: 7vw;
}
}
/* .btn-row{
    transform:translateY(-20px);
    padding-top:30px;
    padding-bottom:30px;
  } */
@media only screen and (min-width: 992px) {
  .sip-trunk-img{
    transform: translateY(-50px);
  }
  /* .btn-row{
    padding-top:0px;
    transform:translateY(-30px);
  } */
  
}
/* @media only screen and (min-width: 1200px) {
  .btn-row{
    transform:translateY(-140px);
  }
} */

.section-sip-work ul.dashed {
    list-style: none;
    padding-left: 0;
}

.section-sip-work ul.dashed > li {
    margin-left: 15px;  
}

/* Prevent nested li's from getting messed up */
.section-sip-work ul.dashed > li::before {
    content: "-";
    margin-left: -15px;
}

.bottom-btn {
  position: absolute;
  bottom: 45px;
  left: 0;
  right: 0;
}

.show_block, .show_block p, .sip-hero-wrap h4, .sip-hero-wrap p, .sip-hero-wrap ul {
  display: block;
}

.swiper-slide.client-brand a, .swiper-slide.client-brand a img {
  display: block;
  width: 100%;
  height: auto;
}

.swiper-slide.client-brand {
  width: 200px;
  margin: 0 15px;
  height: 100px;
  background: transparent;
  /* display: inline-flex; */
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  overflow:hidden;
}

.swiper-slide.client-brand a img {
  border: none;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  object-fit: cover;
  object-position: top center;
}

.section__brands .logo-section .swiper-wrapper figure, .section__brands .logo-section .swiper-wrapper figure a img, .section__brands .logo-section .swiper-wrapper figure a {
  line-height: 100px;
  display: inline-block;
}

.section__brands .logo-section .swiper-wrapper figure,
.section__brands .logo-section .swiper-wrapper figure a img,
.section__brands .logo-section .swiper-wrapper figure a{
    line-height:100px;
    display:inline-block;
}

.swiper-wrapper{-webkit-transition-timing-function:linear!important; -o-transition-timing-function:linear!important; transition-timing-function:linear!important; }

.section__brands .logo-section .swiper-wrapper figure, .section__brands .logo-section .swiper-wrapper figure a img, .section__brands .logo-section .swiper-wrapper figure a {
  line-height: 100px;
  display: inline-block;
}


.mt-3 {
  margin-top: 3rem;
}

ul {
  padding-left: 20px;
  list-style-type: none;
}

@media only screen and (min-width: 1500px) {
.clouds-1 p:nth-child(1) {
  margin-top: 22.9%;
  margin-left: 25.3%;
}
.clouds-1 p:nth-child(2) {
  margin-top: 39.1%;
  margin-left: 64.3%;
}
.clouds-1 p:nth-child(3) {
  margin-top: 67.8%;
  margin-left: 28.4%;
}

.clouds-2 p:nth-child(1) {
  margin-top: 22.9%;
  margin-left: 27.5%;
}
.clouds-2 p:nth-child(2) {
  margin-top: 40.7%;
  margin-left: 63.3%;
  width: 5rem;
}
.clouds-2 p:nth-child(3) {
  margin-top: 67.4%;
  margin-left: 29.4%;
}
}

.line_bottom_length {
  display: -ms-flexbox!important;
  display: flex!important;
  height: 100%;
  
  border-bottom: 0.2rem solid #fff;
  padding-bottom: 1.2rem;
  margin-bottom: 1.7rem;
}

.empty_space_compare {
  height: 4rem;
}


#four_boxes_accessible {
  background-image: url('/wp-content/uploads/2019/07/test3.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 768px) {
  #four_boxes_accessible {
    background-size: 150%;

  }}
  
  .show_important {
    display: inline-block !important;
  }
  .fixed {

  }

  .sticky {
    width: 100%;
    background-color: #446471;
    height: 80px;
    position: fixed;
    top: 0px;
    z-index: 6;
    opacity: 0;
    transition: all 0.5s ease;
  }



  
@media only screen and (max-width: 768px) {
  .sticky.fixed {
    opacity: 1 !important;
    }
}