body{
    margin: 0;
    padding: 0;
    font-family: 'Suisse Intl';
    background-color: #F8F8F8;
}

a{
    text-decoration: none;
    color: #444;
}

p{
    margin: 0;
}

h1,h2,h3,h4,h5,h6{
    margin: 0;
}

.btn, .form-control:focus{
    outline: none !important;
    box-shadow: none !important;
}

ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

@media(min-width:1400px){
    .container{
        max-width: 1340px;
    }
}

.header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: all 0.3s ease-in-out;
}

.header.header-scrolled{
    position: fixed;
    background-color: #fff;
}

.header.header-scrolled .top-bar{
    display: none;
}

.header-main{
    background-color: transparent;
    padding: 30px 0px;
    transition: all 0.3s ease-in-out;
}

.header.header-scrolled .header-main{
    padding: 20px 0px;
}

.top-bar{
    background-color: #000;
    padding: 20px 0px;
    display: none;
}

.topbar-nav ul li{
    display: inline-block;
    padding-left: 20px;
}

.topbar-nav ul li a{
    font-size: 16px;
    color: #fff;
}
.header-nav{
    position: relative;
    text-align: center;
    padding-bottom: 5px;
}
.header-nav .nav-item{
    display: inline-block;
    padding-right: 30px;
}
.header-nav .nav-item.has-dropdown .nav-link{
    padding-right: 20px;
    position: relative;
}
.header-nav .nav-item.has-dropdown .nav-link::before{
    position: absolute;
    content: "";
    top: 50%;
    right: 3px;
    transform: translateY(-50%);
    background-image: url(../images/down-arrow-white.svg);
    width: 10px;
    height: 8px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.header-scrolled .header-nav .nav-item.has-dropdown .nav-link::before{
    background-image: url(../images/arrow-down-black.svg);
}

.header-nav .nav-item:hover .nav-link::before, .header-scrolled .header-nav .nav-item:hover .nav-link::before{
    background-image: url(../images/up-arrow.svg);
}

.header-nav .nav-link{
    font-size: 18px;
    padding: 0px;
    color: #fff;
    line-height: 30px;
    position: relative;
}

.header-scrolled .header-nav .nav-link{
    color: #000;
}

.header-nav .nav-link::after{
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #00B19A;
    width: 0%;
    height: 2px;
    content: '';
    transition: all 0.3s ease-in-out;
}

.header-nav .nav-item:hover .nav-link{
    color: #00B19A;
}

.header-nav .nav-item:hover .nav-link::after{
    width: 100%;
}

.dropdown{
    position: absolute;
    width: 90%;
    background-color: #fff;
    backdrop-filter: blur(234px);
    border-radius: 20px;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.dropdown.single-menu{
    left: 35%;
}

.dropdown.mini{
    width: 70%;
}

.dropdown.single-menu{
    width: 40%;
}

.header-nav .nav-item:hover .dropdown{
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease-in-out;
}

.dropdown ul{
    display: inline-flex;
}

.dropdown ul li{
    width: calc(100% / 3);
    padding: 10px;
    border-radius: 18px;
    transition: all 0.3s ease-in-out;
}

.dropdown ul li:hover{
    background-color: #F5F5F5;
}

.dropdown.mini ul li{
    width: calc(100% / 2);
}

.dropdown.single-menu ul li{
    width: 100%;
}

.dropdown ul li a{
    display: flex;
    flex-direction: row;
    gap: 10px;
    text-align: left;
}

.dropdown ul li a img{
    width: 30px;
    height: 30px;
}

.home-banner{
    padding: 300px 0px;
    background-image: url(../images/home-banner-bg.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.dropdown ul li a h4{
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}

.dropdown ul li a p{
    font-size: 13px;
    margin: 0;
    color: #000;
}

.header-logo img{
    height: 39px;
}

.header-logo .logo-02{
    display: none;
}

.header-scrolled .header-logo .logo-02{
    display: block;
}

.header-scrolled .header-logo .logo-01{
    display: none;
}

.auth-btn{
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    border: 1px solid #fff;
    padding: 14px 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease-in-out;
}

.banner-content .auth-btn{
    min-width: 195px;
    justify-content: center;
}

.auth-btn .img-02{
    display: none;
}

.auth-btn:hover .img-02{
    display: block;
}

.auth-btn:hover .img-01{
    display: none;
}

.auth-btn:hover{
    background-color: #fff;
    color: #000;
}

.header-scrolled .auth-btn{
    color: #00B19A;
    border: 1px solid #00B19A;
}

.header-scrolled .auth-btn:hover{
    background-color: #00B19A;
    color: #fff;
}

.auth-btn.filled{
    color: #fff;
    background-color:#00B19A;
    border: 1px solid #00B19A;
}

.auth-btn.filled:hover{
    color: #00B19A;
    background-color: #fff;
}

.banner-content h1{
    font-size: 64px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}

.banner-content h3{
    font-size: 30px;
    color: #fff;
    margin-bottom: 20px;
}

.banner-content h3 span{
    display: inline-block;
    padding-bottom: 4px;
    border-bottom: 3px solid #00B19A;
}

.banner-content h4{
    font-size: 36px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
}

.banner-content h1 span{
    color: #99BBDD;
}

.banner-content p{
    font-size: 22px;
    color: #fff;
    margin-bottom: 40px;
}


.banner-boxes{
    margin-top: -160px;
    position: relative;
}

.banner-bx{
    padding: 30px 40px;
    min-height: 100%;
    box-shadow: 14px 12px 4px 0px #0000001A;
    background-color: #fff;
    border-radius:20px;
    text-align: center;
    position: relative;
}

.banner-bx img{
    height: 85px;
    margin-bottom: 20px;
}

.banner-bx h4{
    font-size: 22px;
    font-weight: 600;
    color: #2D2D2D;
    margin-bottom: 20px;
}

.banner-bx p{
    font-size: 16px;
    margin: 0;
    color: #3A3A3A;
}

.banner-bottom-img{
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
}

.banner-bottom-img img{
    width: 200px;
}

.section-pad{
    padding: 100px 0px;
    position: relative;
    overflow-x:hidden;
}

.high-performance-bg{
    position: absolute;
    top: 0;
    left: 0;
}

.section-header{
    margin-bottom: 40px;
}

.section-header h3{
    font-size: 54px;
    font-weight: 600;
    color: #2D2D2D;
}

.section-header p{
    color: #000000CC;
}

.project-box{
    padding: 22px 38px;
    border: 1px solid #9B9B9B;
    border-radius: 18px;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
    min-height:calc(100% - 30px);
    margin-bottom: 30px;
    position: relative;
}

.project-box:hover{
    background-color: #42E8E033;
}

.project-box img{
    height:90px;
    margin-bottom: 10px;
}

.project-box h4{
    font-size: 24px;
    font-weight: 600;
    color: #2D2D2D;
    margin-bottom: 20px;
}

.project-box p{
    font-size: 16px;
    color: #3A3A3A;
    margin: 0;
    width: 80%;
}

.project-bg-img img{
    position: absolute;
}

.project-bg-img .img-01{
    top: 0;
    left: 0;
}

.project-bg-img .img-02{
    bottom:100px;
    left: 0;
}

.project-bg-img .img-03{
    bottom: 0;
    right: 0;
}

.why-choose{
    position: relative;
}

.why-choose-content span{
    font-size: 22px;
    border: 1px solid #0763BD;
    color: #0763BD;
    padding: 6px 30px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 20px;
}

.why-choose-content h3{
    font-size: 54px;
    font-weight: 600;
    color: #2D2D2D;
    margin-bottom: 30px;
}

.why-choose-content p{
    font-size: 16px;
    line-height: 28px;
}

.why-choose-boxes{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.why-choose-bx{
    padding: 20px 30px;
    border: 1px solid #0763BD;
    border-radius: 22px;
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #fff;
    position: relative;
    transition: all 0.3 ease-in-out;
}

.why-choose-bx:hover{
    background-color: #223F99;
}

.why-choose-bx p{
    font-size: 16px;
    color: #000000CC;
    transition: all 0.3 ease-in-out;
}

.why-choose-bx:hover p{
    color: #fff;
}

.why-choose-img{
    position: absolute;
    bottom: 0;
    right: 0;
}

.why-choose-bxs{
    background-color:#00B19A0D;
    border-radius: 16px;
    padding: 40px 30px;
}

.project-box.cloud-bx p{
    width: 100%;
}

.deploy-content h4{
    font-size: 54px;
    font-weight: 600;
    margin-bottom: 30px;
}

.deploy-content p{
    font-size: 16px;
    line-height: 28px;
    width:80%;
}

.deploy-server{
    position: relative;
    /* overflow-x: hidden; */
}

.deploy-server-bg-img{
    position: absolute;
    top: -140px;
    left: 0;
}

.deploy-img{
    position: relative;
    text-align: right;
}

.deploy-img-bg{
    position: absolute;
    bottom: -70px;
    right: 0;
}

.cloud-journey-bg-img{
    position: absolute;
    top: 0;
    left: 0;
}

.cloud-data-bx{
    padding: 30px;
    border: 1px solid #9B9B9B;
    border-radius: 18px;
    background-color: #fff;
    margin-bottom: 30px;
    min-height: calc(100% - 30px);
    position: relative;
}

.cloud-data-info{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.cloud-data-info h4{
    font-size: 22px;
    font-weight: 700;
    color: #444444;
}

.cloud-data ul li{
    padding-bottom: 10px;
    display: flex;
    gap: 10px;
}

.cloud-data ul li img{
    width: 16px;
    height: 16px;
}

.cloud-data a{
    font-size: 16px;
    font-weight: 500;
    color: #0763BD;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
}

.footer{
    background-color: #000024;
    padding: 80px 0px 30px;
}

.footer-box {
    margin-bottom: 30px;
}

.footer-box .footer-logo{
    height: 45px;
    margin-bottom: 20px;
}

.footer-box h4{
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #fff;
}

.footer-box ul li{
    padding-bottom: 15px;
}

.footer-box ul li a{
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 18px;
    color: #fff;
}

.footer-box p{
    font-size: 16px;
    line-height: 28px;
    color: #fff;
}

.social-icon{
    margin-bottom: 30px;
}

.social-icon ul li{
    display: inline-block;
    padding-right: 10px;
}

.copy-right-content p{
    font-size: 16px;
    color: #fff;
}

.quick-links ul li{
    display: inline-block;
    padding-left: 30px;
}

.quick-links ul li a{
    font-size: 16px;
    color: #fff;
}

.cloud-compute .banner-bx{
    padding: 20px;
}

.use-case-content{
    padding: 40px 130px;
    background-color: #00B19A0D;
}

.parnter-logo{
    text-align: center;
}

.parnter-logo img{
    height: 80px;
}

.why-choose{
    padding: 50px 80px;
    overflow: hidden;
}

.why-choose-bg{
    background-color: #00B19A0D;
    border-radius: 16px;
}

.video-section-area{
    padding: 50px 80px;
    position: relative;
}

.video-section-area::before{
    position: absolute;
    content: '';
    background-color: #00B19A0D;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    border-radius: 30px;
}

.redundant-sec{
    background-color: #00B19A0D;
    padding: 60px 35px;
    border-radius: 16px;
}

.redundant-sec-bg{
    position: absolute;
    top: 0;
    left:0;
}

.video-sec{
    position: relative;
} 

.video-bg-img img{
    position: absolute;
}

.video-bg-img .img-01{
    top: 0;
    left: 0;
}

.video-bg-img .img-02{
    top: 0;
    right: 0;
}

.combain-bg, .vps-cloud-bg{
    position: absolute;
    top: 0;
    left: 0;
}

.vps-cloud{
    background-color: #00B19A0D;
    padding: 60px 30px;
    border-radius: 16px;
}

.high-performance-bx{
    padding: 20px;
    border-radius: 18px;
    border: 1px solid #9B9B9B;
    min-height: 100%;
    background-color: #fff;
}

.high-performance-bx img{
    margin-bottom: 10px;
    height: 60px;
}

.high-performance-bx h4{
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
}

.high-performance-bx p{
    font-size: 16px;
    color: #3A3A3A;
}

.use-case-bx{
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #9B9B9B;
    background-color: #fff;
    min-height: calc(100% - 30px);
    margin-bottom: 30px;
    position: relative;
    padding-right: 170px;
}

.use-case-bx img{
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 135px;
}

.use-case-bx h4{
    font-size: 22px;
    font-weight: 600;
    color: #2D2D2D;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.use-case-bx h5{
    font-size: 14px;
    color: #2D2D2D;
    margin-bottom: 20px;
}

.use-case-bx p{
    font-size: 14px;
    color: #3A3A3A;
}

.accordion-item{
    margin-bottom: 30px;
    border-radius: 10px !important;
    overflow: hidden;
}

.accordion-button{
    box-shadow: 0px 10px 30px 0px #211F971A;
    background-color: #fff;
    font-size:26px;
    font-weight: 700;
}

.accordion-button::after{
    width: 40px;
    height: 40px;
    background-size: 40px;
    background-image:url(../images/accordian-down-arrow.svg);
}

.accordion-button:not(.collapsed)::after{
    background-image:url(../images/accordian-up-arrow.svg);
}

.accordion-button:not(.collapsed){
    background-color: #000024;
    color: #fff;
    box-shadow:none;
}

.accordion-body{
    background-color: #000024;
    color: #fff;
    font-size: 16px;
    padding-top: 0px;
}

.why-choose-bg-img img{
    position: absolute;
}

.why-choose-bg-img .img-01{
    top: 0;
    left: 0;
}

.why-choose-bg-img .img-02, .dbsas-feature-bg{
    bottom: 0;
    left: 0;
}

.why-choose-bg-img .img-03{
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.dbsaas-banner-bg{
    bottom:0;
    right: 0;
}

.banner-bg{
    position: absolute;
    bottom: -140px;
    right: 0;
}

.use-case-bg img, .dbsas-feature-bg, .dbsaas-banner-bg, .contact-bg{
    position: absolute;
}

.contact-bg{
    top: 0;
    right:0;
}

.use-case-bg .img-01{
    bottom: 0;
    left: 0;
}

.use-case-bg .img-02{
    bottom: 0;
    right: 0;
}

.faq-bg{
    position: absolute;
    bottom: 0;
    left: 0;
}

.key-feature{
    padding: 30px 60px;
}

.key-feature .cloud-data-bx{
    padding: 20px;
}

.cloud-data p{
    font-size: 16px;
    color: #3A3A3A;
    line-height: 28px;
}

.combine-with-bx{
    text-align: center;
    padding: 20px;
    border-radius: 20px;
    background-color: #fff;
    box-shadow: 15.67px 13.43px 4.48px 0px #0000001A;
    min-height: 100%;
}

.combine-with-bx .img-fluid{
    margin-bottom: 20px;
}

.combine-with-bx h4{
    font-size: 25px;
    font-weight: 600;
    color: #2D2D2D;
    margin-bottom: 20px;
}

.combine-with-bx p{
    font-size: 18px;
    color: #3A3A3A;
    line-height: 32px;
    margin-bottom: 30px;
}

.combine-with-bx .btn{
    border-radius: 8px;
    background-color: #00B19A;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    margin-top: auto;
    padding: 10px 20px;
}

.combine-with-bx .btn img{
    margin-left: 10px;
}

.benefit-content{
    padding: 40px 30px;
    background-image: url(../images/object-storage/benefit-bg.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 18px;
    text-align: center;
}

.benefit-content h4{
    font-size: 54px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.benefit-content p{
    color: #fff;
    width: 60%;
    margin: 0px auto 20px;
}

.video-section{
    position: relative;
}

.video-section img{
    width: 100%;
}

.video-popup{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-popup a{
    display: flex;
    width: 80px;
    height: 80px;
    background-color: #00B19A;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
}

.video-popup a img{
    width: 30px;
    height: 30px;
    margin-left: 6px;
}

@keyframes waves {
    0% {
      -webkit-transform: scale(0.2, 0.2);
      transform: scale(0.2, 0.2);
      opacity: 0;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
    50% {
      opacity: 0.9;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    }
    100% {
      -webkit-transform: scale(0.9, 0.9);
      transform: scale(0.9, 0.9);
      opacity: 0;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}
  
.fa-play:before {
    content: "\f04b";
}
  
.waves {
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgb(255 255 255 / 30%);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    border-radius: 100%;
    right: -35px;
    bottom: -35px;
    z-index: -1;
     -webkit-animation: waves 3s ease-in-out infinite;
    animation: waves 3s ease-in-out infinite;
}
          
.wave-1 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}
  
.wave-2 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}
  
.wave-3 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.pricing-content{
    margin-bottom: 40px;
}

.pricing-content h3{
    font-size: 54px;
    font-weight: 600;
    margin-bottom: 10px;
}

.pricing-content p{
    font-size: 16px;
    color: #3A3A3A;
    margin-bottom: 10px;
}

.pricing-content h4{
    font-size: 54px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.pricing-data{
    padding: 30px 40px;
    border-radius: 16px;
    background-color:#00B19A0D;
}

.pricing-data .table{
    margin: 0;
}

.pricing-data .table th{
    color:#00000099;
    font-size: 20px;
    border-color: #00000080;
}
.pricing-data .table td{
    font-size: 22px;
    color: #000;
    padding: 10px;
    border-color: #00000080;
}

.pricing-data .table tr:last-child td{
    border-bottom: none;
}

.pricing-data .table th span, .pricing-data .table td span{
    color:#00B19A;
}

.loader-case-bx, .contact-forms, .solution-bx{
    padding: 40px 30px;
    border-radius: 16px;
    background-color: #00B19A0D;
    position: relative;
}

.loader-case-bx h3{
    font-size: 54px;
    font-weight: 600;
    margin-bottom: 30px;
}

.loader-case-bx .nav{
    margin-bottom: 30px;
    justify-content: space-between;
}

.loader-case-bx .nav-tabs{
    border-bottom:2px solid #00000099;
}

.loader-case-bx .nav-item .nav-link{
    color:#000000CC;
    font-size: 20px;
}

.loader-case-bx .nav-tabs .nav-link.active{
    background-color: transparent;
    border-bottom: 2px solid #00B19A;
}

.tab-left-content h4{
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 30px;
}

.tab-left-content p{
    margin-bottom: 150px;
}

.loader-case-bx .tab-left-content h3{
    font-size: 40px;
    font-weight: 600;
}

.tab-right-content ul{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.tab-right-content ul li{
    width: calc(100% / 2 - 30px);
    padding-left: 30px;
    position: relative;
}

.tab-right-content ul li::before{
    position: absolute;
    top: 5px;
    left: 0;
    content: '';
    background-image: url(../images/loader/arrow-down.svg);
    width: 16px;
    height: 16px;
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center;
}

.tab-right-content ul li h4{
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 10px;
}

.tab-right-content ul li p{
    color:#000000CC;
}

.contacts-area h3{
    font-size: 54px;
    font-weight: 600;
}

.contacts-area p{
    font-size: 16px;
    margin-bottom: 30px;
}

.contacts-area ul li{
    margin-bottom: 20px;
}

.contacts-area ul li a{
    display:flex;
    align-items: center;
    gap: 20px;
    color: #000;
}

.contacts-area ul li img{
    width: 60px;
    height: 60px;
}

.contact-form-area h4{
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-form-area .form-group{
    margin-bottom: 40px;
}

.contact-form-area .form-control{
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #00000099;
    color: #00000099;
    padding: 15px 0px;
    background-color: transparent;
}

.solution-bx .combine-with-bx{
    margin-bottom: 30px;
    min-height: calc(100% - 30px);
}

.swiper-pagination{
    bottom: 0;
}

.swiper-pagination-bullet-active{
    background-color: #42E8E0;
    width: 10px;
    height: 10px;
}

.partner-slider{
    padding-bottom: 40px;
}

.pricing-content p{
    font-size: 16px;
    margin-bottom: 20px;
}

.pricing-content .btn{
    margin-bottom: 30px;
}

.pricing-content ul li{
    padding-left: 30px;
    font-size: 16px;
    position: relative;
    margin-bottom: 10px;
}

.pricing-content ul li:before{
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-image: url(../images/arrow-right-blue.png);
    background-repeat: no-repeat;
    background-size: 8px 14px;
    background-position: center center;
    content:'';
}

.about-banner{
    padding: 200px 0px 160px;
}