@import url('https://fonts.googleapis.com/css2?family=Amiko:wght@400;600;700&family=Bebas+Neue&family=Caveat:wght@400..700&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Kanit: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&family=Lobster&family=Lovers+Quarrel&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..900&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&family=Quicksand:wght@300..700&family=Roboto:ital,wght@0,100..900;1,100..900&family=Space+Grotesk:wght@300..700&family=Special+Gothic+Expanded+One&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/* INFO-HEADER------------------STARTS----------------HERE */

.header .info {
    display: flex;
    justify-content: end;
    padding: 30px 110px;
}

.header .info .timing , .contact , .phone-no{
    display: flex;
    margin: 0 10px;
}

.header .info .timing h6, .contact h6, .phone-no h6{
    margin-bottom: 0;
    margin: 0 10px;
    font-weight: 400;
    transition: 0.3s all ease;
}

.header .info .timing:hover h6, .contact:hover h6, .phone-no:hover h6{
    color: #E63467;
}

.header .info .timing .iconn, .contact .iconn, .phone-no .iconn{
    line-height: 1.2;
}

.header .info .timing .iconn i, .contact .iconn i , .phone-no .iconn i{
    color: #E63467;
}

.header .info .contact a, .phone-no a{
    text-decoration: none;
    color: black;
}

@media only screen and (max-width: 1200px){
    .header .info{
        padding: 30px 10px;
    }
}
@media only screen and (max-width: 992px){
    .header .info{
        padding: 25px 0;
    }
    .header .info .timing h6, .contact h6, .phone-no h6{
        font-size: 14px;
    }
}
@media only screen and (max-width: 767px){
    .header {
        display: none;
    }

}

/* INFO-HEADER------------------STARTS----------------HERE */


/* <!-- NAVBAR-----------------STARTS----------------HERE --> */

nav{
    background-color: #0283C5;
    height: 80px;
}

nav .nav-main{
    height: 80px;
}

nav .nav-main .nav-brand{
    height: 170px;
    position: relative;
    bottom: 60px;
    z-index: 5;
}

nav .nav-main .nav-brand img{
    height: 100%;
}

nav ul{
    display: flex;
    align-items: center;
    list-style: none;
    margin-bottom: 0;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a{
    text-decoration: none;
    color: white;
    font-size: 30px;
    font-family: 'Bebas Neue',sans-serif;
    font-weight: 500;
    transition: 0.3s all ease;
}

nav ul li a:hover{
    color: #E63467;
}

nav .dropdown ul li:hover a{
    color: #0283C5;
    margin-left: 5px;
    background-color: white;
}

.dropdown .active {
    color: #D23264;
    border-radius: 20px;
}

.dropdown .column .active{
    color: white;
    font-weight: 700;
    border-radius: 20px;
    background-color: #D23264;
    padding: 10px 10px;
}

.dropdown .arrow-down{
    margin-left: 5px;
    transition: 0.4s all ease;
}

.dropdown .services:hover .arrow-down{
    transform: rotate(-180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  display: flex;
  padding: 15px 0; 
  border-radius: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  width: 600px;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu .column {
  display: flex;
  flex-direction: column;
  margin: 0 20px;
}

.dropdown-menu a {
  color: #e91e63;
  padding: 10px 0;
  display: flex;
  justify-content: start;
  align-items: center;
  font-weight: 600;
  transition: 0.3s;
  font-size: 14px;
  font-family: 'Amiko',sans-serif;
}

.dropdown-menu a:hover {
  color: #0288d1;
}

.dropdown .dropdown-menu i {
  margin-right: 10px;
  font-size: 18px;
}

nav .nav-active-item .active{
    color: #E63467;
}

nav .nav-bar .nav-hide-btn{
    display: none;
}

nav .nav-show-btn{
    display: none;
}

@media only screen and (max-width: 1200px){
        nav ul li {
        margin: 0 15px;
    }
}

@media only screen and (max-width: 992px){
    nav .nav-bar{
        display: block;
        position: fixed;
        z-index: 999;
        height: 100%;
        width: 300px;
        background-color: #0283C5;
        top: 0;
        right: -110%;
        padding-left: 0;
        transition: 0.7s all ease-in-out;
    }
    nav ul li a{
        font-size: 26px;
    }
    nav .dropdown{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .dropdown-menu{
        display: block;
        width: 280px;
    }
    .dropdown-menu a{
        font-size: 12px;
        padding: 8px 0;
    }
    .dropdown .column .active{
        padding: 10px 7.1px;
    }
    nav .nav-bar .nav-active-item{
        display: flex;
        justify-content: center;
        margin: 20px 0;
    }
    nav .nav-bar .for-space{
        margin-top: 40px;
    }
    .header .info .timing, .contact, .phone-no{
        margin: 0 4px;
    }
    nav .nav-main .nav-brand {
        height: 140px;
        bottom: 40px;
    }
    nav .nav-bar .nav-hide-btn{
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 10px 10px 0 auto;
        font-size: 20px;
        height: 30px;
        width: 30px;
    }
    nav .nav-bar .nav-hide-btn:hover{
        background-color: #E63467;
    }
    nav .nav-bar .nav-hide-btn i{
        color: black;
    }
    nav .nav-show-btn{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    nav .nav-show-btn a{
        text-decoration: none;
    }
    nav .nav-show-btn i{
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        background-color: #E63467;
        font-size: 25px;
        height: 40px;
        width: 40px;
        border-radius: 5px;
        text-decoration: none;
    }
}
@media only screen and (max-width: 767px){
    nav .nav-main .nav-brand{
        height: 100px;
        bottom: 0;
        margin-top: 8px;
    }
}


/* <!-- NAVBAR-----------------ENDS----------------HERE --> */


/* BANNER---------------------STARTS---------------HERE */

.banner .bg-img{
    background-image: url(../images/main-bg-img.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 110vh;
    width: 100%;
    position: relative;
}

.banner .bg-img .overlay{
    background-color: rgba(0, 0, 0, 0.5); /* more visible transparency */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.banner .bg-img .cards {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.banner .bg-img .cards .cardd h3{
    color: white;
    font-family: 'Bebas Neue',sans-serif;
    font-size: 42px;
    letter-spacing: 2px;
}

.banner .bg-img .cards .cardd h3 span{
    color: #E63467;
    font-size: 62px;
}

.banner .bg-img .cards .cardd .para p , .satisfaction-box p{
    font-family: 'Amiko',sans-serif;
    font-size: 15px;
    color: white;
}

.banner .bg-img .cards .cardd .satisfaction-box p{
    margin: 0;
    padding-left: 10px;
}

.banner .bg-img .cards .cardd .satisfaction-box span{
    display: flex;
}

.banner .bg-img .cards .cardd .satisfaction-box span .iconn{
    display: flex;
    justify-content: center;
}

.banner .bg-img .cards .cardd .satisfaction-box span i{
    color: #E63467;
}

.banner .bg-img .cards .cardd .btns .btn-1 a{
    text-decoration: none;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 55px;
    width: 190px;
    border-radius: 10px;
    background-color: #D23264;
    font-size: 18px;
    font-weight: 600;
}

.banner .bg-img .cards .cardd .btns {
    display: flex;
    margin-top: 20px;
}

.banner .bg-img .cards .cardd .btns .btn-2 a{
    text-decoration: none;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 55px;
    width: 250px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.188);
    font-size: 22px;
    font-weight: 600;
    margin-left: 20px;
    border: 3px solid white;
}

.banner .bg-img .cards .cardd .btns .btn-2 a h6{
    margin: 0;
}

.banner .bg-img .cards .cardd .form-main {
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner .bg-img .cards .cardd .form-main form{
    background-color: #E0E9EE;
    padding: 20px;
    border-radius: 20px;
    width: 80%;
}

.banner .bg-img .cards .cardd .form-main h4{
    color: #0077B1;
    font-family: 'Bebas Neue',sans-serif;
    font-size: 30px;
    text-align: center;
}

.banner .bg-img .cards .cardd .form-main h1{
    color: #E63467;
    font-family: 'Bebas Neue',sans-serif;
    text-align: center;
    font-size: 52px;
}

.banner .bg-img .cards .cardd .form-main .input-box input , select{
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid gray;
    margin: 5px 0;
}

.banner .bg-img .cards .cardd .form-main .input-box input:focus , select:focus{
    outline: none;
    border: 1px solid blue;
    box-shadow: 0 0 2px;
}

.banner .bg-img .cards .cardd .form-main .input-box .checkbox{
    display: flex;
    margin-top: 10px;
}

.banner .bg-img .cards .cardd .form-main .input-box .checkbox input{
    width: auto;
    height: 20px;
}

.banner .bg-img .cards .cardd .form-main .input-box .checkbox .txt {
    width: 95%;
    padding-left: 10px;
}

.banner .bg-img .cards .cardd .form-main .input-box .checkbox .txt a{
    text-decoration: none;
    color: black;
    font-size: 14px;
}

.banner .bg-img .cards .cardd .form-main .input-box .checkbox .txt span{
    font-size: 14px;
}

.banner .bg-img .cards .cardd .form-main .input-box .submit-btn{
    margin-top: 20px;
}

.banner .bg-img .cards .cardd .form-main .input-box .submit-btn .bttn{
    text-decoration: none;
    color: white;
    background-color: #0283C5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 100%;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
}

@media only screen and (max-width: 1200px){
    .banner .bg-img{
        height: 140vh;
    }
    .banner .bg-img .cards .cardd .form-main form{
        width: 100%;
    }
    .banner .bg-img .cards .cardd h3{
        font-size: 40px;
    }
}
@media only screen and (max-width: 992px){
    .banner .bg-img{
        height: 200vh;
    }
    .banner .bg-img .cards .cardd .form-main form{
        margin-top: 60px;
    }
}
@media only screen and (max-width: 768px){
    .banner .bg-img .cards .cardd h3{
        text-align: center;
    }
    .banner .bg-img .cards .cardd .para p, .satisfaction-box p{
        text-align: center;
    }
    .banner .bg-img .cards .cardd .satisfaction-box span{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .banner .bg-img .cards .cardd .btns{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .banner .bg-img .cards .cardd .form-main form{
        width: 90%;
    }
}
@media only screen and (max-width: 426px){
    .banner .bg-img{
        height: 270vh;
    }
    .banner .bg-img .cards .cardd .btns{
        display: block;
    }
    .banner .bg-img .cards .cardd .btns .btn-1 , .btn-2{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .banner .bg-img .cards .cardd .btns .btn-2 a{
        margin-left: 0;
        margin-top: 20px;
    }
    .banner .bg-img .cards .cardd h3{
        text-align: center;
        letter-spacing: 0;
    }
    .banner .bg-img .cards .cardd .para p{
        text-align: center;
    }
    .banner .bg-img .cards .cardd h3 span{
        font-size: 58px;
    }
}
@media only screen and (max-width: 376px){
    .banner .bg-img{
        height: 260vh;
    }
    .banner .bg-img .cards .cardd h3{
        font-size: 30px;
    }
    .banner .bg-img .cards .cardd h3 span{
        font-size: 50px;
    }
    .banner .bg-img .cards .cardd .para p, .satisfaction-box p{
        font-size: 12px;
    }
    .banner .bg-img .cards .cardd .form-main h4{
        font-size: 25px;
    }
    .banner .bg-img .cards .cardd .form-main h1{
        font-size: 48px
    }
    .banner .bg-img .cards .cardd .form-main .input-box .checkbox .txt a{
        font-size: 12px;
    }
    .banner .bg-img .cards .cardd .form-main .input-box .checkbox .txt span{
        font-size: 12px;
    }
}

/* BANNER---------------------ENDS---------------HERE */


/* <!-- OUR-CLIENTS----------------STARTS---------------HERE --> */

.our-clients{
    padding: 100px;
}

.our-clients .cards .head {
    display: flex;
    justify-content: center;
    align-items: center;
}

.our-clients .cards .head h1{
    font-size: 60px;
}

.our-clients .cards .head .clients{
    color: #0283C5;
    font-family: 'Bebas Neue',sans-serif;
}

.our-clients .cards .head .results{
    color: #E63467;
    font-family: 'Bebas Neue',sans-serif;
    padding: 0 10px;
}

.our-clients .cardd{
    display: flex;
    justify-content: center;
    align-items: center;
}

.our-clients .cardd .client-img {
    display: flex;
    height: 450px;
    width: 90%;
    border-radius: 20px;
    position: relative;
}

.our-clients .cardd .client-img img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.our-clients .cardd .client-img .iconn{
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.our-clients .cardd .client-img .iconn i{
    background-color: #d23265d2;
    height: 70px;
    width: 70px;
    font-size: 28px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

/* Modal background */
.our-clients .video-modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

/* Modal box */
.our-clients .video-content {
    position: relative;
    width: 80%;
    max-width: 800px;
    margin: 100px auto;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}

/* Close button */
.our-clients .close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    z-index: 1000;
}

/* Video iframe */
.our-clients .video-content iframe {
    width: 100%;
    height: 450px;
}

@media only screen and (max-width: 1200px){
    .our-clients{
        padding: 70px 0 ;
    }
    .our-clients .cardd .client-img{
        width: 100%;
    }
}
@media only screen and (max-width: 992px){
    .our-clients .cardd .client-img{
        height: 300px;
    }
}
@media only screen and (max-width: 426px){
    .our-clients .cards .head .results{
        padding: 0 7px;
    }
    .our-clients .cards .head h1{
        font-size: 48px;
    }
    .our-clients .cardd{
        margin: 20px 0;
    }
    .our-clients .cards .row{
        margin-top: 0 !important;
    }
    .our-clients .cardd .client-img{
        height: 400px;
    }
}
@media only screen and (max-width: 376px){
    .our-clients .cards .head h1 {
        font-size: 43px;
    }
}
@media only screen and (max-width: 320px){
    .our-clients .cards .head h1 {
        font-size: 36px;
    }
}

/* <!-- OUR-CLIENTS----------------ENDS---------------HERE --> */


/* <!-- DESIGN-SPARTANS-----------STARTS--------------HERE --> */

.design-spartans .bg-img{
    background-image: url(../images/updated-bg.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 140vh;
    width: 100%;
    padding: 70px 100px 100px 100px;
}

.design-spartans .head {
    display: flex;
    justify-content: center;
    align-items: center;
}

.design-spartans .head .head-img{
    background-image: url(../images/title-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 11vh;
    width: 550px;
}

.design-spartans .head .head-img h1{
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-size: 50px;
    font-family: 'Bebas Neue',sans-serif;
    letter-spacing: 2px;
}

.design-spartans .cards {
    margin-top: 45px;
}

.design-spartans .cardd .card-img {
    background-image: url(../images/cta-banner.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 95vh;
    width: 100%;
}

.design-spartans .card-1 {
    background-color: #E63467;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.design-spartans .cardd h2{
    color: white;
    font-family: 'Bebas Neue',sans-serif;
    font-size: 42px;
}

.design-spartans .cardd .para {
    margin-top: 30px;
}

.design-spartans .cardd .para p{
    color: white;
    font-family: 'Amiko',sans-serif;
    font-size: 15px;
}

.design-spartans .cardd .read-btn .bttn {
    text-decoration: none;
    color: white;
    background-color: #0283C5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    width: 145px;
    border-radius: 30px;
    font-family: 'Amiko',sans-serif;
}

@media only screen and (max-width: 1200px){
    .design-spartans .bg-img{
        padding: 70px 0 100px 0;
    }
    .design-spartans .cardd h2{
        font-size: 32px;
    }
    .design-spartans .cardd .para{
        margin-top: 25px;
    }
    .design-spartans .cardd .para p{
        font-size: 11.2px;
    }
    .design-spartans .cardd .read-btn .bttn {
        height: 40px;
        width: 120px;
        font-size: 14px;
    }
}
@media only screen and (max-width: 992px){
    .design-spartans .cardd .read-btn .bttn {
        height: 30px;
        width: 100px;
        font-size: 12px;
    }
    .design-spartans .cardd h2{
        font-size: 28px;
    }
    .design-spartans .cardd .para p{
        font-size: 10.2px;
    }
    .design-spartans .card-1{
        padding: 24.4px;
    }
    .design-spartans .cardd .card-img{
        height: 96vh;
    }
}
@media only screen and (max-width: 426px){
    .design-spartans .bg-img{
        height: 230vh;
    }
    .design-spartans .cardd .card-img{
        margin-top: 40px;
    }
    .design-spartans .head .head-img h1{
        font-size: 44px;
    }
    .design-spartans .cardd h2{
        text-align: center;
    }
    .design-spartans .cardd .para p{
        text-align: center;
    }
    .design-spartans .cardd .read-btn{
        display: flex;
        justify-content: center;
        align-items: center;
    }
}
@media only screen and (max-width: 376px){
    .design-spartans .bg-img{
        height: 250vh;
    }
    .design-spartans .head .head-img{
        height: 8vh;
    }
    .design-spartans .head .head-img h1{
        font-size: 32px;
    }
}

/* <!-- DESIGN-SPARTANS-----------ENDS--------------HERE --> */


/* DIGITAL-SERVICES--------------STARTS-------------HERE */

.digital-services{
    padding: 100px;
}

.digital-services .head {
    display: flex;
    justify-content: center;
    align-items: center;
}

.digital-services .head .head-img{
    background-image: url(../images/title-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 11vh;
    width: 550px;
}

.digital-services .head .head-img h1{
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-size: 50px;
    font-family: 'Bebas Neue',sans-serif;
    letter-spacing: 2px;
}

.digital-services .categories{
    margin-top: 30px;
}

.digital-services .categories .bttn{
    border: 1px solid #E63467;
    height: 40px;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    cursor: pointer;
    transition: 0.4s all ease-in-out;
}

.digital-services .categories .bttn:hover{
    background-color: #E63467;
}

.digital-services .categories .bttn h5{
    color: #E63467;
    font-size: 14px;
    font-family: 'Amiko',sans-serif;
    margin-bottom: 0;
}

.digital-services .categories .bttn:hover h5{
    color: white;
}

.digital-services .filter-wrapper{
    margin-top: 20px;
}

.digital-services .filter-wrapper .card-img{
    position: relative;
}

.digital-services .filter-wrapper .card-img .txt{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    padding: 20px;
    color: white;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.327);
    transition: 0.4s all ease-in-out;
    font-family: 'Amiko',sans-serif;
}

.digital-services .filter-wrapper .card-img:hover .txt{
    opacity: 1;
}

.digital-services .filter-wrapper .card-img img{
    height: 100%;
    width: 100%;
}

@media only screen and (max-width: 1200px){
    .digital-services{
        padding: 80px 0;
    }
    .digital-services .filter-wrapper .card-img .txt{
        padding: 20px 5px;
    }
    .digital-services .filter-wrapper .card-img .txt h2{
        font-size: 20px;
    }
}
@media only screen and (max-width: 426px){
    .digital-services .categories .bttn{
        margin: 5px 5px;
        width: 40%;
    }
    .digital-services .head .head-img h1{
        font-size: 44px;
    }
    .digital-services .filter-wrapper .card-img .txt h2{
        font-size: 23px;
    }
    .digital-services .filter-wrapper .card-img .txt{
        padding: 30px 20px;
    }
}
@media only screen and (max-width: 376px){
    .digital-services .head .head-img{
        height: 8vh;
    }
    .digital-services .head .head-img h1{
        font-size: 32px;
    }
}

/* DIGITAL-SERVICES--------------ENDS-------------HERE */


/* <!-- WEB-DESIGN-BANNER--------STARTS------------HERE --> */

.web-design-banner {
    padding-bottom: 50px;
}

.web-design-banner .card-1{
    background-color: #E63467;
    padding: 50px 55px;
    height: 90%;
}

.web-design-banner .card-1 h2{
    font-family: 'Bebas Neue',sans-serif;
    color: white;
    font-size: 34px;
}

.web-design-banner .card-1 .para{
    margin-top: 30px;
}

.web-design-banner .card-1 p{
    color: white;
    font-family: 'Amiko',sans-serif;
    font-size: 15px;
}

.web-design-banner .card-1 .read-btn .bttn{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    width: 150px;
    border-radius: 30px;
    color: white;
    font-family: 'Amiko',sans-serif;
    border: 1px solid;
    text-decoration: none;
}

.web-design-banner .cardd .card-img {
    height: 100%;
}

.web-design-banner .cardd .card-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.web-design-banner .card-2{
    height: 90%;
}

@media only screen and (max-width: 1200px){
    .web-design-banner .card-1{
        height: 100%;
        padding: 50px 30px;
    }
    .web-design-banner .card-2{
        height: 100%;
    }
}
@media only screen and (max-width: 768px){
    .web-design-banner .card-1 p {
        font-size: 13px;
    }
    .web-design-banner .card-1 .read-btn .bttn{
        height: 40px;
        width: 135px;
        font-size: 14px;
    }
}
@media only screen and (max-width: 426px){
    .web-design-banner .card-1 h2{
        text-align: center;
    }
    .web-design-banner .card-1 .para{
        text-align: center;
    }
    .web-design-banner .card-1 .read-btn{
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 30px;
    }
    .web-design-banner .card-2{
        display: none;
    }
}
@media only screen and (max-width: 376px){
    .web-design-banner .card-1 h2{
        font-size: 25px;
    }
    .web-design-banner .card-1 p{
        font-size: 11px;
    }
    .web-design-banner .card-1 .read-btn .bttn {
        height: 35px;
        width: 120px;
        font-size: 12px;
    }
}

/* <!-- WEB-DESIGN-BANNER---------ENDS------------HERE --> */


/* <!-- DIGITAL-PORTFOLIO-----------STARTS--------------HERE --> */

.digital-portfolio{
    padding: 0 100px 100px 100px;
}

.digital-portfolio .head {
    display: flex;
    justify-content: center;
    align-items: center;
}

.digital-portfolio .head .head-img{
    background-image: url(../images/title-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 11vh;
    width: 550px;
}

.digital-portfolio .head .head-img h1{
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-size: 50px;
    font-family: 'Bebas Neue',sans-serif;
    letter-spacing: 2px;
}

.digital-portfolio .cardd{
    box-shadow: 0 0 5px rgb(148, 148, 148);
    padding: 50px;
    height: 320px;
    margin-top: 40px;
}

.digital-portfolio .cardd .card-img , .card-title , .description{
    text-align: center;
}

.digital-portfolio .cardd .card-title {
    margin-top: 20px;
}

.digital-portfolio .cardd .card-title h4{
    font-size: 32px;
    font-family: 'Bebas Neue',sans-serif;
    color: #E63467;
}

.digital-portfolio .cardd a{
    text-decoration: none;
}

.digital-portfolio .cardd .description p{
    color: #6C6C6C;
    font-family: 'Amiko',sans-serif;
}

@media only screen and (max-width: 1200px){
    .digital-portfolio .cardd{
        height: 340px;
    }
    .digital-portfolio {
        padding: 0 0 100px 0;
    }
    .digital-portfolio .cardd {
        padding: 20px;
    }
}
@media only screen and (max-width: 768px){
    .digital-portfolio .cardd{
        height: 320px;
    }
}
@media only screen and (max-width: 426px){
    .digital-portfolio .head .head-img h1{
        font-size: 44px;
    }
    .digital-portfolio .cardd .description p{
        font-size: 14px;
    }
    .digital-portfolio .cardd{
        height: 280px;
    }
}
@media only screen and (max-width: 376px){
    .digital-portfolio .head .head-img{
        height: 8vh;
    }
    .digital-portfolio .head .head-img h1{
        font-size: 32px;
    }
}

/* <!-- DIGITAL-PORTFOLIO-----------ENDS--------------HERE --> */


/* <!-- DESIGN-SPARTANS-PACKAGES-----STARTS--------------HERE --> */

.spartans-packages{
    padding: 0 0 100px 0;
}

.spartans-packages .bg-img{
    background-image: url(../images/new-sec-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    /* height: 70vh; */
    padding: 20px 0;
}

.spartans-packages .card-1{
    padding: 30px 50px;
}

.spartans-packages .card-1 .head-1{
    font-size: 50px;
    font-family: 'Bebas Neue',sans-serif;
    color: white;
}

.spartans-packages .card-1 .head-2{
    font-size: 34px;
    font-family: 'Amiko',sans-serif;
    color: white;
}

.spartans-packages .card-1 .para p{
    color: white;
}

.spartans-packages .card-1 .lists ul{
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.spartans-packages .card-1 .lists .ul-2{
    padding-left: 90px;
}

.spartans-packages .card-1 .lists ul li{
    display: flex;
}

.spartans-packages .card-1 .lists ul li i{
    color: #0777b0;
}

.spartans-packages .card-1 .lists ul li h5{
    padding-left: 10px;
    color: white;
    font-family: 'Amiko',sans-serif;
}

.spartans-packages .card-2 .card-img img{
    height: 100%;
    width: 100%;
}

.spartans-packages .card-2 .price-btn .bttn{
    text-decoration: none;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    width: 180px;
    border-radius: 30px;
    border: 1px solid white;
    background-color: #E63467;
}

.spartans-packages .card-2 .price-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

@media only screen and (max-width: 1200px){
    
    .spartans-packages .card-2{
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}
@media only screen and (max-width: 768px){
    
    .spartans-packages .card-1 .lists ul li h5 {
        font-size: 16px;
        width: 130px;
    }
    .spartans-packages .card-1 .head-2{
        font-size: 24px;
    }
    .spartans-packages .card-1 .para p{
        font-size: 14px;
    }
}
@media only screen and (max-width: 426px){
   
    .spartans-packages .card-1 .lists .ul-2{
        padding-left: 20px;
    }
    .spartans-packages .card-1{
        padding: 30px 30px;
    }
    .spartans-packages .card-1 .head-1{
        text-align: center;
    }
}
@media only screen and (max-width: 376px){
    .spartans-packages .bg-img{
        height: 150vh;
    }
    .spartans-packages .card-1 .lists{
        display: block !important;
    }
    .spartans-packages .card-1 .lists .ul-2{
        padding-left: 0;
    }
}
@media only screen and (max-width: 375px){
    .spartans-packages .bg-img{
        height: 160vh;
    }
    .spartans-packages .card-1 .head-1{
        font-size: 45px;
    }
}

/* <!-- DESIGN-SPARTANS-PACKAGES-----ENDS--------------HERE --> */


/* <!-- PRICING---------------------STARTS-------------HERE --> */

.pricing{
    padding: 0 100px 100px 100px;
}

.pricing .head {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pricing .head .head-img{
    background-image: url(../images/title-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 11vh;
    width: 550px;
}

.pricing .head .head-img h1{
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-size: 50px;
    font-family: 'Bebas Neue',sans-serif;
    letter-spacing: 2px;
}

.pricing .decide-box {
    margin-top: 20px;
}

.pricing .decide-box ul {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 0;
    margin-top: 30px;
}

.pricing .decide-box ul li {
    list-style: none;
    height: 50px;
}

.pricing .decide-box ul li a{
    text-decoration: none;
    color: #E63467;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #E63467;
    transition: 0.4s all ease-in-out;
    height: 50px;
    width: 120px;
}

.pricing .decide-box ul li a:hover{
    background-color: #E63467;
    color: white;
}

.decide-box ul li a.active {
    background-color: #E63467;
    color: white !important;
    transition: 0.3s ease;
}

.pricing .decide-box .click-div{
    height: 16px;
    width: 16px;
    border-radius: 50%;
    border: 2px solid #deb018;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pricing .decide-box .click{
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background-color: #deb018;
    opacity: 0;
    transition: 0.4s ease;
}

.pricing .decide-box .click.active {
    opacity: 1;
}

.pricing .decide-box .month h5{
    margin: 0;
    padding-left: 10px;
    font-size: 15px;
    font-family: 'Amiko',sans-serif;
    font-weight: 600;
}

.pricing .decide-box .year{
    padding-left: 15px;
    height: 50px;
}

.pricing .decide-box .year h5{
    margin: 0;
    font-size: 15px;
    font-family: 'Amiko',sans-serif;
    font-weight: 600;
}

.pricing .decide-box .saving-box{
    padding-left: 10px;
}

.pricing .decide-box .saving-box .save{
    height: 30px;
    width: 90px;
    background-color: #DCDCDC;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pricing .decide-box .saving-box .save h6{
    margin: 0;
    font-size: 13px;
    font-weight: 600;
}

.pricing .cards {
    padding: 25px 0 50px 0;
}
 
.pricing .services-box{
    flex-grow: 1;
}

.pricing .services-box .lists ul{
    list-style: none;
    padding: 20px 50px 0 50px;
    margin-bottom: 0;
}

.pricing .services-box .lists ul .logo-addition h5{
    display: flex;
    font-family: 'Bebas Neue',sans-serif;
    margin-bottom: 0;
}

.pricing .services-box .lists ul li{
    display: flex;
    align-items: baseline;
}

.pricing .services-box .lists ul li .iconn i{
    color: #E63467;
}

.pricing .services-box .lists ul li h6{
    padding-left: 10px;
    color: rgb(94, 94, 94);
    font-family: 'Amiko',sans-serif;
    font-size: 15px;
    text-align: start;
    margin-bottom: 0;
}

.pricing .cards .cardd{
    box-shadow:  0 0 5px rgb(166, 165, 165);
    text-align: center;
    padding-top: 20px;
    padding-bottom: 50px;
    border: 2px solid #E63467;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing .cards .cardd h4{
    font-size: 38px;
    margin-top: 10px;
    color: #0283C5;
    font-family: 'Bebas Neue',sans-serif;
    margin-bottom: 0;
}

.pricing .cards .cardd .price h3{
    font-size: 54px;
    margin: 0;
    color: #E63467;
    font-family: 'Bebas Neue',sans-serif;
}

.pricing .cards .info{
    padding: 0 20px;
}

.pricing .cards .info h6, span{
    font-family: 'Bebas Neue',sans-serif;
    margin-bottom: 0;
    font-size: 19px;
    color: black;
}

.pricing .cards .info .speak a{
    text-decoration: none;
}

.pricing .cards .cardd .get-start-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.pricing .cards .cardd .get-start-btn .bttn{
    height: 45px;
    width: 150px;
    background: linear-gradient(to left, #e3263c, #E63467);
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    box-shadow: 0 2px 5px gray;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s all ease-in-out;
    text-decoration: none;
}

.pricing .cards .cardd .get-start-btn .bttn:hover {
    background: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
    color: #E63467; 
    box-shadow: none;
    border: 1px solid #E63467;
}

.cardd.animate {
    animation: slideUp 0.5s ease;
}



@keyframes slideUp {
    0% {
        transform: translateY(40px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@media only screen and (max-width: 1200px){
    .pricing .cards .cardd .para p{
        padding: 0 10px;
    }
    .pricing {
        padding: 0 0 100px 0;
    }
    .pricing .services-box .lists ul{
        padding: 20px 5px 0 15px;
    }
    .pricing .cards .info {
        padding: 10px 20px;
    }
    .pricing .services-box .lists ul li h6{
        font-size: 14px;
    }
}
@media only screen and (max-width: 992px){
    .pricing .services-box .lists ul {
        padding: 10px 5px 0 15px;
    }
    .pricing .services-box .lists ul li h6{
        font-size: 12px;
    }
    .pricing .cards .info {
        padding: 10px 10px;
    }
    .pricing .cards .info h6, span {
        font-size: 15px;
        color: black;
    }
    .pricing .decide-box .year h5{
        font-size: 14px;
    }
    .pricing .decide-box .month h5 {
        font-size: 14px;
    }
}
@media only screen and (max-width: 768px){
    .pricing .cards .cardd .para p{
        padding: 0 10px;
        font-size: 13px;
        line-height: 22px;
    }
    .pricing .cards .card-3{
        margin-top: 30px;
    }
    .pricing .cards .cards-row{
        justify-content: center;
    }
    .pricing .head h2{
        width: 70%;
    }
    .pricing .decide-box .saving-box .save h6 {
        font-size: 12px;
    }
    .pricing .decide-box ul li a{
        height: 50px;
    }
}
@media only screen and (max-width: 426px){
    .pricing .head h2{
        width: 100%;
    }
    .pricing .cards .card-3{
        margin-top: 10px;
    }
    .pricing .cards {
        padding: 0 0 50px 0;
    }
    .pricing .decide-box .year{
        padding-left: 0;
    }
    .pricing .decide-box ul li{
        justify-content: center;
    }
    .pricing .decide-box ul li a{
        width: 100%;
    }
    .pricing .cards .card-main{
        margin-top: 40px;
    }
}

/* <!-- PRICING---------------------ENDS-------------HERE --> */


/* <!-- CLIENT-REVIEWS-------------STARTS------------HERE --> */

.client-reviews .bg-img{
    background-image: url(../images/testimonials-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    /* height: 110vh; */
    padding: 100px;
}

.client-reviews .head {
    display: flex;
    justify-content: center;
    align-items: center;
}

.client-reviews .head .head-img{
    background-image: url(../images/title-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 11vh;
    width: 550px;
}

.client-reviews .head .head-img h1{
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-size: 50px;
    font-family: 'Bebas Neue',sans-serif;
    letter-spacing: 2px;
}

.client-reviews .cardd{
    padding: 20px;
    background-color: white;
    border-radius: 5px;
    margin-top: 30px;
    transition: 0.4s all ease-in-out;
}

.client-reviews .cardd:hover{
    transform: translateY(-10px);
}

.client-reviews .cardd .ratings .star-icons i{
    color: #F6BB06;
}

.client-reviews .cardd .client-info {
    padding-left: 10px;
}

.client-reviews .cardd .client-info h6{
    font-family: 'Roboto',sans-serif;
    font-weight: bold;
    font-size: 14px;
}

.client-reviews .cardd .client-info .date{
    font-family: 'Roboto',sans-serif;
    font-size: 12px;
    color: gray;
    font-weight: 400;
}

.client-reviews .cardd .txt h5{
    font-size: 16px;
    font-family: 'Roboto',sans-serif;
    font-weight: 400;
    color: rgb(39, 39, 39);
    margin-top: 12px;
}


@media only screen and (max-width: 1200px){
    .client-reviews .bg-img{
        padding: 100px 0;
    }
}
@media only screen and (max-width: 992px){
    .client-reviews .cardd .txt h5{
        font-size: 13px;
    }
}
@media only screen and (max-width: 426px){
    .client-reviews .head .head-img h1{
        font-size: 44px;
    }
}
@media only screen and (max-width: 375px){
    .client-reviews .head .head-img h1{
        font-size: 32px;
    }
    .client-reviews .head .head-img {
        height: 8vh;
    }
}

/* <!-- CLIENT-REVIEWS-------------ENDS------------HERE --> */


/* <!-- OUR-BLOG------------------STARTS-----------HERE --> */

.our-blog{
    padding: 100px;
}

.our-blog .head {
    display: flex;
    justify-content: center;
    align-items: center;
}

.our-blog .head .head-img{
    background-image: url(../images/title-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 11vh;
    width: 550px;
}

.our-blog .head .head-img h1{
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-size: 50px;
    font-family: 'Bebas Neue',sans-serif;
    letter-spacing: 2px;
}

.our-blog .cardd {
    height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 0 5px rgb(185, 185, 185);
    border-radius: 5px;
    margin-top: 30px;
} 

.our-blog .cardd .card-title{
    font-family: 'Bebas Neue',sans-serif;
    text-align: start;
    padding: 25px 20px 0 20px;
}

.our-blog .cardd .card-title a{
    text-decoration: none;
    color: #0283C5; 
}

.our-blog .cardd .card-title a h2{
    font-size: 30px;
}

.our-blog .cardd .card-description{
    font-family: 'Amiko',sans-serif;
    color: rgb(128, 128, 128);
    padding: 20px;
    flex-grow: 1;
}

.our-blog .cardd .card-description p{
    font-size: 15px;
}

.our-blog .cardd .read-btn{
    display: flex;
    align-items: baseline;
    padding: 0 20px;
    font-family: 'Amiko',sans-serif;
}

.our-blog .cardd .read-btn .bttn{
    color: #E63467;
    font-size: 14px;
    font-weight: 600;
}

.our-blog .cardd .bottom-box{
    display: flex;
    align-items: baseline;
}

.our-blog .cardd .bottom-box h6{
    padding: 10px 20px;
    color: rgb(139, 138, 138);
    font-family: 'Amiko',sans-serif;
    font-size: 12px;
}

.our-blog .cardd .card-img img{
    width: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 1200px){
    .our-blog{
        padding: 100px 0;
    }
    .our-blog .cardd .card-title a h2{
        font-size: 28px;
    }
}

@media only screen and (max-width: 992px){
    .our-blog .cardd{
        height: 550px;
    }
    .our-blog .cardd .card-title a h2{
        font-size: 22px;
    }
    .our-blog .cardd .card-description p{
        font-size: 13px;
    }
    .our-blog .cardd .read-btn .bttn{
        font-size: 12px;
    }
}
@media only screen and (max-width: 768px){
    .our-blog .cardd{
        height: 570px;
    }
    .our-blog .cardd .card-title a h2{
        font-size: 22px;
    }
    .our-blog .cardd .card-description{
        padding: 0 20px 20px 20px;
    }
    .our-blog .cardd .card-description p{
        font-size: 14px;
    }
    .our-blog .cardd .read-btn .bttn{
        font-size: 14px;
    }
}
@media only screen and (max-width: 426px){
    .our-blog .cardd .card-title a h2{
        font-size: 26px;
    }
    .our-blog .cardd .card-description p{
        font-size: 13px;
    }
    .our-blog .cardd .read-btn .bttn{
        font-size: 13px;
    }
    .our-blog .head .head-img h1{
        font-size: 44px;
    }
}
@media only screen and (max-width: 376px){
    .our-blog .head .head-img h1{
        font-size: 32px;
    }
    .our-blog .head .head-img {
        height: 8vh;
    }
}

/* <!-- OUR-BLOG------------------ENDS-----------HERE --> */


/* <!-- SELECT-PACKAGE-----------STARTS----------HERE --> */

.select-packg{
    padding: 20px 100px 100px 100px;
}

.select-packg .card-title h2{
    font-family: 'Bebas Neue',sans-serif;
    font-weight: 600;
    text-align: start;
    font-size: 30px;
}
.select-packg .card-title h6{
    font-family: 'Amiko',sans-serif;
    text-align: start;
}

.select-packg .cardd .btns{
    margin-top: 30px;
}

.select-packg .cardd .call-btn a{
    text-decoration: none;
    background-color: #0283C5;
    color: white;
    font-family: 'Amiko',sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 180px;
    border-radius: 30px;
    font-size: 15px;
}

.select-packg .cardd .call-btn a i{
    padding-right: 10px;
    transform: rotate(25deg);
    margin-top: 7px;
}

.select-packg .cardd .chat-btn {
    margin: 0 10px;
}

.select-packg .cardd .chat-btn a{
    text-decoration: none;
    background-color: #E63467;
    color: white;
    font-family: 'Amiko',sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 180px;
    border-radius: 30px;
    font-size: 15px;
}

.select-packg .cardd .chat-btn a i{
    padding-right: 10px;
}

.select-packg .input-main input, select{
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    margin-top: 20px;
    border: 1px solid rgb(181, 181, 181);
    background-color: rgb(249, 249, 249);
}

.select-packg .input-main input:hover, select:hover{
    border: 1px solid #025D8D;
    background-color: white;
}

.select-packg .input-main input:focus, select:focus{
    outline: none;
    border: 2px solid #025D8D;
    box-shadow: 0 0 0 ;
    background-color: white;
}

.select-packg .cardd .check-box{
    margin-top: 30px;
}

.select-packg .cardd .check-box .para p{
    font-family: 'Amiko',sans-serif;
    font-size: 14px;
}

.select-packg .cardd .submit-btn .bttn{
    text-decoration: none;
    color: white;
    background-color: #0283C5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    width: 120px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Amiko',sans-serif;
}

@media only screen and (max-width: 1200px){
    .select-packg{
        padding: 40px 0;
    }
}
@media only screen and (max-width: 992px){
    .select-packg{
        padding: 0 0 50px 0;
    }
    .select-packg .card-title h2{
        text-align: center;
    }
    .select-packg .card-title h6{
        text-align: center;
    }
    .select-packg .cardd .btns{
        justify-content: center;
        align-items: center;
    }
    .select-packg .cardd .submit-btn{
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 10px;
    }
}
@media only screen and (max-width: 426px){
    .select-packg .cardd .check-box .para p{
        font-size: 12px;
    }
}
@media only screen and (max-width: 425px){
    .select-packg .cardd .btns{
        display: block !important;
    }
    .select-packg .cardd .call-btn{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .select-packg .cardd .chat-btn{
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 15px;
    }
    .select-packg .cardd .chat-btn a{
        margin: 0 0;
    }
}

/* <!-- SELECT-PACKAGE-----------ENDS----------HERE --> */


/* FOOTER-----------------------STARTS---------HERE */

.footer{
    padding: 100px;
    background-color: black;
}

.footer .cardd .card-title h3{
    font-family: 'Bebas Neue',sans-serif;
    color: #0283C5;
    text-align: start;
    letter-spacing: 1px;
}

.footer .cardd ul {
    list-style: none;
    padding-left: 0;
}

.footer .cardd ul li{
    margin: 5px 0;
}

.footer .cardd ul li a{
    text-decoration: none;
    color: white;
    display: flex;
    font-family: 'Amiko',sans-serif;
}

.footer .cardd ul li a h6{
    padding-left: 10px;
    margin: 0;
    font-size: 14px;
}

.footer .cardd ul li a i{
    color: #E63467;
}

.footer .cardd .address h6{
    color: white;
    font-family: 'Amiko',sans-serif;
    font-size: 15px;
}

.footer .cardd .customer-support{
    margin-top: 20px;
}

.footer .cardd .card-img img{
    height: 150px;
}

.footer .cardd .para{
    margin-top: 20px;
}

.footer .cardd .para p{
    color: white;
    font-family: 'Amiko',sans-serif;
    font-size: 14px;
}

.footer .social-iconn{
    margin-top: 20px;
}

.footer .social-iconn i{
    color: white;
    font-size: 24px;
    margin: 0 10px;
}

@media only screen and (max-width: 1200px){
    .footer{
        padding: 100px 0;
    }
}
@media only screen and (max-width: 992px){
    .footer .cardd .payment-img img{
        height: 70px;
    }
    .footer .social-iconn i{
        font-size: 18px;
        margin: 0 6px;
    }
    .footer .cardd .para p{
        font-size: 12px;
    }
    .footer .cardd ul li a h6{
        font-size: 12px;
    }
    .footer .cardd .address h6{
        font-size: 12px;
    }
    .footer .cardd .card-title h3{
        font-size: 19px;
    }
}

/* FOOTER-----------------------ENDS---------HERE */
