
*{
	margin:0;
	padding:0;
	box-sizing:border-box;
	font-family:'Poppins',sans-serif;
	scroll-behavior:smooth;
}

body{
	background:#fff;
	color:#333;
}

:root{
--blue:#2459b0;
--orange:#f7a128;
}
.hosting-brand-section{
	background-color:#eee;
}

/* HEADER */


#header{
    position:fixed;
    top:20px;
    left:50%;
    transform:translateX(-50%);
    width:90%;
    max-width:1400px;
    height:80px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 35px;

    background:rgba(38,49,68,.42);
    backdrop-filter:blur(15px);

    border:1px solid rgba(38,49,68,.45);

    border-radius:80px;

    z-index:9999;

    animation:headerLoad 1.2s ease forwards;
}

@keyframes headerLoad{

    0%{
        opacity:0;
        transform:translate(-50%,-100px);
    }

    100%{
        opacity:1;
        transform:translate(-50%,0);
    }
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo img{
    width:220px;
}



nav ul{
    display:flex;
    gap:35px;
    list-style:none;
}

nav a{
    color:#fff;
    text-decoration:none;
    font-size:16px;
    font-weight:500;
    position:relative;
}

nav a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-5px;
    width:0;
    height:2px;
    background:var(--orange);
    transition:.4s;
}

nav a:hover::after{
    width:100%;
}

.header-btn{
    background:linear-gradient(
        135deg,
        var(--orange),
        #ffbf5f
    );

    color:#fff;
    text-decoration:none;
    padding:14px 28px;
    border-radius:40px;
    font-weight:600;

    transition:.4s;
}

.header-btn:hover{
    transform:translateY(-3px);
}

/* Scroll Effect */

#header.scrolled{
    top:0;
    width:100%;
    max-width:none;
    border-radius:0;

    background:#fff;
    backdrop-filter:none;

    transition:.4s;
}

#header.scrolled .logo span,
#header.scrolled nav a{
    color:#222;
}

.hero-content h1{
    opacity:0;
    animation:titleAnimation 1s .4s forwards;
}

.hero-content p{
    opacity:0;
    animation:titleAnimation 1s .8s forwards;
}

.hero-content .btn{
    opacity:0;
    animation:titleAnimation 1s 1.2s forwards;
}

@keyframes titleAnimation{
    from{
        opacity:0;
        transform:translateY(80px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
/* HERO */

.hero{
height:100vh;
position:relative;
overflow:hidden;
margin-top:70px;
}

.slide{
position:absolute;
width:100%;
height:100%;
display:flex;
align-items:center;
justify-content:center;
background-size:cover;
background-position:center;
opacity:0;
transition:1s;
}

.slide.active{
opacity:1;
}

.slide::before{
content:"";
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,.55);
}

.content{
position:relative;
z-index:2;
text-align:center;
color:white;
max-width:900px;
padding:20px;
animation:fadeUp 1s;
}

.content h1{
font-size:60px;
margin-bottom:20px;
}

.content p{
font-size:20px;
margin-bottom:30px;
}

.btn{
display:inline-block;
padding:15px 35px;
background:var(--orange);
color:#fff;
text-decoration:none;
border-radius:50px;
font-weight:600;
transition:.3s;
}

.btn:hover{
background:var(--blue);
transform:translateY(-3px);
}

@keyframes fadeUp{
from{
opacity:0;
transform:translateY(50px);
}
to{
opacity:1;
transform:translateY(0);
}
}

/* SECTION */

section{
padding:100px 8%;
}

.title{
text-align:center;
margin-bottom:60px;
}

.title h2{
font-size:40px;
color:var(--blue);
}

.title p{
color:#777;
}

/* ABOUT */

.about{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.about-img{
height:400px;
background:linear-gradient(135deg,var(--blue),var(--orange));
border-radius:20px;
}

.about-text h3{
font-size:35px;
margin-bottom:20px;
color:var(--blue);
}

.about-text p{
line-height:1.8;
}

/* SERVICES */

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.service-box{
background:#fff;
padding:40px 30px;
border-radius:20px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.4s;
}

.service-box:hover{
transform:translateY(-10px);
}

.service-box h3{
color:var(--blue);
margin-bottom:15px;
}

/* PORTFOLIO */

.portfolio-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
}

.portfolio-item{
height:250px;
border-radius:20px;
overflow:hidden;
background:linear-gradient(45deg,var(--blue),var(--orange));
position:relative;
}

.portfolio-item span{
position:absolute;
bottom:20px;
left:20px;
color:#fff;
font-size:22px;
font-weight:600;
}

/* CONTACT */

.contact{
background:#f8f9fc;
}

.contact-form{
max-width:700px;
margin:auto;
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:15px;
margin-bottom:20px;
border:none;
border-radius:10px;
background:#fff;
box-shadow:0 3px 10px rgba(0,0,0,.08);
}

.contact-form button{
border:none;
cursor:pointer;
}

/* FOOTER */

footer{
background:var(--blue);
color:#fff;
text-align:center;
padding:25px;
}

/* MOBILE */

@media(max-width:768px){

.about{
grid-template-columns:1fr;
}

.content h1{
font-size:38px;
}

.nav-links{
gap:15px;
font-size:14px;
}

}

/*slider css */
.hero-slider{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
}

.slide{
    position:absolute;
    inset:0;
    opacity:0;
    visibility:hidden;
    transition:1s;
}

.slide.active{
    opacity:1;
    visibility:visible;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    transform:scale(1.15);
    transition:8s linear;
}

.slide.active img{
    transform:scale(1);
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.content{
    position:absolute;
    left:10%;
    top:50%;
    transform:translateY(-50%);
    color:#fff;
    z-index:2;
    max-width:700px;
}

.content h1,
.content p,
.content .btn{
    opacity:0;
}

.slide.active h1{
    animation:slideUp .8s forwards;
}

.slide.active p{
    animation:slideUp .8s .3s forwards;
}

.slide.active .btn{
    animation:slideUp .8s .6s forwards;
}

.content h1{
    font-size:70px;
    margin-bottom:20px;
}

.content p{
    font-size:22px;
    margin-bottom:30px;
}

.btn{
    display:inline-block;
    background:#f7a128;
    color:#fff;
    padding:15px 35px;
    text-decoration:none;
    border-radius:40px;
}

@keyframes slideUp{
    from{
        opacity:0;
        transform:translateY(80px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* Arrows */

.nav-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.2);
    color:#fff;
    font-size:24px;
    cursor:pointer;
    z-index:10;
    backdrop-filter:blur(5px);
}

.prev{
    left:30px;
}

.next{
    right:30px;
}

.nav-btn:hover{
    background:#f7a128;
}

/* Dots */

.dots{
    position:absolute;
    bottom:40px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:12px;
    z-index:10;
}

.dot{
    width:14px;
    height:14px;
    border-radius:50%;
    background:#fff;
    cursor:pointer;
    transition:.3s;
}

.dot.active{
    width:40px;
    border-radius:20px;
    background:#f7a128;
}
/*slider css */


.contact-info{
    animation:slideLeft 1s ease;
}

.contact-form-box{
    animation:slideRight 1s ease;
}

@keyframes slideLeft{
    from{
        opacity:0;
        transform:translateX(-100px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes slideRight{
    from{
        opacity:0;
        transform:translateX(100px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

/*footer css */
.footer{
    position:relative;
    overflow:hidden;

    background:
    linear-gradient(
    135deg,
    #081120,
    #10284f);

    color:#fff;

    padding-top:60px;
}

/* Glow Effect */

.footer::before{
    content:'';

    position:absolute;

    width:400px;
    height:400px;

    background:#f7a12830;

    border-radius:50%;

    filter:blur(120px);

    top:-150px;
    right:-150px;
}

.footer::after{
    content:'';

    position:absolute;

    width:300px;
    height:300px;

    background:#2459b030;

    border-radius:50%;

    filter:blur(100px);

    bottom:-100px;
    left:-100px;
}

.footer-wave{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:80px;

    background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23fff' fill-opacity='1' d='M0,128L60,144C120,160,240,192,360,208C480,224,600,224,720,197.3C840,171,960,117,1080,101.3C1200,85,1320,107,1380,117.3L1440,128L1440,0L0,0Z'%3E%3C/path%3E%3C/svg%3E");

    background-size:cover;
}

.footer-container{
    max-width:1400px;
    margin:auto;

    padding:0 8% 60px;

    display:grid;
    grid-template-columns:
    2fr 1fr 1fr 1.5fr;

    gap:50px;
}

.footer-logo{
    font-size:42px;
}

.footer-logo span{
    color:#f7a128;
}

.footer-col p{
    margin-top:20px;
    color:#cdd5df;
    line-height:1.8;
}

.footer-col h3{
    margin-bottom:25px;
    font-size:24px;
}

.footer-col ul{
    list-style:none;
}

.footer-col ul li{
    margin-bottom:15px;
}

.footer-col ul li a{
    color:#cdd5df;
    text-decoration:none;

    transition:.3s;
}

.footer-col ul li a:hover{
    color:#f7a128;
    padding-left:8px;
}

.social-icons{
    display:flex;
    gap:15px;
    margin-top:25px;
}

.social-icons a{
    width:50px;
    height:50px;

    border-radius:50%;

    background:
    rgba(255,255,255,.08);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    text-decoration:none;

    transition:.4s;
}

.social-icons a:hover{
    background:#f7a128;
    transform:translateY(-5px);
}

/* Newsletter */

.newsletter{
    margin-top:20px;
}

.newsletter input{
    width:100%;

    padding:15px;

    border:none;

    border-radius:50px;

    margin-bottom:15px;

    outline:none;
}

.newsletter button{
    width:100%;

    padding:15px;

    border:none;

    border-radius:50px;

    background:
    linear-gradient(
    135deg,
    #2459b0,
    #f7a128);

    color:#fff;

    cursor:pointer;

    font-weight:600;
}

.newsletter button:hover{
    opacity:.9;
}

.footer-bottom{
    text-align:center;

    padding:25px;

    border-top:
    1px solid rgba(255,255,255,.1);

    color:#cdd5df;
}

.footer-col{
    opacity:0;
    transform:translateY(50px);
    animation:footerReveal 1s forwards;
}

.footer-col:nth-child(1){
    animation-delay:.2s;
}

.footer-col:nth-child(2){
    animation-delay:.4s;
}

.footer-col:nth-child(3){
    animation-delay:.6s;
}

.footer-col:nth-child(4){
    animation-delay:.8s;
}

@keyframes footerReveal{

    from{
        opacity:0;
        transform:translateY(50px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}
/*footer css */

/*home about us section */


.about-section{
    max-width:1400px;
    margin:auto;
    padding:120px 8%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
    overflow:hidden;
}

/* LEFT SIDE */

.about-left{
    position:relative;
    opacity:0;
    transform:translateX(-100px);
    transition:1s;
}

.about-left.show{
    opacity:1;
    transform:translateX(0);
}

.about-image{
    overflow:hidden;
    border-radius:30px;
}

.about-image img{
    width:100%;
    display:block;
    transition:1.5s;
}

.about-image:hover img{
    transform:scale(1.1);
}

/* Floating Experience Card */

.experience-box{
    position:absolute;
    right:-30px;
    bottom:50px;

    background:#fff;
    padding:25px 35px;
    border-radius:20px;

    box-shadow:
    0 20px 50px rgba(0,0,0,.12);

    animation:floatCard 3s infinite ease-in-out;
}

.experience-box h2{
    color:var(--orange);
    font-size:42px;
}

@keyframes floatCard{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-12px);
    }
}

/* RIGHT SIDE */

.about-right{
    opacity:0;
    transform:translateX(100px);
    transition:1s;
}

.about-right.show{
    opacity:1;
    transform:translateX(0);
}

.sub-title{
    color:var(--orange);
    font-weight:600;
    letter-spacing:2px;
}

.about-right h2{
    font-size:52px;
    margin:20px 0;
    color:#222;
    line-height:1.2;
}

.about-right h2 span{
    color:var(--blue);
}

.about-right p{
    color:#666;
    line-height:1.8;
    margin-bottom:35px;
}

.about-features{
    display:grid;
    gap:25px;
}

.feature{
    display:flex;
    gap:20px;
    align-items:center;

    padding:20px;
    border-radius:15px;

    background:#fff;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);

    transition:.4s;
}

.feature:hover{
    transform:translateX(10px);
}

.icon{
    width:60px;
    height:60px;
    border-radius:50%;
    background:linear-gradient(
    135deg,
    var(--blue),
    var(--orange));

    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
    font-weight:bold;
}

.about-btn{
    margin-top:35px;
    display:inline-block;
    padding:16px 35px;

    background:linear-gradient(
    135deg,
    var(--orange),
    #ffbd5c);

    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;

    transition:.4s;
}

.about-btn:hover{
    transform:translateY(-5px);
}

/* MOBILE */

@media(max-width:991px){

.about-section{
    grid-template-columns:1fr;
}

.about-right h2{
    font-size:38px;
}

.experience-box{
    right:20px;
}
}
/*home about us section */

/*home service section */

.service-shape{
    position:absolute;
    border-radius:50%;
    z-index:0;
}

.shape1{
    width:120px;
    height:120px;

    top:120px;
    right:10%;

    background:#2459b015;

    animation:floatShape 5s infinite;
}

.shape2{
    width:80px;
    height:80px;

    left:8%;
    bottom:150px;

    background:#f7a12820;

    animation:floatShape 7s infinite;
}

.shape3{
    width:50px;
    height:50px;

    right:25%;
    bottom:100px;

    background:#2459b020;

    animation:floatShape 6s infinite;
}

@keyframes floatShape{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-25px);
    }
}
.services-section{
    
	
	position:relative;
    padding:120px 8%;
    overflow:hidden;

    background:
    linear-gradient(
    135deg,
    #f8fbff 0%,
    #eef4ff 50%,
    #ffffff 100%);
}

/* Left Glow */

.services-section::before{
    content:'';
    position:absolute;

    width:500px;
    height:500px;

    left:-250px;
    top:-150px;

    background:#2459b020;

    border-radius:50%;

    filter:blur(120px);

    animation:moveGlow 10s infinite ease-in-out;
}

/* Right Glow */

.services-section::after{
    content:'';
    position:absolute;

    width:450px;
    height:450px;

    right:-150px;
    bottom:-100px;

    background:#f7a12825;

    border-radius:50%;

    filter:blur(120px);

    animation:moveGlow 8s infinite ease-in-out;
}

@keyframes moveGlow{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-40px);
    }
}
.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    color:var(--orange);
    font-weight:600;
    letter-spacing:2px;
}

.section-title h2{
    font-size:55px;
    margin:15px 0;
    color:#222;
}

.section-title p{
    color:#666;
    max-width:700px;
    margin:auto;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}

.service-card{
    background:#fff;
    padding:40px 35px;
    border-radius:25px;
    position:relative;
    overflow:hidden;

    transition:.5s;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);
}

.service-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;

    background:linear-gradient(
        90deg,
        var(--blue),
        var(--orange)
    );

    transform:scaleX(0);
    transition:.5s;
}

.service-card:hover::before{
    transform:scaleX(1);
}

.service-card:hover{
    transform:translateY(-15px);

    box-shadow:
    0 25px 60px rgba(36,89,176,.20);
}

.icon-box{
    width:90px;
    height:90px;

    border-radius:25px;

    background:linear-gradient(
    135deg,
    var(--blue),
    var(--orange));

    color:#fff;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:34px;

    margin-bottom:25px;

    transition:.5s;
}

.service-card:hover .icon-box{
    transform:rotateY(180deg);
}

.service-card h3{
    font-size:28px;
    margin-bottom:15px;
    color:#222;
}

.service-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
}

.service-card a{
    color:var(--orange);
    text-decoration:none;
    font-weight:600;
}

.service-card:hover a{
    letter-spacing:1px;
}

/* Scroll Animation */

.service-card{
    opacity:1;
    transform:translateY(80px);
}

.service-card.show{
    opacity:1;
    transform:translateY(0);
}
/*home service section */

/*contact us home */
.contact-section{
    padding:120px 8%;
    background:
    linear-gradient(
    135deg,
    #081120,
    #0e2446);

    position:relative;
    overflow:hidden;
}

.contact-section::before{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    background:#f7a12830;
    border-radius:50%;
    filter:blur(120px);

    top:-150px;
    right:-150px;
}

.contact-container{
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
}

.contact-info{
    color:#fff;
}

.section-tag{
    color:#f7a128;
    font-weight:600;
    letter-spacing:2px;
}

.contact-info h2{
    font-size:58px;
    margin:20px 0;
    line-height:1.2;
}

.contact-info p{
    color:#d0d8e4;
    line-height:1.8;
}

.info-box{
    display:flex;
    align-items:center;
    gap:20px;

    margin-top:30px;

    padding:20px;

    background:
    rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.1);

    backdrop-filter:blur(15px);

    border-radius:20px;

    transition:.4s;
}

.info-box:hover{
    transform:translateX(10px);
}

.icon{
    width:70px;
    height:70px;

    background:
    linear-gradient(
    135deg,
    #2459b0,
    #f7a128);

    border-radius:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:24px;
}

/* FORM */

.contact-form-box{
    background:
    rgba(255,255,255,.08);

    backdrop-filter:blur(15px);

    border-radius:30px;

    padding:50px;

    border:1px solid rgba(255,255,255,.1);
}

.input-group{
    position:relative;
    margin-bottom:30px;
}

.input-group input,
.input-group textarea{
    width:100%;
    padding:18px;

    border:none;
    outline:none;

    background:
    rgba(255,255,255,.08);

    border-radius:15px;

    color:#fff;
}

.input-group label{
    position:absolute;
    left:18px;
    top:18px;

    color:#cfd8e3;

    pointer-events:none;

    transition:.3s;
}

.input-group input:focus + label,
.input-group input:valid + label,
.input-group textarea:focus + label,
.input-group textarea:valid + label{
    top:-12px;
    left:12px;

    background:#0e2446;

    padding:0 8px;

    font-size:12px;

    color:#f7a128;
}

.contact-form-box button{
    width:100%;
    padding:18px;

    border:none;
    border-radius:60px;

    background:
    linear-gradient(
    135deg,
    #2459b0,
    #f7a128);

    color:#fff;
    font-size:18px;
    font-weight:600;

    cursor:pointer;

    transition:.4s;
}

.contact-form-box button:hover{
    transform:translateY(-4px);
}


.cta-section{
    position:relative;

    padding:140px 8%;

    text-align:center;

    overflow:hidden;

    background:
    linear-gradient(
    135deg,
    #2459b0,
    #10284f);

    color:#fff;
}

/* Animated Glow */

.cta-section::before{
    content:'';

    position:absolute;

    width:500px;
    height:500px;

    background:#f7a128;

    border-radius:50%;

    filter:blur(180px);

    top:-250px;
    left:-150px;

    opacity:.25;
}

.cta-section::after{
    content:'';

    position:absolute;

    width:400px;
    height:400px;

    background:#ffffff;

    border-radius:50%;

    filter:blur(150px);

    bottom:-200px;
    right:-100px;

    opacity:.08;
}

.cta-content{
    position:relative;
    z-index:2;

    max-width:900px;
    margin:auto;
}

.cta-content span{
    color:#f7a128;
    font-weight:600;
    letter-spacing:3px;
}

.cta-content h2{
    font-size:68px;
    line-height:1.2;

    margin:25px 0;
}

.cta-content strong{
    color:#f7a128;
}

.cta-content p{
    max-width:700px;
    margin:auto;

    color:#d8e2f0;

    line-height:1.9;

    font-size:18px;
}

.cta-buttons{
    margin-top:40px;

    display:flex;
    justify-content:center;
    gap:20px;
}

.btn-primary,
.btn-secondary{

    padding:18px 40px;

    border-radius:60px;

    text-decoration:none;

    font-weight:600;

    transition:.4s;
}

.btn-primary{
    background:#f7a128;
    color:#fff;
}

.btn-secondary{
    border:2px solid rgba(255,255,255,.3);
    color:#fff;
}

.btn-primary:hover,
.btn-secondary:hover{
    transform:translateY(-5px);
}
.cta-section .shape{
    position:absolute;
    border-radius:50%;
    background:rgba(255,255,255,.08);
}

.shape1{
    width:120px;
    height:120px;
    top:20%;
    left:10%;
    animation:float 5s infinite;
}

.shape2{
    width:80px;
    height:80px;
    bottom:20%;
    right:15%;
    animation:float 7s infinite;
}

@keyframes float{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-25px);
    }
}
/*contact us home */


.hosting-brand-section{
    padding:80px 0;
}

.hosting-brand-container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

.hosting-brand-heading{
    text-align:center;
    margin-bottom:50px;
}

.hosting-brand-heading span{
    display:inline-block;
    background:#F2B21B;
    color:#000;
    padding:10px 20px;
    border-radius:50px;
    font-weight:bold;
}

.hosting-brand-heading h2{
    margin-top:15px;
    font-size:48px;
    color:#062A6B;
}

/* ==========================
SLIDER
========================== */

.hosting-brand-slider-wrap{
    position:relative;
}

.hosting-brand-viewport{
    overflow:hidden;
    width:100%;
}

.hosting-brand-track{
    display:flex;
    gap:20px;
    transition:transform .5s ease;
}

.hosting-brand-item{

    flex:0 0 calc((100% - 100px) / 6);

    height:130px;

    background:#fff;

    border-radius:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow:
    0 10px 25px rgba(0,0,0,.08);

    transition:.3s;
}

.hosting-brand-item:hover{
    transform:translateY(-8px);
}

.hosting-brand-item img{
    max-width:140px;
    max-height:60px;
    object-fit:contain;
}

/* ==========================
ARROWS
========================== */

.hosting-brand-btn{

    position:absolute;

    top:50%;
    transform:translateY(-50%);

    width:55px;
    height:55px;

    border:none;

    border-radius:50%;

    background:#062A6B;

    color:#fff;

    font-size:22px;

    cursor:pointer;

    z-index:10;

    transition:.3s;
}

.hosting-brand-btn:hover{
    background:#F2B21B;
    color:#000;
}

.hosting-brand-prev{
    left:-25px;
}

.hosting-brand-next{
    right:-25px;
}

/* ==========================
DOTS
========================== */

.hosting-brand-dots{
    text-align:center;
    margin-top:30px;
}

.hosting-brand-dot{

    width:12px;
    height:12px;

    background:#d0d7e2;

    display:inline-block;

    border-radius:50%;

    margin:0 5px;

    cursor:pointer;

    transition:.3s;
}

.hosting-brand-dot.active{

    width:40px;

    border-radius:20px;

    background:#F2B21B;
}

/* ==========================
RESPONSIVE
========================== */

@media(max-width:992px){

    .hosting-brand-item{
        flex:0 0 calc((100% - 40px) / 3);
    }

    .hosting-brand-heading h2{
        font-size:38px;
    }
}

@media(max-width:768px){

    .hosting-brand-item{
        flex:0 0 calc((100% - 20px) / 2);
    }

    .hosting-brand-btn{
        width:45px;
        height:45px;
    }

    .hosting-brand-heading h2{
        font-size:30px;
    }
}
