/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
  background: #fff;
  color: #444;
  font-family: "Open Sans", sans-serif;
}

a {
  color: #1bb1dc;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #0a98c0;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}
ul{
  list-style:none;
  padding:0;
  margin:0;
}
.back-to-top {
  position: fixed;
  display: none;
  background: #071a7d;
  color: #fff;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 11;
}
.btn-primary{
  background-color: #1f7c93;
  border-color: #1f7c93;
}
.btn-primary:hover{
  background-color:#074756;
  border-color: #074756;
}
.back-to-top i {
  padding-top: 10px;
  color: #fff;
}
/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/

.topbar {
  padding:10px 20px;
  font-size: 14px;
  background-color: #000;
}
.topbar-content p{
  margin:0;
  font-size:0.875rem;
  color:#fff;
}
.social-links{
  text-align:right;
}
.social-links ul li{
  display: inline-block;
  padding:0px 10px;
}
.social-links ul li a{
  font-size:0.875rem;
  color:#fff;
}
.social-links ul li a i{
  margin-right: 5px;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.3s;
}
.header .logo img {
  padding: 0;
  margin: 0px 0;
  max-height: 60px;
}
@keyframes fadeDown{
  0%{
    transform:translateY(-100px);
  }
  100%{
    transform:translateY(0px);
  }
}
@-webkit-keyframes fadeDown{
  0%{
    transform:translateY(-100px);
  }
  100%{
    transform:translateY(0px);
  }
}
.header.header-scrolled{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0px 2px 12px #00000042;
  animation: fadeDown 0.3s linear;
  -webkit-animation: fadeDown 0.3s linear;
}
.header.header-scrolled .topbar{
  display: none;
}
.main-header{
  padding:10px 20px;
  background-color:#071A7D;
}
.main-nav,
.main-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
    float: right;
}

.main-nav > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.main-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 15px;
  transition: 0.3s;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}

.main-nav a:hover,
.main-nav .active > a,
.main-nav li:hover > a {
  color: #22c4ec;
  text-decoration: none;
}

.main-nav .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top:100%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  /* min-height: 180px; */
  border-radius: 2px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.main-nav .drop-down:hover > ul {
  opacity: 1;
  visibility: visible;
}

.main-nav .drop-down li {
  min-width: 180px;
  position: relative;
}

.main-nav .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #065e77;
}

.main-nav .drop-down ul a:hover,
.main-nav .drop-down ul .active > a,
.main-nav .drop-down ul li:hover > a {
  color: #1bb1dc;
}

.main-nav .drop-down > a:after {
  content: "\f0d8";
  font-family: 'Font Awesome 5 pro';
  position: absolute;
  bottom: -19px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 30px;
  color: #fff;
  opacity: 0;
  transition:all 0.3s;
}
.main-nav .drop-down:hover a:after{
  opacity: 1;
}

.main-nav .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.main-nav .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.main-nav .drop-down .drop-down > a {
  padding-right: 35px;
}

.main-nav .drop-down .drop-down > a:after {
  content: "\f105";
  position: absolute;
  right: 15px;
}

/* Mobile Navigation */

.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: rgb(0 160 198);
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 20px;
  font-weight: 500;
}

.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
  color: #007bff;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\f078";
  font-family: 'Font Awesome 5 pro';
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\f077";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-toggle {
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #ffffff;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgb(0 160 198 / 49%);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}
.header-btn{
  text-align:right;
}
.header-btn ul li{
  display: inline-block;
  padding-left: 10px;
}
.btn{
  padding:7px 25px;
  font-size: 14px;
  font-weight: 600;
}
.btn-outline{
  color:#fff;
  border:1px solid #fff;
  transition:all 0.3s;
}
.btn-outline:hover{
  background-color:#fff;
  transition:all 0.3s;
}
.banner-section{
  padding: 120px 0px;
  background: linear-gradient(5deg, #7614e9 8%, #160f86);
  position: relative;
}
.banner-content{
  color: #fff;
}
.banner-content h2{
  font-size: 40px;
  font-weight: 600;
}
.banner-content h4{
  font-size: 20px;
}
.banner-content ul{
  margin-bottom: 20px;
}
.banner-content ul li{
  font-size: 20px;
  padding-bottom: 5px;
}
.banner-content ul li i{
  margin-right: 10px;
  font-size: 25px;
}
.banner-content p{
  font-size: 14px;
}
.banner-img{
  position: absolute;
  bottom: 0;
  right: 40px;
  vertical-align: middle;
}
.section-pad{
  padding: 80px 0px;
}
.section-header{
  text-align: center;
  margin-bottom: 40px;
}
.section-header h3{
  font-size: 35px;
  font-weight: 600;
  color: #000;
  margin: 0;
}
.inner-featured-box{
  height: 100%;
  padding-bottom: 30px;
}
.service-box{
  background-color: #fff;
  border: 1px solid rgba(54,57,60,.1);
  box-shadow: 0 4px 8px rgb(81 85 88 / 10%);
  border-radius: 4px;
  text-align: center;
  padding: 20px;
  height: 100%;
  transition: all .3s;
}
.service-box:hover{
  transform: translateY(-10px);
}
.service-box img{
  height: 120px;
  margin-top: -30px;
  margin-bottom: 20px;
}
.service-box h4{
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}
.service-box p{
  font-size: 14px;
  margin: 0;
}
.price-box{
  padding: 30px;
  box-shadow: 0 2px 4px 0.5px rgb(7 28 38 / 10%);
  background: #FFFFFF;
  border-radius: 5px;
  transition: box-shadow 0.2s ease-out;
  text-align: center;
  position: relative;
}
.wordpress-price p{
  min-height: 120px;
}
.sale-tag{
  position: absolute;
  top: -14px;
  left: 10px;
  background-color: #3d15c3;
  padding: 3px 6px;
  font-size: 13px;
  border-radius: 7px;
  color: #fff;
  font-weight: 600;
}
.price-box img{
  width: 60px;
  margin-bottom: 20px;
}
.price-box h4{
  font-size: 22px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
  min-height: 56px;
}
.min-text{
  font-size: 12px;
}
.price-box h2{
  color: #071a7d;
  font-size: 30px;
  font-weight: 600;
}
.price-box ul {
  margin-bottom: 30px;
}
.price-box ul li{
  padding-bottom: 5px;
  font-size: 14px;
}
.price-box ul li i{
  opacity: 0.6;
  margin-left: 10px;
}
.new-tag{
  padding: 2px 7px;
  margin-right: 5px;
  background-color: #4e24db;
  color: #fff;
  border-radius: 5px;
}
.bg-grey{
  background-color: #ede9e9;
}
.featured-box{
  height: 100%;
  box-shadow: 0 2px 4px 0.5px rgb(7 28 38 / 10%);
  background: #FFFFFF;
  border-radius: 5px;
  padding: 20px;
}
.featured-icon{
  text-align: center;
}
.featured-icon img{
  width: 80px;
}
.featured-content h4{
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}
.featured-content p{
  margin: 0;
  font-size: 14px;
}
.needhelp-content{
  text-align: center;
  color: #fff;
}
.bg-gardient{
  background:linear-gradient(75deg, #4b17bf 8%, #160f86);
}
.needhelp-content h4{
  font-size: 30px;
  font-weight: 600;
}
.needhelp-content  p{
  font-size: 18px;
}
.needhelp-content ul li{
  padding-bottom: 5px;
}
.needhelp-content ul li a{
  color: #fff;
  font-weight: 600;
}
.footer-logo img{
  height: 60px;
  margin-bottom: 20px;
}
.footer-logo p{
  margin: 0;
  font-size: 14px;
  color: #fff;
}
.footer-top{
  padding: 30px 0px;
  background-color: #071A7D;
}
.footer-box h4{
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.footer-box ul li{
  padding-bottom:5px;
}
.footer-box ul li a{
  color: #fff;
  font-size: 14px;
  position: relative;
}
.footer-box ul li a::before{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  content: '';
  background-color: #fff;
  transition: all 0.3s;
}
.footer-box ul li a:hover::before{
  width: 100%;
  transition: all 0.3s;
}
.footer-bottom{
  padding: 20px 0px;
  background-color: #000;
}
.footer-bottom p{
  color: #fff;
  font-size: 14px;
  margin: 0;
}
.footer-bottom p a{
  color: #fff;
}
.btn-link{
  text-decoration: none;
  position: relative;
  color: #009fc5;
}
.btn-link:focus, .btn-link:hover{
  text-decoration: none;
  
}
.btn-link::before{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  content: '\f068';
  font-family: 'Font Awesome 5 pro';
  color: #000;
}
.btn-link.collapsed::before{
  content: '\f067';
}
.card-body p{
  font-size: 14px;
  color: #000;
}
.card-body h4{
  font-weight: 600;
  color: #000;
  font-size: 20px;
}
.card-body ul li{
  font-size: 14px;
}
.mobile-trigger{
  text-align: right;
}
.banner-boxes{
  margin-top: 40px;
}
.banner-box i{
  margin-bottom: 10px;
}
.banner-box h4{
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
}
.banner-footer-box{
  margin-top: 80px;
  background-color: #fff;
  border-radius: 7px 7px 0px 0px;
}
.plans-overview{
  padding: 20px;
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.plans-overview h4{
  font-size: 16px;
  color: #071a7d;
  font-weight: 700;
  margin: 0;
}
.plans-box{
  padding: 20px;
  border: 1px solid #cdd6e1;
  position: relative;
  cursor: pointer;
}
.plans-box::before{
  position: absolute;
  content: '';
  left:0;
  bottom: 0;
  width: 100%;
  height: 0;
  background-color: #1f7c93;
  transition: all 0.3s;
}
.plans-box:hover::before{
  height: 5px;
  transition: all 0.3s;
}
.plans-box span{
  padding: 2px 10px;
  background-color: #071a7d;
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 10px;
}
.plans-box h4{
  color: #434F58;
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}
.title-tag{
  display: inline-block;
  padding: 0px 20px;
  border: 2px solid #071a7d;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  color: #071a7d;
  margin-bottom: 40px;
}
.italian-text{
  display: inline-block;
  margin-bottom: 30px;
}
.section-content-box{
  padding: 30px 0px;
}
.section-img{
  text-align: center;
}
.section-img img{
  max-width: 240px;
}
.seciton-content h4{
  font-size: 20px;
  font-weight: 700;
  color: #000;
}
.seciton-content p{
  margin: 0;
}
.team-box{
  text-align: center;
  padding: 20px 0px;
}
.team-box i{
  color: #071a7d;
  margin-bottom: 20px;
}
.team-box h4{
  font-size: 20px;
  font-weight: 600;
  color: #000;
  min-height: 44px;
}
.team-box  p{
  font-size: 14px;
  margin: 0;
}
.inner-banner-pad{
  padding: 80px 0px;
}
.bottom-content{
  padding-top: 60px;
  text-align: center;
}
.bottom-content a{
  display: inline-block;
  margin-bottom: 20px;
}
.webhosting-img{
  padding-right: 60px;
}
.webhosting-img img{
  width: 100%;
}
.vps-banner{
  padding: 60px 0px;
}
.vps-price-box{
  padding: 20px;
}
.highest-rate{
  padding: 20px;
  text-align: center;
  background-color: #fff;
  box-shadow: 0 4px 8px rgb(81 85 88 / 10%);
  border-radius: 10px;
}
.highest-rate h2{
  color: #0073EC;
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 10px;
}
.highest-rate h4{
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin: 0;
}
.featured-icon i{
  color: #071a7d;
}
.vps-content-box{
  padding: 30px;
  text-align: center;
  border: solid 1px #E0E4E8;
  border-radius: 3px;
  box-shadow: 0 2px 4px 0.5px rgb(7 28 38 / 10%);
  background-color: #fff;
}
.vps-content-box h4{
  font-size: 30px;
  font-weight: 700;
  color: #000;
}
.vps-content-box p{
  font-size: 18px;
}
.bg-gardient .section-header h3{
  color: #fff;
}
.about-img img{
  width: 100%;
}
.bg-white{
  background-color: #fff;
  color: #04414f;
}
.bg-white:hover{
  color: #04414f;
}
.bg-light-blue{
  background-color: #E0E4E8 ;
}
.about-box{
  padding: 20px;
  background-color: #fff;
}
.about-box h4{
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}
.about-box p{
  font-size: 14px;
  margin-bottom: 0;
}
.bannge-light-img{
  position: relative;
}
.bannge-light-img::before{
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/domain-banner-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.search-box{
  margin-bottom: 20px;
  position: relative;
}
.search-box .form-control{
  height: 45px;
  padding: 5px 60px 5px 20px;
  border-radius: 0px;
}
.search-btn{
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background: #009fc5;
  border-radius: 0;
  color: #fff;
  font-size: 18px;
  padding: 5px 15px;
}
.plans-overview span{
  display: inline-block;
  color: #444;
  margin-top: 5px;
}
.plans-box p{
  color: #444;
  margin: 0;
  margin-top: 5px;
}
.domain-box{
  padding: 20px;
  text-align: center;
}
.domain-box i{
  color: #065e77;
  margin-bottom: 20px;
}
.domain-box h4{
  font-size: 24px;
  font-weight: 600;
  color: #000;
}
.domain-box p{
  font-size: 16px;
}
.contact-form{
  padding-right: 100px;
}
.contact-form h4{
  font-size: 30px;
  font-weight: 700;
  color: #000;
}
.contact-form label{
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 14px;
}
.submit-btn{
  padding: 5px 25px;
  background-color: #065e77;
  color: #fff;
}
.company-info{
  padding-top: 60px;
}
.company-info h4{
  font-size: 20px;
  font-weight: 600;
  color: #000;
}
.company-info p{
  font-size: 16px;
}
.company-info ul li{
  padding-bottom: 5px;
}
.company-info ul li span{
  font-weight: 600;
}
@media(max-width:1200px){
  .highest-rate h2{
    font-size: 35px;
  }
  .highest-rate h4{
    font-size: 14px;
  }
  .highest-rate{
    padding: 10px;
  }
}
@media(max-width:992px){
  .topbar-content{
    display: none;
  }
  .header .logo img{
    margin: 0;
  }
  .banner-img{
    display: none;
  }
  .banner-section{
    padding: 60px 0px;
  }
  .main-header{
    padding: 5px 20px;
  }
  .banner-content h4{
    font-size: 16px;
  }
  .banner-content ul li{
    font-size: 16px;
  }
  .banner-content ul li i{
    font-size: 20px;
  }
  .section-pad {
    padding: 50px 0px;
  }
  .section-header h3{
    font-size: 30px;
    margin-bottom: 10px;
  }
  .service-box img {
    height: 90px;
  }
  .service-box h4{
    font-size: 16px;
  }
  .price-box{
    margin-bottom: 30px;
  }
  .footer-logo{
    margin-bottom: 30px;
    text-align: center;
  }
  .featured-content h4{
    font-size: 18px;
  }
  .featured-box{
    padding: 15px;
  }
  .section-img{
    margin-bottom: 30px;
  }
  .section-content-box {
    padding: 20px 0px;
  }
  .webhosting-img{
    margin-bottom: 30px;
  }
  .highest-rate{
    margin-bottom: 20px;
  }
  .vps-content-box{
    padding: 20px;
    margin-bottom: 30px;
  }
}
@media(max-width:767px){
  .banner-content h2{
    font-size: 30px;
    margin-bottom: 10px;
  }
  .banner-content h4{
    margin-bottom: 10px;
  }
  .section-header h3{
    font-size: 25px;
  }
  .featured-icon img{
    width: 60px;
  }
  .btn-link{
    text-align: left;
  }
  .needhelp-content p{
    font-size: 14px;
  }
  .needhelp-content ul li{
    font-size: 14px;
  }
  .header .logo img{
    max-height: 50px;
  }
  .title-tag{
    font-size: 14px;
    margin-bottom: 20px;
  }
  .wordpress-price p{
    min-height: auto;
  }
  .section-header{
    margin-bottom: 30px;
  }
  .banner-footer-box{
    margin-top: 50px;
  }
  .domain-box h4{
    font-size: 20px;
  }
  .domain-box p{
    margin: 0;
  }
  .team-box h4{
    min-height:auto;
  }
  .price-box h4{
    min-height: auto;
  }
  .price-box{
    padding: 20px;
  }
  .price-box h2{
    font-size: 25px;
  }
  .vps-content-box h4{
    margin-bottom: 10px;
    font-size: 25px;
  }
  .vps-content-box p{
    font-size: 14px;
  }
}
@media(max-width:480px){
  .topbar{
    padding:5px 0px;
  }
  .mobile-nav-toggle i{
    margin: 5px 15px 0 0;
  }
  .banner-section {
    padding: 40px 0px;
  }
  .banner-content h2{
    font-size: 25px;
  }
  .banner-content ul li{
    font-size:14px;
  }
  .banner-content ul li i {
    font-size: 15px;
  }
  .main-header{
    padding: 2px 0px;
  }
  .mobile-nav-toggle{
    font-size: 16px;
  }
  .header .logo img{
    max-height: 40px;
  }
  .section-pad {
    padding: 40px 0px;
  }
  .service-box{
    padding: 15px;
  }
  .price-box{
    padding: 20px;
  }
  .price-box h4{
    font-size: 18px;
    height: auto;
  }
  .section-header h3 {
    font-size: 20px;
  }
  .featured-icon img {
    width: 45px;
  }
  .needhelp-content h4{
    font-size: 25px;
  }
  .needhelp-content p{
    margin-bottom: 20px;
  }
  .card-body h4{
    font-size: 16px;
  }
  .footer-box h4{
    font-size: 15px;
    margin-bottom: 10px;
  }
  .footer-box{
    margin-bottom: 10px;
  }
  .footer-bottom p{
    font-size: 12px;
  }
  .footer-top{
    padding: 20px 0px;
  }
  .banner-content h4{
    font-size: 14px;
  }
  .price-box h2{
    font-size: 25px;
  }
  .banner-footer-box{
    margin-top: 40px;
  }
  .section-img img {
    max-width: 180px;
  }
  .seciton-content h4{
    font-size: 16px;
    margin-bottom: 10px;
  }
  .seciton-content p{
    font-size: 14px;
  }
  .domain-box h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .domain-box p{
    font-size: 14px;
  }
  .domain-box{
    padding: 15px;
  }
  .plans-overview{
    padding: 10px;
  }
  .plans-box{
    padding: 10px;
  }
  .bottom-content p{
    margin: 0;
  }
  .vps-price-box {
    padding: 10px;
  }
  .highest-rate{
    padding: 10px;
  }
  .highest-rate h2 {
    font-size: 26px;
  }
  .featured-box{
    padding: 10px;
  }
  .inner-featured-box{
    padding-bottom: 20px;
  }
  .vps-content-box h4{
    font-size: 20px;
  }
  .vps-content-box{
    padding: 10px;
    margin-bottom: 20px;
  }
  .price-box {
    margin-bottom: 20px;
  }
  .contact-form{
    padding: 0;
  }
  .company-info p{
    font-size: 14px;
  }
  .company-info{
    padding-top: 20px;
  }
  .contact-form h4{
    font-size: 25px;
  }
}


