@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --textcolor: #09101E;
  --white: #ffffff;
  --black: #000000;
  --primary: #09101E;
  --secondary: #0298DD;
  --tertiary: #8EBE20;
  --bar: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
html, body {
    font-family: "Poppins", sans-serif;
    padding: 0;
    margin: 0;
    width: 100%;
    position: relative;
    color: var(--textcolor);
    scroll-behavior: smooth;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    overflow-x: hidden;
}

/*---- Comman stylesheet ----*/
a {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
    color:#03F0FF;
}
ul, li, p {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
button,input,a,textarea,select{
    outline: 0 !important;
    box-shadow: unset !important;
}
img{
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}
*, ::after, ::before {
    box-sizing: border-box;
}
.container {
    max-width: 1360px;
    padding: 0 20px;
    width: 100%;
    margin: 0 auto;
}
.section-padding {
    padding: 100px 0;
}
.site-common-title {
    text-align: center;
}
.site-common-title h2 {
    color: var(--textcolor);
    margin-bottom: 15px;
}
h1,.h1{
  font-size:32px;
  font-weight: 600;
  line-height: 1.25;
}
h2,.h2{
  font-size:32px;
  font-weight: 600;
  line-height: 1.2;
}
h3,.h3{
  font-size:28px;
  font-weight: 600;
  line-height: 1;
}
p{
  font-size:16px;
  font-weight: 400;
  line-height: 1.5;
}
.common-btn {
    font-weight: 600;
    font-size: 14.4px;
    line-height: 1.5;
    text-align: center;
    text-transform: uppercase;
    padding: 15px;
    min-width: 276px;
    border-radius: 5px;
    border: 1px solid var(--secondary);
    display: inline-block;
    transition: all 500ms ease-in-out;
}
.primary-btn {
    background: var(--secondary);
    color: var(--white);
}
.primary-border-btn {
    border-color: var(--secondary);
    color: var(--secondary);
}
.primary-border-btn:hover {
    background: var(--secondary);
    color: var(--white);
}
.primary-btn:hover {
    color: var(--secondary);
    background: var(--white);
}
/*---- Comman stylesheet ----*/

/*---- Start loader stylesheet ----*/

/*---- End loader stylesheet ----*/



/*---- Start Header stylesheet ----*/
.site-header {
    box-shadow: 0px 5px 25px 0px #00000029;
    padding: 10px 0;
}
.site-header .top-header-bar{
  padding-bottom: 6px;
}
.site-header .top-header-bar .top-header-text {
    font-weight: 300;
    font-size: 12.8px;
    line-height: 1.6;
}
.site-header .buttons-groups-main {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap:5px;
}
.site-header .top-header-bar .buttons-groups-main .buttons-groups-row button {
    padding: 12px 24px 12px 12px;
    border: 0;
    font-weight: 300;
    font-size: 12.8px;
    line-height: 1.5px;
    background: url('../images/angle-down.svg') #E9F0F5;
    border-radius: 3px;
    background-position: 85% 50%;
    background-repeat: no-repeat;
    background-size: 8px;
}
.site-header .buttons-groups-main .buttons-groups-dropdown {
    animation: slide-in-top .3s linear both;
    display: none;
    position: absolute;
    background: #fff;
    box-shadow: 0 15px 25px rgba(0, 0, 0, .1607843137) !important;
    z-index: -1;
    padding: 24px 0 36px 0;
    border-bottom-left-radius: 9px;
    border-bottom-right-radius: 9px;
    top: 100%;
    right: 0;
    width: 424px;
    padding: 24px 12px 36px;
    z-index: 1;
}
@keyframes slide-in-top {
    0% {
        transform: translateY(-1000px);
        opacity: 0
    }
    100% {
        transform: translateY(0);
        opacity: 1
    }
}
.site-header .buttons-groups-main .buttons-groups-dropdown.open {
    display: block;
}
.site-header .buttons-groups-main .buttons-groups-row {
    position: relative;
}
.site-header .navbar-brand {
    max-width: 205px;
    padding: 0;
}
.site-header .bottom-header-bar .navbar-nav > .nav-item > .nav-link {
    font-weight: 300;
    font-size: 15.6px;
    line-height: 1.5;
    padding: 7px 12.5px;
    color: var(--textcolor);
}
.site-header .bottom-header-bar nav.navbar {
    padding: 0;
}
.site-header .bottom-header-bar .navbar-nav > .nav-item > .nav-link::after {
    content: '';
    margin-left: 6px;
    content: "";
    background-image: url(../images/angle-down.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-size: 8px;
    height: 8px;
    width: 8px;
    border: 0;
    position: relative;
    top: 2px;
}
.site-header .bottom-header-bar .navbar-nav > .nav-item > .nav-link.show::after {
    transform: rotate(180deg);
    top: 4px;
}
.site-header .bottom-header-bar .navbar-nav > .nav-item.dropdown .dropdown-menu {
    width: 424px;
    border: 0;
    animation: slide-in-top .3s linear both;
    display: none;
    position: absolute;
    background: #fff;
    box-shadow: 0 15px 25px rgba(0, 0, 0, .1607843137) !important;
    padding: 24px 12px 36px;
    border-radius: 0 0 9px 9px;
}
.site-header .bottom-header-bar .navbar-nav > .nav-item.dropdown .dropdown-menu.show{
  display: block;
}
.site-header .bottom-header-bar .dropdown-inner-item a {
    display: flex;
    padding: 12px 24px;
    align-items: flex-start;
    transition: .25s ease-out 25ms;
}
.site-header .bottom-header-bar .dropdown-inner-item a:hover {
    background: #e9f0f5;
    border-radius: 9px;
}
.site-header .bottom-header-bar .dropdown-inner-item a img {
    width: 20px;
}
.site-header .bottom-header-bar .dropdown-inner-item a .dropdown-inner-text {
    width: calc(100% - 20px);
    padding-left: 12px;
}
.site-header .bottom-header-bar .dropdown-inner-item a .dropdown-inner-text h4 {
    line-height: 1;
    font-size: 16px;
    padding: 0;
    margin: 0;
    padding-bottom: 4px;
    color: var(--primary);
    font-weight: 400;
}
.site-header .bottom-header-bar .dropdown-inner-item a .dropdown-inner-text p {
    font-size: 13px;
    margin: 0;
    line-height: 1;
    color: var(--primary);
}
.site-header .buttons-groups-main .buttons-groups-dropdown ul li a {
    display: flex;
    padding: 12px 24px;
    align-items: flex-start;
    transition: .25s ease-out 25ms;
}
.site-header .buttons-groups-main .buttons-groups-dropdown ul li a img {
    width: 20px;
}
.site-header .buttons-groups-main .buttons-groups-dropdown ul li div {
    width: calc(100% - 20px);
    padding-left: 12px;
}
.site-header .buttons-groups-main .buttons-groups-dropdown ul li div .btn-title {
    line-height: 1;
    font-size: 16px;
    padding: 0;
    margin: 0;
    padding-bottom: 4px;
    color: var(--primary);
    font-weight: 400;
}
.site-header .buttons-groups-main .buttons-groups-dropdown ul li div .btn-desc {
    font-size: 13px;
    margin: 0;
    line-height: 1;
    color: var(--primary);
}
.site-header .buttons-groups-main .buttons-groups-dropdown ul li a:hover {
    background: #e9f0f5;
    border-radius: 9px;
}
.site-header .bottom-header-bar .navbar-nav > .nav-item > .nav-link:hover {
    color: var(--tertiary);
}
.site-header .buttons-groups-main .buttons-groups-row button:hover {
    background-color: #646e75;
    color: var(--white);
}
.site-header .bottom-header-bar .buttons-groups-main {
    gap: 24px;
}
.site-header .bottom-header-bar .buttons-groups-main .buttons-groups-row {
    display: flex;
    align-items: center;
}
.site-header .bottom-header-bar .buttons-groups-main .buttons-groups-row .site-cart-icon img {
    width: 18px;
}
.site-header .bottom-header-bar .buttons-groups-main .buttons-groups-row button {
    border: 0;
    padding: 0 15px 0 0;
    position: relative;
    background: url(../images/angle-down.svg) transparent;
    border-radius: 3px;
    background-position: 85% 50%;
    background-repeat: no-repeat;
    background-size: 8px;
}
.site-header .bottom-header-bar .buttons-groups-main .buttons-groups-row button img {
    width: 18px;
}
/*---- End Header stylesheet ----*/



/*---- Start Main stylesheet ----*/
.site-hero-section-main-wrap {
    padding: 24px 0 16px;
}
.site-hero-section-main-wrap .site-hero-img img {
    max-width: 729px;
    margin-left: auto;
}
.site-hero-section-main-wrap .site-hero-sectio-title {
    padding: 30px 0;
}
.site-hero-section-main-wrap .site-hero-sectio-title h1 {
    max-width: 72%;
    margin-bottom: 16px;
}
.site-hero-section-main-wrap .site-hero-sectio-title p {
    max-width: 84%;
    margin-bottom: 40px;
}
.site-hero-section-main-wrap .button-group{
    gap: 16px;
}
.site-hero-section-main-wrap .site-hero-sectio-title .site-hero-icon-wrap {
    margin-top: 6px;
}
.site-hero-section-main-wrap .site-hero-sectio-title .site-hero-icon-wrap img {
    width: 12px;
}
.site-hero-section-main-wrap .site-hero-sectio-title .site-hero-icon-wrap p {
    margin: 0;
    padding-left: 7px;
    font-size: 14px;
    line-height: 1;
}
.site-reviews-main-wrap {
    padding: 0 0 47.5px;
}
.site-reviews-main-wrap .container {
    max-width: 1218px;
}
.site-reviews-main-wrap .site-reviews-box {
  flex-direction: column;
  justify-content: space-evenly;
  height: 100%;
  align-items: flex-start;
}
.site-reviews-main-wrap .site-reviews-box .company-logo-img {
    height: 23px;
    object-fit: contain;
    margin-bottom: 5px;
    width: auto;
}
.site-reviews-main-wrap .col-lg-3:first-child .site-reviews-box .company-logo-img {
    height: 31px;
}
.site-reviews-main-wrap .site-reviews-box .star-img {
    width: 207px;
}
.site-reviews-main-wrap .site-reviews-box p {
    font-weight: 300;
    font-size: 14.4px;
    line-height: 1.6;
    margin-top: 5px;
}
.site-reviews-main-wrap .site-reviews-box p span {
    font-weight: 600;
}
.site-reviews-main-wrap .site-reviews-box .star-img-wrap {
    width: 150px;
    height: auto;
}
.site-reviews-main-wrap .column-inner {
    height: 100%;
}
.site-pricing-plan-wrap {
    padding: 47.5px 0 135px;
}
.site-pricing-plan-wrap .site-common-title {
    max-width: 539px;
    margin: 0 auto 44px;
}
.site-pricing-plan-wrap .site-common-title p {
    font-weight: 300;
    font-size: 15.6px;
    line-height: 1.5;
}
.site-why-host-main-wrap {
    background: radial-gradient(48.49% 113.13% at 50% -63.13%, #78A4ED 0%, #154BA6 32.19%, #0B2655 82.23%, #081D40 100%);
    padding: 160px 0 172px;
}
.site-why-host-main-wrap * {
    color: var(--white);
}
.site-why-host-main-wrap .site-why-host-box:not(:last-child){
  margin-bottom: 165px;
}
.site-why-host-main-wrap .site-why-host-box .site-common-title h2 {
    color: var(--white);
}
.site-why-host-main-wrap .site-why-host-box .site-common-title {
    max-width: 80%;
    margin: 0 auto;
}
.site-common-title p:not(:last-child) {
    margin-bottom: 24px;
}
.site-why-host-main-wrap .site-why-host-box .site-why-host-box-table table {
    border: 1px solid #FFFFFF29;
    background: #1B2F4F;
    border-radius: 8px;
    overflow: hidden;
    margin: 0;
}
.site-why-host-main-wrap .site-why-host-box .site-why-host-box-table table thead th {
    background: #6F7B8E;
}
.site-why-host-main-wrap .site-why-host-box .site-why-host-box-table table thead th {
    padding: 12px 40px;
    font-weight: 600;
    font-size: 16px;
    line-height: 2;
}
.site-why-host-main-wrap .site-why-host-box .site-why-host-box-table table tbody td {
    font-size: 16px;
    line-height: 1.5;
    padding: 16px 16px 16px 40px;
}
.site-why-host-main-wrap .site-why-host-box .site-why-host-box-table table tbody tr:nth-child(even) {
    background: #EDEDED1F;
}
.site-why-host-main-wrap .site-why-host-box-table {
    position: relative;
    padding: 0 54px;
}
.site-why-host-main-wrap .site-why-host-box-table:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 152, 221, 0.24);
    filter: blur(78px);
    border-radius: 340px;
    z-index: 0;
}
.site-why-host-main-wrap .site-why-host-box-table .table-responsive {
    z-index: 1;
    position: relative;
}
.site-two-columns-main-wrap {
    padding: 161px 0 140px;
}
.site-two-columns-main-wrap .site-two-column-img img {
    border-radius: 12px;
}
.site-two-columns-main-wrap .site-two-column-text {
    padding: 24px 0;
}
.site-two-columns-main-wrap .site-two-column-text .site-two-column-text-content {
    max-width: 82%;
}
.site-two-columns-main-wrap .site-two-column-text h2 {
    margin-bottom: 24px;
}
.site-two-columns-main-wrap .site-two-column-text ul li {
    list-style-type: disc;
}
.site-two-columns-main-wrap .site-two-column-text ul {
    padding-left: 18px;
}
.site-two-columns-main-wrap .site-two-column-text ul li,.site-two-columns-main-wrap .site-two-column-text p {
    line-height: 1.75;
}
.site-map-main-wrap {
    background: var(--primary);
}
.site-map-main-wrap *,
.site-map-main-wrap .site-common-title h2{
    color: var(--white);
}
.site-map-main-wrap .site-common-title {
    padding: 15px 0;
}
.site-map-main-wrap .site-common-title p {
    margin-bottom: 56px;
}
.site-faqs-main-wrap {
    padding: 142px 0 139px;
}
.site-faqs-main-wrap .site-faqs-accordian-wrap {
    max-width: 646px;
    margin: 0 auto;
}
.site-faqs-main-wrap .site-faqs-accordian-wrap .site-common-title {
    margin-bottom: 43px;
}
.site-faqs-main-wrap .site-faqs-accordian .accordion .accordion-item {
    border-left: 0;
    border-right: 0;
    border-top: 0;
    border-radius: 0;
    border-color:#E9F0F5;
}
.site-faqs-main-wrap .site-faqs-accordian .accordion .accordion-item .accordion-header .accordion-button {
    padding: 21px 0 21px 0;
    background: transparent;
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
}
.site-faqs-main-wrap .site-faqs-accordian .accordion .accordion-item .accordion-body {
    padding: 0 30px 24px 0;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.5;
}
.site-faqs-main-wrap .site-faqs-accordian .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    color: #00B67A;
}
.site-faqs-main-wrap .site-faqs-accordian .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300B67A'%3e%3cpath fill-rule='evenodd' d='M1.646 10.854a.5.5 0 0 0 .708 0L8 5.707l5.646 5.147a.5.5 0 0 0 .708-.708l-6-5.5a.5.5 0 0 0-.708 0l-6 5.5a.5.5 0 0 0 0 .708z'/%3e%3c/svg%3e");
  transform:unset;
}
.site-pricing-plan-wrap .site-pre-server-text {
    text-align: center;
    margin-bottom: 50px;
}
.site-pricing-plan-wrap .site-pre-server-text p {
    font-weight: 500;
    font-size: 15.6px;
    line-height: 1.6;
}
.site-pricing-plan-wrap .site-pricing-bottom-text-wrap {
    margin-top: 40px;
}
.site-pricing-plan-wrap .site-pricing-bottom-text-wrap p {
    font-weight: 300;
    font-size: 15px;
    line-height: 1.5;
}
.site-pricing-plan-wrap .site-pricing-bottom-text-wrap p span{
  font-weight: 500;
}
.site-pricing-plan-wrap .site-pricing-tabs .nav-pills {
    padding: 6px;
    border: 2px solid #EAEAEA;
    display: inline-flex;
    border-radius: 800px;
    gap: 8px;
    margin-bottom: 55px;
}
.site-pricing-plan-wrap .site-pricing-tabs .nav-pills .nav-item a.nav-link {
    background: #EDEDED;
    padding: 10px 46px;
    border-radius: 800px;
    font-weight: 300;
    font-size: 15.6px;
    line-height: 1.6;
    color: var(--textcolor);
    display: flex;
    gap: 5px;
    align-items: center;
}
.site-pricing-plan-wrap .site-pricing-tabs .nav-pills .nav-item a.nav-link img {
    width: 33px;
    height: 22px;
    object-fit: cover;
    border-radius: 4px;
}
.site-pricing-plan-wrap .site-pricing-tabs .nav-pills .nav-item a.nav-link.active {
    background: #A3D819;
    color: var(--white);
}
.site-pricing-plan-wrap .site-pricing-tabs .tab-content .card {
    border: 2px solid #DEE2E6;
    padding: 24px;
    background: #FBFCFF;
}
.site-pricing-plan-wrap .site-pricing-tabs .tab-content .card h5 {
    border-radius: 8px;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
    text-align: center;
    margin: 0 0 19px;
}
.site-pricing-plan-wrap .site-pricing-tabs .tab-content .card .green-btn {
    text-align: center;
    padding: 17px;
    width: 100%;
    background: var(--tertiary);
    border: 1px solid var(--tertiary);
    margin-bottom: 16px;
    border-radius: 8px;
    color: #ffffff;
    font-weight: 500;
    font-size: 14.4px;
    line-height: 1.5;
    text-transform: uppercase;
}
.site-pricing-plan-wrap .site-pricing-tabs .tab-content .card  ul {
    border-top: 1px solid #949BA8;
    padding: 26px 22px;
}
.site-pricing-plan-wrap .site-pricing-tabs .tab-content .card ul li {
    font-weight: 500;
    font-size: 15.6px;
    line-height: 2.09;
    color: #081D40;
    margin-bottom: 2px;
}
.site-pricing-plan-wrap .site-pricing-tabs .tab-content .card .text-success {
    font-weight: 500;
    font-size: 15.6px;
    line-height: 2.09;
    text-align: center;
    color: #00B67A !important;
}
.site-pricing-plan-wrap .site-pricing-tabs .tab-content .card h2 {
    text-align: center;
    font-weight: 700;
    font-size: 48px;
    line-height: 0.9;
    margin-bottom: 31px;
}
.site-pricing-plan-wrap .site-pricing-tabs .tab-content .card h2 span {
    font-weight: 700;
    font-size: 28px;
    line-height: 0.9;
}
.site-pricing-plan-wrap .site-pricing-tabs {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.site-pricing-plan-wrap .site-pricing-tabs .tab-content {
    width: 100%;
}
.site-pricing-plan-wrap .site-pricing-tabs .tab-content .tab-pane {
    padding: 0 44px;
    position: relative;
}
.site-pricing-plan-wrap .site-pricing-tabs .tab-content .tab-pane .swiper-button-next {
    background: url('../images/next.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 18px;
    right: -5px;
}
.site-pricing-plan-wrap .site-pricing-tabs .tab-content .tab-pane .swiper-button-prev {
    background: url('../images/prev.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 18px;
    left: -5px;
}
.site-pricing-plan-wrap .site-pricing-tabs .tab-content .tab-pane .swiper-button-next:after,
.site-pricing-plan-wrap .site-pricing-tabs .tab-content .tab-pane .swiper-button-prev:after {
    display: none;
}
/*---- End Main stylesheet ----*/



/*---- Start Footer stylesheet ----*/
.footer {
    padding: 40px 0 48px;
    background: var(--primary);
    position: relative;
}
.footer .top-shape {
    position: absolute;
    top: -25px;
    width: 100%;
}
.footer .footer-logo {
    display: block;
    max-width: 183px;
    margin: 0 0 48px;
}
.footer * {
    color: var(--white);
}
.footer .footer-details h4 {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
}
.footer .footer-details ul li a,.footer .footer-details ul li {
    font-weight: 300;
    font-size: 15.6px;
    line-height: 1.5;
    transition: all 300ms ease-in-out;
}
.footer .footer-details ul:not(:last-child) {
  margin-bottom: 19px;
}
.footer .footer-details:not(:last-child) {
    margin-bottom: 18px;
}
.footer .footer-details ul li:not(:last-child) {
    margin-bottom: 4px;
}
.footer .footer-details ul li a:hover {
    color: var(--secondary);
}
.footer .top-footer {
    border-bottom: 1px solid #0D316D;
    padding-bottom: 40px;
    margin-bottom: 40px;
}
.footer .bottom-footer .row {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    align-items: center;
    justify-content: space-evenly;
}
.footer .bottom-footer .row .bottom-footer-text p {
    font-weight: 300;
    font-size: 12px;
    line-height: 1.5;
}
.footer .bottom-footer .row  .bottom-footer-logos  .column-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
}
.footer .bottom-footer .row .bottom-footer-logos .column-inner img {
  height: 17px;
  width: auto;
}
.footer .bottom-footer .row > div {
    flex: 1 1 auto;
    width: auto;
    max-width: unset;
}
.footer .bottom-footer .row .bottom-footer-social-media ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}
.footer .bottom-footer .row .bottom-footer-social-media ul li a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--white);
    transition: all 300ms ease-in-out;
}
.footer .bottom-footer .row .bottom-footer-social-media ul li a img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}
.footer .bottom-footer .row .bottom-footer-social-media ul li a:hover {
  background: var(--secondary);
}
.footer .bottom-footer .copyright-text {
    font-weight: 300;
    font-size: 12px;
    line-height: 2.5;
}
.footer .bottom-footer .footer-link-logo {
    width: 122px;
    margin-left: auto;
}
.footer .bottom-footer .row:first-child {
    margin-bottom: 16px;
}
/*---- End Footer stylesheet ----*/




/*---- Start Media Query ----*/

@media screen and (max-width:1600px) and (min-width:1201px){
  .site-hero-section-main-wrap .button-group{
      gap: 16px;
      flex-wrap: wrap;
  }
}
@media screen and (max-width:1279px) and (min-width:992px){
    .site-header .bottom-header-bar .navbar-nav > .nav-item:nth-last-child(1) .dropdown-menu, .site-header .bottom-header-bar .navbar-nav > .nav-item:nth-last-child(2) .dropdown-menu {
        right: 0;
        left: unset;
    }
}
@media screen and (max-width:1200px) and (min-width:768px){
  .footer .bottom-footer .row > div.bottom-footer-text {
      width: 100%;
      text-align: center;
  }
  .footer .bottom-footer .row {
      flex-wrap: wrap;
  }
  .footer .bottom-footer .row > .bottom-footer-logos {
      width: 100%;
      margin:30px 0;
  }
  .footer .bottom-footer .row .bottom-footer-social-media {
      width: 100%;
  }
  .site-hero-section-main-wrap .site-hero-sectio-title h1 {
    max-width: 100%;
  }
  .site-hero-section-main-wrap .site-hero-img img {
      max-width: 100%;
  }
  .site-hero-section-main-wrap .button-group {
      flex-direction: column;
      align-items: flex-start;
  }
  .footer .bottom-footer .row .bottom-footer-social-media ul{
        justify-content: center;
  }
  .footer .top-shape {
    top: -10px;
  }
  .site-hero-section-main-wrap {
      padding: 60px 0;
  }
  .site-why-host-main-wrap {
      padding: 60px 0;
  }
  .site-two-columns-main-wrap {
    padding: 60px 0;
  }
  .site-map-main-wrap {
      padding: 60px 0;
  }
  .site-hero-section-main-wrap .site-hero-sectio-title {
      padding-top: 0;
  }
  .site-reviews-main-wrap {
      padding: 0 0 25px;
  }
  .site-why-host-main-wrap .site-why-host-box-table {
      padding: 0;
  }
  .site-two-columns-main-wrap .site-two-column-text {
      padding: 0 0 25px;
  }
  .site-map-main-wrap .site-common-title {
      padding: 0 0 30px;
  }
   .site-pricing-plan-wrap{
    padding: 0 0 60px;
  }
  .site-faqs-main-wrap {
        padding: 60px 0;
    }
}
@media screen and (max-width:991px){
  h1, .h1,
  h2, .h2{
      font-size: 28px;
  }
  .footer .footer-details h4 {
      font-size: 18px;
  }
  .site-header .bottom-header-bar .buttons-groups-main {
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
  }
  .site-header .bottom-header-bar .buttons-groups-main .buttons-groups-row .buttons-groups-dropdown {
    position: relative;
    width: 100%;
    margin-top: 10px;
  }
  .site-header .bottom-header-bar .buttons-groups-main .buttons-groups-row button {
    width: 100%;
    padding-right: 0;
    background-size: 14px;
    background-position: 100% 50%;
  }
  .site-header .bottom-header-bar .buttons-groups-main .buttons-groups-row {
    flex-wrap: wrap;
    width: 100%
  }
  .site-header .bottom-header-bar .navbar-nav > .nav-item > .nav-link {
      position: relative;
      padding: 10px 0;
  }
  .site-header .bottom-header-bar .navbar-nav > .nav-item > .nav-link::after {
        right: 0;
        position: absolute;
        top: 10px;
        width: 13px;
        background-size: 13px;
        height: 13px;
    }
    .site-header .bottom-header-bar .navbar-nav > .nav-item.dropdown .dropdown-menu {
        width: 100%;
        position: relative;
        margin-bottom: 30px;
        animation: unset;
    }
}
@media screen and (max-width:991px) and (min-width:768px){
  .footer .footer-details {
      margin-bottom: 16px;
  }
  .site-reviews-main-wrap .site-reviews-box {
      height: auto;
      margin-bottom: 35px;
  }
  .site-pricing-plan-wrap .site-pricing-tabs .nav-pills .nav-item a.nav-link {
    padding: 10px 25px;
  }
}

@media screen and (max-width:767px){
  .site-hero-section-main-wrap .button-group {
      flex-direction: column;
  }
  .site-hero-section-main-wrap .site-hero-sectio-title h1 {
      max-width: 100%;
  }
  .site-hero-section-main-wrap .site-hero-sectio-title p {
      max-width: 100%;
  }
  .site-hero-section-main-wrap .site-hero-sectio-title {
      padding-top: 0;
  }
  .site-hero-section-main-wrap {
      padding: 60px 0;
  }
  .site-reviews-main-wrap .site-reviews-box {
      height: auto;
      margin-bottom: 35px;
  }
  .site-reviews-main-wrap {
      padding: 0 0 25px;
  }
  .site-pricing-plan-wrap{
    padding: 0 0 60px;
  }
  .site-why-host-main-wrap {
      padding: 60px 0;
  }
  .site-why-host-main-wrap .site-why-host-box .site-common-title {
      max-width: 100%;
  }
  .site-why-host-main-wrap .site-why-host-box-table {
      padding: 0;
  }
  .site-why-host-main-wrap .site-why-host-box .site-why-host-box-table table tbody td,.site-why-host-main-wrap .site-why-host-box .site-why-host-box-table table thead th {
      padding: 10px 15px;
      line-height: 1.5;
      vertical-align: middle;
  }
  .site-why-host-main-wrap .site-why-host-box:not(:last-child) {
      margin-bottom: 50px;
  }
  .site-two-columns-main-wrap {
    padding: 60px 0;
  }
  .site-two-columns-main-wrap .site-two-column-text {
      padding: 0 0 25px;
  }
  .site-two-columns-main-wrap .site-two-column-text .site-two-column-text-content {
      max-width: 100%;
  }
  .site-map-main-wrap {
      padding: 60px 0;
  }
  .site-map-main-wrap .site-common-title {
      padding: 0 0 30px;
  }
  .site-faqs-main-wrap {
      padding: 60px 0;
  }
  .site-faqs-main-wrap .site-faqs-accordian-wrap .site-common-title {
      margin-bottom: 30px;
  }
  .footer .top-shape {
      top: -3px;
  }
  .footer .footer-logo {
      margin-bottom: 30px;
  }
  .footer .footer-details {
      margin-bottom: 16px;
  }
  .footer .bottom-footer .row {
      flex-direction: column;
  }
  .footer .bottom-footer .row .bottom-footer-text p {
      line-height: normal;
      text-align: center;
  }
  .footer .bottom-footer .row > div {
      margin-bottom: 30px;
  }
  .footer .bottom-footer .row .bottom-footer-logos .column-inner {
      flex-wrap: wrap;
  }
  .footer .bottom-footer .copyright-text {
      text-align: center;
      line-height: 1.5;
  }
  .footer .bottom-footer .row:last-child > div:last-child {
      margin-bottom: 0;
  }
  .site-pricing-plan-wrap .site-pricing-tabs .nav-pills {
      display: flex;
      border: 0;
  }
  .site-pricing-plan-wrap .site-pricing-tabs .nav-pills li.nav-item {
      width: 100%;
  }
  .site-pricing-plan-wrap .site-pricing-tabs .nav-pills .nav-item a.nav-link {
      align-items: center;
      justify-content: center;
  }
  .site-pricing-plan-wrap .site-pricing-tabs .tab-content .tab-pane {
      padding: 0;
  }
  .site-pricing-plan-wrap .site-pricing-tabs .tab-content .tab-pane .swiper-button-next {
      right: 0px;
  }
  .site-pricing-plan-wrap .site-pricing-tabs .tab-content .tab-pane .swiper-button-prev {
      left: 0;
  }
  .site-pricing-plan-wrap .site-common-title {
      margin-bottom: 20px;
  }
  .site-pricing-plan-wrap .site-pre-server-text {
      margin-bottom: 30px;
  }
  .site-header .top-header-bar {
      display: none;
  }
  .bottom-header-bar .navbar-collapse .navbar-nav {
      margin-top: 20px;
  }
  .site-header .bottom-header-bar .navbar-nav > .nav-item > .nav-link {
      position: relative;
      padding: 10px 0;
  }
  .site-header .bottom-header-bar .navbar-nav > .nav-item > .nav-link::after {
      right: 0;
      position: absolute;
      top: 10px;
      width: 13px;
      background-size: 13px;
      height: 13px;
  }
  .site-header .bottom-header-bar .navbar-nav > .nav-item.dropdown .dropdown-menu {
      width: 100%;
      position: relative;
      margin-bottom: 30px;
      animation: unset;
  }
  .bottom-header-bar button.navbar-toggler {
      border: 0;
      padding: 0;
  }
}
