@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}
body,
span,
p,
li,
a {
  font-family: "Inter", serif;
  line-height: 1.4;
  margin: 0;
  padding: 0;
  /* color: #2a2b32; */
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.4;
  margin: 0;
  padding: 0;
  width: 100%;
}
img {
  max-width: 100%;
  height: auto;
}
ol,
ul {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
span {
  display: block;
}
a {
  text-decoration: none;
  color: #3e5fff;
}
a:hover {
  color: #4d4e56;
}
@media only screen and (min-width: 1400px) {
  .container {
    max-width: 1140px;
  }
}
.default_btn {
  width: 100%;
  height: 100%;
  display: inline-flex;
  gap: 15px;
  flex-wrap: wrap;
}
.default_cta {
  padding: 11px 28px;
  background: #e02f1f;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border-radius: 50px;
  line-height: 1.4;
  font-family: "Inter", serif;
  transition: all 0.4s;
  text-align: center;
  display: inline-block;
  text-decoration: none;
  border: 2px solid transparent;
}
.banner_btn {
  padding: 11px 28px;
  background: #3e5fff;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border-radius: 50px;
  border: 2px solid transparent;
  line-height: 1.4;
  font-family: "Inter", serif;
  transition: all 0.4s;
  text-align: center;
  display: inline-block;
  text-decoration: none;
}
.btn-primary {
  background-color: #3e5fff;
}
.default_cta:hover {
  border-color: #ec6255;
  background: #ec6255;
  color: #fff;
}
.banner_btn:hover {
  background-color: #ec6255 !important;
  color: #fff;
}
.default_cta.border_btn {
  background: transparent;
  border-color: #3e5fff;
  color: #3e5fff;
}
.default_cta.border_btn:hover {
  background: #3e5fff;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .default_cta, .banner_btn {
    width: 100%;
  }
}
/*===============================================
= End Default CSS
============================================*/
/*===============================================
= Section Padding CSS Start
================================================*/
.section_padding {
  padding: 100px 0;
}
.section_padding_small {
  padding: 64px 0px;
}
@media only screen and (max-width: 1024px) {
  .section_padding {
    padding: 80px 0;
  }
  .section_padding_small {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 991px) {
  .section_padding {
    padding: 60px 0;
  }
  .section_padding_small {
    padding: 45px 0;
  }
}
@media only screen and (max-width: 767px) {
  .section_padding {
    padding: 40px 0;
  }
  .section_padding_small {
    padding: 40px 0;
  }
}
/*===============================================
= Section Padding CSS End
================================================*/
/*===============================================
= start Header CSS
============================================*/
.home_page header.header {
  position: fixed !important;
  top: 0px;
  width: 100%;
  animation: headerUpper 0.5s linear;
  /*    transition: all .5s;*/
  transform: translateY(0px);
}
.header.fixed {
  position: fixed !important;
  top: 10px;
  max-width: inherit;
  width: 100%;
  z-index: 11;
  animation: headerDown 0.5s linear;
}
.header .container {
  max-width: 1600px;
  margin: 0 auto;
}
.header .inner-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  transition: all 0.5s linear;
}
.header.fixed .inner-header {
  background-color: #fff;
  border-radius: 50px;
  padding: 15px 20px;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.2);
}
@keyframes headerDown {
  0% {
    transform: translateY(-100px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes headerUpper {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-100px);
  }
}

.navbar {
  width: 100%;
  justify-content: end;
}
.header-logo a {
  color: #000;
  font-weight: 800;
  font-size: 24px;
}
.header-menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 20px;
}
.home_page .header-menu ul li a {
  color: #fff;
}
.header-menu ul li a {
  color: #000;
  font-weight: 400;
  font-size: 14px;
}
span.nav-toggle {
  display: none;
  cursor: pointer;
}
span.nav-toggle .toggle-bar {
  width: 30px;
  height: 4px;
  display: block;
  margin: 4px 0;
  border-radius: 50px;
  background-color: #000;
  transition: all 0.5s;
}
span.nav-toggle.active #first-bar {
  transform: rotate(-45deg) translate(-5px, 5px);
}
span.nav-toggle.active #second-bar {
  display: none;
}
span.nav-toggle.active #third-bar {
  transform: rotate(45deg) translate(-1px, -0.5px);
}
.header-btn {
  width: 100%;
  max-width: 150px;
}
.header-btn a.default_cta {
  padding: 7px 24px;
  font-size: 12px;
}
.header-btn ul {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 10px;
}
.header-btn ul li a {
  color: #fff;
  font-weight: 400;
  font-size: 14px;
}
.header.fixed .header-btn ul li a,
.header.fixed .header-menu ul li a {
  color: #000;
}
/* .fixed_header, .fixed .simple_heder{
    display: none;
} */
.fixed .fixed_header {
  display: block;
}
.header-menu .navbar .offcanvas-body ul li[class*="current-menu-"] > a {
  color: black;
}

@media only screen and (max-width: 991px) {
  span.nav-toggle {
    display: block;
  }
  .inner-header {
    position: relative;
  }
  .header-menu {
    order: 1;
  }
  .header-menu ul {
    position: absolute;
    flex-direction: column;
    align-items: start;
    width: 200px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.2);
    top: 90%;
    right: -100%;
    gap: 2px;
    overflow: hidden;
    transition: all 0.5s;
    display: none;
  }
  .header-menu.active ul {
    right: 0;
    display: block;
  }
  .header-menu ul li {
    width: 100%;
  }
  .header-menu ul li a {
    width: 100%;
    padding: 10px 20px;
  }
  .header-menu ul li a:hover,
  .header-menu ul li a.current-page {
    background: #000;
    color: #fff;
  }
  .header-btn {
    width: 100%;
    text-align: right;
    padding-right: 20px;
  }
  .inner-header {
    padding: 8px 10px;
  }
  .navbar {
    flex-direction: row-reverse;
  }
}
@media only screen and (max-width: 575.5px) {
  .offcanvas.offcanvas-end {
    width: 250px;
  }
}
/*.inside-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    transition: all .5s;
    animation: headerUpper .5s;
}
.inside-header.fixed {
    position: fixed !important;
    top: 10px;
    left: 20px;
    max-width: calc(100% - 40px);
    width: 100%;
    z-index: 11;
    background-color: #fff;
    border-radius: 50px;
    padding: 8px 20px;
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.2);
    animation: headerDown .5s;
}
@keyframes headerDown {
    0%{ 
        transform: translateY(-100px);
    }
    100%{ 
        transform: translateY(0px);
    }
}
@keyframes headerUpper {
    0%{ 
        transform: translateY(0px);
    }
    100%{ 
        transform: translateY(-100px);
    }
}
.lp_header {
    padding: 15px 0;
    position: absolute;
    width: 100%;
    z-index: 9;
}
.header_btn {
    text-align: right;
}
.header_btn .lp_default_btn {
    padding: 7px 24px;
}
@media only screen and (max-width: 767px) {
    .header_btn .lp_default_btn {
        padding: 6px 15px;
    }
}
@media only screen and (max-width: 575px) {

    .header_btn .lp_default_btn span,
    .lp_default_btn span {
        display: none;
    }
}
@media only screen and (max-width: 480px) {
    .lp_default_btn,
    .header_btn .lp_default_btn {
        padding: 8px 18px;
        font-size: 16px;
    }
}*/
/*===============================================
= End Header CSS
============================================*/
/*===============================================
= Banner Css Start
================================================*/
.banner_section {
  background-color: #0f1016;
}
.banner_content * {
  color: #fff;
}
.banner_content p span {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  padding-bottom: 16px;
}
.banner_content h1 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.3;
  padding-bottom: 20px;
}
.banner_content h1 span {
  color: #6b90fa;
}
ul.banner_list {
  padding-bottom: 20px;
}
.banner_list li {
  position: relative;
  padding-left: 24px;
  padding-bottom: 10px;
}
.banner_list li::before {
  position: absolute;
  content: "";
  top: 4px;
  left: 0;
  width: 16px;
  height: 16px;
  background-image: url("../../../public/images/white-check-icon.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.vpn_offer {
  display: flex;
  align-items: center;
  column-gap: 10px;
  padding-top: 15px;
}
.vpn_offer p {
  font-size: 12px;
}
.banner_image {
  width: 100%;
  height: 100%;
  text-align: center;
}
.banner_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 1199px) {
  .banner_content h1 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .banner_section {
    padding-top: 80px;
  }
  .banner_content h1 {
    font-size: 36px;
  }
  .banner_content p span {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .banner_content h1 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 575px) {
}
/*===============================================
= Banner Css End
================================================*/
/*===============================================
= About Css Start
================================================*/
.about_heading h2 {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.256px;
  line-height: 1.3;
  color: #2a2b32;
  padding-bottom: 16px;
}
.about_title p {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.5;
  color: #2a2b32;
}
@media only screen and (max-width: 1199px) {
  .about_heading h2 {
    font-size: 38px;
  }
  .about_title p {
    font-size: 24px;
  }
}
@media only screen and (max-width: 1024px) {
  .about_heading h2 {
    font-size: 34px;
  }
  .about_title p {
    font-size: 22px;
  }
}
@media only screen and (max-width: 991px) {
  .about_heading h2 {
    font-size: 30px;
  }
  .about_title p {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .box_title h2 {
    padding: 0;
  }
  .about_heading h2 {
    font-size: 28px;
    /* padding: 0; */
  }
  .about_title h2{
    padding-bottom: 16px;
  }
  .about_title p {
    font-size: 16px;
  }
}
/*===============================================
= About Css End
================================================*/
/*===============================================
= Why Css Start
================================================*/
.why_section {
  padding-bottom: 64px;
}
.row_flex,
.why_title {
  padding-left: 40px;
}
.why_title h2 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
}
.accordion_images {
  position: relative;
}
.accordion_images img {
  opacity: 0;
  transition: 0.3s;
  width: 555px;
  aspect-ratio: 1;
}
.accordion_images img:not(:first-child) {
  position: absolute;
  left: 0;
  top: 0;
}
.accordion_images img.active {
  opacity: 1;
}
.accordion {
  width: 100%;
  margin-top: 24px;
  border-left: 2px solid #6c6d75;
  background-color: #fff;
  display: inline-block;
}
.accordion.accordion_active {
  border-left-color: #3e5fff;
}
.accordion_intro {
  position: relative;
  padding-left: 24px;
  cursor: pointer;
}
.accordion_intro h4 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  color: #6c6d75;
}
.accordion.accordion_active h4 {
  color: #2a2b32;
}
.accordion_content {
  padding-top: 15px;
  max-height: 0;
  will-change: max-height;
  transition: all 0.25s ease-out;
  opacity: 0;
  display: none;
}
.accordion_active .accordion_content {
  padding-left: 24px;
  opacity: 1;
  display: inline-block;
}
.accordion_content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #4d4e56;
}
.accordion_active .accordion_intro {
  pointer-events: none;
}
@media only screen and (max-width: 1366px) {
  .row_flex,
  .why_title {
    padding-left: 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .row_flex,
  .why_title {
    padding-left: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .why_section {
    padding-bottom: 50px;
}
  .row_flex,
  .why_title {
    padding-left: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .why_section {
    padding-bottom: 45px;
  }
  .accordion_intro h4 {
    font-size: 18px;
  }
  .row_flex,
  .why_title {
    padding-left: 0px;
  }
}
@media only screen and (max-width: 767px){
  .why_section {
    padding-bottom: 40px;
}
}
/*===============================================
= Why Css End
================================================*/
/*===============================================
= Devices Css Start
================================================*/
.common_space {
  width: 100%;
  max-width: 758px;
  margin: 0 auto;
  padding-bottom: 40px;
}
.devices_slide a {
  text-align: center;
  padding: 16px 5px 8px;
  display: block;
  border-radius: 5px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.4s;
}
.devices_slide a:hover {
  border-color: #3e5fff;
}
.devices_slide a img {
  margin: 0 auto 10px;
}
.slick-next,
.slick-prev {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  border: 1px solid #000000;
  background: #fff;
  z-index: 1;
}
.slick-next:before,
.slick-prev:before {
  content: "" !important;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 1;
  background-image: url("../../../public/images/right-icon.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px;
  opacity: 1 !important;
}
.slick-next.slick-disabled,
.slick-prev.slick-disabled {
  opacity: 0.25;
}
.slick-prev:before {
  transform: rotate(180deg);
}
@media only screen and (max-width: 767px) {
  .common_space {
    padding-bottom: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .slick-prev {
    left: -5px;
  }
  .slick-next {
    right: -5px;
  }
}
/*===============================================
= Devices Css End
================================================*/
/*===============================================
= Box Css Start
================================================*/
.box_title {
  max-width: 710px;
}
.box_main_wrap {
  padding: 24px;
  border: 1px solid #e2e2e4;
  border-radius: 20px;
  height: 100%;
  background-color: #fff;
}
.box_content img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.box_content h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
  padding-bottom: 15px;
  padding-top: 20px;
}
.box_content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
@media only screen and (max-width: 991px) {
  .box_col:not(:last-of-type) {
    margin-bottom: 30px;
  }
  .box_main_wrap {
    padding: 18px;
  }
  .box_content h3 {
    font-size: 20px;
  }
}
/*===============================================
= Box Css End
================================================*/
/*===============================================
= Level Css Start
================================================*/
.level_content img {
  width: 32px;
  height: 32px;
}
.level_content h3 {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
  padding-bottom: 15px;
  padding-top: 20px;
}
.level_content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
@media only screen and (max-width: 991px) {
  .level_content h3 {
    font-size: 20px;
  }
}
/*===============================================
= Level Css End
================================================*/
/*===============================================
= One Stop Css Start
================================================*/
.one_stop_bg {
  background-color: #f3f7fc;
  border-radius: 20px;
}
.one_stop_title {
  padding: 40px;
}
.one_stop_title .default_btn {
  padding-top: 20px;
}
.one_stop_image img {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 991px) {
  .one_stop_title {
    padding: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .one_stop_title {
    padding: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .one_stop_bg {
    border-radius: 0px;
  }
}
/*===============================================
= One Stop Css End
================================================*/
/*===============================================
= Review Css Start
================================================*/
nav.user_tab_main {
  margin-bottom: 40px;
}
.user_tab_main .nav-tabs {
  border-bottom: 0;
}
.user_tab_main .nav-tabs .nav-link {
  color: #6c6d75;
  font-size: 14px;
  font-weight: 500;
  width: 100%;
  max-width: 145px;
  border: 0;
  border-bottom: 2px solid transparent;
}
.user_tab_main .nav-tabs .nav-link.active {
  border-color: #3e5fff;
  color: #3e5fff !important;
}
.user_tab_main .nav-tabs .nav-link:hover {
  background-color: #f3f7fc;
  color: initial;
}
.user_content {
  text-align: center;
}
.user_content img {
  width: 100%;
  max-width: 80px;
  margin-bottom: 20px;
}
.user_content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #4d4e56;
}
.reviewer_name {
  padding-top: 20px;
}
.reviewer_name p {
  font-weight: 500;
}
.reviewer_name p span {
  color: #6c6d75;
  font-size: 14px;
  font-weight: 400;
}
.user_col:not(:last-of-type) {
  padding-bottom: 24px;
}
.user_review_main {
  border: 1px solid #e2e2e4;
  padding: 24px;
  border-radius: 12px;
  transition: 0.4s;
  height: 100%;
  position: relative;
  padding-bottom: 70px;
}
.user_review_main:hover {
  border-color: #3e5fff;
}
.user_review_name {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}
.user_review_name img {
  width: 24px;
  aspect-ratio: 1;
}
.user_review_inner {
  display: flex;
  align-items: center;
  column-gap: 8px;
}
.user_review_inner img {
  width: 32px;
  aspect-ratio: 1;
  object-fit: cover;
}
.user_img p {
  font-weight: 600;
}
.user_img p span {
  font-size: 14px;
  color: #4d4e56;
  font-weight: 400;
}
.review_bottom {
  position: absolute;
  bottom: 24px;
  left: auto;
}
.review_bottom p {
  color: #4d4e56;
  font-size: 14px;
}
.video_review_main {
  border: 1px solid #e2e2e4;
  padding: 24px;
  border-radius: 12px;
  transition: 0.4s;
  height: 100%;
  position: relative;
  padding-bottom: 70px;
}
.video_review_content {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
  column-gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid #c8c9cb;
}
.video_review_content img {
  border-radius: 100%;
  width: 64px;
  aspect-ratio: 1;
  object-fit: cover;
}
.video_review_name h3 {
  font-size: 20px;
  font-weight: 500;
}
.video_review_name p {
  font-size: 14px;
  font-weight: 400;
}
.video_review_main p {
  font-size: 16px;
  line-height: 1.5;
}
.video_review_bottom {
  position: absolute;
  bottom: 24px;
  left: auto;
}
.video_review_bottom p {
  color: #3c3d44;
  font-weight: 600;
}
.featured_img_main {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}
.award_main {
  text-align: center;
}
.award_main img {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1;
  object-fit: cover;
  padding-bottom: 20px;
}
.award_main p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
.award_main span {
  color: #4d4e56;
  font-weight: 400;
  padding-top: 15px;
}
@media only screen and (max-width: 991px) {
  .featured_img_main {
    grid-template-columns: repeat(4, 1fr);
  }
  .award-col:not(:last-of-type) {
    padding-bottom: 24px;
  }
}
@media only screen and (max-width: 767px) and (min-width: 576px) {
  .award-col:nth-child(3) {
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .featured_img_main {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .tech_col:not(:last-of-type) {
    padding-bottom: 40px;
  }
}
@media only screen and (max-width: 575px) {
  .featured_img_main {
    gap: 10px;
  }
}
/*===============================================
= Review Css End
================================================*/
/*===============================================
= Savings Plan Css Start
================================================*/
.savings-bg {
  background: linear-gradient(135deg, #0d0f1c, #1b2a4b, #0b2344);
  padding: 64px;
  border-radius: 25px;
}
.savings_main {
  text-align: center;
  color: #fff;
}
.savings_main h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  padding-bottom: 20px;
}
.savings_heading h2 {
  color: #fff;
  padding-bottom: 25px;
}
.savings_main .vpn_offer {
  padding-bottom: 25px;
}
.savings_main .vpn_offer p {
  color: #fff;
}
.savings_main p {
  font-size: 12px;
}
.savings_main p span,
.savings_main p span a {
  color: #fff;
}
.savings_main p span a {
  text-decoration: underline;
  font-weight: 600;
}
@media only screen and (max-width: 1600px) {
}
@media only screen and (max-width: 1366px) {
}
@media only screen and (max-width: 1199px) {
}
@media only screen and (max-width: 1024px) {
  .savings-bg {
    padding: 55px;
  }
}
@media only screen and (max-width: 991px) {
  .savings-bg {
    padding: 45px;
  }
}
@media only screen and (max-width: 767px) {
  .savings-bg {
    padding: 35px;
  }
}
@media only screen and (max-width: 575px) {
  .savings-bg {
    padding: 30px;
  }
}
/*===============================================
= Savings Plan Css End
================================================*/
/*===============================================
= FAQ Css Start
================================================*/
.faq_section {
  background-color: #f7f7f8;
}
.faq_main {
  margin: 0 auto;
  width: 100%;
  max-width: 768px;
}
.advantages_faq_cnt .faqs_content_area:last-child {
  margin: 0;
}
.faqs_content_area .faqs_desctiptiion {
  display: none;
}
.faqs_content_area {
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 15px;
  border: 1px solid #e2e2e4;
  padding: 24px 44px 24px 32px;
}
.faqs_content_area h3 {
  margin-bottom: 0px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  width: 100%;
  color: #2a2b32;
  text-align: left;
  border: none;
  position: relative;
  cursor: pointer;
}
.faqs_content_area h3:before {
  content: "\f078";
  position: absolute;
  font-family: "Font Awesome 5 Free";
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #003267;
  font-weight: 900;
  transition: all 0.4s;
}
.faqs_content_area.active h3:before {
  content: "\f077";
}
.faqs_content_area .faqs_desctiptiion {
  padding-top: 20px;
}
.faqs_desctiptiion p {
  color: #4d4e56;
}
.faqs_desctiptiion p:not(:last-of-type) {
  padding-bottom: 20px;
}
@media only screen and (max-width: 991px) {
  .faqs_content_area h3 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .faqs_content_area::before {
    left: 0;
  }
  .faqs_content_area {
    font-size: 16px;
  }
}
@media only screen and (max-width: 575px) {
  .faqs_content_area {
    padding: 18px 32px 18px 20px;
  }
}
/*===============================================
= FAQ Css End
================================================*/
/*===============================================
= Footer Css Start
================================================*/
footer.footer_section {
  background-color: #151823;
}
p.footer_title {
  color: #f7f7f8;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
ul.social_icon {
  display: flex;
  column-gap: 16px;
  padding-top: 10px;
}
.social_icon img {
  width: 32px;
  aspect-ratio: 1;
  display: block;
}
.footer_devices .devices_slide img {
  filter: brightness(0) saturate(100%) invert(92%) sepia(100%) saturate(0%)
    hue-rotate(71deg) brightness(105%) contrast(102%);
}
.footer_devices .devices_slide p {
  color: #ffffff;
}
hr.ho_border {
  color: #b1b1b4;
  margin: 30px 0;
}
.footer_menu p {
  padding-bottom: 20px;
}
.footer_menu ul {
  padding-bottom: 40px;
}
.footer_menu ul li {
  padding-bottom: 15px;
}
.footer_menu ul li a {
  color: #c8c9cb;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}
.copy_right_sec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 50px;
  flex-wrap: wrap;
  gap: 20px;
}
.copy_right_left {
  gap: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.copy_right_left p {
  font-size: 12px;
  color: #b1b1b4;
  font-weight: 500;
}
.copy_right_left a {
  color: inherit;
}
.download_from {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 12px;
}
@media only screen and (max-width: 767px){
  .copy_right_sec{
    padding: 0;
    justify-content: center;
  }
  ul.social_icon, .download_from{
    justify-content: center;
  }
  p.footer_title{
    text-align: center;
  }
}
@media only screen and (max-width: 575px) {
  .copy_right_sec{
    justify-content: center;
  }
  .footer_social {
    text-align: center;
  }
  ul.social_icon {
    justify-content: center;
  }
}
@media only screen and (max-width: 360px) {
  .download_from img:nth-child(2) {
    margin-top: 10px;
  }
}

/*===============================================
= Footer Css End
================================================*/
/*===============================================
= Pricing Css End
================================================*/

/*===============================================
= Instructions Css Start
================================================*/
.instructions-section {
  padding: 64px 0;
}
.app-img {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 12px;
  margin-top: 12px;
}
.app-img li a img {
  width: 100%;
}
.app-img li a {
  display: inline-block;
  vertical-align: middle;
}
.list-group .list-group-item {
  padding: 16px;
  line-height: 1.5;
}
.list-group .list-group-item p {
  margin-top: 6px;
  line-height: 1.5;
}
.section-title {
  padding-bottom: 20px;
}
.section-title h2 {
  line-height: 1.4;
  font-size: 28px;
  font-weight: 600;
}
.section-title ~ .list-group ~  .section-title {
  margin-top: 32px;
}

@media only screen and (max-width: 1024px){
  .instructions-section {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 991px){
  .instructions-section {
    padding: 45px 0;
  }
}
@media only screen and (max-width: 767px){
  .section-title ~ .list-group ~  .section-title {
    margin-top: 20px;
  }
  .instructions-section {
    padding: 40px 0;
  }
  .section-title h2{
    font-size: 22px;
  }
}

.pricing-table {
  background-color: #f7f7f8;
}
.pricing-table {
  width: 100%;
  padding-bottom: 0;
  border-spacing: 20px;
  border-collapse: separate;
}
.pricing-table h3 {
  color: #2a2b32;
  font-size: 20px;
  font-weight: 500;
}
.pricing-table td {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  text-align: left;
  vertical-align: top;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.pricing-table td.popular {
  border: 2px solid #4a4eff;
}
.badge {
  background-color: #fcefee;
  color: #9e1c10;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 10px;
}
p.clr-wrap {
  color: #f16b6b;
  font-weight: 600;
}
.popular-label {
  background-color: #4a4eff;
  color: #fff;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
  display: inline-block;
}
.price {
  font-size: 32px;
  font-weight: 700;
  margin: 10px 0;
  color: #2a2b32;
}
p.small-txt {
  font-size: 12px;
  color: #6c6d75;
}
.discounted-price {
  text-decoration: line-through;
  color: #888;
}
.pricing-btn.white-button {
  width: 100%;
}
.button {
  display: inline-block;
  margin: 15px 0 0;
  padding: 12px 20px;
  border: 1px solid #4a4eff;
  background-color: #4a4eff;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  width: -webkit-fill-available;
  text-align: center;
  transition: all 0.5s;
}
.button:hover {
  background-color: transparent;
  border: 1px solid #4a4eff;
  color: #4a4eff;
}
.white-button .button {
  background-color: transparent;
  border: 1px solid #4a4eff;
  color: #4a4eff;
}
.white-button .button:hover {
  background-color: #4a4eff;
  color: #fff;
}
.badge-list,
.features {
  list-style: none;
  padding: 0;
  text-align: left;
  margin: 15px 0;
}
.badge-list li,
.features li {
  margin-bottom: 26px;
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  line-height: 1.4;
  color: #2a2b32;
}
.badge-list li::before,
.features li::before {
  position: absolute;
  content: "";
  top: 0px;
  left: 0px;
  background-image: url("../../../public/images/check-icon.svg");
  width: 14px;
  height: 14px;
  background-position: left;
  background-repeat: no-repeat;
  background-size: contain;
}
.badge-list li {
  font-size: 12px !important;
  color: #6c6d75 !important;
}
.badge-list li::before {
  background-image: url("../../../public/images/badge-icon.svg");
}
.feature-txt {
  font-size: 15px;
  color: #3e5fff;
}
.pricing-box {
  border: 1px solid #e2e2e4;
  height: 100%;
  padding: 20px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-between;
  flex-direction: column;
}
.pricing-box.high-badge {
  position: relative;
  border: 2px solid #3e5fff;
  background: #fff;
}
.pricing-box.high-badge::before {
  position: absolute;
  content: "Most Popular";
  top: 10px;
  transform: translateY(-100%);
  width: calc(100% + 4px);
  text-align: center;
  background-color: #3e5fff;
  color: #fff;
  padding: 10px 0 16px;
  left: -2px;
  border-radius: 12px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  border: 2px solid #3e5fff;
  /*		    z-index: -11;*/
}
.pricing-table select {
  min-width: 230px;
  width: auto;
  padding: 14px 10px;
  border-radius: 12px;
  outline: none;
}
.pricing-table form {
  margin-bottom: 80px;
}
.btn-wrap {
  text-align: center;
  margin-top: 16px;
}
.btn-wrap .button {
  width: fit-content;
  margin-bottom: 0px;
}
.btn-wrap img {
  width: 18px;
  height: 18px;
}
.btn-wrap a:hover img {
  filter: brightness(0) invert(1);
}
@media only screen and (max-width: 1440px) {
  .section-padding {
    padding: 80px 0px;
  }
}
@media only screen and (max-width: 1024px) {
  .section-padding {
    padding: 60px 0px;
  }
}
@media only screen and (max-width: 767px) {
  .section-padding {
    padding: 50px 0px;
  }
}

/*----------------------------------------*/
.pricing-plan-table {
  width: 100%;
  border-collapse: collapse;
  margin: auto;
}
.pricing-plan-table th,
.pricing-plan-table td {
  border: 1px solid #ddd;
  padding: 16px;
  text-align: center;
}
.pricing-plan-table th {
  background-color: #f4f4f4;
  font-size: 20px;
}
.pricing-plan-table .highlight {
  background-color: #eef2ff;
  border: 2px solid #5f5dff;
}
.pricing-plan-table td.checkmark {
  color: green;
  font-size: 18px;
}
.pricing-plan-table td.unavailable {
  color: #ccc;
  font-size: 18px;
}
.pricing-header {
  text-align: left;
}
.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  color: #fff;
  background-color: #5f5dff;
  text-decoration: none;
  border-radius: 5px;
}
.btn:hover {
  background-color: #4745d4;
}
.note {
  font-size: 14px;
  color: #888;
}
/*===============================================
= Pricing Css End
================================================*/
/*===============================================f
= Why Use Css Start
================================================*/
.why_use_section {
  background-color: #f7f7f8;
  padding-bottom: 0;
}
.why_use_box p {
  font-size: 14px;
  color: #4d4e56;
  padding-bottom: 20px;
}
.why_use_box ul li {
  display: flex;
  align-items: center;
  column-gap: 15px;
  font-size: 16px;
  font-weight: 500;
}
.why_use_box ul li img {
  width: 24px;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 0;
}

.why_use_box ul li:not(:last-of-type) {
  padding-bottom: 15px;
}
/*===============================================
= Why Use Css End
================================================*/
/*===============================================
= Guarantee Css Start
================================================*/
.guareantee_main {
  border: 1px solid #e2e2e4;
  border-radius: 20px;
}
.guarantee_img {
  background-color: #d4e2f7;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.guarantee_img img {
  width: 107px;
  object-fit: contain;
}
.guarantee_content {
  padding: 48px 32px;
}
.guarantee_content h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.4;
  color: #2a2b32;
  padding-bottom: 15px;
}
.guarantee_content p {
  padding-bottom: 20px;
}
@media only screen and (max-width: 991px) {
  .guarantee_content {
    padding: 38px 22px;
  }
}
@media only screen and (max-width: 767px) {
  .guarantee_content {
    padding: 28px 22px;
  }
  .guarantee_img {
    border-top-left-radius: 0px;
    border-bottom-right-radius: 20px;
    padding: 20px 10px;
  }
}

/*===============================================
= Guarantee Css End
================================================*/

/*===============================================
= Checkout page Start
================================================*/

.checkout-section {
  padding: 64px 0;
}
.month-amount {
    margin-bottom: 12px;
}
.vpnzy-container {
  max-width: 1760px;
  padding-left: 80px;
  padding-right: 80px;
}
.checkout-email-box {
  margin-bottom: 12px;
}
.checkout-text {
  font-weight: 500;
  line-height: 1.5;
  color: #2a2b32;
  font-size: 20px;
}
.col-start-1 {
  grid-column-start: 1;
}
.col-span-12 {
  grid-column: span 12 / span 12;
} 
.bg-white {
  --bg-opacity: 1;
  background-color: #fff;
  background-color: rgba(255, 255, 255, var(--bg-opacity));
}

.border-grey-lighter {
  --border-opacity: 1;
  border-color: #e2e2e4;
  border-color: rgba(226, 226, 228, var(--border-opacity));
}

.checkout-email-box input::placeholder {
  font-size: 14px;
}
.payment-form button:hover, .trial-form button:hover {
  color: #fff !important;
}
.your-email-label {
  display: block;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  color: #2a2b32;
}

.checkout-email-box input {
  padding: 12px;
  height: 100%;
  max-height: 3.3rem;
}
.checkout-checkboxs-container .form-check-label {
  font-size: 12px;
  line-height: 1.5;
}

.mt-16 {
  margin-top: 10px;
}

.order-summary-inner-container {
  position: sticky;
}

.order-summary-heading-text {
  display: flex;
  justify-content: space-between;
}

.money-back-container {
  display: flex;
  align-items: center;
}
.money-back-inner-content {
  display: inline-flex;
  align-items: center;
}
.money-back-container .days-box {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #3e5fff;
  border-radius: 50%;
  padding: 8px;
}
.days-box span {
  color: white;
  font-size: 12px;
  line-height: 1.2;
  font-weight: normal;
}

.money-back-text {
  margin-left: 8px;
  line-height: normal;
}
.money-back-text strong {
  font-weight: 800;
  max-width: 117px;
  text-transform: uppercase;
  color: #2a2b32;
  font-size: 12px;
}

.w-6 {
  width: 24px;
}
.h-6 {
  height: 24px;
}

.plus-text {
  font-size: 16px;
  font-weight: 500;
  margin-left: 8px;
  color: #2a2b32;
}
.order-summary-cart-box .plans-texts {
  line-height: 1.5;
  font-size: 14px;
  margin: 0;
  color: #2a2b32;
}
.order-summary-cart-box .ml-2 {
  margin-left: -10px;
}
.selected-card-total-price {
  display: inline-flex;
  align-items: center;
}
.selected-card-total-price {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  align-items: self-end;
}

.save-container {
  display: flex;
}
.save-inner-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  fill: #e02f1f;
}

.save-inner-container svg {
  width: 24px;
  height: 24px;
  display: block;
  margin: 0;
  fill: #e02f1f;
}
.save-container span {
  /* margin-left: 6px; */
}

.text-red {
  color: #e02f1f;
}
.text-small {
  font-size: 14px;
}
.font-medium {
  font-weight: 500;
}
.text-gray span {
  color: #6c6d75;
}

.space-y-6 {
  padding-top: 24px;
  border-top: 1px solid #e2e2e4;
  margin-top: 24px;
}
.tax-count-box span,
.tax-count-box a {
  color: #2a2b32;
}

.total-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* margin-top: 24px; */
}
.text-lead {
  font-size: 14px;
}
.text-large {
  font-size: 20px;
}
.text-gray-dark {
  color: #2a2b32;
}

.apply-btn {
  height: 100%;
  margin-top: 0px;
}

@media only screen and (max-width: 1024px) {
  .vpnzy-container .col-lg-7,
  .vpnzy-container .col-lg-5 {
    width: 100%;
    flex: 0 0 auto;
  }
  .order-summary-container {
    margin-top: 30px;
  }
  .leading-normal {
    font-size: 12px;
  }
  .total-text .text-lead {
    font-size: 14px;
  }
  .money-back-container {
    display: none;
  }
  /* .order-summary-cart-box.mt-3{
        margin-top: 10px !important;
    } */
  .checkout-text {
    margin-bottom: 0px;
  }
  .plans-texts {
    margin-top: 5px !important;
  }
}

@media only screen and (max-width: 743px) {
  .md\:pb-12 {
    padding-bottom: 48px;
  }
  .md\:pt-6 {
    padding-top: 24px;
  }
  .vpnzy-container {
    max-width: 1128px;
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media only screen and (max-width: 575px) {
  .vpnzy-container {
    max-width: 1128px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .checkout-text {
    font-size: 16px;
    margin-bottom: 0px;
  }
  .p-4 {
    padding: 16px !important;
  }
}

@media only screen and (max-width: 376px) {
  .sm\:pt-8 {
    padding-top: 32px;
  }
  .vpnzy-container {
    max-width: 742px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .p-4 {
    padding: 24px;
  }
}
/*===============================================
= Checkout page End
================================================*/

/*======================
    404 page
=======================*/

.page_404 {
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  min-height: 100vh; /* Full viewport height */
  background-color: white; /* Optional background color */
  margin: 0;
}

.page_404 img {
  width: 100%;
}

.four_zero_four_bg {
  background-image: url(https://cdn.dribbble.com/users/285475/screenshots/2083086/dribbble_1.gif);
  height: 600px;
  background-position: center;
  background-repeat: no-repeat;
}

.four_zero_four_bg h1 {
  font-size: 80px;
  width: 100%;
  text-align: center;
}

.four_zero_four_bg h3 {
  font-size: 80px;
}

.link_404 {
  color: #fff !important;
  padding: 10px 20px;
  background: #3e5fff;
  margin: 20px 0;
  display: inline-block;
}
.contant_box_404 {
  margin-top: -50px;
  text-align: center;
}

.page_404 .container-fluid {
  text-align: center;
}

@media only screen and (max-width: 575px) {
  .four_zero_four_bg {
    background-image: url(https://cdn.dribbble.com/users/285475/screenshots/2083086/dribbble_1.gif);
    height: 450px;
  }
}

/*======================
    404 page End
=======================*/

/*======================
    500 page start
=======================*/

.internal-error-sec {
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  min-height: 100vh; /* Full viewport height */
  background-color: white; /* Optional background color */
  margin: 0;
}
.main-error-page {
  min-height: 600px;
  margin: 0px auto;
  width: auto;
  max-width: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.error-title {
  max-width: 529px;
  font-family: Roboto;
  font-size: 38px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #4b4b62;
  margin-bottom: 16px;
}

.error-subtitle {
  max-width: 568px;
  font-family: Roboto;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.31;
  letter-spacing: normal;
  text-align: center;
  color: #4b4b62;
  margin-bottom: 24px;
}
svg {
  margin-bottom: 16px;
}
.pao-atras {
  animation: leftright 1s alternate infinite;
  transform-origin: center;
}
.pao-frente {
  animation: leftright 1s 0.3s alternate infinite;
  transform-origin: center;
}

.olho-esq {
  animation: sad 2s alternate infinite;
  transform-origin: center;
}

.olho-dir {
  animation: sad 2s alternate infinite;
  transform-origin: center;
}
.boca {
  animation: sad 2s alternate infinite;
  transform-origin: center;
}
.raios {
  -webkit-animation: flicker-4 4s linear infinite both;
  animation: flicker-4 4s linear infinite both;
}
.tomada {
  -webkit-animation: vibrate-1 3s linear infinite both;
  animation: vibrate-1 3s linear infinite both;
}
.fio-500 {
  -webkit-animation: vibrate-1 3s linear infinite both;
  animation: vibrate-1 3s linear infinite both;
}
.fio {
  -webkit-animation: vibrate-1 3s linear infinite both;
  animation: vibrate-1 3s linear infinite both;
}

@keyframes scales {
  from {
    transform: scale(0.98);
  }
  to {
    transform: scale(1);
  }
}

/* ----------------------------------------------
 * Generated by Animista on 2020-4-1 14:58:16
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation flicker-4
 * ----------------------------------------
 */
@-webkit-keyframes flicker-4 {
  0%,
  100% {
    opacity: 1;
  }
  31.98% {
    opacity: 1;
  }
  32% {
    opacity: 0;
  }
  32.8% {
    opacity: 0;
  }
  32.82% {
    opacity: 1;
  }
  34.98% {
    opacity: 1;
  }
  35% {
    opacity: 0;
  }
  35.7% {
    opacity: 0;
  }
  35.72% {
    opacity: 1;
  }
  36.98% {
    opacity: 1;
  }
  37% {
    opacity: 0;
  }
  37.6% {
    opacity: 0;
  }
  37.62% {
    opacity: 1;
  }
  67.98% {
    opacity: 1;
  }
  68% {
    opacity: 0;
  }
  68.4% {
    opacity: 0;
  }
  68.42% {
    opacity: 1;
  }
  95.98% {
    opacity: 1;
  }
  96% {
    opacity: 0;
  }
  96.7% {
    opacity: 0;
  }
  96.72% {
    opacity: 1;
  }
  98.98% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  99.6% {
    opacity: 0;
  }
  99.62% {
    opacity: 1;
  }
}
@keyframes flicker-4 {
  0%,
  100% {
    opacity: 1;
  }
  31.98% {
    opacity: 1;
  }
  32% {
    opacity: 0;
  }
  32.8% {
    opacity: 0;
  }
  32.82% {
    opacity: 1;
  }
  34.98% {
    opacity: 1;
  }
  35% {
    opacity: 0;
  }
  35.7% {
    opacity: 0;
  }
  35.72% {
    opacity: 1;
  }
  36.98% {
    opacity: 1;
  }
  37% {
    opacity: 0;
  }
  37.6% {
    opacity: 0;
  }
  37.62% {
    opacity: 1;
  }
  67.98% {
    opacity: 1;
  }
  68% {
    opacity: 0;
  }
  68.4% {
    opacity: 0;
  }
  68.42% {
    opacity: 1;
  }
  95.98% {
    opacity: 1;
  }
  96% {
    opacity: 0;
  }
  96.7% {
    opacity: 0;
  }
  96.72% {
    opacity: 1;
  }
  98.98% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  99.6% {
    opacity: 0;
  }
  99.62% {
    opacity: 1;
  }
}

/* ----------------------------------------------
 * Generated by Animista on 2020-4-1 15:17:57
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation vibrate-1
 * ----------------------------------------
 */
@-webkit-keyframes vibrate-1 {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
  20% {
    -webkit-transform: translate(-2px, 2px);
    transform: translate(-2px, 2px);
  }
  40% {
    -webkit-transform: translate(-2px, -2px);
    transform: translate(-2px, -2px);
  }
  60% {
    -webkit-transform: translate(2px, 2px);
    transform: translate(2px, 2px);
  }
  80% {
    -webkit-transform: translate(2px, -2px);
    transform: translate(2px, -2px);
  }
  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
@keyframes vibrate-1 {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
  20% {
    -webkit-transform: translate(-2px, 2px);
    transform: translate(-2px, 2px);
  }
  40% {
    -webkit-transform: translate(-2px, -2px);
    transform: translate(-2px, -2px);
  }
  60% {
    -webkit-transform: translate(2px, 2px);
    transform: translate(2px, 2px);
  }
  80% {
    -webkit-transform: translate(2px, -2px);
    transform: translate(2px, -2px);
  }
  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}

/* ----------------------------------------------
 * Generated by Animista on 2020-4-1 15:42:45
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation wobble-ver-right
 * ----------------------------------------
 */
@-webkit-keyframes wobble-ver-right {
  0%,
  100% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
  }
  15% {
    -webkit-transform: translateY(-30px) rotate(6deg);
    transform: translateY(-30px) rotate(6deg);
  }
  30% {
    -webkit-transform: translateY(15px) rotate(-6deg);
    transform: translateY(15px) rotate(-6deg);
  }
  45% {
    -webkit-transform: translateY(-15px) rotate(3.6deg);
    transform: translateY(-15px) rotate(3.6deg);
  }
  60% {
    -webkit-transform: translateY(9px) rotate(-2.4deg);
    transform: translateY(9px) rotate(-2.4deg);
  }
  75% {
    -webkit-transform: translateY(-6px) rotate(1.2deg);
    transform: translateY(-6px) rotate(1.2deg);
  }
}

@keyframes sad {
  0% {
    transform: rotateX(0deg) rotateY(0deg);
  }
  100% {
    transform: rotateX(10deg) rotateY(5deg);
  }
}

@keyframes leftright {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(-15deg);
  }
}

@media only screen and (max-width: 575px) {
  .main-error-page {
    max-width: 370px;
  }
  .error-title {
    font-size: 32px;
  }
}

@media only screen and (max-width: 375px) {
  .main-error-page {
    max-width: 300px;
  }
  .error-title {
    font-size: 25px;
  }
}
/*======================
    500 page End
=======================*/
