/* ===================================================
>>> TABLE OF CONTENTS:
======================================================
01. Fonts
02. General
03. Header
04. Banner
05. Scroll top button
06. Buttons
07. Section Gap & Heading
08. Homepage Plan
09. Call Back Section Css
10. Homepage Feature Css
11. Home Page Domain Search Css
12. Testimonial Css
13. FAQ Css
14. Footer Css
15. Features Css
16. Timeline Css
17. Domain Search Form Css
18. Domain Promos Css
19. FREE Add-ons Css
20. Sunrise Domain Form Css
21. Domain Transfer Form Css
22. Domain Pricing Table Css
23. Plan Style Css
24. Just One Click Css
25. Collapse Css
26. Tabings Css
27. Titan Email Video
28. Table Affiliate Page
29. Login & Register Page
30. Contact Page
31. Contents Page

=================================================== */

/* ----------------------------------------------------------------
    01. Fonts
------------------------------------------------------------------- */

/* AvertaStd Font */

/* Thin */
@font-face {
    font-family: "AvertaStd";
    font-style: normal;
    font-weight: 300;
    src: local("AvertaStd-Thin"), url("../fonts/AvertaStd-Thin.ttf") format("truetype");
}

/* Extra Thin */
@font-face {
    font-family: "AvertaStd";
    font-style: normal;
    font-weight: 200;
    src: local("AvertaStd-Extrathin"), url("../fonts/AvertaStd-Extrathin.ttf") format("truetype");
}

/* Light */
@font-face {
    font-family: "AvertaStd";
    font-style: normal;
    font-weight: 400;
    src: local("AvertaStd-Light"), url("../fonts/AvertaStd-Light.ttf") format("truetype");
}

/* Regular */
@font-face {
    font-family: "AvertaStd";
    font-style: normal;
    font-weight: 500;
    src: local("AvertaStd-Regular"), url("../fonts/AvertaStd-Regular.ttf") format("truetype");
}

/* Semibold */
@font-face {
    font-family: "AvertaStd";
    font-style: normal;
    font-weight: 600;
    src: local("AvertaStd-Semibold"), url("../fonts/AvertaStd-Semibold.ttf") format("truetype");
}

/* Bold */
@font-face {
    font-family: "AvertaStd";
    font-style: normal;
    font-weight: 700;
    src: local("AvertaStd-Bold"), url("../fonts/AvertaStd-Bold.ttf") format("truetype");
}

/* Extra Bold */
@font-face {
    font-family: "AvertaStd";
    font-style: normal;
    font-weight: 800;
    src: local("AvertaStd-ExtraBold"), url("../fonts/AvertaStd-ExtraBold.ttf") format("truetype");
}

/* Black */
@font-face {
    font-family: "AvertaStd";
    font-style: normal;
    font-weight: 900;
    src: local("AvertaStd-Black"), url("../fonts/AvertaStd-Black.ttf") format("truetype");
}

/* Roboto Font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&amp;display=swap');


:root {
    --fallback-fonts: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-primary: "AvertaStd", var(--fallback-fonts);
    --font-secondary: "Roboto", var(--fallback-fonts);
}

/* Colors */
:root {
    --color-primary: 1, 76, 204;
    --color-secondary: 255, 148, 77;
    --color-white: #fff;
    --font-remixicon: remixicon;
    --font-bootstrap-icons: bootstrap-icons;
}

/* Smooth scroll behavior */
:root {
    scroll-behavior: smooth;
}

* {
    scrollbar-width: thin;
    scrollbar-color: rgb(var(--color-primary)) transparent;
}

*::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

*::-webkit-scrollbar-track {
    background: transparent;
}

*::-webkit-scrollbar-thumb {
    background-color: rgb(var(--color-primary));
}

::selection {
    background: rgb(var(--color-primary));
}

::selection {
    color: var(--color-white);
    text-shadow: none;
}

/*--------------------------------------------------------------
    02. General
--------------------------------------------------------------*/
body {
    font-family: var(--font-primary);
    font-weight: 500;
    overflow-x: hidden;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #2b1f51;
}

p {
    color: #524972;
}

.fw-500 {
    font-weight: 500;
    font-family: var(--font-primary);
}

.fw-600 {
    font-weight: 600;
    font-family: var(--font-primary);
}

@media (min-width: 1270px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1250px !important;
    }
}

a {
    color: rgb(var(--color-primary));
    text-decoration: none;
}

a:hover {
    color: rgb(var(--color-primary-dark));
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 500;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    margin: 0;
    padding: 0;
}

ul li {
    list-style: none;
}

.list-dot li {
    list-style: square;
    list-style-position: inside;
    font-size: 16px;
}

.list-dot-two{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.list-dot-two li{
    font-size: 16px;
    position: relative;
    padding-inline-start: 25px;
    width: 100%;
}


@media (min-width:768px) {
    .list-dot-two.two li{
        width: 48%;
    }
}

.list-dot-two li:before{
    content: '';
  position: absolute;
  left: 2px;
  top: 7px;
  background: rgb(var(--color-primary));
  transform: rotate(45deg);
  width: 10.17px;
  height: 10.17px;
}

.bg-trasparent {
    background: transparent !important;
}

.bg-light-warning {
    background: #ffc10712;
}

.w-fit-content{
    width: fit-content;
}

.mix-blend-luminosity{
    mix-blend-mode: luminosity;
}

input[type="checkbox"] {
    accent-color: rgb(var(--color-secondary)) !important;
    height: 15px;
    width: 15px;
}

input[type="radio"] {
    accent-color: rgb(var(--color-secondary)) !important;
    height: 15px;
    width: 15px;
}


/* ----------------------------------------------------------------
    04. Banner
------------------------------------------------------------------- */
.banner {
    padding: 150px 0 80px 0;
    position: relative;
}

.banner.pb-decrease {
    padding-bottom: 40px;
}

.banner.pb-increase {
    padding-bottom: 100px;
}

.banner.one {
    background: linear-gradient(90deg, #014ccc, #5a8ce1 45.83%, #014ccc);
}

.banner .banner-heading {
    display: block;
}

.banner .banner-heading h1 {
    font-size: 55px;
    font-weight: 800;
    line-height: 1.5;
}

.banner .banner-heading h3 {
    font-size: 25px;
    font-weight: 600;
}

.banner .banner-heading p {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 400;
}

.banner .banner-heading.white h1,
.banner .banner-heading.white h3,
.banner .banner-heading.white p {
    color: #fff;
}


@media (max-width:1200px) {
    .banner .banner-heading h1 {
        font-size: 47px;
    }
}

@media (max-width:767px) {
    .banner {
        padding-top: 120px;
    }

    .banner.pb-increase {
        padding-bottom: 59px;
    }

    .banner .banner-heading h1 {
        font-size: 40px;
    }
}

@media (max-width:575px) {
    .banner .banner-heading h1 {
        font-size: 37px;
        line-height: 1.3;
        font-weight: 800;
    }
}

.scroll-down-block {
    z-index: 2;
    position: absolute;
    bottom: -46px;
    left: 50%;
    transform: translate(-50%);
    background: url('../images/scroll_down_bg.png');
    width: 190px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    background-repeat: no-repeat;
}

.scroll-down-inner {
    background-color: #e8e6fb;
    border-radius: 40px;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 50px;
    display: flex;
    overflow: hidden;
    max-width: 100%;
    position: relative;
    cursor: pointer;

    &::before {
        content: "\ea4c";
        font-size: 15px;
        position: absolute;
        top: 0px;
        left: 50%;
        transform: translateX(-50%);
        color: rgb(var(--color-primary));
        border-radius: 50%;
        opacity: 1;
        animation: wheel 3s infinite;
        -webkit-animation: wheel 3s infinite;
        font-family: remixicon !important;
        font-style: normal;
    }
}

@keyframes wheel {
    to {
        opacity: 0;
        top: 30px;
    }
}

@-webkit-keyframes wheel {
    to {
        opacity: 0;
        top: 30px;
    }
}

.banner-up {
    position: relative;
    z-index: 1;
}

.banner-up>.container {
    margin-top: -70px;
}

/* ----------------------------------------------------------------
    05. Scroll top button
------------------------------------------------------------------- */
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    inset-inline-end: 15px;
    bottom: -40px;
    z-index: 99999;
    background: rgb(var(--color-primary));
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.5s;
    cursor: pointer;
    border: 0;
    outline: unset;
    box-shadow: unset;
}

.scroll-top:after {
    position: absolute;
    z-index: -1;
    content: "";
    top: 100%;
    inset-inline-start: 5%;
    height: 10px;
    width: 90%;
    opacity: 1;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}

.scroll-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.scroll-top:hover {
    background: rgb(var(--color-secondary));
    color: #fff;
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}

/* ----------------------------------------------------------------
    06. Buttons
------------------------------------------------------------------- */
.inline-btn {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 20px;
}

.btns {
    border-radius: 4px;
    font: normal normal 700 14px/24px var(--font-primary);
    letter-spacing: 1.57px;
    opacity: 1;
    padding: 16px 30px;
    text-align: center;
    text-transform: uppercase;
    height: auto;
    border: 1px solid transparent;
    user-select: none;
    outline: 0;
    background-repeat: no-repeat;
    transition: all .2s linear;
    -webkit-appearance: button;
    cursor: pointer;
    overflow: visible;
}

.btns.one {
    background-color: #014ccc;
    color: #fff;
}

.btns.two {
    background-color: #fff;
    color: rgb(var(--color-primary));
}

/* ----------------------------------------------------------------
    07. Section Gap & Heading
------------------------------------------------------------------- */
.section-gap {
    padding: 60px 0;
}

.section-heading {
    display: block;
}

.section-heading.gap-bottom {
    margin-bottom: 60px;
}

.section-heading h2 {
    font-size: 40px;
    font-weight: 700;
}

.section-heading p {
    font-size: 16px;
}

.section-heading.center h2,
.section-heading.center p {
    text-align: center;
}

.section-heading.white h2,
.section-heading.white p {
    color: #fff;
}

.section-heading.white p {
    opacity: 0.7;
}

@media (max-width:767px) {
    .section-gap {
        padding: 40px 0;
    }

    .section-heading h2 {
        font-size: 35px;
    }

    .section-heading.gap-bottom {
        margin-bottom: 40px;
    }
}

.sectionbg1 {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .2);
   
}

.sectionbg2 {
    background: #fafafa;
}

.sectionbg3 {
    background: #DEF7EA;
}

.sectionbg4 {
    background: linear-gradient(90deg, #2e1a6d, #4a338d 45.83%, #7759ce);
}

/* ----------------------------------------------------------------
    08. Homepage Plan
------------------------------------------------------------------- */
.homepage-plan {
    border-radius: 8px;
    max-width: 100% !important;
    margin: 0 !important;
    cursor: pointer;
    padding: 25px 20px;
    display: block;
    transition: all 0.5s;
    border: 1px solid #b5b5b545;
}

.homepage-plan:hover {
    transform: translateY(-10px);
}

.homepage-plan.bg-green {
    /* background-color: #cef0de; */
	/* box-shadow: #f0eaea 1px 3px 5px; */
	box-shadow: 0 0 0 1px rgba(0, 0, 0, .2);
    border-radius: 12px;
}

.homepage-plan.bg-red {
    /* background-color: #ffd8d8; */
	box-shadow: 0 0 0 1px rgba(0, 0, 0, .2);
    border-radius: 12px;
}

.homepage-plan.bg-yellow {
    /* background-color: #edf2d3; */
	box-shadow: 0 0 0 1px rgba(0, 0, 0, .2);
    border-radius: 12px;
}

.homepage-plan.bg-orange {
    /* background-color: #faebcd; */
	box-shadow: 0 0 0 1px rgba(0, 0, 0, .2);
    border-radius: 12px;
}

.homepage-plan .inner .icon {
    text-align: center;
    margin-bottom: 15px;
}

.homepage-plan .inner .icon img {
    max-height: 50px;
}

.homepage-plan .inner h4 {
    color: #343434;
    font-size: 25px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.homepage-plan .inner p {
    color: #484848;
    font: normal normal 500 16px/20px var(--font-primary);
    margin-top: 8px;
    opacity: 1;
    text-align: center;
}

.homepage-plan .inner h3 {
    text-align: center;
}

.homepage-plan .inner h3 span.start-at {
    color: #343434;
    font: 18px var(--font-primary);
    display: block;
    text-align: center;
    width: 100%;

}

.homepage-plan .inner h3 .currency-symbol {
    color: #343434;
    position: relative;
    top: -10px;
    font-size: 20px;
    font-weight: 700;
    vertical-align: super;
    margin-inline-end: 5px;
}

.homepage-plan .inner h3 {
    color: #343434;
    font: 800 50px var(--font-primary);
}

.homepage-plan .inner h3 .durection {
    color: #343434;
    font: 18px/15px var(--font-primary);
    left: 2px;
    letter-spacing: 0;
    position: relative;
    top: 0px;
}

.homepage-plan .inner .learn-more {
    font-size: 16px;
    text-decoration: underline;
    text-align: center;
    margin-bottom: 0;
    font-weight: 400;
    color: #313131;
}

/* ----------------------------------------------------------------
    09. Call Back Section Css
------------------------------------------------------------------- */
.call-back {
    background-color: #000;
    background-image: url(../images/black_bg_bar.jpg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 8px;
    margin-bottom: 0px;
}

.call-back .inner {
    padding-left: 5%;
    padding-right: 5%;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
    padding-bottom: 60px;
    padding-top: 60px;
}

@media (max-width:767px) {
    .call-back {
        margin-bottom: 0px;
    }

    .call-back .inner {
        padding-bottom: 40px;
        padding-top: 40px;
    }
}

/* ----------------------------------------------------------------
    10. Homepage Feature Css
------------------------------------------------------------------- */

.homepage-features {
    border-radius: 12px;
    padding: 50px 60px;
    height: 100%;
}

.homepage-features h4 {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 0;
    font-weight: 700;
    color: #212121;
}

.homepage-features p {
    color: #212121;
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 0;
    font-weight: 500;
}

.homepage-features ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.homepage-features ul li {
    color: #212121;
    font-size: 18px;
    font-weight: 500;
    padding-inline-start: 30px;
    position: relative;
}

.homepage-features ul li:before {
    content: '\eb7b';
    font-family: var(--font-remixicon);
    color: #049564;
    font-size: 19px;
    position: absolute;
    inset-inline-start: 0;
    top: 5px;
    font-weight: 800;
    line-height: 1;
}

.homepage-features ul li+li {
    margin-top: 10px;
}

.homepage-features .next-link {
    font-size: 16px;
    color: rgb(var(--color-primary));
    font-weight: 600;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
    padding-bottom: 2px;
}

.homepage-features .next-link i {
    margin-inline-start: 5px;
}

.homepage-features .next-link:hover {
    background-size: 100% 1px;
}



.homepage-features.bg1 {
    background-color: #f2f3fa;
}

.homepage-features.bg2 {
    background-color: #E4EFFB;
}

.homepage-features.bg3 {
    background-color: #f2f3fa;
}

@media (max-width:767px) {
    .homepage-features {
        padding: 30px 25px;
    }
}

/* ----------------------------------------------------------------
    11. Home Page Domain Search Css
------------------------------------------------------------------- */
.homepage-domain-search {
    background: #f2f3fa;
}

.homepage-domain-search .homepage-domain-form {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 0;
    max-width: 100%;
    justify-content: space-between;
}

.homepage-domain-search .homepage-domain-form input[type="text"] {
    border-radius: 10px;
    border: 1px solid #e1e1e1;
    background: #fff;
    height: 60px;
    padding: 15px 25px;
    flex: 1;
    width: 100%;
    max-width: 918px;
    margin-right: 10px;
    color: #655e5e !important;
    outline: unset;
}


.homepage-domain-search .homepage-domain-form .submit {
    max-width: 250px;
    width: 100%;
}

@media (max-width:1200px) {
    .homepage-domain-search .homepage-domain-form .submit {
        max-width: 200px;
    }
}

@media (max-width:767px) {
    .homepage-domain-search .homepage-domain-form input[type="text"] {
        width: 100%;
        flex: unset;
        height: 48px;
        margin: 0;
    }

    .homepage-domain-search .homepage-domain-form .submit {
        max-width: 156px;
        margin: auto;
        margin-top: 15px;
    }
}

@media (max-width:575px) {
    .homepage-domain-search .homepage-domain-form {
        padding: 25px 15px;
    }
}

.homepage-domain-search .domain-lists {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    width: 900px;
    margin: auto;
    max-width: 100%;
}

.homepage-domain-search .domain-lists li {
    display: inline-block;
    padding: 12px 10px;
    font-size: 16px;
    border: 1px solid #e1e1e1;
    border-radius: 12px;
    margin-bottom: 10px;
    text-align: center;
    background: #fff;
}

.homepage-domain-search .domain-lists li img {
    max-height: 40px;
}

.homepage-domain-search .domain-lists li .price {
    display: block;
    background: rgba(var(--color-primary), 0.1);
    padding: 4px 60px;
    border-radius: 18px;
    font-size: 15px;
    margin-top: 2px;
    color: #486484;
}

@media (max-width:767px) {
    .homepage-domain-search .domain-lists li .price {
        padding: 4px 40px;
    }
}

/* ----------------------------------------------------------------
    12. Testimonial Css
------------------------------------------------------------------- */
.swiper-testimonial .swiper-wrapper .swiper-slide {
    padding: 10px;
}

.swiper-testimonial>.arrows {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    background-color: rgba(7, 51, 107, .1);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 0;
    color: #000;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    position: absolute;
    appearance: none;
    border: 0;
    line-height: 1;
    transition: all 0.3s;
}

.swiper-testimonial>.arrows.swiper-testimonial-left {
    top: 50%;
    left: 0;
}

.swiper-testimonial>.arrows.swiper-testimonial-right {
    top: 50%;
    right: 0;
}

.swiper-testimonial>.arrows.swiper-button-disabled {
    cursor: not-allowed;
    opacity: 0;
    visibility: hidden;
}

.swiper-testimonial>.arrows:hover {
    background: rgb(var(--color-primary));
    border-radius: 50%;
    color: #fff;
}

.testimonial-items {
    background: #fbfbfb;
    padding: 25px;
    border: 1px solid rgba(1, 9, 21, 0.1);
    border-radius: 10px;
}

.testimonial-items .testimonial-header {
    gap: 30px;
    margin-bottom: 30px;
}

.testimonial-items .testimonial-header ul {
    gap: 4.5px;
    list-style: none;
}

.testimonial-items .testimonial-header .qoute img {
    max-height: 30px;
    opacity: 0.3;
}

.testimonial-items p {
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 26px;
    color: #010a17;
    opacity: 0.6;
    font-family: var(--font-secondary);
    margin-bottom: 30px;
}

.testimonial-items .testimonial-author {
    gap: 14px;
}

.testimonial-items .testimonial-author .author-thumb {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    overflow: hidden;
    border-radius: 500px;
}

.testimonial-items .testimonial-author .author-thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.testimonial-items .testimonial-author h5 {
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    color: #010a17;
}

.testimonial-items .testimonial-author h6 {
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    color: rgba(1, 9, 21, 0.6);
    font-family: var(--font-secondary);
    margin-bottom: 0;
}

/* ----------------------------------------------------------------
    13. FAQ Css
------------------------------------------------------------------- */
.faq {
    background: #fff;
}

.accordion {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: start;
}

@media (min-width:991px) {
    .accordion>li {
        flex: 0 0 auto;
        width: 48%;
        max-width: 100%;
    }
}

.accordion>li {
    width: 100%;
    max-width: 100%;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #ededfd;
    border-radius: 8px 8px 8px 8px;
    box-shadow: -4px 4px 0px 0px #F0F0F0DB;
    cursor: pointer;
    font-weight: 700;
    background: #fff;
    transition: all 0.3s;
}


.accordion li>a {
    position: relative;
    display: flex;
    align-items: center;
    transition: all 0.3s;
    cursor: pointer;
    user-select: none;
    padding: 25px;
}

.accordion li.active>a {
    padding-bottom: 0;
}

.accordion li>a::after {
    content: "+";
    display: flex;
    color: #000;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    margin-inline-start: auto;
    transition: all 0.3s;
    border-radius: 5px;
    line-height: 1;
}

.accordion li.active>a:after {
    content: "-";
}

.accordion li p {
    padding: 25px;
    padding-top: 15px;
    font-size: 16px;
    line-height: 2;
    color: #4b4b4b;
    display: none;
    border-radius: 0px 0px;
    margin: 0;
    font-weight: 500;
}

.accordion li p a {
    color: rgb(var(--color-primary));
    text-decoration: underline;
}

.accordion li p a:hover {
    color: rgb(var(--color-secondary));
}


/* ----------------------------------------------------------------
    14. Footer Css
------------------------------------------------------------------- */
.theme-footer {
    padding: 63px 0 36px;
    background: #222;
}

.theme-footer .footer-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.theme-footer .footer-list li {
    list-style: none;
    margin: 10px 0;
}

.theme-footer .footer-list li.heading_list {
    margin-bottom: 15px;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
}

.theme-footer .footer-list li a {
    position: relative;
    color: #d7d7d7;
    font-size: 14px;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
    padding-inline-start: 15px;
    padding-bottom: 2px;
    display: inline-block;
    text-decoration: none;
}

.theme-footer .footer-list li a:after {
    content: '';
    width: 8px;
    height: 1px;
    background: #fff;
    position: absolute;
    display: block;
    top: 11px;
    left: 0;
}

.theme-footer .footer-list li a:hover {
    background-size: 100% 1px;
}

.theme-footer .footer-info {
    display: block;
}

.theme-footer .footer-info>a.logo {
    display: block;
}

.theme-footer .footer-info>a.logo img {
    max-height: 60px;
}

.theme-footer .footer-info>p {
    font-size: 14px;
    color: #d7d7d7;
    margin-top: 20px;
    margin-bottom: 0;
}

.theme-footer .footer-social {
    display: block;
}

.theme-footer .footer-social h4 {
    margin-bottom: 15px;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
}

.theme-footer .footer-social .social-icon {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: start;
    margin: 10px 0;
    flex-wrap: wrap;
}

.theme-footer .footer-social .social-icon a {
    display: flex;
    position: relative;
    padding: 10px;
    border-radius: 5px;
    background: #ffffff4f;
    font-size: 16px;
    color: #ffffffc4;
    width: 40px;
    justify-content: center;
    align-items: center;
    height: 40px;
    transition: all 0.5s;
}

.theme-footer .footer-social .social-icon a:hover {
    background: #fff;
    color: rgb(var(--color-primary));
}

.theme-footer .copyright-info {
    font-size: 14px;
    color: #ffffff9d;
    line-height: 1.5;
}


@media (max-width:575px) {
    .theme-footer .footer-list li.heading_list {
        margin-top: 0;
        margin-bottom: 0;
        cursor: pointer;
    }
    .theme-footer .footer-list li.heading_list.downarrow{
        display: flex;
    }
    .theme-footer .footer-list li.heading_list.downarrow:after{
        display: inline-block;
        font-family: var(--font-bootstrap-icons);
        font-size: 16px;
        content: "\F282";
        margin-inline-start: auto;
        -webkit-transition: .3s ease;
        transition: .3s ease;
        position: relative;
        top: 2px;
    }
    .theme-footer .footer-list li.heading_list.uparrow{
        display: flex;
    }
    .theme-footer .footer-list li.heading_list.uparrow:after{
        display: inline-block;
        font-family: var(--font-bootstrap-icons);
        font-size: 16px;
        content: "\F282";
        margin-inline-start: auto;
        -webkit-transition: .3s ease;
        transition: .3s ease;
        position: relative;
        top: -2px;
        transform: rotate(-180deg);
    }
    .theme-footer .footer-list li:last-child {
        margin-bottom: 0;
    }
}

/* ----------------------------------------------------------------
    15. Features Css
------------------------------------------------------------------- */
.feature-box {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    background: #ffffff;
    -webkit-box-shadow: 0 20px 40px -5px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 20px 40px -5px rgba(0, 0, 0, .1);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, .1);
}

.feature-box img {
    max-height: 60px;
    margin-bottom: 15px;
}

.feature-box h4 {
    font-size: 18px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 0;
}

.feature-box a{
    color: #524972;
    display: block;
    text-align: center;
    font-size: 16px;
}

.feature-box a:hover{
    color: #014ccc;
}


.features-2 {
    border: 2px dashed #d0d0d0;
    padding: 25px 20px;
    border-radius: 0 15px 0 15px;
    background: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: all 0.3s;
    height: 100%;
}

.features-2:hover {
    border-color: rgb(var(--color-secondary));
    transform: translatey(-10px);
}

.features-2 .icon {
    display: block;
    text-align: center;
    margin-bottom: 15px;
}

.features-2 .icon img {
    max-height: 50px;
}

.features-2 h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0;
    text-align: center;
}

.features-2 p {
    font-size: 15px;
    margin-top: 15px;
    margin-bottom: 0;
    text-align: center;
}

.features-3 {
    padding: 24px;
    background: #f1f1f1;
    border-radius: 5px;
    height: 100%;
}

.features-3 .icon {
    display: block;
    margin-bottom: 15px;
}

.features-3 .icon img {
    max-height: 50px;
}

.features-3 h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0;
    text-align: start;
}

.features-3 p {
    font-size: 15px;
    margin-top: 15px;
    margin-bottom: 0;
    text-align: start;
}

.features-4{
    padding: 24px;
    border-radius: 5px;
    border: 1px solid #d2d1c0;
    background: #fff;
    height: 100%;
    transition: all 0.5s;
}

.features-4:hover{
    box-shadow: 10px 10px 0px 0px #F2F0D0;
}

.features-4 .icon{
    margin-bottom: 15px;
}

.features-4 .icon img{
    max-height: 50px;
}

.features-4 h4{
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0;
    text-align: start;
}

.features-4 p{
    font-size: 15px;
    margin-top: 15px;
    margin-bottom: 0;
    text-align: start;
}

.features-4.big{
    display: flex;
    padding: 28px 28px;
    align-items: center;
    gap: 20px;
}

.features-4.big .icon{
    margin-bottom: unset;
    width: 50%;
    max-width: 100%;
    text-align: center;
}

.features-4.big .icon img{
    max-height: unset;
}

@media (max-width:991px) {
    .features-4.big{
        flex-wrap: wrap;
        gap: 0;
    }
    .features-4.big .icon{
        margin-bottom: 15px;
        width: 100%;
        text-align: start;
    }
    .features-4.big .icon img{
        max-height: 50px;
    }
}

.features-5{
    display: block;
}

.features-5 .icon{
    float: left;
    margin: 15px 30px 15px 0;
}

.features-5 .icon img{
    width: 40px;
}

.features-5 .text{
    display: table;
}

.features-5 .text h3{
    font-size: 20px;
    font-weight: 500;
    text-align: start;
    margin-bottom: 8px;
    font-family: var(--font-secondary);
}

.features-5 .text p{
    font-size: 15px;
    margin-bottom: 0px;
    text-align: start;
    color: #373737;
    font-weight: 500;
    line-height: 1.5;
}

@media (max-width:500px) {
    .features-5 .text{
        display: block;
        float: left;
    }
}

.features-5.white h3{
color: #fff;
}

.features-5.white p{
color: #ffffffa6;
}


/* ----------------------------------------------------------------
    16. Timeline Css
------------------------------------------------------------------- */

.section-timeline .vertical-timeline {
    position: relative;
    z-index: 1
}

.section-timeline .vertical-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -6px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: rgb(var(--color-secondary));
    margin-left: -4px;
}

.section-timeline .vertical-timeline:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -19px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: rgb(var(--color-secondary));
    margin-left: -4px
}

.section-timeline .vertical-timeline .timeline-items {
    padding: 20px 0px;
}

.section-timeline .vertical-timeline .timeline-items::before {
    content: '';
    height: 100%;
    width: 1px;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 50%;
    background-image: linear-gradient(0deg, #ff8400, #1c355e 50%, transparent 50%, transparent 100%);
    background-size: 20px 20px;
}

.section-timeline .vertical-timeline .item {
    display: flex;
    position: relative;
    transition: 0.3s
}

.section-timeline .vertical-timeline .item:not(:last-child) {
    margin-bottom: 70px
}

.section-timeline .vertical-timeline .item:nth-child(even) .text {
    margin-left: 45px;
    margin-right: 0px;
    padding-left: 40px;
    padding-right: 50px;
    border-radius: 5px 5px 5px 5px
}

.section-timeline .vertical-timeline .item:nth-child(odd) .serivces-count {
    margin-right: -30px
}

.section-timeline .vertical-timeline .item .icon h4 {
    font-size: 35px;
    font-weight: 800;
}

.section-timeline .vertical-timeline .item:nth-child(odd) .icon {
    justify-content: flex-end
}

.section-timeline .vertical-timeline .item:nth-child(odd) .timeline-circle:before {
    left: 100%
}

.section-timeline .vertical-timeline .item:nth-child(even) {
    flex-direction: row-reverse;
    text-align: right
}

.section-timeline .vertical-timeline .item:nth-child(even) .serivces-count {
    margin-left: -30px
}

.section-timeline .vertical-timeline .item:nth-child(even) .icon {
    justify-content: flex-start
}

.section-timeline .vertical-timeline .item:nth-child(even) .timeline-content {
    flex-direction: row-reverse
}

.section-timeline .vertical-timeline .item:nth-child(even) .timeline-circle:before {
    right: 100%
}

.section-timeline .vertical-timeline .icon,
.section-timeline .vertical-timeline .timeline-content {
    flex-basis: calc(50% - 1px);
    transition: 0.5s;
    display: flex;
    align-items: center
}

.section-timeline .vertical-timeline .timeline-content:hover .serivces-count img {
    transform: scale(1.1);
}

.section-timeline .vertical-timeline .timeline-circle {
    position: relative;
    margin: 0px 100px 0px 100px
}

.section-timeline .vertical-timeline .timeline-circle .circle {
    position: absolute;
    top: 50%;
    border-radius: 50%;
    transition: 0.4s;
    top: calc(50% - 7px);
    left: -7px;
    width: 15px;
    height: 15px;
    background: rgb(var(--color-secondary));
}

.section-timeline .vertical-timeline .timeline-circle::before {
    content: '';
    height: 1px;
    position: absolute;
    top: 50%;
    background-image: linear-gradient(90deg, #ff8400, #1c355e 50%, transparent 50%, transparent 100%);
    background-size: 20px 20px;
    width: calc(100px + 30px);
}

.section-timeline .vertical-timeline .timeline-circle:after {
    content: '';
    position: absolute;
    border-radius: 50%;
    transition: 0.4s;
    top: calc(50% - 4px);
    left: -4px;
    width: 9px;
    height: 9px;
    background: var(--color-white);
}

.section-timeline .vertical-timeline .text {
    box-shadow: 6px 7px 20px rgba(0, 0, 0, 0.1);
    margin: 0px 45px 0px 0px;
    padding: 31px 40px 33px 50px;
    border-radius: 5px 5px 5px 5px;
    background-color: var(--color-white);
}

.section-timeline .vertical-timeline .text h3 {
    font-size: 23px;
    font-weight: 600;
}

.section-timeline .vertical-timeline .text p {
    font-size: 16px;
}

.section-timeline .vertical-timeline .serivces-count {
    position: relative;
    font-size: 36px;
    width: 70px;
    height: 70px;
    text-align: center;
    line-height: 70px;
    border-radius: 50%;
    flex: 1 0 auto;
    color: var(--color-white);
    background: rgb(255, 238, 238);
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-timeline .vertical-timeline .serivces-count img {
    max-width: 40px;
    transition: all .5s;
}

@media screen and (max-width: 991px) {
    .section-timeline .vertical-timeline .timeline-circle:before {
        width: calc(100px + -20px)
    }

    .section-timeline .vertical-timeline .text {
        margin: 0;
        padding: 20px 20px 20px 40px
    }

    .section-timeline .vertical-timeline .serivces-count {
        width: 50px;
        height: 50px;
        font-size: 24px;
        line-height: 50px
    }

    .section-timeline .vertical-timeline .item:nth-child(even) .text {
        margin: 0;
        padding-left: 20px;
        padding-right: 40px
    }

    .section-timeline .vertical-timeline .timeline-circle {
        margin: 0px 30px 0px 30px
    }
}

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

    .section-timeline .vertical-timeline:before,
    .section-timeline .vertical-timeline:after,
    .section-timeline .vertical-timeline .timeline-items:before {
        left: 10px
    }

    .section-timeline .vertical-timeline .item:not(:last-child) {
        margin-bottom: 40px
    }

    .section-timeline .vertical-timeline .timeline-content {
        order: 2;
        flex-basis: unset;
    }

    .section-timeline .vertical-timeline .icon {
        order: 3;
        flex-basis: 30%
    }

    .section-timeline .vertical-timeline .text {
        padding: 20px 10px 20px 30px;
    }

    .section-timeline .vertical-timeline .item:nth-child(even) {
        flex-direction: row;
        text-align: left
    }

    .section-timeline .vertical-timeline .item:nth-child(even) .text {
        padding-left: 30px;
        padding-right: 20px
    }

    .section-timeline .vertical-timeline .item:nth-child(odd) {
        flex-direction: row;
        text-align: left
    }

    .section-timeline .vertical-timeline .item:nth-child(even) .serivces-count,
    .section-timeline .vertical-timeline .item:nth-child(odd) .serivces-count {
        margin-right: -20px;
        margin-left: 0
    }

    .section-timeline .vertical-timeline .item:nth-child(even) .timeline-content,
    .section-timeline .vertical-timeline .item:nth-child(odd) .timeline-content {
        flex-direction: row
    }

    .section-timeline .vertical-timeline .item:nth-child(even) .icon,
    .section-timeline .vertical-timeline .item:nth-child(odd) .icon {
        justify-content: center;
        display: none;
    }
}

@media(max-width:991px) {
    .section-timeline .vertical-timeline .serivces-count img {
        max-width: 30px;
        transition: all .5s;
    }
}

/* ----------------------------------------------------------------
    17. Domain Search Form Css
------------------------------------------------------------------- */
.domain-search-form {
    display: block;
    padding: 10px 0px;
    max-width: 100%;
    position: relative;
    background: #fff;
    border-radius: 10px;
    width: 100%;
}

.domain-search-form .inputs {
    border: 0;
    background: rgb(255, 255, 255);
    height: 60px;
    padding: 15px 25px;
    width: 100%;
    color: rgb(101, 94, 94) !important;
    outline: unset;
}

.domain-search-form .submit {
    position: absolute;
    top: 12px;
    right: 12px;
}

@media (max-width:575px) {
    .domain-search-form {
        padding: 10px;
        padding-top: 0;
    }

    .domain-search-form .inputs {
        padding: 10px;
    }

    .domain-search-form .submit {
        position: unset;
        width: 100%;
    }
}

/* ----------------------------------------------------------------
    18. Domain Promos Css
------------------------------------------------------------------- */
.domain-names-tld {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .2);
    border-radius: 12px;
    position: relative;
    height: 100%;
    transition: all 0.3s;
}

.domain-names-tld:hover {
    transform: translateY(-10px);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.domain-names-tld .inner {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px 0;
}

.domain-names-tld .one-year-free {
    font-size: 12px;
    line-height: 1.5;
    padding: 4px 8px;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    width: max-content;
    min-width: auto;
    font-weight: 500;
    background-color: #014ccc;
    color: #fff;
}

.domain-names-tld .inner .logos {
    display: block;
}

.domain-names-tld .inner .logos img {
    max-height: 30px;
}

.domain-names-tld .inner .contents {
    display: block;
}

.domain-names-tld .inner .contents h5 {
    font-size: 27px;
    font-weight: 600;
    margin-bottom: 0;
}

.domain-names-tld .inner .contents p {
    color: #212121;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 0;
    margin-top: 9px;
}

/* ----------------------------------------------------------------
    19. FREE Add-ons Css
------------------------------------------------------------------- */
.free-ad-ons {
    padding: 40px 35px 40px 40px;
    border-radius: 20px 20px 20px 20px;
    background: #fff;
    height: 100%;
}

.free-ad-ons.p-dicreace{
    padding: 30px 25px 30px 30px;
}

.free-ad-ons-transparnet .free-ad-ons {
    background: #F0F7FF;
}

.free-ad-ons .icon {
    margin-bottom: 15px;
}

.free-ad-ons .icon img {
    max-height: 50px;
}

.free-ad-ons h4 {
    font-size: 25px;
    font-weight: 600;

}

.free-ad-ons p {
    font-size: 15px;
    margin-top: 15px;
    margin-bottom: 0;
}


/* ----------------------------------------------------------------
    20. Sunrise Domain Form Css
------------------------------------------------------------------- */
.sunrise-form {
    padding: 20px;
    position: relative;
    box-shadow: 0 0 5px #e1e1e1;
    border-radius: 5px;
    border: 1px solid #d5d5d5;
}

.sunrise-form .labels {
    font-size: 17px;
    font-weight: 600;
    position: relative;
    width: 100%;
}

.sunrise-form .smd-info {
    position: absolute;
    right: 20px;
    top: 6px;
}

.sunrise-form .smd-info .tooltip-txt {
    position: relative;
    cursor: help;
    color: rgb(var(--color-primary));
    font-weight: 500;
    font-size: 15px;
}



.sunrise-form .smd-info .tooltip-txt .tooltip-info {
    display: none;
    padding: 15px;
    z-index: 5;
    cursor: default;
    background: #272727;
    color: #ededed;
    font-size: 12px;
    line-height: 1.5;
    position: absolute;
    top: 25px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}

.sunrise-form .smd-info .tooltip-txt .tooltip-info.what-is-smd {
    width: 635px;
    right: 2px;
}

.sunrise-form .smd-info .tooltip-txt .tooltip-info.what-is-smd span {
    background: url('../images/up_arrow.png') 0 0 no-repeat;
    right: 29px;
    width: 22px;
    height: 12px;
    position: absolute;
    top: -10px;
    display: block;

}

.sunrise-form .smd-info .tooltip-txt:hover .tooltip-info {
    display: block;
}

.sunrise-form .smd-info .tooltip-txt+.tooltip-txt {
    cursor: pointer;
}

@media (max-width:991px) {
    .sunrise-form .smd-info {
        display: none;
    }
}

.sunrise-form .input {
    width: 100%;
    background: #fff;
    border: 1px solid #e9e9e9;
    padding: 15px;
    font-size: 16px;
    outline: none;
    border-radius: 5px;
}

/* ----------------------------------------------------------------
    21. Domain Transfer Form Css
------------------------------------------------------------------- */
.domain-trasfer-form {
    display: flex;
    width: 100%;
    gap: 20px;
}

.domain-trasfer-form>.search-form {
    width: 650px;
    max-width: 100%;
    position: relative;
}

.domain-trasfer-form>.search-form .input {
    width: 100%;
    display: block;
    padding: 19px;
    border: 0;
    outline: unset;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    color: #535353;
    line-height: 1;
}

.domain-trasfer-form>.search-form .select {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 150px;
    max-width: 100%;
    padding: 19px;
    border: 0;
    outline: unset;
    border-radius: 0;
    font-size: 16px;
    font-weight: 500;
    color: #535353;
    line-height: 1;
    background: transparent;
    border-inline-start: 1px solid #d5d5d5;
}

.domain-trasfer-form .submit-btn {
    width: 200px;
    max-width: 100%;
}

@media (max-width:767px) {
    .domain-trasfer-form {
        flex-wrap: wrap;
    }

    .domain-trasfer-form>.search-form {
        width: 100%;
    }

    .domain-trasfer-form>.search-form .select {
        position: unset;
        width: 100%;
        margin-top: 20px;
        border-radius: 5px;
        border: 1px solid #d5d5d5;
        background: #fff;
    }

    .domain-trasfer-form .submit-btn {
        width: 100%;
    }
}

/* ----------------------------------------------------------------
    22. Domain Pricing Table Css
------------------------------------------------------------------- */
.input-table-search{
    width: 100%;
    display: block;
    padding: 19px;
    border: 0;
    outline: unset;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    color: #535353;
    line-height: 1;
    border: 1px solid #e9eaec;
    margin-bottom: 15px;
}
.domain-pricing-table{
    width: 100%;
    background: #FFF;
    padding: 15px;
    box-shadow: 0px 0px 20px 0px rgba(76, 87, 125, 0.08);
    border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0;
    margin-bottom: 15px;
    overflow-x: auto;
}

.domain-pricing-table table{
border: 1px solid #e9eaec;
border-collapse: collapse;
}

.domain-pricing-table table thead tr th{
    background: #f5f5f5;
    border: 1px solid #e9eaec;
    padding: 10px;
    font-size: 18px;
}

.domain-pricing-table table tbody tr td{
    border: 1px solid #e9eaec;
    padding: 10px;
    font-size: 16px;
}

.domain-pricing-table table tbody tr td .strikeout{
text-decoration: line-through;
color: #9c0b0b9f;
}


/* ----------------------------------------------------------------
    23. Plan Style Css
------------------------------------------------------------------- */
.plan-style-one{
padding: 25px;
background: #fff;
box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
border-radius: 8px;
border: 1px solid rgba(var(--color-primary), 0.2);
position: relative;
transition: all 0.3s;
}
.plan-style-one:hover{
    transform: translateY(-10px);
    border: 1px solid rgba(var(--color-primary), 0.5);
}
.plan-featured .plan-style-one{
    overflow: hidden;
}

.plan-featured .plan-style-one:before{
    content: attr(data-popular);
  text-align: center;
  width: 216px;
  padding-block: 5px;
  position: absolute;
  top: 15px;
  right: -48px;
  -webkit-transform: rotate(27deg);
  transform: rotate(27deg);
  background: #2b1f51;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
}

.plan-style-one h4{
    font-size: 25px;
    font-weight: 600;
    margin: 0;
}

.plan-style-one p{
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
    margin-top: 10px;
}

.plan-style-one h3{
    font-size: 35px;
    font-weight: 600;
    margin: 0;
    margin-top: 10px;
}

.plan-style-one h3 .durection{
    font-size: 16px;
    font-weight: 500;
}

.plan-style-one .plan-select-btn{
    background: rgb(var(--color-primary));
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    line-height: 1.5;
    text-align: center;
    padding: 10px 10px;
    width: 100%;
    display: block;
    margin-top: 15px;
    transition: all 0.5s;
    border: 0;
}

.plan-style-one .plan-select-btn:hover{
    background: rgb(var(--color-secondary));
}

.plan-style-one h5{
    font-size: 16px;
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 0;
  color: #939393;
}

.plan-style-one ul{
    margin: 0;
    margin-top: 15px;
    padding: 0;
}

.plan-style-one ul li{
    position: relative;
    font-size: 16px;
    font-weight: 500;
    padding-inline-start: 30px;
}

.plan-style-one ul li + li{
    margin-top: 10px;
}

.plan-style-one ul li:before{
    position: absolute;
  content: '\F633';
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-bootstrap-icons);
  top: 2px;
  left: 0;
  color: #fff;
  background: #014ccc;
  border-radius: 100%;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ----------------------------------------------------------------
    24. Just One Click Css
------------------------------------------------------------------- */
.just-one-click{
    background: #f2eeff;
    padding: 60px 0;
    border-radius: 26px;
}

@media (min-width:992px) {
    .just-one-click .swiper-just-one-click{
        margin: 0 100px;
    }
}

.just-one-click .swiper-just-one-click .inner {
	background: #fff;
	border: 1px solid #d0cfcf;
	border-radius: 10px;
	padding: 15px;
    text-align: center;
}

@media (max-width:991px) {
    .just-one-click{
        padding: 25px;
        border-radius: 5px;
    }
}

/* ----------------------------------------------------------------
    25. Collapse Css
------------------------------------------------------------------- */

.ulcollapse {
    background: transparent;
    padding: 0px;
    margin: 0;
    list-style: none;
    position: relative;
}

@media (min-width:991px) {
    .ulcollapse{
        padding-inline-start: 30px;
    }

    .ulcollapse:before{
        content: "";
        position: absolute;
        inset-inline-start: 0;
        top: 0;
        width: 1px;
        height: 100%;
        background: rgb(219, 216, 184);
    }

    .ulcollapse > li:before{
        content: "";
    position: absolute;
    left: -38px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: rgb(219, 216, 184);
    border-radius: 50%;
    }
    .ulcollapse.bg2:before{
        background: rgb(209, 220, 232);
    }
    .ulcollapse.bg2 > li:before{
        background: rgb(209, 220, 232);
    }
}

.ulcollapse li {
    background: #fff;
    list-style: none;
    border-radius: 5px;
    border: 1px solid rgba(var(--color-primary), 0.2);
    position: relative;
}

.ulcollapse li+li {
    margin-top: 15px;
}

.ulcollapse li>a {
    font-size: 18px;
    font-weight: 600;
    color: #393939;
    padding: 20px;
    display: flex;
    align-items: center;
    transition: all 0.3s;
    cursor: pointer;
    user-select: none;
    border-radius: 5px;
}

@media (max-width:767px) {
    .ulcollapse li>a {
        font-size: 17px;
    }
}

.ulcollapse li.active>a,
.ulcollapse li.active>a:hover,
.ulcollapse li.active>a:focus {
    color: rgb(var(--color-primary));
    background: #fff;
    border-radius: 5px;
    padding-bottom: 0;
    transition: all 0.3s;
}

.ulcollapse li p {
    padding: 15px;
    font-size: 16px;
    line-height: 2;
    color: #4B4B4B;
    display: none;
    border-radius: 0px 0px;
    margin-bottom: 0;
}

@media (max-width:767px) {
   .ulcollapse li p {
        font-size: 15px;
        line-height: 1.5;
    }
}

.ulcollapse li p a {
    display: contents;
    color: rgb(var(--color-primary));
    text-decoration: underline !important;
    cursor: pointer;
}

/* ----------------------------------------------------------------
    26. Tabings Css
------------------------------------------------------------------- */
.tabs-section-one .tabs {
    display: block;
    width: 100%;
}

.tabs-section-one .tabs .items {
    display: flex !important;
    width: 100%;
}

.tabs-section-one .tabs .items .item {
    flex: 1 1 auto;
    -webkit-box-flex: 1;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    padding: 20px 10px;
    position: relative;
    cursor: pointer;
    display: block;
    background: #d8ebff;
    color: #333;
    text-align: center;
    border-inline-end: 1px solid #c6d4ea;
}

.tabs-section-one .tabs .items .item.active {
    background: rgb(var(--color-primary));
    color: #fff;
    border-color: rgb(var(--color-primary));
}

.tabs-section-one .tabs .items .item:last-child{
    border: unset;
}

.tabs-section-one .contents {
    display: block;
}

.tabs-section-one .contents .item {
    display: none;
}

.tabs-section-one .contents .item.active {
    display: block;
}

@media (max-width:500px) {
    .tabs-section-one .tabs .items .item{
        padding: 15px 10px;
        font-size: 14px;
    }
}

.tabs-section-two .tabs {
    display: block;
    width: 100%;
}

.tabs-section-two .tabs .items {
    display: block;
    margin: 0 auto 60px;
    border-bottom: 1px solid #e0e0e0;
}

.tabs-section-two .tabs .items .item {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    padding: 12px 0;
    position: relative;
    color: rgb(var(--color-secondary));
    cursor: pointer;
}

.tabs-section-two .tabs.many-tabs .items .item {
    font-size: 16px;
}

.tabs-section-two .tabs .items .item+.item {
    margin-inline-start: 40px;
}

.tabs-section-two .tabs .items .item.active {
    color: #1b1b1b;
    font-weight: 600;
}

.tabs-section-two .tabs .items .item:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 4px;
    background: 0 0;
    transition: width .5s linear;
}

.tabs-section-two .tabs .items .item.active:after {
    width: 100%;
    background: rgb(var(--color-secondary));
}

.tabs-section-two .contents {
    display: block;
}

.tabs-section-two .contents .item {
    display: none;
}

.tabs-section-two .contents .item.active {
    display: block;
}

@media (max-width:767px) {
    .tabs-section-two .tabs .items .item {
        font-size: 14px;
    }

    .tabs-section-two .tabs .items .item+.item {
        margin-inline-start: 30px;
    }

    .tabs-section-two .tabs .items {
        margin: 0 auto 30px;
    }

    .tabs-section-two .tabs.many-tabs .items {
        overflow: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .tabs-section-two .tabs.many-tabs .items::-webkit-scrollbar {
        display: none;
    }

    .tabs-section-two .tabs.many-tabs .items {
        display: flex;
    }

    .tabs-section-two .tabs.many-tabs .items .item {
        white-space: nowrap;
    }
}
/* ----------------------------------------------------------------
    27. Titan Email Video
------------------------------------------------------------------- */

.titanmail-video{
	background-color: rgb(250, 251, 254);
	border: 15px solid rgba(196, 192, 192, 0.5);
	border-radius: 5px;
	overflow: hidden; 
    }
    .titanmail-video video{
        height: 100%;
  width: 100%;
  display: flex;
  border: none;
  background-color: #000;
    }


/* ----------------------------------------------------------------
    28. Table Affiliate Page
------------------------------------------------------------------- */
.table-affiliate table{
    table-layout: fixed;
  border: 1px solid #c4c6ca;
  box-shadow: 0 4px 4px rgba(0,0,0,.25);
  border-radius: 4px;
  margin-bottom: 32px;
}
.table-affiliate table th{
    width: auto;
    font-size: 20px;
    color: #a6a5a5;
    padding: 20px;
    line-height: 1.5;
    font-weight: 400;
    text-align: start;
    vertical-align: baseline;
}

.table-affiliate table tbody tr:nth-child(2n+1) td{
    background-color: #fafafb;
  }

  .table-affiliate table td{
    text-align: start;
  vertical-align: middle;
  font-size: 23px;
  font-weight: 300;
  padding: 14px;
  padding-inline-start: 20px;
  color: #7a7b7b;
  font-weight: 600;
  line-height: 35px;
  color: #1b1a19;
  }

  .table-affiliate table td b {
    color: #014ccc;
  }

  @media (max-width:767px) {
    .table-affiliate table td{
        font-size: 16px;
        line-height: 1.5;
        font-weight: 500;
      }
  }

/* ----------------------------------------------------------------
    29. Login & Register Page
------------------------------------------------------------------- */
.account-page{
    padding: 150px 0 50px 0;
    position: relative;
    background: linear-gradient(90deg, #2e1a6d, #4a338d 45.83%, #7759ce);
}

.account-page .inner{
    padding: 20px;
}

@media (max-width:575px) {
    .account-page .inner{
        padding: 0px;
    } 
}

.account-page .inner .user-title {
    margin-bottom: 20px;
    font-size: 30px;
    color: #fff;
    display: block;
    text-align: center;
    line-height: 1.5;
    font-weight: 800;
  }

  .account-page .inner .user-disc {
    width: 90%;
    color: #d4d4d4;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.5;
    margin-inline-start: 5%;
    text-align: center;
    margin-bottom: 20px;
  }

  .account-page .inner .labels {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    width: 100%;
    color: #f8fafd;
    line-height: 1;
  }

  .account-page .inner .inputs {
    height: 52px;
    padding: 5px 15px;
    font-size: 16px;
    border: 1px solid #dee0e3;
    box-shadow: unset;
    outline: unset;
    color: #585a5f;
    font-size: 17px;
    font-weight: 500;
    border-radius: 4px;
    width: 100%;
  }

  .account-page .inner .next-link{
    color: #fff;
    border-top: 2px dashed #aaa9a9;
    padding-top: 10px;
  }

  .account-page .inner .next-link a{
    color: rgb(var(--color-secondary));
    text-decoration: underline;
  }

  .account-page .forgot-text{
    color: rgb(var(--color-secondary)) !important;
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
  }

  .account-page .checkbox {
    display: flex;
    align-items: center;
    color: #f8fafd;
    width: 100%;
    padding-inline-start: 25px;
    position: relative;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    user-select: none;
    max-width: 100%;
  }

  .account-page .checkbox input[type="checkbox"] {
    position: absolute;
    top: 5px;
    inset-inline-start: 0px;
    opacity: 1;
    width: 15px;
    height: 15px;
    margin: 0;
  }

  .account-page .user-page-ads {
    width: 100%;
    height: auto;
    background: #33226630;
    display: block;
    border-radius: 5px;
    padding: 30px;
  }

  @media (max-width:767px) {

    .account-page .user-page-ads{
      padding: 15px;
    }
  
  }

  .account-page .user-page-ads-inner p{
    font-size: 20px;
    text-align: center;
    color: #ffffffc9;
    font-weight: 500;
  }

  @media (max-width:767px) {

    .account-page .user-page-ads-inner p{
        font-size: 16px;
    }
  
  }

  .account-page .swiper .swiper-slide img{
    opacity: 0.9;
  }
  

  .account-page .swiper .swiper-pagination {
    margin-top: 20px;
    position: relative;
  }
  
  .account-page .swiper .swiper-pagination .swiper-pagination-bullet {
    width: 13px;
    height: 13px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid rgb(var(--color-secondary));
  }
  
  
  .account-page .swiper .swiper-pagination .swiper-pagination-bullet-active {
    background-color: rgb(var(--color-secondary));
  }

/* ----------------------------------------------------------------
    30. Contact Page
------------------------------------------------------------------- */
.contact .info {
    background-color: #fff;
    padding: 40px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
  
  .contact .info h3 {
    font-weight: 600;
    font-size: 24px;
  }
  
  .contact .info p {
    color: #8d969f;
    margin-bottom: 30px;
    font-size: 15px;
  }
  
  .contact .info-item+.info-item {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #dddedf;
  }
  
  .contact .info-item i {
    font-size: 24px;
    color: rgb(var(--color-primary));
    transition: all 0.3s ease-in-out;
    margin-right: 20px;
  }
  
  .contact .info-item h4 {
    padding: 0;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 5px;
  }
  
  .contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
    color: #8d969f;
  }
  
  .contact form {
    width: 100%;
  }
  
  .contact form .form-group {
    padding-bottom: 8px;
  }
  
  .contact form input[type=text],
  .contact form input[type=email],
  .contact form textarea {
    color: #8d969f;
    background-color: #fff;
    border-radius: 0px;
    box-shadow: none;
    font-size: 14px;
    border-color: #c0c0c0;
  }
  
  .contact form input[type=text]:focus,
  .contact form input[type=email]:focus,
  .contact form textarea:focus {
    border-color: rgb(var(--color-primary));
  }
  
  .contact form input[type=text]::placeholder,
  .contact form input[type=email]::placeholder,
  .contact form textarea::placeholder {
    color: #8d969f;
  }
  
  .contact form input[type=text],
  .contact form input[type=email] {
    height: 48px;
    padding: 10px 15px;
  }
  
  .contact form textarea {
    padding: 10px 12px;
    height: 290px;
  }


  /* ----------------------------------------------------------------
    31. Contents Page
------------------------------------------------------------------- */
  
  .content-section{
    display: block;
  }

  .content-section h2{
    font-size: 30px;
    font-weight: 700;
  }

  .content-section h3{
    font-size: 24px;
    font-weight: 600;
  }

  .content-section p{
    font-size: 16px;
  }
  
  
  
#home h3{
	color:#2f1c6a;
	font-weight:bold;
}
#home h5{
	color:#2f1c6a;
	font-weight:bold;
}
.hero-kat{
	margin-top: 55px;
}

.offcolor{
	color:blue;
}


.pricehome{
	    font-size: 19px;
}

.butt-home{
	background-color: #014ccc;
    border: 2px solid #014ccc;
	padding:8px 40px;
	font-size:18px;
	border-radius:7px;
}



#butt-ome{
	display:flex;
	flex-direction: row;
        justify-content: flex-start;
}

.timer-home{
	margin-left:20px;
	        align-items: center;
    background-color: #ebe4ff;
    border-radius: 8px;
    display: flex;
    height: 48px;
	font-size:18px;
	padding:10px;
    justify-content: center;
	color:#000;
}

.timer {
    font-size: 2rem;
    font-weight: bold;
}

.timer span {
    padding: 0 0.5rem;
}


.check-home{
	margin-right:10px;
	color:#014ccc;
}

.price-home{
	margin-top:15px;
}

.jumbo{
	margin-top: -15px;
	font-weight:bold;
	font-size:18px;
}

.days30{
	margin-top:10px;
}
.pc-home{
	margin-top:45px;
}

.right-30{
	margin-right:10px;
}

.price-pro{
	font-size:48px;
}
@media only screen and (max-width: 600px) {
.pc-home {
    margin-top: 0px;
}	
	.price-pro{
		font-size:34px;
	}
 	.hero-kat {
    margin-top: 15px;
    text-align: center;
}
#butt-ome {
    display: flex;
    flex-direction: column;
 
}

#home h3 {
    color: #2f1c6a;
    font-weight: bold;
	font-size:24px;
}

#home h5 {
    color: #2f1c6a;
    font-weight: bold;
	font-size:18px;
}

.timer-home{
	
	align-items: center;
    background-color: #ebe4ff;
    border-radius: 8px;
    display: flex;
    height: 48px;
	font-size:18px;
	padding:10px;
    justify-content: center;
	color:#000;
	 width: 80%;
	 margin: 0 auto;
}

.butt-home {
    background-color: #014ccc;
    border: 2px solid #014ccc;
    padding: 8px 40px;
    font-size: 18px;
    border-radius: 7px;
    width: 80%;
}

.timer{
	margin-top:15px;
}


}


.tooltip-container {
    position: relative;
    display: inline-block;
}

.tooltip-icon {
    font-size: 24px; /* Adjust size of the icon as needed */
    color: #4CAF50; /* Icon color */
    cursor: pointer;
}

.tooltip-text {
    visibility: hidden;
    width: 180px; /* Adjust width as needed */
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 10px;
    position: absolute;
    z-index: 1;
    bottom: 125%; /* Position above the icon */
    left: 50%;
    margin-left: -90px; /* Center the tooltip */
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip-text i {
    margin-right: 8px; /* Space between icon and text */
}

.tooltip-container:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.tool-home{
	margin-left:10px;
}

.support-bg {
    background: #F0F0FF;
    padding: 30px 20px;
    border-radius: 8px;
}

.support-bg .contact-heading {
    margin-inline-start: 35px;
    border-right: 1px solid #dadadd;
}

.support-bg .contact-heading .content span {
    font-size: 20px;
    color: #123455;
    transition: all .4s;
    font-weight: 600;
}

.support-bg .contact-heading a {
    font-size: 13px;
    color: #123455;
    transition: all .4s;
}
.call-heading {
    padding: 30px 20px;
    border-radius: 8px;
}
.bg3 {
    background: #E6F5FF;
}
.endsupport {
    padding: 80px 0px 80px 0px;
}

@media (max-width: 992px) {
    .support-bg .contact-heading {
        border-right: unset;
        border-bottom: 1px solid #dadadd;
        padding-bottom: 30px;
    }
}

.kongcode-2 {
	width: 100%;
	background: #080245;
	padding: 0 20px;
	position: sticky;
	top: 0;
	z-index: 100;
	border-bottom: 1px solid #ddd;
}

.kongcode-3 {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: space-between;
	padding: 20px 0;
	transition: all .3s ease-in-out;
}

.kongcode-4 {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
}

.kongcode-logo-4 {
	margin-right: 25px;
}

.kongcode-logo-4 a {
	display: block;
	position: relative;
}

.kongcode-logo-4 a:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.kongcode-logo-4 a img {
	display: block;
	width: 145px;
	height: 150px;
}

.kongcode-js-5 {
	margin-right: 30px;
	width: 30px;
	height: 25px;
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	cursor: pointer;
}

.kongcode-js-5 span {
	width: 100%;
	height: 3px;
	background: #fff;
}

.igfm-nav-main {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
}

.igfm-nav-main li {
	margin-right: 30px;
}

.igfm-nav-main li:last-child {
	margin-right: 0;
}

.igfm-nav-main li a,.igfm-nav-main li span {
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	display: inline-block;
	line-height: 1.2;
	transition: all .3s ease-in-out;
	cursor: pointer;
}

.igfm-nav-main li a:hover,.igfm-nav-main li span:hover {
	color: #408de4;
}

.kongcode-6 {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
}

.kongcode7 {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	font-size: 18px;
}

.kongcode-7 li {
	margin: 0 10px;
	font-weight: 400;
}

.kongcode-7 li a {
	color: #fff;
	font-weight: 400;
}

.kongcode-7 li span {
	font-weight: 500;
}

.kongcode-js-58 {
	background: #080245;
	position: fixed;
	top: 0;
	left: -380px;
	z-index: 200;
	width: 380px;
	height: 100vh;
	overflow: auto;
	transition: all .5s ease-in-out;
}

.kongcode-js-19 {
	left: 0;
	transition: all .5s ease-in-out;
}

.kongcode-20 {
	width: 100%;
	height: 100%;
	padding: 20px 30px;
}

.kongcode-57 {
	width: 100%;
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: space-between;
	color: #fff;
	font-size: 25px;
	margin-bottom: 25px;
}

.kongcode-56 {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
}

.kongcode-56 i {
	opacity: 0;
	transition: all .5s ease-in-out;
}

.kongcode-js-55 i {
	opacity: 1;
	cursor: pointer;
	transform: rotate(360deg);
}

.kongcode-js-53 {
	opacity: 0;
	transition: all 1s ease-in-out;
}

.kongcode-js-53 i {
	cursor: pointer;
}

.kongcode-54 {
	font-size: 13px;
	line-height: 1;
	margin-left: 3px;
	width: 0;
	opacity: 0;
	overflow: hidden;
	transition: all .3s ease-in-out;
	cursor: pointer;
}

.kongcode-js-55 .kongcode-54 {
	opacity: 1;
	width: auto;
}

.kongcode-js-19 .kongcode-js-53 {
	opacity: 1;
	transform: rotate(360deg);
}

.kongcode-52 {
	margin: 10px 0 20px;
}

.kongcode-52 a {
	font-size: 14px;
	font-weight: 500;
	color: #d5d5d5;
	display: inline-block;
	border: 1px solid #d5d5d5;
	padding: 5px 15px;
	border-radius: 3px;
	transition: all .3s ease-in-out;
}

.kongcode-52 a:hover {
	color: #2c2c2c;
	background: #d5d5d5;
}

.kongcode-51 {
	margin-top: 35px;
}

.kongcode-js-49 {
	color: #fff;
	margin: 20px 0;
}

.kongcode-50,.kongcode-45 {
	color: #fff;
	font-size: 20px;
	font-weight: 500;
	cursor: pointer;
	transition: all .5s ease-in-out;
}

.kongcode-50 i {
	margin-left: 15px;
	opacity: 0;
	transition: all .5s ease-in-out;
}

.kongcode-45:hover,.kongcode-50:hover {
	color: #abeaff;
}

.kongcode-50:hover i {
	opacity: 1;
}

.kongcode-js-44 {
	margin-top: 15px;
}

.kongcode-43 {
	color: #fff;
	margin: 12px 0;
	cursor: pointer;
}

.kongcode-41 {
	font-size: 16px;
	margin-bottom: 5px;
	transition: all .3s ease-in-out;
}

.kongcode-43:hover .kongcode-41 {
	color: #abeaff;
}

.kongcode-42 {
	font-size: 14px;
	font-weight: 400;
	color: #d5d5d5;
	transition: all .3s ease-in-out;
}

.kongcode-43:hover .kongcode-42 {
	color: #abeaff;
}

.kongcode-js-48 .kongcode-50:hover i {
	opacity: 0;
}

.kongcode-js-48 .kongcode-50 {
	color: #abeaff;
	position: relative;
	padding-bottom: 10px;
}

.kongcode-js-48 .kongcode-50:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 70%;
	height: 1px;
	background: #abeaff;
}

.pymnt-card-visa {
	background-position: 0 0;
}

.pymnt-card-mastercard {
	background-position: 14.28% 0;
}

.pymnt-card-rupay {
	background-position: 28.58% 0;
}

.pymnt-card-bankt {
	background-position: 42.84% 0;
}

.pymnt-card-amrcn {
	background-position: 57.12% 0;
}

.pymnt-card-paypal {
	background-position: 71.4% 0;
}

.pymnt-card-cheque {
	background-position: 85.68% 0;
}

.pymnt-card-maestro {
	background-position: 100% 0;
}

@keyframes coupon_border_anim {
	0% {
		border-color: #408de4;
	}

	50% {
		border-color: #ff4546;
	}

	100% {
		border-color: #408de4;
	}
}

.f23645-mncntnr {
	padding: 70px 10px;
	position: relative;
}

.f23645-mnwrapr {
	width: 1150px;
	margin: 0 auto;
	margin-top: 70px;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
}

.f23645-mncol {
	text-align: center;
	margin-right: 50px;
	margin-bottom: 30px;
	width: calc((100% - 100px)/3);
	padding: 40px 30px;
	transition: all .3s ease-in-out;
}

.f23645-mncol:hover {
	box-shadow: 0 0 20px #d4d4d4;
	transform: scale(1.01);
}

.f23645-mnwrapr .f23645-mncol:nth-child(3n) {
	margin-right: 0;
}

.f23645-img {
	display: block;
	width: 40%;
	margin: 0 auto;
	margin-bottom: 30px;
}

.f23645-img div {
	width: 100%;
	height: 0;
	padding-top: 100%;
}

.f23645-domains-name {
	background-position: 0 0;
}

@keyframes srvxanim-pop-ico1-anim {
	0% {
		transform: rotate(0);
	}

	100% {
		transform: rotate(359deg);
	}
}

@keyframes srvxanim-pop-ico2-sub2-anim {
	0% {
		transform: rotate(0);
	}

	100% {
		transform: rotate(359deg);
	}
}

@keyframes bzer-lin-anim-center {
	0% {
		top: 25px;
	}

	100% {
		top: 28px;
	}
}

@keyframes bzer-lin-anim-lines {
	0% {
		height: 180px;
	}

	100% {
		height: 185px;
	}
}

@keyframes blink-anim {
	0% {
		opacity: 1;
	}

	50% {
		opacity: .2;
	}

	100% {
		opacity: 1;
	}
}

@keyframes glbc-bottom-active {
	0% {
		opacity: 0;
	}

	10% {
		opacity: 1;
	}
}

@keyframes global-dot-anim {
	0% {
		transform: scale(0);
		opacity: .3;
	}

	90% {
		opacity: .3;
	}

	100% {
		transform: scale(3);
		opacity: 0;
	}
}

@keyframes glbc-line-active {
	0% {
		height: 0;
	}

	10% {
		height: 0;
	}

	40% {
		height: 60px;
	}
}

@keyframes glbc-title-active {
	0% {
		opacity: 0;
	}

	40% {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}
}

@keyframes glbc-title-before {
	0% {
		transform: scale(0);
	}

	50% {
		transform: scale(0);
	}

	65% {
		transform: scale(15);
	}
}

@keyframes glbc-title-span {
	0% {
		width: 0;
	}

	65% {
		width: 0;
	}

	75% {
		width: auto;
	}
}

.kongcode-8 {
	position: relative;
}

.kongcode-9 {
	display: none;
	width: 300px;
	position: absolute;
	top: 100%;
	right: -35px;
	z-index: 100;
	padding-top: 30px;
	transition: all .5s ease-in-out;
}

.kongcode-8:hover .kongcode-9 {
	display: block;
}

.kongcode-10 {
	color: #fff;
	background: #014ccc;
	padding: 20px 15px 5px;
	width: 100%;
	border-radius: 5px;
	position: relative;
	transition: all .5s ease-in-out;
	box-shadow: 5px 5px 10px rgba(0,0,0,.1);
}

.kongcode-10:before {
	content: '';
	position: absolute;
	top: -22px;
	right: 30px;
	border-left: 12px solid transparent;
	border-right: 12px solid transparent;
	border-bottom: 22px solid #408de4;
	transition: all .5s ease-in-out;
}

.kongcode-11 {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 15px;
	position: relative;
}

.kongcode-11:before {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	width: 80%;
	height: 1px;
	background: #7eb8fa;
}

.kongcode-12 {
	display: block;
	margin: 0;
	padding: 0;
	display: flex;
	flex-flow: row wrap;
}

.kongcode-12 li {
	display: block;
	width: 100%;
	margin: 0;
	line-height: 1.1;
	border-bottom: 1px solid #7eb8fa;
}

.kongcode-12 li:last-child {
	border-bottom: none;
}

.kongcode-12 li a {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	padding: 12px 5px;
	transition: all .3s ease-in-out;
}

.kongcode-12 li a:hover {
	color: #b5eefe;
}

.kongcode-12 li a i {
	font-size: 110%;
	margin-right: 5px;
}

.kongcode-13 {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}

.kongcode-15 {
	width: 45px;
}

.daisy-avatar {
	width: 100%;
}

.daisy-avatar div {
	width: 100%;
	height: 0;
	padding-top: 115%;
	background: url(../images/login.png) no-repeat;
	background-size: 100%;
	position: relative;
}

.daisy-avatar div:after,.daisy-avatar div:before {
	content: '';
	position: absolute;
	top: calc(50% - 8px);
	right: -8px;
	width: 16px;
	height: 16px;
	background: #17dd58;
	border-radius: 50%;
}

.daisy-avatar div:after {
	animation: daisy-avatar-online-anim 1.5s infinite linear;
}

@keyframes daisy-avatar-online-anim {
	0% {
		opacity: 1;
		transform: scale(1);
	}

	100% {
		opacity: 0;
		transform: scale(1.8);
	}
}

.kongcode-16 {
	width: calc(100% - 70px);
}

.kongcode-17 {
	font-size: 12px;
	line-height: 1.4;
	color: #636465;
	background: #fff;
	padding: 7px 10px;
	border-radius: 12px;
	border-top-left-radius: 0;
	position: relative;
}

.kongcode-17:before {
	content: '';
	position: absolute;
	top: 0;
	left: -20px;
	border-top: 0 solid transparent;
	border-bottom: 15px solid transparent;
	border-right: 20px solid #fff;
}

.gloot-mncntnr {
	padding: 10px;
	margin-top: 15px;
}

.gloot-mnwrapr {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}

.gloot-cta {
	display: inline-flex;
	flex-flow: row wrap;
	align-items: center;
	color: #eceffa;
	cursor: pointer;
}

.gloot-flag {
	width: 30px;
	margin-right: 10px;
}

.gloot-flag div {
	width: 100%;
	height: 0;
	padding-top: 67%;
	background: url(img/in.jpg) no-repeat;
	background-size: 100%;
}

.gloot-region {
	font-size: 14px;
	color: #eceffa;
	margin-right: 5px;
}

.gloot-cta i {
	font-size: 130%;
}

.aprl-mncntnr {
	display: none;
	position: absolute;
	bottom: calc(100% + 25px);
	left: 0;
	width: 100%;
	background: #fff;
	padding: 35px 45px;
	border-radius: 5px;
}

.aprl-mncntnr:before {
	content: '';
	position: absolute;
	z-index: 10;
	bottom: -15px;
	left: 40px;
	border-left: 13px solid transparent;
	border-right: 13px solid transparent;
	border-top: 15px solid #fff;
}

.aprl-close {
	position: absolute;
	top: 20px;
	left: 20px;
	width: 30px;
	height: 30px;
	cursor: pointer;
}

.aprl-bar {
	position: absolute;
	width: 2px;
	height: 100%;
	top: 0;
	left: calc(50% - 1px);
	background: #555656;
	transition: all .3s ease-in-out;
}

.aprl-close:hover .aprl-bar {
	background: #e76e6e;
}

.aprl-bar1 {
	transform: rotate(45deg);
}

.aprl-bar2 {
	transform: rotate(-45deg);
}

.aprl-hdrttl {
	text-align: center;
	font-size: 25px;
	line-height: 1.2;
	color: #2b2c2c;
	font-weight: 500;
	margin-bottom: 30px;
}

.aprl-mnwrapr {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
}

.aprl-box {
	width: 25%;
	padding: 13px 10px 13px 20px;
	background: #fff;
	position: relative;
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	transition: all .3s ease-in-out;
}

.aprl-box:hover {
	z-index: 10;
	box-shadow: 0 0 15px rgba(63,63,63,.1);
}

.aprl-box-active {
	z-index: 10;
	box-shadow: 0 0 15px rgba(63,63,63,.1);
}

.aprl-box-active:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 3px;
	height: 100%;
	background: #37a9e2;
}

.aprl-flag {
	width: 35px;
	margin-right: 10px;
}

.aprl-flag div {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 67.3%;
	background: url(img-ph-assets/flags/region-flags-all-150.png) no-repeat;
	background-size: 1100%;
}

.aprl-flag-in div {
	background-position: 0 0;
}

.aprl-flag-us div {
	background-position: 10% 0;
}

.aprl-flag-uk div {
	background-position: 20% 0;
}

.aprl-flag-ae div {
	background-position: 30% 0;
}

.aprl-flag-au div {
	background-position: 40% 0;
}

.aprl-flag-ca div {
	background-position: 50% 0;
}

.aprl-flag-sg div {
	background-position: 60% -.5%;
}

.aprl-flag-np div {
	background-position: 70% -.8%;
}

.aprl-flag-lk div {
	background-position: 80% 0;
}

.aprl-flag-bd div {
	background-position: 90% 0;
}

.aprl-flag-sa div {
	background-position: 100% 0;
}

.aprl-flag-th div {
	background-position: 0 33.33%;
}

.aprl-flag-my div {
	background-position: 10% 33.33%;
}

.aprl-flag-nz div {
	background-position: 20% 33.33%;
}

.aprl-flag-za div {
	background-position: 30% 33.33%;
}

.aprl-flag-ie div {
	background-position: 40% 33.33%;
}

.aprl-flag-jp div {
	background-position: 50% 34%;
}

.aprl-flag-hk div {
	background-position: 60% 33.33%;
}

.aprl-flag-ph div {
	background-position: 70% 33.33%;
}

.aprl-flag-il div {
	background-position: 80% 33.33%;
}

.aprl-region {
	font-size: 14px;
	color: #525252;
}

.aprl-box-active .aprl-region {
	color: #1889c1;
}

.subs-mncntnr {
	background: skyblue;
	padding: 30px 10px;
}

.ph-sub-mnwrapr {
	width: 1100px;
	margin: 0 auto;
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: center;
}

.ph-sub-mncol1 {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
}

.ph-sub-msgico {
	font-size: 35px;
	color: #444;
	margin-right: 15px;
}

.ph-sub-hdrtxt {
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	color: #444;
	margin-right: 20px;
}

.ph-sub-hdrtxt span {
	display: block;
}

.ph-sub-form {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	background: #fff;
	border-radius: 3px;
	overflow: hidden;
	box-shadow: 3px 3px 10px #cce3f7;
}

.ph-sub-form input {
	font-size: 15px;
}

.ph-sub-form input[type=email] {
	width: 350px;
	padding: 15px 10px;
	border: 1px solid #fff;
	transition: all .3s ease-in-out;
}

.ph-sub-form input[type=email]:focus {
	border: 1px solid #408de4;
}

.ph-sub-form input[type=email]:invalid {
	border: 1px solid #ec9999;
	background: #fdf4f4;
}

.ph-sub-form input[type=submit] {
	padding: 15px 20px;
	border: 1px solid #408de4;
}

.ph-sub-mncol2 {
	display: flex;
	align-items: center;
}

.ph-sub-mncol2 a {
	background: #fff;
	border: 1px solid #408de4;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
}

.ph-sub-mncol2 a i {
	font-size: 16px;
	color: #408de4;
	transition: all 1s ease-in-out;
}

.ph-sub-mncol2 a:last-child {
	margin-right: 0;
}

.ph-sub-mncol2 a:hover i {
	transform: rotateY(360deg);
}

@media screen and (max-width:1200px) {
	.subs-mncntnr {
		padding: 25px 10px;
	}

	.ph-sub-mnwrapr {
		width: 100%;
	}

	.ph-sub-msgico {
		font-size: 25px;
		margin-right: 10px;
	}

	.ph-sub-hdrtxt {
		font-size: 13px;
		margin-right: 10px;
	}

	.ph-sub-form input[type=email] {
		width: 300px;
		padding: 10px 5px;
	}

	.ph-sub-form input[type=submit] {
		padding: 10px 15px;
	}
}

@media screen and (max-width:750px) {
	.ph-sub-mncol1 {
		justify-content: center;
		width: 100%;
	}

	.ph-sub-hdrtxt span {
		display: inline-block;
	}

	.ph-sub-form {
		margin-top: 20px;
		width: 90%;
	}

	.ph-sub-form input[type=email] {
		width: calc(100% - 110px);
	}

	.ph-sub-form input[type=submit] {
		width: 110px;
	}
}

@media screen and (max-width:550px) {
	.ph-sub-form {
		width: 100%;
	}
}

@media screen and (max-width:450px) {
	.ph-sub-form input[type=email] {
		width: calc(100% - 90px);
	}

	.ph-sub-form input[type=submit] {
		width: 90px;
	}
}

@media screen and (max-width:1300px) {
	.kongcode-9 {
		right: 0;
	}

	.kongcode-10:before {
		right: 40px;
	}
}

@media screen and (max-width:1230px) {
	.TheMaxyfoot-hr1 {
		width: 95%;
		margin: 30px auto 25px;
	}

	.TheMaxyfoot-btm-wrapr {
		width: 100%;
		padding: 10px;
	}
}

@media screen and (max-width:1200px) {
	body {
		font-size: 14px;
	}

	.kongcode-3 {
		padding: 5px 0;
	}

	.kongcode-logo-4 {
		margin-right: 15px;
	}

	.igfm-nav-main li {
		margin-right: 20px;
	}

	.igfm-nav-main li a {
		font-size: 16px;
	}

	.kongcode-7 {
		font-size: 16px;
	}

	.kongcode-9 {
		padding-top: 17px;
	}

	.kongcode-10:before {
		top: -15px;
	}

	.TheMaxyfoot-mnwrapr {
		width: 100%;
	}

	.TheMaxyfoot-logo a {
		width: 150px;
	}

	.TheMaxyfoot-logo-tag {
		font-size: 13px;
	}

	.TheMaxyfoot-mnhdr {
		margin-bottom: 25px;
	}

	.TheMaxyfoot-pymnt-cntnr {
		margin-top: 30px;
	}

	.TheMaxyfoot-colinks li {
		margin-bottom: 10px;
	}

	.TheMaxyfoot-colinks li a {
		font-size: 13px;
	}

	.f23645-mncntnr {
		padding: 50px 10px;
	}

	.f23645-mnwrapr {
		width: 100%;
		margin-top: 50px;
	}

	.f23645-mncol {
		width: calc((100% - 50px)/3);
		margin-right: 25px;
		margin-bottom: 25px;
		padding: 20px 15px;
	}
}

@media screen and (max-width:1150px) {
	.aprl-mncntnr {
		bottom: calc(100% + 15px);
		padding: 20px 10px;
	}

	.aprl-mncntnr:before {
		bottom: -15px;
		border-left: 9px solid transparent;
		border-right: 9px solid transparent;
	}

	.aprl-close {
		top: 10px;
		left: 10px;
		width: 25px;
		height: 25px;
	}

	.aprl-hdrttl {
		font-size: 20px;
		margin-bottom: 25px;
	}

	.aprl-box {
		padding: 12px 5px 12px 15px;
	}

	.aprl-flag {
		width: 25px;
		margin-right: 5px;
	}

	.aprl-region {
		font-size: 13px;
		font-weight: 500;
	}

	.TheMaxyfoot-btm-wrapr {
		justify-content: center;
	}

	.TheMaxyfoot-cprt1 {
		width: 100%;
		text-align: center;
		margin-bottom: 15px;
	}

	.TheMaxyfoot-nav2 {
		width: 100%;
		text-align: center;
	}
}

@media screen and (max-width:950px) {
	.kongcode-11 {
		font-size: 18px;
	}

	.kongcode-12 li a {
		font-size: 14px;
		padding: 10px 5px;
	}

	.kongcode-20 {
		padding: 10px 15px;
	}

	.kongcode-57 {
		font-size: 20px;
		margin-bottom: 15px;
	}

	.kongcode-52 {
		margin: 5px 0 10px;
	}

	.kongcode-52 a {
		font-size: 13px;
		padding: 5px 10px;
	}

	.kongcode-51 {
		margin-top: 20px;
	}

	.kongcode-js-49 {
		margin: 15px 0;
	}

	.kongcode-50,.kongcode-45 {
		font-size: 16px;
	}

	.kongcode-50 i {
		margin-left: 5px;
	}

	.kongcode-js-44 {
		margin-top: 10px;
	}

	.kongcode-43 {
		margin: 8px 0;
	}

	.kongcode-41 {
		font-size: 15px;
	}

	.kongcode-42 {
		font-size: 13px;
	}

	.TheMaxyfoot-mncol1 {
		width: 100%;
		margin: 0;
		margin-bottom: 30px;
		display: flex;
		flex-flow: row wrap;
		align-items: center;
		justify-content: space-between;
	}

	.TheMaxyfoot-logo a {
		margin-bottom: 5px;
	}

	.TheMaxyfoot-mncol2,.TheMaxyfoot-mncol3,.TheMaxyfoot-mncol4 {
		width: 33.33%;
		margin: 0;
		padding: 10px;
	}

	.TheMaxyfoot-socl-wrapr {
		margin-top: 0;
	}@	keyframes bzer-lin-anim-lines {
		0%{height: 140px;
	}

	100% {
		height: 145px;
	}
}}

.offer_message_plan {
	color: #07ffe8;
	padding: 8px;
	font-size: 17px;
	font-weight: 600;
}

@media screen and (max-width:900px) {
	.kongcode-js-5 {
		margin-right: 10px;
	}

	.igfm-nav-main {
		display: none;
	}

	.kongcode-7 li {
		margin: 0 5px;
	}
}

@media screen and (max-width:850px) {
	.aprl-mncntnr {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		z-index: 500;
		padding: 35px 10px 10px;
	}

	.aprl-box {
		width: calc(100%/3);
	}

	.aprl-close {
		left: auto;
		right: 20px;
	}

	.f23645-img {
		width: 50%;
		margin-bottom: 15px;
	}
}

@media screen and (max-width:800px) {
@	keyframes glbc-line-active {
		0%{height: 0;
	}

	10% {
		height: 0;
	}

	40% {
		height: 35px;
	}
}

@keyframes glbc-title-before {
	0% {
		transform: scale(0);
	}

	50% {
		transform: scale(0);
	}

	65% {
		transform: scale(10);
	}
}}

@media screen and (max-width:750px) {
	.TheMaxyfoot-nav2 a {
		margin: 3px 10px;
	}

	.TheMaxyfoot-nav2 a:last-child {
		margin: 5px 10px;
	}

	.f23645-mncol {
		width: calc((100% - 20px)/3);
		margin-right: 10px;
		margin-bottom: 20px;
		padding: 15px 5px;
	}@	keyframes bzer-lin-anim-lines {
		0%{height: 120px;
	}

	100% {
		height: 125px;
	}
}}

@media screen and (max-width:700px) {
	.kongcode-2 {
		padding: 0 15px;
	}

	.kongcode-7 {
		font-size: 14px;
	}

	.kongcode-7 li {
		margin: 0 4px;
	}

	.kongcode-logo-4 a img {
		width: 130px;
	}
}

@media screen and (max-width:600px) {
	.TheMaxyfoot-logo-tag {
		width: 200px;
	}

	.f23645-mncol {
		width: calc((100% - 10px)/2);
		margin-bottom: 20px;
		padding: 10px 5px;
	}

	.f23645-mnwrapr .f23645-mncol:nth-child(3n) {
		margin-right: 10px;
	}

	.f23645-mnwrapr .f23645-mncol:nth-child(even) {
		margin-right: 0;
	}
}

@media screen and (max-width:550px) {
	.kongcode-6 {
		display: none;
	}

	.kongcode-4 {
		justify-content: space-between;
		width: 100%;
	}

	.kongcode-js-5 {
		margin: 0;
	}

	.aprl-box {
		width: calc(100%/2);
	}

	.kongcode-js-58 {
		left: -100%;
		width: 100%;
	}

	.kongcode-js-19 {
		left: 0;
	}
}

@media screen and (max-width:500px) {
	.TheMaxyfoot-logo-tag {
		width: 100%;
	}

	.TheMaxyfoot-socl-wrapr {
		margin-top: 15px;
	}

	.TheMaxyfoot-mncol2,.TheMaxyfoot-mncol3 {
		width: 50%;
		margin: 0;
		padding: 10px;
	}

	.TheMaxyfoot-mncol4 {
		width: 100%;
		margin-top: 30px;
	}

	.TheMaxyfoot-pymnt-cntnr {
		width: 100%;
	}@	keyframes glbc-title-before {
		0%{transform: scale(0);
	}

	50% {
		transform: scale(0);
	}

	65% {
		transform: scale(6);
	}
}}

@media screen and (max-width:450px) {
	.f23645-mncol {
		width: 100%;
		margin: 0;
		margin-bottom: 20px;
	}

	.f23645-mnwrapr .f23645-mncol:nth-child(3n) {
		margin: 0;
		margin-bottom: 20px;
	}

	.f23645-mnwrapr .f23645-mncol:nth-child(even) {
		margin: 0;
		margin-bottom: 20px;
	}
}

@media screen and (max-width:400px) {
	.aprl-box {
		width: 100%;
	}
}

p#del_pricing {
	margin-top: 5px;
	color: #080245;
	font-size: 20px;
}

.jnst-mncntnr {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	margin: 5px 0 -28px;
	padding: 10px 15px;
}

.jnst-mnwrapr {
	padding: 25px 70px;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	background: #fff;
	box-shadow: 0 0 15px rgba(67,67,67,.2);
}

.jnst-mncol {
	margin: 5px 7px;
	display: flex;
	flex-flow: row wrap;
	align-items: center;
}

.jnst-mncol span {
	color: #5c5f67;
	font-size: 22px;
	font-weight: 400;
	line-height: 1;
	margin-top: 3px;
}

.jnst-mncol a {
	font-size: 28px;
	font-weight: 700;
	margin: 0 15px;
	line-height: 1;
	transition: all .3s ease-in-out;
}

.jnst-mncol-a a {
	color: #3787e1;
}

.jnst-mncol-a a:last-child {
	margin-left: 0;
}

.jnst-mncol-b {
	margin-left: 0;
}

.jnst-mncol-b a {
	color: #0cab59;
}

.jnst-mncol .fa-phone-square {
	transform: scaleX(-1);
}

.jnst-mncol a:hover {
	color: #d83334;
}

@media screen and (max-width:1200px) {
	body {
		font-size: 14px;
	}

	.jnst-mnwrapr {
		padding: 15px 30px;
	}

	.jnst-mncol span {
		font-size: 16px;
		margin: 0;
	}

	.jnst-mncol a {
		font-size: 20px;
		margin: 0 10px;
		font-weight: 600;
	}
}

@media screen and (max-width:850px) {
	.jnst-mnwrapr {
		padding: 20px 15px;
	}

	.jnst-mncol {
		width: 100%;
		justify-content: center;
	}

	.jnst-mncol-a {
		margin-bottom: 5px;
	}

	.jnst-mncol a {
		margin: 10px;
	}
}

.technical_list {
	margin-top: 50px;
}

.technical_list li {
	position: relative;
	font-size: 16px;
	line-height: 30px;
	font-weight: 400;
	color: #666;
	text-align: left;
	padding-left: 25px;
}

.technical_list li:before {
	position: absolute;
	content: "";
	width: 12px;
	height: 12px;
	border: 2px solid #3fd7d7;
	border-radius: 100%;
	left: 0;
	top: 10px;
}

.kongcode-footer {
	background: #2B2C2C;
	width: 100%;
	background-size: cover;
	background-position: center;
	padding: 60px 5px;
}

.kongcodefoot-mnwrapr {
	width: 1150px;
	margin: 0 auto;
	display: flex;
	flex-flow: row wrap;
}

.kongcodefoot-mncol {
	width: calc(62%/3);
	margin-right: 2%;
}

.kongcodefoot-mnwrapr .kongcodefoot-mncol:last-child {
	margin-right: 0;
}

.kongcodefoot-mncol1 {
	width: 28%;
	margin-right: 6%;
}

.kongcodefoot-logo a {
	display: block;
	width: 187px;
	margin-bottom: 20px;
	position: relative;
}

.kongcodefoot-logo a:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 0 0;
}

.kongcodefoot-logo a img {
	display: block;
	width: 100%;
}

.kongcodefoot-logo-tag {
	color: #888;
	font-size: 14px;
}

.kongcodefoot-socl-wrapr {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	margin-top: 40px;
}

.kongcodefoot-socl-wrapr a {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: center;
	width: 35px;
	height: 35px;
	margin-right: 10px;
	border-radius: 50%;
}

.kongcodefoot-socl-wrapr a i {
	color: #fff;
	font-size: 18px;
}

.kongcodefoot-socl-fb {
	background: #3b5998;
}

.kongcodefoot-socl-twit {
	background: #26a6d1;
}

.kongcodefoot-socl-insta {
	background: linear-gradient(to right,#fcb045,#fd1d1d,#833ab4);
}

.kongcodefoot-socl-utub {
	background: #c71f1e;
}

.kongcodefoot-socl-lnkd {
	background: #1da1f2;
}

.kongcodefoot-mnhdr {
	color: #fff;
	margin-bottom: 21px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 20px;
}
.whatsapp-button {
	position: fixed;
	bottom: 15px;
	right: 15px;
	left: 15px;
	z-index: 99;
	background-color: #4fce5d;
	border-radius: 50px;
	color: #fff;
	text-decoration: none;
	width: 50px;
	height: 50px;
	font-size: 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	-webkit-box-shadow: 0 0 25px -6px #000;
	-moz-box-shadow: 0 0 25px -6px #000;
	box-shadow: 0 0 25px -6px #000;
	animation: effect 5s infinite ease-in
}

@keyframes effect {

	100%,
	20% {
		width: 60px;
		height: 60px;
		font-size: 40px
	}

	0%,
	10% {
		width: 60px;
		height: 60px;
		font-size: 35px
	}

	5% {
		width: 50px;
		height: 50px;
		font-size: 30px
	}
}
.kongcodefoot-colinks li {
	margin-bottom: 17px;
}

.kongcodefoot-colinks li:last-child {
	margin-bottom: 0;
}

.kongcodefoot-colinks li a {
	font-size: 15px;
	color: #d4cdcd;
	font-weight: 500;
	transition: all .3s ease-in-out;
}

.kongcodefoot-colinks li a:hover {
	color: #70aff5;
}

.kongcodefoot-pymnt-cntnr {
	margin-top: 40px;
}

.kongcodefoot-pymnt-cntnr .kongcodefoot-mnhdr {
	margin-bottom: 15px;
}

.kongcodefoot-pymnt-wrapr {
	width: 100%;
	display: flex;
	flex-flow: row wrap;
}

.kongcodefoot-pymnt-bx {
	width: 25%;
	padding: 5px;
}

.kongcodefoot-pymnt-card {
	width: 100%;
	height: 0;
	padding-top: 45%;
	filter: grayscale(100%);
	transition: all .3s ease-in-out;
	position: relative;
}

.kongcodefoot-pymnt-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 5;
	z-index: 5;
}

.kongcodefoot-pymnt-card-bg {
	background: url(../images/payment-gateways-cards.png) no-repeat;
	background-size: 800%;
}

.kongcodefoot-pymnt-card:hover {
	filter: grayscale(0);
}

.kongcodefoot-hr1 {
	width: 1200px;
	margin: 30px auto;
	height: 1px;
	background: #555656;
}

.kongcodefoot-btm-wrapr {
	color: #abacac;
	width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: center;
}

.kongcodefoot-cprt1 {
	font-size: 13px;
	width: 100%;
	text-align: center;
	margin-bottom: 30px;
}

.kongcodefoot-nav2 a {
	color: #abacac;
	margin-right: 40px;
	font-size: 12px;
	transition: all .3s ease-in-out;
}

.kongcodefoot-nav2 a:last-child {
	margin-right: 0;
}

.kongcodefoot-nav2 a:hover {
	color: #70aff5;
}

.kongcode-2 {
	width: 100%;
	background: #fff;
	padding: 0 20px;
	position: sticky;
	top: 0;
	z-index: 100;
	border-bottom: 1px solid #ddd;
}

.kongcode-3 {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: space-between;
	padding: 20px 0;
	transition: all .3s ease-in-out;
}

.kongcode-4 {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
}

.kongcode-logo-4 {
	margin-right: 25px;
}

.kongcode-logo-4 a {
	display: block;
	position: relative;
}

.kongcode-logo-4 a:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.kongcode-logo-4 a img {
	display: block;
	width: 200px;
	height: auto;
}

.kongcode-js-5 {
	margin-right: 30px;
	width: 30px;
	height: 25px;
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	cursor: pointer;
}

.kongcode-js-5 span {
	width: 100%;
	height: 3px;
	background: black;
}

.igfm-nav-main {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
}

.igfm-nav-main li {
	margin-right: 22px;
}

.igfm-nav-main li:last-child {
	margin-right: 0;
}

.igfm-nav-main li a,.igfm-nav-main li span {
	color: black;
	font-size: 19px;
	display: inline-block;
	line-height: 1.2;
	transition: all .3s ease-in-out;
	cursor: pointer;
}

.igfm-nav-main li a:hover,.igfm-nav-main li span:hover {
	color: #408de4;
}

.kongcode-6 {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
}

.kongcode-7 {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	font-size: 18px;
}

.kongcode-7 li {
	margin: 0 10px;
	font-weight: 400;
}

.kongcode-7 li a {
	color: black;
	font-weight: 400;
}

.kongcode-7 li span {
	font-weight: 500;
}

.kongcode-js-58 {
	background: #29292A;
	position: fixed;
	top: 0;
	left: -380px;
	z-index: 200;
	width: 380px;
	height: 100vh;
	overflow: auto;
	transition: all .5s ease-in-out;
}

.kongcode-js-19 {
	left: 0;
	transition: all .5s ease-in-out;
}

.kongcode-20 {
	width: 100%;
	height: 100%;
	padding: 20px 30px;
}

.kongcode-57 {
	width: 100%;
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: space-between;
	color: #fff;
	font-size: 25px;
	margin-bottom: 25px;
}

.kongcode-56 {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
}

.kongcode-56 i {
	opacity: 0;
	transition: all .5s ease-in-out;
}

.kongcode-js-55 i {
	opacity: 1;
	cursor: pointer;
	transform: rotate(360deg);
}

.kongcode-js-53 {
	opacity: 0;
	transition: all 1s ease-in-out;
}

.kongcode-js-53 i {
	cursor: pointer;
}

.kongcode-54 {
	font-size: 13px;
	line-height: 1;
	margin-left: 3px;
	width: 0;
	opacity: 0;
	overflow: hidden;
	transition: all .3s ease-in-out;
	cursor: pointer;
}

.kongcode-js-55 .kongcode-54 {
	opacity: 1;
	width: auto;
}

.kongcode-js-19 .kongcode-js-53 {
	opacity: 1;
	transform: rotate(360deg);
}

.kongcode-52 {
	margin: 10px 0 20px;
}

.kongcode-52 a {
	font-size: 14px;
	font-weight: 500;
	color: #d5d5d5;
	display: inline-block;
	border: 1px solid #d5d5d5;
	padding: 5px 15px;
	border-radius: 3px;
	transition: all .3s ease-in-out;
}

.kongcode-52 a:hover {
	color: #2c2c2c;
	background: #d5d5d5;
}

.kongcode-51 {
	margin-top: 35px;
}

.kongcode-js-49 {
	color: #fff;
	margin: 20px 0;
}

.kongcode-50,.kongcode-45 {
	color: #fff;
	font-size: 20px;
	font-weight: 500;
	cursor: pointer;
	transition: all .5s ease-in-out;
}

.kongcode-50 i {
	margin-left: 15px;
	opacity: 0;
	transition: all .5s ease-in-out;
}

.kongcode-45:hover,.kongcode-50:hover {
	color: #abeaff;
}

.kongcode-50:hover i {
	opacity: 1;
}

.kongcode-js-44 {
	margin-top: 15px;
}

.kongcode-43 {
	color: #fff;
	margin: 12px 0;
	cursor: pointer;
}

.kongcode-41 {
	font-size: 16px;
	margin-bottom: 5px;
	transition: all .3s ease-in-out;
}

.kongcode-43:hover .kongcode-41 {
	color: #abeaff;
}

.kongcode-42 {
	font-size: 14px;
	font-weight: 400;
	color: #d5d5d5;
	transition: all .3s ease-in-out;
}

.kongcode-43:hover .kongcode-42 {
	color: #abeaff;
}

.kongcode-js-48 .kongcode-50:hover i {
	opacity: 0;
}

.kongcode-js-48 .kongcode-50 {
	color: #abeaff;
	position: relative;
	padding-bottom: 10px;
}

.kongcode-js-48 .kongcode-50:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 70%;
	height: 1px;
	background: #abeaff;
}

.pymnt-card-visa {
	background-position: 0 0;
}

.pymnt-card-mastercard {
	background-position: 14.28% 0;
}

.pymnt-card-rupay {
	background-position: 28.58% 0;
}

.pymnt-card-bankt {
	background-position: 42.84% 0;
}

.pymnt-card-amrcn {
	background-position: 57.12% 0;
}

.pymnt-card-paypal {
	background-position: 71.4% 0;
}

.pymnt-card-cheque {
	background-position: 85.68% 0;
}

.pymnt-card-maestro {
	background-position: 100% 0;
}

@keyframes coupon_border_anim {
	0% {
		border-color: #408de4;
	}

	50% {
		border-color: #ff4546;
	}

	100% {
		border-color: #408de4;
	}
}

.f23645-mncntnr {
	padding: 70px 10px;
	position: relative;
}

.f23645-mnwrapr {
	width: 1150px;
	margin: 0 auto;
	margin-top: 70px;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
}

.f23645-mncol {
	text-align: center;
	margin-right: 50px;
	margin-bottom: 30px;
	width: calc((100% - 100px)/3);
	padding: 40px 30px;
	transition: all .3s ease-in-out;
}

.f23645-mncol:hover {
	box-shadow: 0 0 20px #d4d4d4;
	transform: scale(1.01);
}

.f23645-mnwrapr .f23645-mncol:nth-child(3n) {
	margin-right: 0;
}

.f23645-img {
	display: block;
	width: 40%;
	margin: 0 auto;
	margin-bottom: 30px;
}

.f23645-img div {
	width: 100%;
	height: 0;
	padding-top: 100%;
}

.f23645-domains-name {
	background-position: 0 0;
}

@keyframes srvxanim-pop-ico1-anim {
	0% {
		transform: rotate(0);
	}

	100% {
		transform: rotate(359deg);
	}
}

@keyframes srvxanim-pop-ico2-sub2-anim {
	0% {
		transform: rotate(0);
	}

	100% {
		transform: rotate(359deg);
	}
}

@keyframes bzer-lin-anim-center {
	0% {
		top: 25px;
	}

	100% {
		top: 28px;
	}
}

@keyframes bzer-lin-anim-lines {
	0% {
		height: 180px;
	}

	100% {
		height: 185px;
	}
}

@keyframes blink-anim {
	0% {
		opacity: 1;
	}

	50% {
		opacity: .2;
	}

	100% {
		opacity: 1;
	}
}

@keyframes glbc-bottom-active {
	0% {
		opacity: 0;
	}

	10% {
		opacity: 1;
	}
}

@keyframes global-dot-anim {
	0% {
		transform: scale(0);
		opacity: .3;
	}

	90% {
		opacity: .3;
	}

	100% {
		transform: scale(3);
		opacity: 0;
	}
}

@keyframes glbc-line-active {
	0% {
		height: 0;
	}

	10% {
		height: 0;
	}

	40% {
		height: 60px;
	}
}

@keyframes glbc-title-active {
	0% {
		opacity: 0;
	}

	40% {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}
}

@keyframes glbc-title-before {
	0% {
		transform: scale(0);
	}

	50% {
		transform: scale(0);
	}

	65% {
		transform: scale(15);
	}
}

@keyframes glbc-title-span {
	0% {
		width: 0;
	}

	65% {
		width: 0;
	}

	75% {
		width: auto;
	}
}

.kongcode-8 {
	position: relative;
}

.kongcode-9 {
	display: none;
	width: 300px;
	position: absolute;
	top: 100%;
	right: -35px;
	z-index: 100;
	padding-top: 30px;
	transition: all .5s ease-in-out;
}

.kongcode-8:hover .kongcode-9 {
	display: block;
}

.kongcode-10 {
	color: #fff;
	background: #014ccc;
	padding: 20px 15px 5px;
	width: 100%;
	border-radius: 5px;
	position: relative;
	transition: all .5s ease-in-out;
	box-shadow: 5px 5px 10px rgba(0,0,0,.1);
}

.kongcode-10:before {
	content: '';
	position: absolute;
	top: -22px;
	right: 30px;
	border-left: 12px solid transparent;
	border-right: 12px solid transparent;
	border-bottom: 22px solid #014ccc;
	transition: all .5s ease-in-out;
}

.kongcode-11 {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 15px;
	position: relative;
}

.kongcode-11:before {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	width: 80%;
	height: 1px;
	background: #7eb8fa;
}

.kongcode-12 {
	display: block;
	margin: 0;
	padding: 0;
	display: flex;
	flex-flow: row wrap;
}

.kongcode-12 li {
	display: block;
	width: 100%;
	margin: 0;
	line-height: 1.1;
	border-bottom: 1px solid #7eb8fa;
}

.kongcode-12 li:last-child {
	border-bottom: none;
}

.kongcode-12 li a {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	padding: 12px 5px;
	transition: all .3s ease-in-out;
}

.kongcode-12 li a:hover {
	color: #b5eefe;
}

.kongcode-12 li a i {
	font-size: 110%;
	margin-right: 5px;
}

.kongcode-13 {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}

.kongcode-15 {
	width: 45px;
}

.daisy-avatar {
	width: 100%;
}

.daisy-avatar div {
	width: 100%;
	height: 0;
	padding-top: 115%;
	background: url(../images/login.png) no-repeat;
	background-size: 100%;
	position: relative;
}

.daisy-avatar div:after,.daisy-avatar div:before {
	content: '';
	position: absolute;
	top: calc(50% - 8px);
	right: -8px;
	width: 16px;
	height: 16px;
	background: #17dd58;
	border-radius: 50%;
}

.daisy-avatar div:after {
	animation: daisy-avatar-online-anim 1.5s infinite linear;
}

@keyframes daisy-avatar-online-anim {
	0% {
		opacity: 1;
		transform: scale(1);
	}

	100% {
		opacity: 0;
		transform: scale(1.8);
	}
}

.kongcode-16 {
	width: calc(100% - 70px);
}

.kongcode-17 {
	font-size: 12px;
	line-height: 1.4;
	color: #636465;
	background: #fff;
	padding: 7px 10px;
	border-radius: 12px;
	border-top-left-radius: 0;
	position: relative;
}

.kongcode-17:before {
	content: '';
	position: absolute;
	top: 0;
	left: -20px;
	border-top: 0 solid transparent;
	border-bottom: 15px solid transparent;
	border-right: 20px solid #fff;
}

.gloot-mncntnr {
	padding: 10px;
	margin-top: 15px;
}

.gloot-mnwrapr {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}

.gloot-cta {
	display: inline-flex;
	flex-flow: row wrap;
	align-items: center;
	color: #eceffa;
	cursor: pointer;
}

.gloot-flag {
	width: 30px;
	margin-right: 10px;
}

.gloot-flag div {
	width: 100%;
	height: 0;
	padding-top: 67%;
	background: url(img/in.jpg) no-repeat;
	background-size: 100%;
}

.gloot-region {
	font-size: 14px;
	color: #eceffa;
	margin-right: 5px;
}

.gloot-cta i {
	font-size: 130%;
}

.aprl-mncntnr {
	display: none;
	position: absolute;
	bottom: calc(100% + 25px);
	left: 0;
	width: 100%;
	background: #fff;
	padding: 35px 45px;
	border-radius: 5px;
}

.aprl-mncntnr:before {
	content: '';
	position: absolute;
	z-index: 10;
	bottom: -15px;
	left: 40px;
	border-left: 13px solid transparent;
	border-right: 13px solid transparent;
	border-top: 15px solid #fff;
}

.aprl-close {
	position: absolute;
	top: 20px;
	left: 20px;
	width: 30px;
	height: 30px;
	cursor: pointer;
}

.aprl-bar {
	position: absolute;
	width: 2px;
	height: 100%;
	top: 0;
	left: calc(50% - 1px);
	background: #555656;
	transition: all .3s ease-in-out;
}

.aprl-close:hover .aprl-bar {
	background: #e76e6e;
}

.aprl-bar1 {
	transform: rotate(45deg);
}

.aprl-bar2 {
	transform: rotate(-45deg);
}

.aprl-hdrttl {
	text-align: center;
	font-size: 25px;
	line-height: 1.2;
	color: #2b2c2c;
	font-weight: 500;
	margin-bottom: 30px;
}

.aprl-mnwrapr {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
}

.aprl-box {
	width: 25%;
	padding: 13px 10px 13px 20px;
	background: #fff;
	position: relative;
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	transition: all .3s ease-in-out;
}

.aprl-box:hover {
	z-index: 10;
	box-shadow: 0 0 15px rgba(63,63,63,.1);
}

.aprl-box-active {
	z-index: 10;
	box-shadow: 0 0 15px rgba(63,63,63,.1);
}

.aprl-box-active:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 3px;
	height: 100%;
	background: #37a9e2;
}

.aprl-flag {
	width: 35px;
	margin-right: 10px;
}

.aprl-flag div {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 67.3%;
	background: url(img-ph-assets/flags/region-flags-all-150.png) no-repeat;
	background-size: 1100%;
}

.aprl-flag-in div {
	background-position: 0 0;
}

.aprl-flag-us div {
	background-position: 10% 0;
}

.aprl-flag-uk div {
	background-position: 20% 0;
}

.aprl-flag-ae div {
	background-position: 30% 0;
}

.aprl-flag-au div {
	background-position: 40% 0;
}

.aprl-flag-ca div {
	background-position: 50% 0;
}

.aprl-flag-sg div {
	background-position: 60% -.5%;
}

.aprl-flag-np div {
	background-position: 70% -.8%;
}

.aprl-flag-lk div {
	background-position: 80% 0;
}

.aprl-flag-bd div {
	background-position: 90% 0;
}

.aprl-flag-sa div {
	background-position: 100% 0;
}

.aprl-flag-th div {
	background-position: 0 33.33%;
}

.aprl-flag-my div {
	background-position: 10% 33.33%;
}

.aprl-flag-nz div {
	background-position: 20% 33.33%;
}

.aprl-flag-za div {
	background-position: 30% 33.33%;
}

.aprl-flag-ie div {
	background-position: 40% 33.33%;
}

.aprl-flag-jp div {
	background-position: 50% 34%;
}

.aprl-flag-hk div {
	background-position: 60% 33.33%;
}

.aprl-flag-ph div {
	background-position: 70% 33.33%;
}

.aprl-flag-il div {
	background-position: 80% 33.33%;
}

.aprl-region {
	font-size: 14px;
	color: #525252;
}

.aprl-box-active .aprl-region {
	color: #1889c1;
}

.subs-mncntnr {
	background: #ecf7fc;
	padding: 30px 10px;
}

.ph-sub-mnwrapr {
	width: 1100px;
	margin: 0 auto;
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: center;
}

.ph-sub-mncol1 {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
}

.ph-sub-msgico {
	font-size: 35px;
	color: #444;
	margin-right: 15px;
}

.ph-sub-hdrtxt {
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	color: #444;
	margin-right: 20px;
}

.ph-sub-hdrtxt span {
	display: block;
}

.ph-sub-form {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	background: #fff;
	border-radius: 3px;
	overflow: hidden;
	box-shadow: 3px 3px 10px #cce3f7;
}

.ph-sub-form input {
	font-size: 15px;
}

.ph-sub-form input[type=email] {
	width: 350px;
	padding: 15px 10px;
	border: 1px solid #fff;
	transition: all .3s ease-in-out;
}

.ph-sub-form input[type=email]:focus {
	border: 1px solid #408de4;
}

.ph-sub-form input[type=email]:invalid {
	border: 1px solid #ec9999;
	background: #fdf4f4;
}

.ph-sub-form input[type=submit] {
	padding: 15px 20px;
	border: 1px solid #408de4;
}

.ph-sub-mncol2 {
	display: flex;
	align-items: center;
}

.ph-sub-mncol2 a {
	background: #fff;
	border: 1px solid #408de4;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
}

.ph-sub-mncol2 a i {
	font-size: 16px;
	color: #408de4;
	transition: all 1s ease-in-out;
}

.ph-sub-mncol2 a:last-child {
	margin-right: 0;
}

.ph-sub-mncol2 a:hover i {
	transform: rotateY(360deg);
}

@media screen and (max-width:1200px) {
	.subs-mncntnr {
		padding: 25px 10px;
	}

	.ph-sub-mnwrapr {
		width: 100%;
	}

	.ph-sub-msgico {
		font-size: 25px;
		margin-right: 10px;
	}

	.ph-sub-hdrtxt {
		font-size: 13px;
		margin-right: 10px;
	}

	.ph-sub-form input[type=email] {
		width: 300px;
		padding: 10px 5px;
	}

	.ph-sub-form input[type=submit] {
		padding: 10px 15px;
	}
}

@media screen and (max-width:750px) {
	.ph-sub-mncol1 {
		justify-content: center;
		width: 100%;
	}

	.ph-sub-hdrtxt span {
		display: inline-block;
	}

	.ph-sub-form {
		margin-top: 20px;
		width: 90%;
	}

	.ph-sub-form input[type=email] {
		width: calc(100% - 110px);
	}

	.ph-sub-form input[type=submit] {
		width: 110px;
	}
}

@media screen and (max-width:550px) {
	.ph-sub-form {
		width: 100%;
	}
}

@media screen and (max-width:450px) {
	.ph-sub-form input[type=email] {
		width: calc(100% - 90px);
	}

	.ph-sub-form input[type=submit] {
		width: 90px;
	}
}

@media screen and (max-width:1300px) {
	.kongcode-9 {
		right: 0;
	}

	.kongcode-10:before {
		right: 40px;
	}
}

@media screen and (max-width:1230px) {
	.kongcodefoot-hr1 {
		width: 95%;
		margin: 30px auto 25px;
	}

	.kongcodefoot-btm-wrapr {
		width: 100%;
		padding: 10px;
	}
}

@media screen and (max-width:1200px) {
	body {
		font-size: 14px;
	}

	.kongcode-3 {
		padding: 5px 0;
	}

	.kongcode-logo-4 {
		margin-right: 15px;
	}

	.igfm-nav-main li {
		margin-right: 20px;
	}

	.igfm-nav-main li a {
		font-size: 16px;
	}

	.kongcode-7 {
		font-size: 16px;
	}

	.kongcode-9 {
		padding-top: 17px;
	}

	.kongcode-10:before {
		top: -15px;
	}

	.kongcodefoot-mnwrapr {
		width: 100%;
	}

	.kongcodefoot-logo a {
		width: 150px;
	}

	.kongcodefoot-logo-tag {
		font-size: 13px;
	}

	.kongcodefoot-mnhdr {
		margin-bottom: 25px;
	}

	.kongcodefoot-pymnt-cntnr {
		margin-top: 30px;
	}

	.kongcodefoot-colinks li {
		margin-bottom: 10px;
	}

	.kongcodefoot-colinks li a {
		font-size: 13px;
	}

	.f23645-mncntnr {
		padding: 50px 10px;
	}

	.f23645-mnwrapr {
		width: 100%;
		margin-top: 50px;
	}

	.f23645-mncol {
		width: calc((100% - 50px)/3);
		margin-right: 25px;
		margin-bottom: 25px;
		padding: 20px 15px;
	}
}

@media screen and (max-width:1150px) {
	.aprl-mncntnr {
		bottom: calc(100% + 15px);
		padding: 20px 10px;
	}

	.aprl-mncntnr:before {
		bottom: -15px;
		border-left: 9px solid transparent;
		border-right: 9px solid transparent;
	}

	.aprl-close {
		top: 10px;
		left: 10px;
		width: 25px;
		height: 25px;
	}

	.aprl-hdrttl {
		font-size: 20px;
		margin-bottom: 25px;
	}

	.aprl-box {
		padding: 12px 5px 12px 15px;
	}

	.aprl-flag {
		width: 25px;
		margin-right: 5px;
	}

	.aprl-region {
		font-size: 13px;
		font-weight: 500;
	}

	.kongcodefoot-btm-wrapr {
		justify-content: center;
	}

	.kongcodefoot-cprt1 {
		width: 100%;
		text-align: center;
		margin-bottom: 15px;
	}

	.kongcodefoot-nav2 {
		width: 100%;
		text-align: center;
	}
}

@media screen and (max-width:950px) {
	.kongcode-11 {
		font-size: 18px;
	}

	.kongcode-12 li a {
		font-size: 14px;
		padding: 10px 5px;
	}

	.kongcode-20 {
		padding: 10px 15px;
	}

	.kongcode-57 {
		font-size: 20px;
		margin-bottom: 15px;
	}

	.kongcode-52 {
		margin: 5px 0 10px;
	}

	.kongcode-52 a {
		font-size: 13px;
		padding: 5px 10px;
	}

	.kongcode-51 {
		margin-top: 20px;
	}

	.kongcode-js-49 {
		margin: 15px 0;
	}

	.kongcode-50,.kongcode-45 {
		font-size: 16px;
	}

	.kongcode-50 i {
		margin-left: 5px;
	}

	.kongcode-js-44 {
		margin-top: 10px;
	}

	.kongcode-43 {
		margin: 8px 0;
	}

	.kongcode-41 {
		font-size: 15px;
	}

	.kongcode-42 {
		font-size: 13px;
		        margin-bottom: 13px;
	}

	.kongcodefoot-mncol1 {
		width: 100%;
		margin: 0;
		margin-bottom: 30px;
		display: flex;
		flex-flow: row wrap;
		align-items: center;
		justify-content: space-between;
	}

	.kongcodefoot-logo a {
		margin-bottom: 5px;
	}

	.kongcodefoot-mncol2,.kongcodefoot-mncol3,.kongcodefoot-mncol4 {
		width: 33.33%;
		margin: 0;
		padding: 10px;
	}

	.kongcodefoot-socl-wrapr {
		margin-top: 0;
	}@	keyframes bzer-lin-anim-lines {
		0%{height: 140px;
	}

	100% {
		height: 145px;
	}
}}

.offer_message_plan {
	color: #07ffe8;
	padding: 8px;
	font-size: 17px;
	font-weight: 600;
}

@media screen and (max-width:900px) {
	.kongcode-js-5 {
		margin-right: 10px;
	}

	.igfm-nav-main {
		display: none;
	}

	.kongcode-7 li {
		margin: 0 5px;
	}
}

@media screen and (max-width:850px) {
	.aprl-mncntnr {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		z-index: 500;
		padding: 35px 10px 10px;
	}

	.aprl-box {
		width: calc(100%/3);
	}

	.aprl-close {
		left: auto;
		right: 20px;
	}

	.f23645-img {
		width: 50%;
		margin-bottom: 15px;
	}
}

@media screen and (max-width:800px) {
@	keyframes glbc-line-active {
		0%{height: 0;
	}

	10% {
		height: 0;
	}

	40% {
		height: 35px;
	}
}

@keyframes glbc-title-before {
	0% {
		transform: scale(0);
	}

	50% {
		transform: scale(0);
	}

	65% {
		transform: scale(10);
	}
}}

@media screen and (max-width:750px) {
	.kongcodefoot-nav2 a {
		margin: 3px 10px;
	}

	.kongcodefoot-nav2 a:last-child {
		margin: 5px 10px;
	}

	.f23645-mncol {
		width: calc((100% - 20px)/3);
		margin-right: 10px;
		margin-bottom: 20px;
		padding: 15px 5px;
	}@	keyframes bzer-lin-anim-lines {
		0%{height: 120px;
	}

	100% {
		height: 125px;
	}
}}

@media screen and (max-width:700px) {
	.kongcode-2 {
		padding: 0 15px;
	}

	.kongcode-7 {
		font-size: 14px;
	}

	.kongcode-7 li {
		margin: 0 4px;
	}

	.kongcode-logo-4 a img {
		width: 130px;
	}
}

@media screen and (max-width:600px) {
	.kongcodefoot-logo-tag {
		width: 200px;
	}

	.f23645-mncol {
		width: calc((100% - 10px)/2);
		margin-bottom: 20px;
		padding: 10px 5px;
	}

	.f23645-mnwrapr .f23645-mncol:nth-child(3n) {
		margin-right: 10px;
	}

	.f23645-mnwrapr .f23645-mncol:nth-child(even) {
		margin-right: 0;
	}
}

@media screen and (max-width:550px) {
	.kongcode-6 {
		display: none;
	}

	.kongcode-4 {
		justify-content: space-between;
		width: 100%;
	}

	.kongcode-js-5 {
		margin: 0;
	}

	.aprl-box {
		width: calc(100%/2);
	}

	.kongcode-js-58 {
		left: -100%;
		width: 100%;
	}

	.kongcode-js-19 {
		left: 0;
	}
}

@media screen and (max-width:500px) {
	.kongcodefoot-logo-tag {
		width: 100%;
	}

	.kongcodefoot-socl-wrapr {
		margin-top: 15px;
	}

	.kongcodefoot-mncol2,.kongcodefoot-mncol3 {
		width: 50%;
		margin: 0;
		padding: 10px;
	}

	.kongcodefoot-mncol4 {
		width: 100%;
		margin-top: 30px;
	}

	.kongcodefoot-pymnt-cntnr {
		width: 100%;
	}@	keyframes glbc-title-before {
		0%{transform: scale(0);
	}

	50% {
		transform: scale(0);
	}

	65% {
		transform: scale(6);
	}
}}

@media screen and (max-width:450px) {
	.f23645-mncol {
		width: 100%;
		margin: 0;
		margin-bottom: 20px;
	}

	.f23645-mnwrapr .f23645-mncol:nth-child(3n) {
		margin: 0;
		margin-bottom: 20px;
	}

	.f23645-mnwrapr .f23645-mncol:nth-child(even) {
		margin: 0;
		margin-bottom: 20px;
	}
}

@media screen and (max-width:400px) {
	.aprl-box {
		width: 100%;
	}
}

p#del_pricing {
	margin-top: 5px;
	color: #080245;
	font-size: 20px;
}

@media only screen and (min-width:360px) and (max-width:767px) {
.kongcode-3 {
    padding: 16px 15px;
}
}


.boxshakong{
  box-shadow: -5px 0px 10px 0px #888282;
}

.popkongmr{
	margin-top:50px;
}

.whatsapp-button{position:fixed;bottom:15px;right:15px;left:15px;z-index:99;background-color:#4fce5d;border-radius:50px;color:#fff;text-decoration:none;width:50px;height:50px;font-size:30px;display:flex;flex-direction:column;justify-content:center;align-items:center;-webkit-box-shadow:0 0 25px -6px #000;-moz-box-shadow:0 0 25px -6px #000;box-shadow:0 0 25px -6px #000;animation:effect 5s infinite ease-in}@keyframes effect{100%,20%{width:60px;height:60px;font-size:40px}0%,10%{width:60px;height:60px;font-size:35px}5%{width:50px;height:50px;font-size:30px}}
.header-top-bar {
    background-color: #014ccc;
}

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


.header-top .header-top-left {
    margin-right: 30px;
}

.header-top .header-info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -30px;
}

.header-top .header-info li {
    display: inline-block;
    margin: 0;
    font-size: 14px;
    color:#fff;
    padding: 14px 30px 12px;
    position: relative;
}
.header-top .header-info li a {
    color: #fff;
}
ul li a {
    text-decoration: none;
    color: #fff;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.header-top .header-info li:after {
    content: "";
    height: 100%;
    width: 1px;
    background-color: rgba(255, 255, 255, .1);
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
}
.header-top .header-top-right {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: right;
}

.header-top .header-info li.header-btn {
    padding: 0 30px 0 0;
}

.header-top .header-info li.header-btn .edu-btn {
    color: var(--color-white);
    border-radius: 0;
    overflow: visible;
}
.header-top .header-info li a {
    color: var(--color-white);
}
a.edu-btn.btn-secondary, button.edu-btn.btn-secondary {
    background: var(--color-secondary);
    color: var(--color-white);
}
a.edu-btn.btn-medium, button.edu-btn.btn-medium {
    height: 50px;
    line-height: 51px;
    padding: 0 25px;
}
a.edu-btn, button.edu-btn {
    text-align: center;
    border-radius: 5px;
    display: inline-block;
    height: 60px;
    line-height: 62px;
    color: var(--color-white);
    background: var(--color-primary);
    padding: 0 30px;
    font-size: 15px;
    font-weight: 500;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    font-family: var(--font-secondary);
    border: 0 none;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 768px) {
	.hidkong{
		display:none;
	}

}


.hero-img{
	max-width: 100%;
    height: 85%;
}

.move-up-down {
    animation: upDown 2s ease-in-out infinite;
  }

  /* Keyframes for up and down movement */
  @keyframes upDown {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-20px);
    }
    100% {
      transform: translateY(0);
    }
  }
  
#butt-ome a{
	color:#fff;
}