@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 {
  --brand-color: #3300ff;
}

body{
    margin: 0px;
    font-size: 16px;
    color: #201B30;
    line-height: 28px;
    font-family: "Poppins", sans-serif;
}
*{
    box-sizing: border-box;
}
.flex{
    display: flex;
}
.content-center{
    justify-content: center;
}
.align-middle{
    align-items: middle;
}
/* container */
.container{
    max-width: 1440px;
    width: 100%;
    margin: 0px auto;
}
section{
    display: block;
    clear: both;
    padding: 100px 0px;
}
.p-0{
    padding: 0px;
}
.w-full{
    width: 100% !important;
}
.section-footer{
    width: 100%;
    text-align: center;
}
.section-footer a{
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    text-decoration: underline;
    text-transform: uppercase;
    color: #201B30;
}

.gray-bg{
    background-color: #F6F6F6;
}
.theme-bg{
    background-color: var(--brand-color);
}
 /* Components */
 .white-btn, .blue-btn {
    font-size: 18px;
    font-weight: 600;
    background-color: white;
    text-decoration: none;
    border-radius: 100px;
    text-transform: capitalize;
    display: inline-block;
    padding: 15px 40px;
    transition: all 0.3s ease-in-out;
 }
 .blue-btn{
    background-color: var(--brand-color);
    color: white;
    border:none;
 }
 .white-btn:hover{
    background-color: #201B30;
    color: #fff;
 }

.heading-container{
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
}
.heading-container p{
    font-size: 20px;
    line-height: 28px;
    margin: 0px;
}
  /* typo */
  h1,h2,h3,h4,h5,h6, h1 a,h2 a,h3 a,h4 a,h5 a,h6 a{
    color: #201B30;
    margin: 0px 0px 20px 0px;
    text-decoration: none;
  }
  h2{
    font-size: 50px;
    line-height: 60px;
  }
  h3{
    font-size: 34px;
    line-height: 50px;
  }
  h4{
    font-size: 24px;
    line-height: 34px;
  }
  h2.white{
    color: white;
  }
  p{
    margin: 0px 0px 10px 0px;
    color: #201B30;
    line-height: 28px;
  }

/* header */
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    left: 0px;
    top: 0px;
    right: 0px;
    padding: 0px 100px;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    z-index: 100;
    background-color: #fff;
    position: relative;

}
.rakaposh-logo{
    margin: 0px;
    padding: 0px;
    display: inline-block;
    max-width: 250px;
}
.rakaposh-logo img{
    width: 100%;
}
nav{
    display: inline-block;
}
nav ul{
    list-style: none;
    padding: 0px;
    margin: 0px;
}
nav ul li{
    display: inline-block;
    font-size: 0px;
}
.nav-dropdown{
    width: 100%;
    padding: 50px 0px;
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    position: absolute;
    top: 100%;
    left: 0px;
    right: 0px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}
nav ul li:hover .nav-dropdown{
    opacity: 1;
    margin-top: 0px;
    visibility: visible;


}
.nav-dropdown .container{
    flex-wrap: wrap;
}
.menu-content{
    width: 25%;
    padding: 20px 15px;
}
.menu-content h4{
    font-size: 22px;
    line-height: 22px;
    color: #201B30;
    margin-bottom: 10px;
}
.menu-content h4 a{
    color: #201B30;
    padding: 0px 0px 10px 0px;
    position: relative;
}
.menu-content h4 a{
    hover
}
.menu-content h4 a::before{
    content: "";
    height: 4px;
    width: 0px;
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    transition: all 0.3s ease-in-out;
    background-color:  #201B30;
}
.menu-content:hover a::before{
    width: 100%;
}
.menu-content p{
    font-size: 18px;
    line-height: 24px;
    color: #201B30;
    margin: 0px;
}
nav ul li a{
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    color: #201B30;
    text-decoration: none;
    line-height: 28px;
    padding: 35px 25px;
    position: relative;
    display: block;
}
nav ul li > a::before{
    content: "";
    height: 4px;
    width: 0px;
    position: absolute;
    bottom: 30px;
    left: 0px;
    right: 0px;
    margin: auto;
    transition: all 0.3s ease-in-out;
    background-color: white;
}
nav ul li:hover > a::before{
    width: 100%;
}
/* main banner styling */
.hero{
    overflow: hidden;
}
.hero,
.sub-banner{
    background-color: #fff;
    display: flex;
    padding:  80px 0px;
    min-height: calc(100vh - 98px);

}
.sub-banner{
    min-height: 360px;
    align-items: center;
    background-color: #3300FF;

}
.sub-banner .container{
    justify-content: space-between;
}
.hero .container{
    display: flex;
    align-items: center;
    position: relative;
    gap: 50px;
}

.sub-banner p{
    color: #fff;
}
.hero .banner-content{
    width: 50%;
}
.hero .banner-content > p{
    color: #8B869A;
    font-size: 18px;
    margin-bottom: 30px;
}
.hero .thumb img{
    width: 100%;
    max-height: 700px;
    border-radius: 30px;
}
.hero .banner-content ul{
    list-style: none;
    margin: 0px 0px 30px 0px;
    padding: 0px;
}
.hero .banner-content ul li{
    display: inline-block;
    margin-right: 10px;
}
.hero .banner-content ul li a{
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    line-height: 16px;
    background-color: #00A3FE;
    color: #fff;
    border-radius: 50px;
}
.hero .banner-content ul li a.yellow {
  background-color: #FFC700;
}
.hero .banner-content ul li a.green {
  background-color: #3300ff;
}
.quote-form{
    background-color: #EEF1F6;
    display: flex;
    padding: 40px;
    border-radius: 30px;
    flex-wrap: wrap;
    gap: 30px;
}
.quote-form .input-container{
    width: calc(50% - 15px);
}
.quote-form .input-container input[type=text]{
    border: none;
    height: 58px;
    width: 100%;
    background-color: #E1E4E9;
    outline: none;
    padding: 0px 20px;
    font-size: 16px;
}
.quote-form .get-quote{
    height: 58px;
    width: 100%;
    display: flex;
    background-color: #3300FF;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    padding: 20px;
    line-height: 18px;
    justify-content: space-between;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}
.quote-form .get-quote:hover{
    background-color: #201B30;
}
.quote-form p {
    display: flex;
    margin: 0px;
    align-items: center;
}
.quote-form p img{
    margin-right: 10px;
}


.reviews{
    display: flex;
    position: absolute;
    left: 0px;
    bottom: 40px;

}
.sub-banner .reviews{
    position: static;
    align-items: center;
}
.reviews .reviews-items{
    padding: 0px 15px;
    border-left: 1px solid rgba(255,255,255,0.5);
    align-content: center;
    text-align: center;
}
.reviews .reviews-items:first-child{
    border: none;
}
.reviews .reviews-items h3{
    font-size: 34px;
    line-height: 50px;
    margin: 0px;
    color: white;
}
.reviews .reviews-items p{
    margin: 0px;
    color: #fff;
}

/* Our Expertise, Your Success section */
.sercices-thumbs{
    gap: 50px;
    flex-wrap: wrap;
}
.services-container {
  display: flex;
  flex-direction: column;
  height: 477px;
    border-radius: 10px;
    border: solid 1px #ECECEC;
    padding: 40px;
    transition: all 0.3s ease-in-out;
    width: 31%;
    background-color: #fff;


}
.services-container:hover{
    box-shadow:  0 20px 40px 0 rgba(0, 0, 0, 0.1);;
}

.services-container .read-more{
  margin-top: auto;
  height: 31px;
  width: 31px;
  display: block;
  text-align: center;
  border-radius: 100px;
  padding: 8px 0px;
  color: var(--brand-color)
}
.services-container > i{
    margin-bottom: 40px;
    display: inline-block;
}
.our-expertise{
    background-color: #EEF1F6;
}
.our-expertise .inner-contant{
    justify-content: space-between;

}
.services-container h4{

}

.portfolio-section{
  flex-wrap: wrap;
  gap: 60px;
}
.portfolio-section .column{
  padding: 0px 30px;
  width: 50%;
}
.portfolio-section .column:first-child{
  margin: 0px;
}
.portfolio-section .portfolio-list{
  display: inline-block;
}

.portfolio-section .portfolio-list img{
  width: 100%;
  float: left;
}

.cta-section{
  justify-content: space-between;
  align-items: center;
}
.cta-section .content{
    width: 50%;
}
.cta-section h2,
.cta-section p{
    color: #fff;
}
.cta-section p {
    font-size: 20px;
    line-height: 28px;
}
.experties{
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    margin: 0px 0px 50px 0px;
    padding: 0px;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}
.experties::after{
    content: "";
    height: 1px;
    width: 100%;
    background-color: #D9D9D9;
    position: absolute;
    left: 0px;
    top: 50%;
    margin-top: -1px;
}
.experties div{
    padding: 25px 50px;
    border-left: solid 1px #D9D9D9;
    margin-left: -1px;
}


.creative-product-section{
    align-items: center;
    padding: 0px;
}
.creative-product-section .thumb,
.creative-product-section .content{
    width: 50%;
}
.creative-product-section .content{
    padding: 0px 100px;
    max-width: 720px;
}
.creative-product-section .thumb img{
    width: 100%;
}

.creative-product-section .content p{
    margin-bottom: 30px;

}


/* Testimonial section */
.testionials{

}
.testionials-container{

}
.testionials-container .testimonial-box{
    border-radius: 10px;
    max-width: 370px;
    box-shadow: 0px 15px 40px 0px rgba(0,0,0,0.1);
    padding: 30px;
    margin: 0px 20px;;
}

.testionials-container .testimonial-box .user{
    margin-bottom: 25px;
    align-items: center;
}
.testionials-container .testimonial-box .content{

}
.testionials-container .testimonial-box .user .thumb{
    margin-right: 20px;
    overflow: hidden;
    border-radius: 100%;
    height: 100px;
    width: 100px;
}
.testionials-container .testimonial-box .user .content{

}
.testionials-container .testimonial-box .user .content h4{
    font-size: 24px;
    margin-bottom: 0px;
}
.testionials-container .testimonial-box .user .content p{
    font-size: 14px;
    color: #969DA0;
    font-weight: 600;
    text-transform: uppercase;
}
.need-help-section{
    align-items: end;
}

.need-help-section .input-container {
    width: 50%;
    padding: 0px 15px;
    margin-bottom: 30px;

}
.need-help-section .contact-form{
    width: 56%;
    padding-right: 45px;
    padding: 100px 0px;
    margin: 0px -15px;
    flex-wrap: wrap;
    align-content: center;
}
.need-help-section .contact-form .header-content{
    padding: 0px 15px;
    width: 100%;
    margin: 0px 0px 30px 0px;
}
.need-help-section .contact-form label{
    display: block;
    cursor: none;
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 8px;
}
.need-help-section .contact-form input[type=text],
.need-help-section .contact-form select{
    border: solid 2px #D6E3E4;
    height: 58px;
    padding: 0px 15px;
    border-radius: 5px;
    width: 100%;

}
.need-help-section .contact-form input[type=text]:focus,
.need-help-section .contact-form input[type=text]:active,
.need-help-section .contact-form input[type=text]:focus-visible{
    border-color: #CFC5F8;
    outline-color: #CFC5F8;
}
.need-help-section .thumb{
    width: 44%;
}
.need-help-section .thumb img{
    float: left;
    width: 100%;
}

/* footer */
footer{
    background-color: #0A0030;
}
footer .copyrights{
    background-color: #06001F;
}
footer .copyrights .container{
    justify-content: space-between;
    padding: 15px 0px;
    align-items: center;
}
footer .footer-top{
    padding: 100px 0px;
}
footer .copyrights p{
    color: #fff;
    margin: 0px;
    font-size: 16px;
}
footer .copyrights a{
    text-decoration: underline;
    color: #fff;
}
footer .copyrights a:hover{
    color: #3300FF;

}
.social-icons{
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;

}

.social-icons li{
    margin-left: 20px;
    list-style: none;
}
.social-icons li a{
    display: block;
    height: 24px;
    width: 24px;
}
.social-icons li:hover svg{
    fill: red;
}

.heading-section{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
}
.heading-section h2{
    font-size: 62px;
    color: #fff;
    line-height: 70px;
}
.heading-section .services-list,
.heading-section .text{
    width: 50%;
}
.heading-section .services-list{
    padding-left: 100px;
}
.heading-section .services-list ul{
    list-style: none;
    margin: 0px;
    padding: 0px;
}
.heading-section .services-list ul li p{
    color: #fff;
    font-size: 20px;
    line-height: 50px;
    margin: 0px;
}
.heading-section .services-list ul li .blue-btn{
    margin-top: 30px;
}

.newsletters{
    background-color: #1A0D48;
    align-items: center;
    justify-content: space-between;
    padding: 30px;

}
.newsletters h3{
    color: #fff;
    margin: 0px;
    font-size: 42px;
    line-height: 42px;
}
.newsletters input[type="text"]{
    border-radius: 50px;
    height: 80px;
    width: 100%;
    border: solid 2px #37286D;
    background-color: #1A0B50;
    padding: 15px 200px 15px 40px;
    font-size: 24px;
    color: #6F61A0;
    font-weight: 400;
    outline: none;
    transition: all 0.3s ease-in-out;
}
.newsletters input[type="text"]:focus,
.newsletters input[type="text"]:focus-visible{
    border-color: #503d94;
}
.newsletters .input-container{
    position: relative;
    width: 55%;
}
.newsletters .input-container button{
    position: absolute;
    height: 80px;
    top: 0px;
    right: 0px;
    font-size: 18px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    padding: 0px 40px;
    background-color: #3300FF;
    border: none;
    border-radius: 100px;
    width: 200px;;
}
.newsletters ::placeholder {
    color: #6F61A0;
    opacity: 0.7; /* Firefox */
  }

.newsletters  ::-ms-input-placeholder { /* Edge 12 -18 */
    color: #6F61A0;
}
.footer-links{
    justify-content: space-between;
    padding: 80px 0px;
}
.footer-menu{

}
.footer-menu ul{
    margin: 0px;
    padding: 0px;
    list-style: none;
}
.footer-menu ul li a{
    font-size: 16px;
    line-height: 40px;
    color: #B7C8E0;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    padding: 0px 0px 0px 20px;
    position: relative;
}
.footer-menu ul li a:before{
    content: "";
    background-color: #fff;
    height: 4px;
    width: 4px;
    position: absolute;
    left: 0px;
    top: 50%;
    margin-top: -2px;
    transition: all 0.3s ease-in-out;

}
.footer-menu ul li a:hover{
    color:#0194FF
}
.footer-menu ul li:hover a:before{
    height: 16px;
    margin-top: -8px;
    background-color: #0194FF;
}
.footer-menu h3{
    font-size: 24px;
    line-height: 32px;
    margin: 0px 0px 15px 0px;
    color: #fff;
}
.footer-logo{
    width: 100%;
    text-align: center;
}
.footer-logo img{
    display: inline-block;
    opacity: 0.2;
    width: 100%;
}


.project-list{
    width: 48%;
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;

}
.project-list .section-footer{
    text-align: left;
}
.project-list .section-footer a{
    margin:0px 0px 0px 30px;
}
.project-list .section-footer a:hover{
    color: #3300FF;
}
.project-list .section-footer a:first-child{
    margin: 0px;
}
.project-list .content{
    padding-top: 20px;
}
.project-list .thumb img{
    width: 100%;

}
.project-section .container{
    flex-wrap: wrap;
    justify-content: space-between;
}
.project-detail-section .text{
    margin-bottom: 30px;

}
.project-detail-section .container{
    flex-direction: column;
}
.project-detail-section .thumb{
    margin-bottom: 30px;
}

.project-detail-section .screenshots{
    margin: 0px 0px 50px 0px;
}
.project-detail-section .screenshots ul{
    list-style: none;
    margin: 0px;
    padding: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.project-detail-section .screenshots ul li{
    width: 32%;

}
.project-detail-section .screenshots ul li a{
    display: block;
}

.project-detail-section .screenshots ul li img{
    display: block;
    width: 100%;
}
.blogs-content{
    gap: 50px;
    flex-wrap: wrap;
}
.blogs-thumb{
    width: 31%;
    display: flex;
    flex-direction: column;
}
.blogs-thumb h3{
    font-size: 30px;
    line-height: 40px;
}
.blogs-thumb .thumb img{
    width: 100%;
    float: left;
}
.blogs-thumb .text{
    padding: 20px 0px 0px 0px;
}
.blogs-thumb .text p{
    margin-bottom: 15px;
}
.blogs-thumb .text > a{
    font-weight: bold;
    text-decoration: none;
    color: #201B30;
}
.blogs-thumb .text a:hover{
    color: #3300FF;
}


.blog-meta{
    margin: 0px;
    padding: 0px;
    list-style: none;
    display: flex;
    align-items: center;
}
.blog-meta li{
    margin-left: 20px;
}
.blog-meta li:first-child{
    margin: 0px;
}
.blog-meta li a{
    font-size: 14px;
    font-weight: normal;
    color: #798389;
    display: flex;
    align-items: center;
}
.blog-meta li svg{
    fill: #798389;
    margin-right: 6px;
}
.blog-meta li:hover a{
    color: #3300FF;
}
.blog-meta li:hover svg{
    fill: #3300FF;
}

.blog-detail{
    gap: 40px;
    padding: 100px 0px;
}
.blog-detail .sidebar{
    min-width: 33.333%;
}
.blog-detail .blog-detail-content{
    min-width: 66.666%;
    display: flex;
    flex-direction: column;
}

.blog-detail-content .thumb img{
    float: left;
    width: 100%;

}
.blog-detail-content .text{
    padding: 30px 0px 0px 0px;
}
.blog-detail-content .text p{
    margin-bottom: 20px;
}
.blog-detail-content .blog-meta{
    margin-bottom: 10px;
}

.blog-detail-imgs {
    gap: 40px;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.blog-detail-imgs img{
    width: 47%;
}


.widget{
    border-bottom: dashed 1px #D9D9D9;
    padding-bottom: 30px;
    margin-bottom: 30px;
}
.search-widget{

}
.search-wdidget .input-container{
    position: relative;

}
.search-wdidget .input-container input[type="text"]{
    height: 62px;
    border: solid 2px #DADADA;
    width: 100%;
    padding: 20px;
}
.search-wdidget .input-container button{
    position: absolute;
    right: 2px;
    top: 2px;
    bottom: 2px;
    background-color: #3300FF;
    color: #fff;
    height: 58px;
    width: 58px;
    border: #0194FF;
}

.latest-blog-wdidget ul{
    list-style: none;
    display: block;
    padding: 0px;
    margin: 0px;
}
.latest-blog-wdidget ul li{
    display: flex;
    gap: 20px;
    padding: 20px 0px;
    border-bottom: dashed 1px #D9D9D9;
}
.latest-blog-wdidget ul li:last-child{
    border: none;
}
.latest-blog-wdidget ul li .thumb{

}
.latest-blog-wdidget ul li .text h4{
    font-size: 20px;
    line-height: 24px;
    margin: 0px 0px 5px 0px;
}


.tags-wdidget{

}

.tags-wdidget ul{
    padding: 0px;
    margin: 0px;
    list-style: none;
    padding: 0px;
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}
.tags-wdidget ul li{

}
.tags-wdidget ul li a{
    display: block;
    padding: 5px 15px;
    color: #201B30;
    text-decoration: none;
    background-color: #F3F3F3;
    transition: all 0.3s ease-in-out;
}
.tags-wdidget ul li a:hover{
    color: #fff;
    background-color: #3300FF;
}

.contact-page{
    padding: 100px 0px;
    gap: 40px;
    /* align-items: center; */
}

.contact-page .contact-form,
.contact-page .contact-info{
    width: 50%;

}
.contact-page .contact-form .header-content{
    width: 100%;
}
.contact-page .contact-form {
    flex-wrap: wrap;
    gap: 30px;

}
.contact-page .input-container input[type="text"],
.contact-page .input-container textarea{
    height: 62px;
    border: solid 2px #DADADA;
    width: 100%;
    padding: 20px;
}
.contact-page .input-container textarea{
    height: 400px;
}
.contact-page .input-container{
    width: 47.8%;
}
.right-align{
    display: flex;
    justify-content: right;
}

.contact-info ul{
    display: flex;
    list-style: none;
    padding: 0px;
    margin: 0px;
    flex-wrap: wrap;
}
.contact-info ul li{
    display: flex;
    gap: 10px;
    width: 50%;
    margin-bottom: 20px;
}
.contact-info h4{
    font-size: 22px;
    line-height: 22px;
    margin: 0px;
}
.contact-info h2{
    margin-bottom: 50px;
}

.contact-info iframe{
    border: none;
    height: 410px;
    width: 100%;
}
.stars{
    display: flex;
    gap: 0;
}
.stars span{
    color: #fff;
    font-size: 14px;
    line-height: 12px;
    margin-left: 5px;
}
.stars img{
    height: 12px;
    width: 12px;
}




.side-btn{
    font-size:30px;
    cursor:pointer;
    display: none;
    color:#06001F;
}

.sidenav {
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 100;
    top: 0;
    left: -100%;
    background-color: rgba(255,255,255,0.9);
    overflow-x: hidden;
    transition: 0.5s;
    padding: 60px 40px;
    text-align:left;
    backdrop-filter: blur(10px);


  }

  .sidenav a {
    padding: 10px;
    margin-bottom: 5px;
    text-decoration: none;
    font-size: 20px;
    color: #282828;
    display: block;
    transition: 0.3s;
    font-weight: normal;

  }

  .sidenav a:hover{
    color: #f1f1f1;
  }

  .sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
  }

