/* ===================================================
>>> TABLE OF CONTENTS:
======================================================

 
=================================================== */
@import url('https://fonts.googleapis.com/css?family=Maven+Pro:400,500,700');
@import url("../../../../cdn.jsdelivr.net/npm/bootstrap-icons%401.11.3/font/bootstrap-icons.min.css");
@import url('color.css');

: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: "Maven Pro", var(--fallback-fonts);
}

/* Colors */
:root {
    --font-bootstrap-icons: bootstrap-icons;
}

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

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

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

/*--------------------------------------------------------------
    02. General
--------------------------------------------------------------*/
body {
    font-family: var(--font-primary);
}

@media (min-width: 1200px) {

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

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

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

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

ul {
    margin: 0;
    padding: 0;
}

ul li {
    list-style: none;
}

.uppercase {
    text-transform: uppercase;
}

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

/* ----------------------------------------------------------------
    03. Main Header
------------------------------------------------------------------- */
.main-header {
    position: relative;
}

.main-header .logo {
    display: block;
}

.main-header .logo img {
}


@media (min-width:1200px) {
    .main-header .main-nav {
        display: block;
        margin-bottom: 0;
    }
    .main-header .main-nav .mainmenu {
        display: flex;
        justify-content: end;
    }

    .main-header .main-nav .mainmenu>li>a {
        font-size: 15px;
        padding: 35px 15px;
        text-transform: uppercase;
        font-weight: 700;
        color: #333;
        line-height: 20px;
        position: relative;
        display: block;
    }

    .main-header .main-nav .mainmenu>li.has-dropdown {
        position: relative;
    }

    .main-header .main-nav .mainmenu>li.has-dropdown>a>.caret {
        display: inline-block;
        width: 0;
        height: 0;
        margin-left: 2px;
        vertical-align: middle;
        border-top: 4px dashed;
        border-top: 4px solid \9;
        border-right: 4px solid transparent;
        border-left: 4px solid transparent;
    }

    .main-header .main-nav .mainmenu>li.has-dropdown>.submenu {
        left: 0;
        margin: 0;
        opacity: 0;
        position: absolute;
        top: 100%;
        -webkit-box-shadow: 1px 2px 10px -1px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 1px 2px 10px -1px rgba(0, 0, 0, 0.2);
        box-shadow: 1px 2px 10px -1px rgba(0, 0, 0, 0.2);
        -webkit-transform: translateY(40px);
        -moz-transform: translateY(40px);
        -ms-transform: translateY(40px);
        -o-transform: translateY(40px);
        transform: translateY(40px);
        -webkit-transition: all 0.6s cubic-bezier(0.68, -1, 0.265, 2);
        -moz-transition: all 0.6s cubic-bezier(0.68, -1, 0.265, 2);
        -ms-transition: all 0.6s cubic-bezier(0.68, -1, 0.265, 2);
        -o-transition: all 0.6s cubic-bezier(0.68, -1, 0.265, 2);
        transition: all 0.6s cubic-bezier(0.68, -1, 0.265, 2);
        visibility: hidden;
        width: 260px;
        z-index: 99;
        transform: scale(0.4);
        transform-origin: 10% top;
        transition: 0s max-height 0.15s linear, 0.1s opacity cubic-bezier(0.39, 0.575, 0.565, 1), 0.15s transform cubic-bezier(0.1, 1.26, 0.83, 1);
        opacity: 0;
        background-color: #FFF;
    }

    .main-header .main-nav .mainmenu>li.has-dropdown:hover>.submenu {
        opacity: 1;
        visibility: visible;
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transition-delay: 0.2s;
        transition-delay: 0.2s;
        -webkit-transition-duration: 0s, 0.2s, 0.2s !important;
        transition-duration: 0s, 0.2s, 0.2s !important;
    }

    .main-header .main-nav .mainmenu>li.has-dropdown>.submenu li {
        position: relative;
        width: 100%;
    }

    .main-header .main-nav .mainmenu>li.has-dropdown>.submenu li a {
        padding: 10px 15px;
        text-decoration: none;
        width: 100%;
        color: #2732b1;
        display: block;
        width: 100%;
        overflow: hidden;
        position: relative;
        transition: all 0.3s;
    }

    .main-header .main-nav .mainmenu>li.has-dropdown>.submenu li a:after {
        content: '\f054';
        font-family: 'Font Awesome 5 Pro';
        font-weight: 900;
        position: absolute;
        left: -15px;
        opacity: 0;
        top: 50%;
        transform: translateY(-50%);
        font-size: 14px;
        transition: all .3s;
    }

    .main-header .main-nav .mainmenu>li.has-dropdown>.submenu li a:hover {
        color: #fff;
        -webkit-transition: all 0.2s ease;
        -moz-transition: all 0.2s ease;
        -ms-transition: all 0.2s ease;
        transition: all 0.2s ease;
        padding-left: 50px;
        padding-right: 30px;
        background: #fba529;
    }

    .main-header .main-nav .mainmenu>li.has-dropdown>.submenu li a:hover:after {
        left: 30px;
        opacity: 1;
    }
    .menu-bar-toggle{
        display: none;
    }
}

@media (max-width:1199px) {
    .main-header{
        padding: 12px 0px;
    }
    .menu-bar-toggle{
        display: flex;
        background: #fba529 !important;
        color: #FFF;
        padding: 5px 10px;
        margin: 0;
        font-size: 15px;
        border: 0;
        border-radius: 0;
        float: right;
        align-items: center;
    }
    .menu-bar-toggle i{
        margin-inline-start: 5px;
    }
    .main-header .main-nav{
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        z-index: 9;
        background: #666;
        overflow: hidden;
        display: none;
    }
    
   

    .main-header .main-nav .mainmenu>li>a{
        font-size: 15px;
        position: relative;
        display: flex;
        justify-content: space-between;
        padding: 10px;
       color:#fff ;
       align-items: center;
    }

    .main-header .main-nav .mainmenu>li+li>a{
        padding-top: 0;
    }
    .main-header .main-nav .mainmenu>li.has-dropdown>a>.caret {
        display: inline-block;
        width: 0;
        height: 0;
        margin-left: 2px;
        vertical-align: middle;
        border-top: 4px dashed;
        border-top: 4px solid \9;
        border-right: 4px solid transparent;
        border-left: 4px solid transparent;
        transition: all .3s;
    }
    .main-header .main-nav .mainmenu>li.has-dropdown>a.open>.caret{
        transform: rotate(-180deg);
    }

.main-header .main-nav .mainmenu>li.has-dropdown>.submenu {
        position: relative;
        background-color: #FFF;
        -webkit-box-shadow: 1px 2px 10px -1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 1px 2px 10px -1px rgba(0, 0, 0, 0.2);
    box-shadow: 1px 2px 10px -1px rgba(0, 0, 0, 0.2);
        display: none;
        margin-bottom: 10px;
    }

    .main-header .main-nav .mainmenu>li.has-dropdown>.submenu li {
        position: relative;
        width: 100%;
    }

    .main-header .main-nav .mainmenu>li.has-dropdown>.submenu li a {
        padding: 10px 15px;
        text-decoration: none;
        width: 100%;
        color: #2732b1;
        display: block;
        width: 100%;
        overflow: hidden;
        position: relative;
        transition: all 0.3s;
    }

    .main-header .main-nav .mainmenu>li.has-dropdown>.submenu li a:after {
        content: '\f054';
        font-family: 'Font Awesome 5 Pro';
        font-weight: 900;
        position: absolute;
        left: -15px;
        opacity: 0;
        top: 50%;
        transform: translateY(-50%);
        font-size: 14px;
        transition: all .3s;
    }

    .main-header .main-nav .mainmenu>li.has-dropdown>.submenu li a:hover {
        color: #fff;
        -webkit-transition: all 0.2s ease;
        -moz-transition: all 0.2s ease;
        -ms-transition: all 0.2s ease;
        transition: all 0.2s ease;
        padding-left: 50px;
        padding-right: 30px;
        background: #fba529;
    }

    .main-header .main-nav .mainmenu>li.has-dropdown>.submenu li a:hover:after {
        left: 30px;
        opacity: 1;
    }



}

/* ----------------------------------------------------------------
    btn css
------------------------------------------------------------------- */
.primary_button, .secondry_button {
    font-size: 18px;
    font-weight: 400;
    padding: 8px 30px;
    border: 0px;
    text-align: center;
    letter-spacing: 1px;
    border-radius:3px;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
    transition: all .3s ease-in-out 0s;
}
.primary_button:hover, .secondry_button:hover {
    text-decoration: none;
}
.primary_button:hover span, .secondry_button:hover span {
    display:block;
    text-decoration:none;
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
    -webkit-transform-origin: center;
    transform-origin: center;
    animation-duration: .5s;
    animation-timing-function: linear;
}

/*-----------------------------------------------
Scroll up Button
-----------------------------------------------*/

.scroll-top{
    position: fixed;
  bottom: 20px;
  right: 20px;
  background: #666;
  width: 40px;
  height: 40px;
  text-decoration: none;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
  line-height: 40px;
  border: 0;
  font-size: 18px;
  color: #fff;
  opacity: 0;
  visibility: hidden;
}

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

.header-content {
    background-color: rgb(242, 242, 242);
    padding: 5px;
    border-radius: 10px;
}

.header-content .header-domainsearch form {
    padding: 0px;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 0.125rem 0.625rem 0 rgba(0,0,0,0.2);
}

 .header-content .header-domainsearch form input[type="text"] {
    border: 0;
    padding: 20px 25px;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    position: relative;
    display: block;
}
 .header-content .header-domainsearch form input[type=text]:focus-visible {
  outline: none;
}

 .header-content .header-domainsearch form input[type="submit"] {
    position: absolute;
    right: 8px;
    border: 0;
    font-size: 16px;
    padding: 15px;
    background: #2732b1;
    color: #fff;
    transition: 0.3s;
    border-radius: 10px;
    top: 7px;
}



 .header-content .domain-princing{
  flex-wrap: wrap;
}
.header-content .domain-princing a{
    line-height: 30px;
}
 .header-content .domain-princing a span {
    font-size: 15px;
    color: #535353;
}


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


@media(max-width:480px){

    .header-content {
     background-color:unset; 
     padding: unset; 
     border-radius: unset; 
    background: unset;
}
    .header-content .header-domainsearch form {
     box-shadow: unset; 
    background: unset;
}
    .header-content .header-domainsearch form input[type="text"] {
    padding: 13px 25px;
    width: 100%;
    background: #f4f4f4;
    position: unset; 
}
.header-content .header-domainsearch form input[type="submit"] {
     position: unset; 
    width: 100%;
    margin-top: 10px;
}
}
/* ----------------------------------------------------------------
     home slider
------------------------------------------------------------------- */
#imageslider {
    padding-top: unset;
}

#imageslider ol {
    list-style-type: none;
}

#imageslider .slide1 {
    background-image: url("../images/banner.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 60px;
    padding-bottom: 60px;
}
#imageslider .slide2{
    background-image: url("../images/banner-2.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
   padding-top: 60px;
    padding-bottom: 60px;
}
#imageslider .slide3{
    background-image: url("../images/banner-3.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 60px;
    padding-bottom: 60px;
}
#imageslider .carousel {
    position:relative;
    z-index:1
}

#imageslider .carousel-item{
    height: 500px;
}

#imageslider .sliderimage-bottom {
    margin-top:0px
}
#imageslider .carousel-indicators {
    bottom:0
}
#imageslider .fa {
    color:#fb940b;
    padding-right:10px;
}
#imageslider .carousel-indicators li {
    width:15px !important;
    height:15px !important;
    margin:3px !important;
    border:2px solid #FFFFFF !important
}
#imageslider .carousel-indicators .active {
    width:15px !important;
    height:15px !important;
    margin:3px !important;
    background-color:#0c1f38 !important;
    border:2px solid #FFFFFF !important
}
#imageslider .main-container {
    padding:0
}
#imageslider .slide1 h3, #imageslider .slide2 h3, #imageslider .slide3 h3, #imageslider .slide4 h3 {
    padding: 0px;
    font-size: 55px;
    font-style: normal;
    line-height: 70px;
    margin-bottom: 10px;
    letter-spacing: 0;
    display: inline-block;
    /* text-transform: uppercase; */
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
    color: #fff;
}
#imageslider .slide1 p, #imageslider .slide2 p, #imageslider .slide3 p, #imageslider .slide4 p {
   font-size: 27px;
}
#imageslider .slide1 h4, #imageslider .slide2 h4, #imageslider .slide3 h4, #imageslider .slide4 h4 {
    color:#c3c3c3;
    font-size:20px;
    font-weight:300;
    margin-bottom:15px
}
#imageslider .carousel-indicators {
    bottom:-10px
}
#imageslider .carousel-control.right, #imageslider .carousel-control.left {
    background-image:none
}
#imageslider .carousel .item {
    min-height:450px;
    height:100%;
    width:100%
}
#imageslider .carousel-inner .item .container {
    justify-content:center;
    align-items:center;
    position:absolute;
    bottom:0;
    top:0;
    left:0;
    right:0
}
#imageslider h4 {
    animation-delay:0.5s
}
#imageslider h4.second {
    animation-delay:1s
}
#imageslider h4.third {
    animation-delay:1.5s
}
#imageslider h4.forth {
    animation-delay:2s
}
#imageslider a {
    animation-delay:2.5s;
    margin-top:20px
}
#imageslider img {
    animation-delay:0.5s
}
#imageslider .slide2 li{
    margin-bottom: 15px;
}
#imageslider .slide2 li img{
    max-width: 38px;
    max-height: 38px;
    margin-inline-end: 15px;
}
#imageslider .slide2 li{
    line-height: 25px;
    display: flex;
    align-items: center;
}

.banner-list{
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 15px;
}
.banner-list li{
    width: 50%;
    display: flex;
    line-height: 40px;
    color: #fff;
}
.check li:before{
   content:"\F26A";
   font-family: bootstrap-icons;
   font-size: 18px;
   margin-inline-end: 8px;
}

@media(max-width:480px){
    #imageslider .slide1 h3, #imageslider .slide2 h3, #imageslider .slide3 h3, #imageslider .slide4 h3 {
    font-size: 30px;
    font-weight: 500;
}

#imageslider .slide1 p, #imageslider .slide2 p, #imageslider .slide3 p, #imageslider .slide4 p {
    font-size: 18px;
}
 #imageslider .slide1, #imageslider .slide2, #imageslider .slide3, #imageslider .slide4{
    padding-bottom: 100px;
}
.banner-list li{
    width: 100%;
}
}




/* ======== Global CSS Start ======== */


body {
    font-family: 'Maven Pro', sans-serif;
}
.clear {
    clear: both;
}
img {
    max-width: 100%;
    height: auto;
}
a {
    outline: 0 !important;
}
.vis-hidden {
    visibility: hidden;
}

::-webkit-input-placeholder {
 color: #959595;
}

:-moz-placeholder {

  /* Firefox 18- */

  color: #959595;
}

::-moz-placeholder {

  /* Firefox 19+ */

  color: #959595;
}

:-ms-input-placeholder {
 color: #959595;
}
body {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
    margin: 0;
    padding: 0;
}
p {
    padding: 0px;
    margin: 0px;
    font-weight: 400;
}
h1 {
    font-size: 46px;
}
h2 {
    font-size: 40px;
}
h3 {
    font-size: 34px;
    font-weight: 400;
}
h4 {
    font-size: 28px;
    font-weight: 400;
}
h5 {
    font-size: 22px;
}
h6 {
    font-size: 16px;
    font-weight: 400;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
ol {
    padding-left: 20px;
    list-style-type: decimal;
}
ul {
    list-style: none;
    padding: 0px;
    margin: px;
}
blockquote, q {
    quotes: none;
}
:focus {
    outline: 0;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
sup, sub {
    font-size: 20px;
    height: 0;
    line-height: 1;
    position: relative;
    vertical-align: baseline;
}
/*sup {
    bottom: 1ex;
}*/
/*sub {
    top: .5ex;
}*/
input, select {
    vertical-align:middle;
}
.spacer {
    float: left;
    width: 100%;
    height: 30px;
}
.heading_txt {
    font-weight: 700;
    text-align: center;
    display: block;
    padding: 10px 0;
}
.headings {
    float: left;
    margin: 0px 0px 0px 0px;
    text-align: center;
    width: 100%;
}
.headings h3, .headings h2, .headings h4 {
    display: inline-block;
    padding: 0px 0px 0px 0px;
    margin: 0px;
    font-size: 50px;
    font-weight:700;
}

.text_center {
    text-align: center;
}
.padding-30 {
    padding:30px 0px;
}
h5.section_sub_heading {
    margin: 0;
    padding: 30px 0px 20px 0px;
    font-size:28px;
    font-weight:700;
}
section {
    padding: 60px 0px;
    float: left;
    width: 100%;
}
.bottom-padding {
    padding: 0px 0px 100px 0px !important;
}
.blog-padding {
    padding: 30px 0px 100px 0px !important;
}
.no-padding {
    padding: 0px !important;
}
.margin-20 {
    margin:20px 0px;
}
.domain_promo .promo_box, .home_search .search_box, .what_we_do .whatwedo, .why_register .register_choose_section .choose_r_options, .home_services .plan_box, .customer_testimonial .testimonial, .home_blog .blog_txt_inner, .domain_plan .domain_b, .table_main .tables, .accordian_main .accordion, .safe_host .pr_info, .server_features .server_features_box, .support_features .support_features_inner, .contact_info .contact_box, form.contact-form, .contact_form .c_address_box, .abut-main-txt, .bundles_plans {
    margin-top: 60px;
}
.accordian_main .accordion, .hosting_features .features_box, .why_choose_hosting, .offer, .our_staff {
    margin-top: 40px;
}

@media(max-width:480px){
    h5.section_sub_heading {
    padding: 0px 0px 20px 0px;
}
}

/* ======== Services Box CSS Start ======== */


.home_services_box {
    position:relative;
    text-align:center;
    border:1px solid #EEE;
    padding:30px 0px;
    margin:50px 0px 0px 0px;
    background:#FFF;
}
.home_services_box h4 {
    padding: 0;
    margin: 0;
    font-size: 22px;
    font-weight: 500;
}
.home_services_box .sep {
    border: none;
    text-align: center;
    display: table;
    transition: all .5s ease 0s;
    width: 60px;
    height:2px;
}
.home_services_box:hover .sep {
    transition: all .5s ease 0s;
    width: 80px;
}
.home_services_box .right_arrow:before, .home_services_box .left_arrow:before, .home_services_box .right_arrow:after, .home_services_box .left_arrow:after {
    position: absolute;
    transition: .3s;
    content: "";
}
.home_services_box .right_arrow:before, .home_services_box .left_arrow:before {
    width: 50px;
    height: 1px;
}
.home_services_box .right_arrow:after, .home_services_box .left_arrow:after  {
    width: 1px;
    height: 50px;
}
.home_services_box .right_arrow:before {
    right: 0;
    bottom: -1px;
}
.home_services_box .right_arrow:after {
    right: -1px;
    bottom: 0;
}
.home_services_box .left_arrow:before {
    left: 0;
    top: -1px;
}
.home_services_box .left_arrow:after {
    left: -1px;
    top: 0;
}
.home_services_box:hover .right_arrow:before, .home_services_box:hover .left_arrow:before {
    width: 100%;
    transition: .3s;
}
.home_services_box:hover .right_arrow:after, .home_services_box:hover .left_arrow:after {
    height: 100%;
    transition: .3s;
}
.home_services_box .price {
    font-size:42px;
    padding:0px 0px 20px 0px;
    font-weight:600;
}
.home_services_box .price span {
    float: left;
    width: 100%;
    font-size: 13px;
    color: #666;
    font-weight: 500;
}


.servicess .left_box {
    padding: 100px 0px;
}
.servicess .left_box ul {
    margin-bottom: 0;
}
.servicess .left_box ul li {
    display: block;
    overflow: hidden;
    padding-bottom: 30px;
}
.servicess .left_box ul li:last-child {
    padding-bottom:0px;
}
.servicess .left_box ul li h3{
    color: #333;
    font-size: 26px;
    font-weight: 800;
    line-height: 90px;
    padding:0px 0px 0px 20px;
    margin:0px;
    float:left;
}
.servicess .left_box ul li .icon {
    width: 90px;
    height: 90px;
    line-height: 105px;
    border-radius: 50%;
    position: relative;
    z-index: 3;
    text-align:center;
    float:left;
}
.servicess .left_box ul li .icon i {
    color:#fba529;
    font-size: 40px;
}
.servicess .left_box ul li .icon:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 50%;
    z-index: -1;
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
    -webkit-transition: all .4s;
    transition: all .4s;
}
.servicess .left_box ul li:hover .icon:after {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}
.servicess .left_box ul li:hover .icon i {
    color:#FFF;
}
.servicess .right_box {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 100px 60px;
    z-index: 1;
    height: 100%;
}
.servicess .right_box:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
}
.servicess .right_box ul {
    margin-bottom: 0;
}
.servicess .right_box ul li {
    display: block;
    overflow: hidden;
    border-bottom: 1px solid #FFF;
    padding-bottom: 29px;
    margin-bottom: 30px;
}
.servicess .right_box ul li .content .icon {
    width: 55px;
    display: table-cell;
    vertical-align: top;
}
.servicess .right_box ul li .content .icon i {
    font-size:50px;
    color:#FFF;
}
.servicess .right_box ul li:hover .content .icon i{
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
    -webkit-transform-origin: center;
    transform-origin: center;
    animation-duration: .4s;
    animation-timing-function: linear;
    color:#fba529;
}

.servicess .right_box ul li .content .title {
    padding-left: 30px;
    display: table-cell;
    vertical-align: middle;
}
.servicess .right_box ul li .content .title h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: normal;
    margin: 0 0 1px;
    padding: 0px 0px 15px 0px;
}

.servicess .right_box ul li .content .title span {
    color: #FFF;
    font-size:18px;
}


/* ======== Services Box CSS Start ======== */

/* ======== Personal Info CSS Start ======== */


.safe_host .pr_info {
    display: inline-block;
}
.safe_host .pr_info .info_left img {
    width: 100%;
}
.safe_host .pr_info .info_right ul {
    margin: 0px;
    padding: 0px 0px 20px 0px;
}
.safe_host .pr_info .info_right ul li {
    padding:0px 0px 40px 0px;
}
.safe_host .pr_info .info_right ul li i {
    font-size: 30px;
    float: left;
    margin: 10px 30px 0px 0px;
    color: #414680;
}
.safe_host .pr_info .info_right ul li:hover i{
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
    -webkit-transform-origin: center;
    transform-origin: center;
    animation-duration: .4s;
    animation-timing-function: linear;
    color:#fba529;
}
.safe_host .pr_info .info_right ul li h3 {
    font-size: 22px;
    text-transform: uppercase;
    color: #333;
    font-weight: 500;
    margin: 0px;
    padding: 0px 0px 5px 0px;
}
.safe_host .pr_info .info_right a {
    display:inline-block;
}

@media(max-width:480px){
    .safe_host .pr_info .info_right ul li {
    padding:40px 0px 40px 0px;
}
}
/* ======== Personal Info CSS End ======== */

/* ======== Why Register CSS Start ======== */


.why_register .register_choose_section .choose_r_options i {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    position: relative;
    z-index: 3;
    text-align: center;
    background: #FFF;
    font-size: 40px;
}

.why_register.two .register_choose_section .choose_r_options i {
    width: 90px;
    height: 90px;
    line-height: 90px;
    border-radius: 50%;
    position: relative;
    z-index: 3;
    text-align: center;
    background: #FFF;
    font-size: 40px;
}
.why_register .register_choose_section .choose_r_options:hover i{
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
    -webkit-transform-origin: center;
    transform-origin: center;
    animation-duration: .4s;
    animation-timing-function: linear;
    color:#FFF;
    background:#fba529;
    font-size:40px;
}


/* ======== Why Register CSS End ======== */

/* ======== Home Domain Search CSS Start ======== */


.home_search {
    clear: both;
    padding: 0px 0px;
    background-image: url(../images/home-banner.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.home_search h1 {
    text-align: center;
    padding: 60px 0px 0px 0px;
    margin: 0px;
    font-size: 58px;
    font-weight: 700;
    text-transform: uppercase;
    color:#FFF;
}
.home_search img {
    padding:50px 0px 0px 0px;
    float:right;
}
.home_search .search_box {
    padding-bottom:60px;
    display:inline-block;
    width:100%;
}
.home_search .search_box .h_search {
    float: left;
    width: 75%;
    font-size: 15px;
    text-indent: 8px;
    border: 0px;
    height: 70px;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    font-size: 20px;
    font-weight: 400;
}
.home_search .search_box .h_submit {
    float: left;
    width: 25%;
    height: 70px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    font-size: 20px;
    text-transform: uppercase;
}
.home_offer {
    background-color:#fba529;
    padding:20px 0px;
    display:inline-block;
    width:100%;
    text-align:center;
}
.home_offer ul {
    margin:0px;
    padding:0px;
}
.home_offer ul li {
    display:inline;
    margin:0px 10px;
}
.home_offer ul li a {
    color:#FFF;
    border:1px solid #FFF;
    padding:10px 20px;
    display:inline-block;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
    transition: all .3s ease-in-out 0s;
}
.home_offer ul li a:hover {
    text-decoration:none;
}
.home_offer ul li a:hover span {
    display:block;
    text-decoration:none;
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
    -webkit-transform-origin: center;
    transform-origin: center;
    animation-duration: .5s;
    animation-timing-function: linear;
}
@media(max-width:767px){
    .home_offer ul li a:last-child{
        margin-top: 10px;
    }
}

/* ======== Home Domain Search CSS End ======== */

/* ======== Domain Plan CSS Start ======== */


.domain_plan .domain_b .domain_h {
    padding: 20px 10px;
    min-height: 126px;
}
.domain_plan .domain_b:hover .domain_h img{
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
    -webkit-transform-origin: center;
    transform-origin: center;
    animation-duration: .4s;
    animation-timing-function: linear;
}
.domain_plan .domain_b .domain_h p {
    font-weight: normal;
    padding: 10px 0 0 0;
    margin: 0px;
    text-transform: none;
}
.domain_plan .domain_b .bottom_b .plan_p {
    font-size: 30px;
    padding: 10px 0px 0px 0px;
    font-weight: 500;
    line-height: 30px;
    transition: all .65s;
}

.domain_plan .domain_b .bottom_b .cut_p {
    font-size: 16px;
    font-weight: normal;
    padding: 0px;
    text-decoration: line-through;
}
.domain_plan .domain_b .bottom_b a {
    margin: 20px auto;
    display: inline-block;
}


/* ======== Domain Plan CSS End ======== */

/* ======== FAQs Section CSS Start ======== */


.faq-items .accordion {
    background: transparent;
    padding: 20px;
    margin: 0;
    list-style: none;
}

.faq-items .accordion li {
    border: 2px solid #2732b1;
}

.faq-items .accordion li + li {
    margin-top: 15px;
}

.faq-items .accordion li > a {
    font-size: 19px;
    font-weight: 500;
    color: #333;
    padding: 20px;
    display: flex;
    align-items: center;
    transition: all 0.3s;
    cursor: pointer;
    user-select: none;
    position: relative;
}

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

.faq-items .accordion li > a > span {
    display: contents;
}

.faq-items .accordion li.active > a, .faq-items .accordion li.active > a:hover, .faq-items .accordion li.active > a:focus {
    transition: all 0.3s;
    background: #2732b1;
    color: #fff;
    position: relative;
}

.faq-items .accordion li > a::after {
    content: "\F285";
    color: #292626;
    font-size: 17px;
    transition: all 0.3s;
    border-radius: 5px;
    margin-inline-end: 10px;
    line-height: 1;
    font-family: bootstrap-icons;
    position: absolute;
    right: 0;
}

.faq-items .accordion li.active > a:after {
    transform: rotate(90deg);
    color: #fff;
}

.faq-items .accordion li p {
    padding: 15px;
    font-size: 15px;
    line-height: 1.5;
    color: #4b4b4b;
    display: none;
    border-radius: 0px 0px;
    /* padding-inline-start: 45px; */
} 

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

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

/* ======== FAQs Section CSS End ======== */

/* ======== Inner Page Header CSS Start ======== */


.inner_page_header {
    background-color:#333;
    background-image:url(../images/register-banner.jpg);
    background-repeat:no-repeat;
    background-position:center center;
    position:relative;
}
.inner_page_header .inner_headin_s i {
    padding: 20px 0;
    width: 100px;
    height: 100px;
    text-align: center;
    font-size: 60px;
    display: block;
    margin: 0px auto;
}
.inner_page_header .inner_headin_s h1 {
    text-align: center;
    text-transform: uppercase;
}
.inner_page_header .inner_headin_s p {
    text-align: center;
    margin: 0px auto;
    width: 75%;
    padding: 10px 0px 0px 0px;
}
.inner_page_header .inner_headin_s .searh_bar_domain {
    width: 75%;
    margin: 40px auto 0px auto;
}
.inner_page_header .inner_headin_s .searh_bar_domain input.search_domain {
    float: left;
    width: 75%;
    border: 0px;
    text-indent: 8px;
    border-right: 0px;
    height: 50px;
}
.inner_page_header .inner_headin_s .searh_bar_domain .inner_search_btn {
    float: left;
    width: 25%;
    height: 50px;
    font-weight: 400;
}
.tranfer_domain {
    width: 100%;
    margin: 60px auto 60px auto;
    display:inline-block;
}
.tranfer_domain input.tranfer_text {
    float: left;
    width: 70%;
    border: 0px;
    text-indent: 8px;
    height: 50px;
}
.tranfer_domain .tranfer_s {
    float: left;
    width: 15%;
    height: 50px;
    font-weight: 400;
    border-left: 1px solid #666;
    border-right: 0px;
    border-bottom: 0px;
    border-top: 0px;
}
.tranfer_domain .tranfer_domain_btn {
    float: left;
    width: 15%;
    height: 50px;
    font-weight: 400;
     padding: 8px 10px;
}


@media(max-width:767px){
.tranfer_domain input.tranfer_text {
    width: 60%;
}
.tranfer_domain .tranfer_s {
    width: 17%;
}
.tranfer_domain .tranfer_domain_btn {
    width: 23%;
}
}

@media(max-width:480px){
    .tranfer_domain input.tranfer_text {
    width: 70%;
}
.tranfer_domain .tranfer_s {
    width: 30%;
}
.tranfer_domain .tranfer_domain_btn {
    width: 100%;
    margin-top: 10px;
    display: block;
}
}

.policy h2 {
    font-size: 40px;
    font-weight: 500;
    color: #fba529;
}
.policy h3{
    font-size: 30px;
    font-weight: 500;
    color: #fba529;
}


/* ======== Inner Page Header CSS End ======== */

/* ======== Domain Promos CSS Start ======== */

.domain_sale .promo_box {
    margin: 40px 0px 0px 0px;
    overflow: hidden;
    padding-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #0000003d;
    transition: all .4s;
}
.domain_sale .promo_box:hover {
    box-shadow: 0px 0px 10px #BDBDBD;
}

.domain_sale .promo_box .box_top {
    color: #202020;
}
.domain_sale .promo_box .domain_p_name {
    color: #373737;
}
.domain_sale .promo_box .promo_date {
    color: #373737;
}
.domain_sale .promo_box .buynow a {
    display: inherit;
    margin-top: 10px;
}

.domain_sale {
    padding:20px 0px 60px 0px;
}
.domain_sale .promo_box .domain_p_name {
    font-size: 35px;
    padding: 10px;
    font-weight: 500;
    line-height: 35px;
}
.domain_sale .promo_box .d_price {
    font-size: 16px;
    margin: 0px 0 4px;
    color: #666;
    text-decoration: line-through;
}
.domain_sale .promo_box .p_price {
    font-size: 36px;
    padding: 0 10px 10px;
    font-weight: 800;
}
.domain_sale .promo_box .promo_date {
    font-size: 14px;
    padding:20px 0px;
}
.domain_sale .promo_box .buynow a {
    display: inherit;
}


/* ======== Domain Promos CSS End ======== */

/* ======== Page Offer banner CSS Start ======== */
.banner-heading{
    position: relative;
    z-index: 22;
}

.page_banner {
    background: #333;
    background-image: url(../images/page-banner.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    z-index: -1;
    background-size: cover;
}
.page_banner.homeofferbanner {
    background-image:url(../images/register-banner.jpg);
    background-size: cover;
}
.page_banner h1 {
    padding: 0px 0px 20px 0px;
    margin: 0px;
    font-size: 54px;
    font-weight: 700;
    text-transform:uppercase;
}
.page_banner .sub_heading_page {
    font-size: 28px;
    letter-spacing: 2px;
}
.page_banner ul {
    margin: 0px;
    padding: 25px 0px;
    display: inline-block;
    width: 100%;
}
.page_banner ul li {
    float: left;
    width: 50%;
    list-style: inside;
    padding: 5px 0px 0px 0px;
}
.page_banner .startsat {
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 2px;
}
.page_banner .banner_price {
    font-size: 46px;
}
.page_banner .banner_price span {
    font-size: 20px;
}
.page_banner a {
    margin: 15px 0;
    display: inline-block;
}
.page_banner .offer {
    float: right;
    margin: 0px;
    text-align: center;
    width: 80%;
    padding: 0px;
    border:2px dashed #fba529;
}
.page_banner .offer .offer_inner {
    margin: 10px;
    padding: 20px 0px;
}
.page_banner .offer .offer_inner .top_l {
    font-size: 27px;
    text-transform: uppercase;
}
.page_banner .offer .offer_inner .big_l {
    font-size: 82px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.page_banner .offer .offer_inner .off {
    font-size: 28px;
    text-transform: uppercase;
}
.page_banner .offer .offer_inner .c_code {
    font-size: 18px;
    padding: 15px 0px;
}
.page_banner .offer .offer_inner .ends {
    font-size: 11px;
}
.page_banner .offer .offer_inner .c_code span {
    color: #fba529;
    font-weight: 800;
}


/* ======== Page Offer banner CSS End ======== */

/* ======== Technical Features CSS Start ======== */


.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 tbody tr:nth-child(even) td {
    background-color: #f2f2f2;
}


.domain-pricing-table tbody tr:nth-child(odd) td {
    background-color: #ffffff; 
}


.domain-pricing-table tbody tr:hover td{
    background-color: #d0e4f5;
}

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

.domain-pricing-table table tbody tr td {
    border: 1px solid #e9eaec;
    padding: 10px;
    font-size: 16px;
    color: #fba529;
}
.domain-pricing-table table tbody > tr > td:first-child{
    background: #333333;
    color: #fff;
}

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


/* ======== Technical Features CSS End ======== */

/* ======== Hosting Plan CSS Start ======== */
.gap-bottom{
    margin-bottom: 40px;
}

.hosting_price .price_holder {
    padding: 10px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 0px 5px #EEE;
    border: 1px solid #4d4d4d38;
    border-radius: 3px;
    height: 100%;
}
.hosting_price .price_holder h4 {
    padding: 15px 0px;
    margin: 0px;
}
.hosting_price .price_holder .plan_value {
    margin: 0px;
    font-size: 50px;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-weight: 800;
    line-height: 50px;
}
.hosting_price .price_holder .plan_value span {
    font-size: 25px;
    vertical-align: text-top;
    font-weight:100;
}
.hosting_price .price_holder ul {
    margin: 0px;
    padding: 0px;
    text-align: start;
}
.hosting_price .price_holder ul li {
    font-size: 16px;
    padding: 5px 0px;
    list-style: none;
    display: flex;
    align-items: center;
    line-height: 20px;
}

.hosting_price .price_holder ul li:before{
    content: "\F309";
    font-size: 26px;
    font-family: bootstrap-icons;
}

.hosting_price .price_holder .order_now a {
    display: inline-block;
    margin: 20px auto;
}


.hosting_features .features_box .features_boxs {
    background-color: #fff;
    border-bottom: 3px solid #E5E2E2;
}
.hosting_features .features_box .features_boxs .features_imagev {
    background-color: #fba529;
}
.hosting_features .features_box .features_boxs .features_imagev i {
    color: #fff;
}
.hosting_features .features_box .features_boxs .features_content p {
    color: #707070;
}
.hosting_features .features_box .features_boxs:hover {
    background-color: #fba529;
    border-bottom: 3px solid #fba529;
}
.hosting_features .features_box .features_boxs:hover h5, .hosting_features .features_box .features_boxs:hover p {
    color: #fff;
}
.hosting_features .features_box .features_boxs:hover .features_imagev i {
    color: #fba529;
}
.hosting_features .features_box .features_boxs:hover .features_imagev {
    background-color: #fff;
}
.hosting_features {
    background: #EEE;
}
.hosting_features .features_box {
    position: relative;
    display: inline-block;
}
.hosting_features .features_box .features_boxs {
    padding: 10px 0;
    margin: 30px 0px 0px 0px;
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
    display: flex;
}
.hosting_features .features_box .features_boxs .features_imagev {
    border-radius: 100%;
    width: 90px;
    display: block;
    float: left;
    margin: 35px 20px 0px 20px;
    height: 90px;
    border-radius: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
}
.hosting_features .features_box .features_boxs .features_imagev i {
    text-align: center;
    font-size: 35px;
    padding: 30px;
}
.hosting_features .features_box .features_boxs .features_content {
    padding: 0px 20px 0 0;
}
.hosting_features .features_box .features_boxs .features_content p {
    padding: 0px 0px 20px 0;
}

.page_banner.error-banner{
    background: #333;
    background-image: url(../images/page-banner.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    background-size: cover;
}


/* ======== Hosting Plan CSS End ======== */


/* ======== Contact Info CSS Start ======== */


.contact_info .contact_box {
    padding: 30px;
    min-height: 422px;
}
.contact_info .contact_box i {
    font-size: 40px;
    height: 80px;
    line-height: 75px;
    margin-bottom: 15px;
    padding: 0;
    width: 80px;
}
.contact_info .contact_box a {
    display: block;
    margin: 25px auto;
    width: 80%;
}


/* ======== Contact Info CSS End ======== */

/* ======== Why Choose Hosting CSS Start ======== */


.why_choose_hosting {
    display: inline-block;
}
.why_choose_hosting .hosting_box {
    padding: 25px;
    margin: 30px 0px 0px 0px;
}
.why_choose_hosting .hosting_box i {
    font-size: 40px;
    text-align: center;
    margin: 0px auto;
    width: 80px;
    height: 80px;
    display: block;
    border-radius: 100%;
    line-height: 80px;
}
.why_choose_hosting .hosting_box:hover {
    transition: background-color 0.3s ease;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 3px;
}
.why_choose_hosting .hosting_box:hover i{
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
    -webkit-transform-origin: center;
    transform-origin: center;
    animation-duration: .4s;
    animation-timing-function: linear;
}


/* ======== Why Choose Hosting CSS End ======== */

/* ======== Prices Table CSS Start ======== */


.price_table h2 {
    font-weight: normal;
    margin: 0px;
    padding: 0px;
}
.price_table .tabs_l {
    margin: 0px 0px 50px 0px;
}
.price_table .tabs_l ul.nav-tabs {
    display: table;
    margin: 0 auto;
    border: 0px;
}
.price_table .tabs_l ul.nav-tabs li.active a {
    border: 0px;
}
.price_table .tabs_l ul.nav-tabs li.active a:after {
    content: '';
    position: absolute;
    right: 50%;
    bottom: -10px;
    margin-right: -13px;
}
.price_table .tabs_l ul.nav-tabs li a {
    border-radius: 0px;
    border: 0px;
    font-size: 20px;
    font-variant :normal;
    padding: 20px 30px;
    margin: 0px;
}
.price_table .plan_box .plan_header {
    padding: 20px 0px;
}
.price_table .plan_box .plan_header .heading {
    font-size: 20px;
    font-weight: 300;
    padding: 0px;
    text-transform: uppercase;
}
.price_table .plan_box .plan_header .prices {
    font-size: 50px;
    font-weight: 600;
    padding: 10px 0px 0px 0px;
}
.price_table .plan_box .plan_header .prices span {
    font-size: 14px;
    font-weight:300;
}
.price_table .plan_box .plan_middle {
    padding: 0px;
}
.price_table .plan_box .plan_middle ul {
    margin: 0px;
    padding: 0px;
}
.price_table .plan_box .plan_middle li {
    font-size: 16px;
    padding: 15px 0px;
    list-style: none;
}
.price_table .plan_box .plan_middle li:last-child {
    border-bottom: 0px;
}
.price_table .plan_box .plan_footer {
    padding: 20px 0px;
}
.price_table .plan_box .plan_footer .select_p {
    width: 80%;
    margin: 0 auto;
    display: block;
    height: 36px;
}
.price_table .plan_box .plan_footer a {
    margin: 0px auto;
    display: inline-block;
    width: 80%;
}


/* ======== Prices Table CSS End ======== */

/* ======== Hosting Features CSS Start ======== */


.hostin_features .right_box ul {
    margin-bottom: 0;
}
.hostin_features .right_box ul li {
    display: block;
    overflow: hidden;
    margin: 50px 0px 0px 0px;
}
.hostin_features .right_box ul li:first-child {
    margin: 100px 0px 0px 0px;
}
.hostin_features .right_box ul li .content .icon {
    width: 55px;
    display: table-cell;
    vertical-align: top;
}
.hostin_features .right_box ul li .content .icon i {
    font-size:50px;
    color:#FFF;
}
.hostin_features .right_box ul li:hover .content .icon i{
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-transform-origin: center;
    transform-origin: center;
    animation-duration: .6s;
    animation-timing-function: linear;
    color:#FFF;
}
.hostin_features .right_box ul li .content .title {
    padding-left: 30px;
    display: table-cell;
    vertical-align: middle;
}
.hostin_features .right_box ul li .content .title h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: normal;
    margin: 0 0 1px;
    padding: 0px 0px 15px 0px;
}
.hostin_features .right_box ul li .content .title span {
    color: #FFF;
    font-size:18px;
}


/* ======== Hosting Features CSS End ======== */































/*==============testimonial css=============*/

.testimonials .testimonial-item {
    background-color: #2732b11a;
    box-shadow: 0px 2px 15px rgb(233, 234, 247);
    box-sizing: content-box;
    padding: 30px;
    margin: 30px 15px;
    position: relative;
    height: 100%;
    border-radius: 10px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  margin-right: 15px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
    color: #2732b1;
    font-size: 26px;
    line-height: 0;
}
.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #00000052;
    opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #2732b1;
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/* ======== about CSS Start ======== */

.abut-main-txt h5 {
    padding:0px 0px 30px 0px;
    margin:0px;
}
.our_staff {
    display: inline-block;
}

.our_staff h5{
    margin-top: 20px;
    font-size: 25px;
    font-weight: 500;
}
.our_staff .team_box {
    margin: 50px 0px 0px 0px;
}
.our_staff .team_box .thumbnail {
    border: 0px;
}
.our_staff .team_box .thumbnail img {
    border-radius: 100%;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
}
.our_staff .team_box .thumbnail img:hover {
    -webkit-filter: grayscale(0);
    -moz-filter: grayscale(0);
    -ms-filter: grayscale(0);
    -o-filter: grayscale(0);
    filter: grayscale(0);
}
/* ======== about CSS End ======== */

/* ======== Contact Form and Address CSS Start ======== */

.contact_form span.ctext .c_text {
    border: 0px;
    text-indent: 5px;
    line-height: 38px;
}
.contact_form span.ctext .c_texta {
    border: 0px;
    resize: none;
    width: 100%;
    text-indent: 5px;
    line-height: 38px;
}
.contact_form span.ctext {
    display: inline-block;
    width: 100%;
    position: relative;
    margin-bottom: 30px;
}
.contact_form span.ctext:before {
    content: "";
    width: 1px;
    height: 5px;
    position: absolute;
    bottom: 0;
    left: 0;
}
.contact_form .contact_btn {
    float: right;
    margin: 0px;
}

@media(max-width:480px){
    .contact_form .contact_btn {
     float: unset; 
    margin: auto;
    display: flex;
}
}
.contact_form .c_address_box {
    padding: 30px;
}
.contact_form .c_address_box i.address-icon {
    font-size: 40px;
    height: 80px;
    line-height: 75px;
    margin-bottom: 15px;
    padding: 0;
    width: 80px;
}
.contact_form .c_address_box .contact_social {
    margin:20px 0px 0px 0px;
}
.contact_form .c_address_box .contact_social ul li {
    list-style:none;
    display:inline;
    margin:0px 5px;
}
.contact_form .c_address_box .contact_social ul li a {
    width:40px;
    height:40px;
    line-height:40px;
    display:inline-block;
}

.contact_form input::placeholder {
    color: #000 !important;
}

/* ======== Contact Form and Address CSS End ======== */

/* ======== Footer CSS Start ======== */


.footer {
    float: left;
    width: 100%;
}
.footer .f_outr_section .f_txt_heading {
    padding-top: 60px;
    padding-bottom: 30px;
}
.footer .f_contact_s.email_bg {
    margin-bottom: 20px;
}
.footer .f_about {
    padding: 6px 0px 0px 0px;
}
.footer .f_outr_section .f_txt_heading h4 {
    padding: 0px 0px 10px 0px;
    margin: 0px 0px 40px 0px;
    font-weight: 400;
    position: relative;
    font-size: 25px;
}
.footer .f_outr_section .f_txt_heading h4:before {
    position: absolute;
    display: inline-block;
    content: "";
    bottom: -1px;
    width: 0;
    height: 2px;
    width:40px;
    background-color: #ffffff;
}
.footer .f_outr_section .f_txt_heading ul li {
    list-style-type: none;
    padding: 6px 0;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.footer .f_outr_section .f_txt_heading ul li:hover {
    padding-left:10px;
}
.footer .f_outr_section .f_txt_heading ul li a {
    text-decoration: none;
    padding-left: 10px;
    font-weight: 400;
    color: #CCC;
}
.footer .f_outr_section .f_txt_heading ul li:before {
    content: '\F285';
    font-family:bootstrap-icons;
    font-weight: 900;
    font-size: 11px;
    color: #CCC;
}
.footer .copy-right {
    padding: 0px 0px 30px 0px;
}
.footer .copy-right .coright-text {
    font-size: 16px;
    color: #999;
}
.footer .copy-right .copyright-menu {
    text-align: right;
}
.footer .copy-right .copyright-menu ul {
    margin: 0;
}
.footer .copy-right .copyright-menu ul li {
    display: inline;
    padding-left: 20px;
}
.footer .copy-right .copyright-menu ul li a {
    font-size: 16px;
    color: #fba529;
}
.footer .copy-right .copyright-menu ul li a:hover {
    text-decoration:none;
    color:#FFF;
}

@media(max-width:480px){
    .footer .copy-right .copyright-menu {
    text-align: center;
}
}

/* ======== Multiple Devices CSS ======== */


@media (min-width : 992px) and (max-width:1200px) {
 .slide-text {
 top: 18%;
}
 .main_menu .navbar-nav > li > a {
 padding: 35px 15px;
 font-size: 14px;
}
}
 @media (min-width : 768px) and (max-width: 991px) {
 .main_menu .navbar-nav > li > a {
 padding: 25px 8px;
 font-size: 12px;
}
 .slide-text {
 top: 16%;
}
 .slide-text > p {
 width: 95%;
}
 .why_register .register_choose_section {
 display: inline-block;
 margin: 0px;
}
 .home_services .plan_box {
 display: inline-block;
}
 .customer_testimonial img {
 width: 50%;
}
 .customer_testimonial .test_text_box {
 top: 22px;
}
 .footer .footer-bottom .nwesltr {
 width: 60%;
}
 .wm-dropdown-menu {
 width: 200px;
}
 .inner_page_header .inner_headin_s .searh_bar_domain {
 width: 90%;
}
 .page_banner h1 {
 letter-spacing: 0px;
}
 .page_banner .sub_heading_page {
 font-size: 20px;
 letter-spacing: 0px;
}
 .page_banner .offer {
 width: 100%;
}
 .contact_info .contact_box {
 padding: 15px;
 min-height: auto;
}
 .contact_info .contact_box a {
 width: 100%;
}
 .home_search .h_search {
 width:60%;
}
 .home_search .h_submit, .home_search .h_transfer {
 width: 20%;
 padding-left: 0px;
 padding-right: 0px;
}
 .home_search .search_box p {
 padding:30px 0px;
}
 .call_back_main .form_outer .name {
 width: 100%;
}
 .price_table .plan_box .plan_header .prices {
 font-size: 30px;
}
 .footer .f_outr_section {
 padding-top: 30px;
}
 .footer .f_outr_section .f_txt_heading {
 padding-top: 0px;
 padding-bottom: 30px;
}
 .bundles_plans .bundle_box .bundles_arrow {
 background: none;
 height: auto;
 width: 100%;
 left: 0px;
 top: 8px;
 border-top: 1px solid #CCC;
}
 .bundles_plans .bundle_box .price_bundle {
 padding: 20px 0;
}
 .bundles_plans .bundle_box a.primary_button {
 display: inline-block;
}
}
 @media (min-width : 480px) and (max-width: 767px) {
 .slide-text {
 top: 14%;
}
 .slide-text > a {
 display: none;
}
}
 @media (min-width : 200px) and (max-width: 767px) {
 h1 {
 font-size: 34px;
}
 h2 {
 font-size: 30px;
}
 h3 {
 font-size: 26px;
}
 h4 {
 font-size: 22px;
}
 h5 {
 font-size: 18px;
}
 h6 {
 font-size: 14px;
}
 section {
 padding: 30px 0px;
}
 .domain_promo .promo_box, .home_search .search_box, .what_we_do .whatwedo, .why_register .register_choose_section .choose_r_options, .home_services .plan_box, .customer_testimonial .testimonial, .home_blog .blog_txt_inner, .domain_plan .domain_b, .table_main .tables, .accordian_main .accordion, .safe_host .pr_info, .price_table .plan_box, .server_features .server_features_box, .support_features .support_features_inner, .contact_info .contact_box, .hosting_price .price_holder, form.contact-form, .contact_form .c_address_box, .abut-main-txt, .bundles_plans, .promo_box {
 margin-top: 30px;
}
 .accordian_main .accordion, .hosting_features .features_box, .why_choose_hosting, .offer, .our_staff {
 margin-top: 0px;
}
.servicess .left_box ul li .icon {
    float: none;
    margin: 0 auto;
}
.servicess .left_box ul li, .item blockquote {
    text-align:center;
}
.servicess .left_box ul li h3 {
    padding:20px 0px 0px 0px;
    line-height:36px;
    float:none;
}
.servicess .right_box ul li .content .icon {
    width: 100%;
    display: inline-block;
    text-align: center;
}
.servicess .right_box ul li .content .title {
    padding-left: 0;
    display: inline-block;
    text-align: center;
    padding-top: 20px;
}
.headings h3, .headings h2, .headings h4 {
    font-size: 30px;
}
 .abut-main-txt h5 {
 margin-top:30px;
 text-align:center;
}
 .abut-main-txt p {
 text-align:center;
}
.safe_host .pr_info img {
    display:none;
}
.safe_host .pr_info .info_right ul li i {
    float: none;
    margin: 0;
}
.safe_host .pr_info .info_right ul li {
    text-align: center;
}
.safe_host .pr_info .info_right ul li h3 {
    padding: 20px 0px;
}
.safe_host .pr_info .info_right a {
    display:inherit;
}
.item blockquote .client-name, .item blockquote .ratting {
    text-align: center;
}
.carousel-inner {
    min-height:inherit;
}
.item blockquote .client-name span {
    padding-left: 0px;
}
#quote-carousel .carousel-indicators {
    display:none;
}
 .navbar {
 position: absolute;
 z-index: 9;
 left: 0px;
}
 .footer .f_outr_section {
 padding-top: 30px;
}
 .footer .f_outr_section .f_txt_heading {
 padding-top: 0px;
 padding-bottom: 30px;
}
 .headings_black strong, .headings_white strong {
 font-size: 22px;
}
 .navbar-collapse, .navbar-collapse.in {
 overflow-y:inherit !important;
}
 .headings_black span, .headings_white span {
 font-size: 14px;
}
 .top_header {
 padding: 5px 0px;
}
 .top_header .top_link ul {
 text-align: center;
}
 .top_header .top_link ul li {
 display: inline;
 float: none;
 font-size: 10px;
 letter-spacing: 0px;
}
 .top_header .top_link ul li a {
 font-size: 10px;
}
 .top_header .top_link.right {
 float: none;
}
 .navbar {
 min-height: 0px;
}
 .main_menu .logo {
 padding: 12px 0px;
 position: relative;
 width:50%;
}
 .main_menu .logo a img {
 z-index: 1;
 position: relative;
}
 .navbar-toggle {
 position: absolute;
 top: -50px;
 right: 0;
 background-color: #FFF;
}
 .main_menu .navbar-nav > li > a {
 padding: 10px;
}
 .navbar-nav {
 float: left;
 margin: 0;
}
 .nav > li {
 float: left;
 width: 100%;
}
 .navbar-collapse {
 background: #666;
}
 .slide-text > p {
 width: 90%;
}
 .slide-text > a.learn_more_s, .slide-text > a.buy_now_s {
 display: none;
}
 .home_search {
 padding:30px 0px;
}
 .home_search h1 {
 font-size: 22px;
 padding: 0px;
}
 .home_search .h_search {
 width: 100%;
}
 .home_search .h_submit, .home_search .h_transfer {
 width: 100%;
 margin: 10px 0px 0px 0px;
 }
 .home_search .search_box .h_search, .home_search .search_box .h_submit {
     width:100%;
     border-radius:3px;
     font-size:20px;
 }
 .home_search img {
     display:none;
 }
 .home_search .search_box {
     padding-bottom:0px;
 }
 .home_search h1 {
    text-align: center;
 }
 .home_search .search_box p {
 padding: 10px;
}
 .why_register .register_choose_section {
 display: inline-block;
 margin: 0px;
}
 .home_services .plan_box {
 display: inline-block;
}
 .customer_testimonial img {
 display: none;
}
 .customer_testimonial .test_text_box {
 position: static;
 width: 100%;
 padding: 15px;
}
 .footer .footer-bottom .nwesltr {
 width: 100%;
}
 .footer .footer-bottom .join_now {
 width: 100%;
 margin: 10px 0px 0px 0px;
}
 .footer .footer-bottom .social ul {
 float: none;
 text-align: center;
 margin: 20px 0px;
}
 .footer .copy-right {
 font-size: 11px;
}
 .inner_page_header .inner_headin_s .searh_bar_domain input.search_domain {
 width: 100%;
}
 .inner_page_header .inner_headin_s .searh_bar_domain .inner_search_btn {
 width: 100%;
 margin-top: 10px;
}
 .inner_page_header .inner_headin_s p {
 width: 100%;
}
 .safe_host .pr_info .info_left {
 display: inline-block;
}
 .accordian_main .accordion-section-title {
 font-size: 20px;
}
 .page_banner {
 text-align:center;
}
 .page_banner h1 {
 font-size: 30px;
 letter-spacing: 0px;
 text-align:center;
}
 .page_banner .sub_heading_page {
 font-size: 20px;
 letter-spacing: 0px;
 text-align:center;
}
 .page_banner ul li {
 width: 100%;
}
 .page_banner .offer {
 width: 100%;
 margin-top:30px;
}
 .hosting_features .features_box .features_boxs {
 display: inline-block;
}
 .hosting_features .features_box .features_boxs.right_f .features_content, .hosting_features .features_box .features_boxs .features_content {
 float: left;
 text-align: center;
 width: 100%;
 padding: 0px 20px;
}
 .hosting_features .features_box .features_boxs .features_imagev {
 margin: 10px auto;
 float: none;
}
 .hosting_features .features_box .features_boxs.right_f .features_imagev {
 float: none;
}
 .call_back_main p {
 display: inline-block;
}
 .call_back_main .form_outer .name {
 width: 100%;
}
 .contact_info .contact_box {
 padding: 15px;
 min-height: auto;
}
 .contact_info .contact_box a {
 width: 70%;
 }
.navbar-toggle {
    padding: 5px 10px;
    margin: 10px 10px 0px 0px;
    font-size: 15px;
    background: #fba529;
    color: #FFF;
    border: 0;
    border-radius: 0;
}
.navbar-toggle:hover, .navbar-toggle:focus {
    background: #fba529 !important;
    color: #FFF;
}
.wm-dropdown-menu {
    max-height: 200px;
    overflow-y: scroll;
    width:100%;
}
.main_menu .navbar-nav > li > a {
    color: #FFF;
}
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
    color: #fff;
    background-color: transparent;
}
 .footer .copy-right, .footer .copy-right .flink {
 text-align:center;
}
 .table_main .domain_price_box {
 display: inline-block;
 margin: 20px 0 0 0;
 border: 1px solid #333;
 border-bottom:0px;
 width: 100%;
}
 .table_main .tables .middle.active {
 background:none;
}
 .table_main .tables .middle, .table_main .tables .middle.active {
 border-bottom: 1px solid #333;
 border-top: 0px;
 border-right: 0px;
 border-left: 0px;
}
 .table_main .tables .middle .visible-xs {
 padding-bottom: 10px;
}
 .footer {
 text-align:center;
}
 .bundles_plans .bundle_box .plus::before {
 left: 50%;
 top: -34px;
 margin-left: -10px;
}
 .bundles_plans .bundle_box .bundle {
 padding: 0px 0px 30px 0px;
}
 .bundles_plans .bundle_box .bundles_arrow {
 background: none;
 height: auto;
 width: 100%;
 left: 0px;
 top: -9px;
 border-top: 1px solid #CCC;
}
 .bundles_plans .bundle_box .price_bundle {
 padding: 0px 0px 10px 0;
}
 .bundles_plans .bundle_box a.primary_button {
 display: inline-block;
}
.servicess .right_box {
    padding: 30px 20px;
}
.servicess .left_box {
    padding: 30px 0px;
}
.inner_page_header .inner_headin_s .tranfer_domain input.tranfer_text, .inner_page_header .inner_headin_s .tranfer_domain .tranfer_s, .inner_page_header .inner_headin_s .tranfer_domain .tranfer_domain_btn {
    width: 100%;
}
.inner_page_header .inner_headin_s .tranfer_domain .tranfer_s {
    margin:15px 0px;
}
.domain_sale {
    padding: 0px 0px 30px 0px;
}
.hostin_features .right_box ul li .content .icon {
    width: 100%;
    display: inline-block;
    text-align: center;
}
.hostin_features .right_box ul li:first-child {
    margin: 50px 0px 0px 0px;
}
.hostin_features .right_box ul li .content .title {
    padding-left: 0;
    padding-top:30px;
    text-align: center;
}
.blog-padding {
    padding: 0px 0px 30px 0px !important;
}
.card-body, .widgets {
    margin-top: 30px;
}
.testimonial-box {
    margin: 30px 0px 0px 0px;
}
.bottom-padding {
    padding: 0px 0px 30px 0px !important;
}
}
 @media (min-width : 200px) and (max-width: 479px) {
 .slide-text > p {
 display: none;
}
 .slide-text > a {
 display: none;
}
}


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

.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;
}

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

@media(max-width:480px){
    .social-icon{
    justify-content:center !important;
}

}