@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
/* 
font-family: 'Playfair Display', serif;
font-family: 'Poppins', sans-serif;
/* RESET CSS START */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --c1: #2619a1;
    --c2: #1e293b;
    --c3: #1c1c1c;
    --bs-indigo: #6610f2;
    --pink-color: #044787;
    --black-color: white;
}
body {
    overflow-x: hidden;
    position: relative;
}

a,
button {
   font-family: 'Oswald', sans-serif;
    transition: all .5s ease-in-out;
    text-decoration: none;
    outline: none;
    border: none;
    cursor: pointer;
}

a:hover,
button:hover {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
   font-family: 'Oswald', sans-serif;

    margin: 0;
}

p,
span,
small {
    font-family: "Poppins", Sans-serif;

    margin: 0;
}

input,
select {
   font-family: 'Oswald', sans-serif;

}

ul,
ul.list-inline {
    margin: 0;
    padding: 0;
}

li {
    padding: 0;
    list-style: none;
   font-family: 'poppins', sans-serif;

}


/* RESET CSS END */


/* UTILITY CSS START */

.text-uppercase {
    text-transform: uppercase !important;
}

.text-capital {
    text-transform: capitalize !important;
}

.col-center {
    margin: 0 auto;
}

.mc-b-2 {
    margin-bottom: 20px !important;
}

.mc-b-3 {
    margin-bottom: 30px !important;
}

.mc-b-4 {
    margin-bottom: 40px !important;
}

.mc-b-5 {
    margin-bottom: 40px !important;
}

.mc-b-8 {
    margin-bottom: 80px !important;
}

.mc-t-2 {
    margin-top: 20px !important;
}

.mc-t-3 {
    margin-top: 30px !important;
}

.mc-t-4 {
    margin-top: 40px !important;
}

.mc-1 {
    margin: 10px !important;
}

.pc-p-3 {
    padding: 3% 0;
}

.pc-p-4 {
    padding: 4% 0;
}

.pc-p-6 {
    padding: 6% 0;
}

.pc-p-10 {
    padding: 10% 0;
}

.pc-b-6 {
    padding-bottom: 6%;
}

.mc-l-2 {
    margin-left: 20px;
}



.main-slider .slider-caption a {
    border: 1px solid #9999;
}


/* MAIN-BTNS */

.lg-btn {
    width: 100%;
}

header.header .logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header.header .logo img{
    width: 83%;
    height: 80px;
    object-fit:cover;
}
header.header .logo a#open-mobile-menu {
    color: #fff;
    font-size: 20px;
}
.navigation-list li a:hover {
   color: var(--c1);
}
.mobile-menu-main {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 90%);
    left: -100%;
    top: 0;
    transition: all .7s;
    z-index: 999;
}
.whatsapp-icon-container i {
    font-size: 48px;
    color: #000;
}
.right-section {
  position: fixed;
  top: 48%;
  right: 10px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  z-index: 9999;
}
.whatsapp-icon-container p {
    display: inline;
    font-size: 15px;
    font-family: 'Oswald', sans-serif;
    color: #000 !important;
}
.whatsapp-icon-container {
  position: relative;
  z-index: 7;
  width: 250px;
  padding: 10px 16px;
  background: #fddd6c;
  border-radius: 30px 0 0  30px;
  right: -198px;
  transition:all 0.5s ease-in-out;
  display: flex;
  align-items: center;
  color: white;
  gap:10px;
  cursor: pointer;
}
.whatsapp-icon-container p{
  color:#000;
}
.whatsapp-icon-container:hover{
  right: -12px !important;
}

#whatsappIcon {
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
}
.mobile-menu-main.active {
    left: 0;
}
.mobile-menu-main .mobile-menu-head .logo {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 40px 30px;
    align-items: center;
}
.mobile-menu-main .mobile-menu-head .logo  img{
    width:100%;
    height:100px;
    object-fit:cover;
}
.mobile-menu1 ul li {
    padding: 15px 0;
    text-align: center;
}
.mobile-menu1 ul li a {
    color: #fff;
    font-size: 30px;
}
.mobile-menu1 ul li a:hover {
    color: var(--c1);
}
.logo a#cancel-mobile-menu {
    font-size: 20px;
    color: #fff;
}
.primary-btn {
    display: inline-block;
    position: relative;
    font-size: 16px;
    font-weight: 500;
    padding: 14px 40px;
    text-align: center;
    z-index: 1;
    border-radius: 0;
    text-transform: capitalize;
    overflow: hidden;
    transition: all 1s ease-in-out;
    border: 2px solid;
    outline: none;
}

.primary-btn::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 0%;
    height: 100%;
    transition: inherit;
    z-index: -1;
    border-radius: inherit;
    overflow: hidden;
    outline: none;
}

.primary-btn.primary-bg:hover::before {
    width: 100%;
    left: 100%;
}

.primary-btn.primary-bg {
    background: #0064d2;
    border-color: #0064d2;
    color: #fff !important;
}

.primary-btn.primary-bg:hover {
    color: #0064d2 !important;
    background-color: #fff;
}

.primary-btn.transparent-bg {
    background: transparent;
    color: #333;
    border-color: #333333;
}

.primary-btn.transparent-bg::before {
    background-color: #333;
}

.primary-btn.transparent-bg:hover::before {
    width: 100%;
}

.primary-btn.transparent-bg:hover {
    color: #fff;
}

.disable-btn {
    background-color: #b4b4c8;
    color: #fff;
    width: 100%;
    display: block;
    padding: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
}

.disable-btn:hover {
    color: #fff;
}

.bg-primary {
    background-color: #e7ecf5 !important;
}

.bg-grey {
    background-color: #4B4B4B !important;
}

a#open-mobile-menu {
    display: none;
}


/* MAIN-HEADING */



/* JS SCROLLER START */

.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #ddaa00;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #ddaa00;
}

.mCSB_scrollTools .mCSB_draggerRail {
    width: 4px;
    background: #787878;
}


/* JS SCROLLER END */


/* SLICK SLIDER CSS START */


/* SLICK SLIDER CSS START */
.home-slider .slick-prev:before {
    content: '\f104';
}


.home-slider .slick-next:before {
    content: '\f105';
}

.home-slider .slick-next:before,
.home-slider .slick-prev:before {
    font-family: FontAwesome;
    font-size: 25px;
    opacity: 1 !important;
    color: #ddaa00;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #fff;
    width: 40px;
    height: 40px;
    transition: all .8s ease-in-out;
}

.home-slider .slick-next,
.home-slider .slick-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.home-slider .slick-next {
    right: -25px;
    z-index: 1;
}

.home-slider .slick-prev {
    left: -25px;
    z-index: 1;
}

.home-slider .slick-next:hover:before,
.home-slider .slick-prev:hover:before {
    transform: rotate(360deg);
    color: #fff;
    background-color: #ddaa00;
}

.home-slider .slick-dots {
    display: flex;
    top: 50%;
    flex-direction: column;
    right: 0;
    width: 5%;
}

ul,
ul.list-inline {
    margin: 0;
    padding: 0;
}

.home-slider .slick-dots li button:before {
    width: 55px;
    height: 7px;
    content: '';
    opacity: 1;
    background: #1f1193;
}

.home-slider .slick-dots li.slick-active button:before {
    background: #fff;
}


/* SLICK SLIDER CSS END */

/* SLICK SLIDER CSS END */



/* UTILITY CSS END */


/* MOBILE-MENU CSS START */


.hamburger .hamburger-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    width: 25px;
}

.hamburger span:not(:last-child) {
    margin-bottom: 4px;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: #707070;
    border-radius: 100px;
    transition: all .5s ease-in-out;
}

.hamburger span:first-child {
    width: 50%;
}

.hamburger span:last-child {
    width: 70%;
}

.hamburger:hover span {
    width: 100%;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    padding: 30px 0;
    background: #ddaa00;
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
    z-index: 100;
    transform: translateX(100%);
    transition: all .5s ease-in-out;
}

.mobile-menu .mobile-close {
    text-align: right;
}

.mobile-menu .mobile-close a {
    display: inline-block;
    font-size: 30px;
    color: #fff;
    transition: all .8s ease-in-out;
    margin-right: 20px;
}

.mobile-menu .mobile-close a:hover {
    transform: rotate(360deg);
}

.mobile-menu .mobile-menu-body {
    max-height: 100%;
    overflow-y: auto;
    padding: 30px 0;
}

.mobile-menu-body span {
    display: none;
}

.mobile-menu .mobile-menu-body .navigation-list {
    text-align: left !important;
}

.mobile-menu .mobile-menu-body>.navigation-list>li,
.mobile-menu .mobile-menu-body li.dropdown-li>ul.dropdown-list>li {
    display: block;
    margin: 0 !important;
}

.mobile-menu .mobile-menu-body>.navigation-list>li:not(:last-child)>a {
    border-bottom: 1px solid #FFFFFF;
}

.mobile-menu .mobile-menu-body>.navigation-list>li>a,
.mobile-menu .mobile-menu-body li.dropdown-li>ul.dropdown-list>li>a {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: capitalize;
    color: #fff;
    padding: 10px 20px;
}

.mobile-menu.mobile-view {
    transform: translateX(0);
}

.mobile-menu .mobile-menu-body li.dropdown-li {
    position: relative;
}

.mobile-menu .mobile-menu-body li.dropdown-li>ul.dropdown-list {
    display: none;
    background: #ddaa00;
}

.mobile-menu .mobile-menu-body li.dropdown-li>ul.dropdown-list.dropdown-list-1 {
    margin-left: 30px;
}

.mobile-menu .mobile-menu-body li.dropdown-li>ul.dropdown-list.dropdown-list-2 {
    background: #ddaa00;
}

.mobile-menu .mobile-menu-body li.dropdown-li>a>i {
    float: right;
    font-size: 16px;
    transition: inherit;
}

.mobile-menu .mobile-menu-body li.dropdown-li.open>a>i {
    transform: rotate(90deg);
}


/* MOBILE-MENU CSS END */


/* HEADER CSS START */



/* HEADER CSS END */

.header {
    position: absolute;
    width: 100%;
    padding: 1.5rem;
    z-index: 1;
}
.navigation-list {
    display: flex;
    justify-content: space-between;
    /* gap: 3rem; */
}

.navigation-list li a {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
}
/* BANNER-SEC CSS START */

.home-slider-content h2 {
    font-size: 100px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    padding-left: 60px;
    position: relative;
}

.home-slider-content h2 span {
    display: block;
}
.home-slider-list{
    position: relative;
}

.home-slider-content {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    z-index: 0;
    transform: translate(0px, -50%);
}

.home-slider-img img {
    width: 100%;
    height: 1150px;
    object-fit: cover;
}
.home-slider-content h2:before {
    position: absolute;
    content: "";
    background-image: url(../images/vector.png);
    width: 235px;
    height: 235px;
    background-repeat: no-repeat;
    z-index: -1;
    left: -20px;
    top: -90px;
}
.website-card-items {
    background-color: #F2F2F2;
    padding: 4rem 2rem;
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 50%);
    min-height: 420px;
    transition: 0.7s ease all;
}

.website-card-content h4 {
    font-weight: 700;
    text-transform: uppercase;
    padding: 1rem 0rem;
}

.website-card-content p {
    font-family: "Poppins", Sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.9rem;
}
.website-card {
    margin-top: -10rem;
    z-index: 1;
    position: relative;
    margin-bottom: 5rem;
}
.website-card-items:hover {
    background: var(--c1);
    cursor: pointer;
    color: #fff;
}
.content-text h6 {
    font-size: 17px;
    font-weight: 700;
    font-family: poppins;
    color: #334155;
    line-height: 1.5;
    padding: 1.5rem 0rem;
}
.content-text h3 {
    font-size: 50px;
    border-bottom: 6px solid #000;
    width: fit-content;
    font-weight: 600;
    margin-bottom: 40px;
}
.year-experience {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.year-experience li {
    font-size: 17px;
    font-weight: 500;
}
.year-experience li img {
    width: 100%;
}
.content-text p {
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 30px;
}
.who-we-img img {
    width: 100%;
    height: auto;
    display: block;
}
.who-we-are {
    padding: 4rem 0;
}
.counter-sec .counter {
    font-size: 100px;
    font-weight: 600;
    color: transparent !important;
    -webkit-text-stroke: 2px #ffffff;
}
.counter-sec {
    text-align: center;
    color: #fff;
}

.counter-sec p {
    font-size: 16px;
    font-weight: 500;
}
.counter-board {background-image: url(../images/bg_count_-1.png);
    width: 100%;
    padding: 5rem;
    background-repeat: no-repeat;
} 

/* banner-inner-page start */

.we-proud h3 {margin: 0 auto 5rem;}
.website-velly-box-img img {
    width: 100%;
}

/* section-team */

.section-title h2 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
    font-family: "Oswald", sans-serif;
  }
  
  .section-title {
    border-bottom: 5px solid var(--c2);
    text-align: center;
    margin-bottom: 40px;
  }
  .team-content {
    font-family: "Oswald", sans-serif;
    text-align: center;
    padding: 28px 12px;
  }
  
  .team-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
  }
  
  .team-content h5 {
    font-weight: 300;
    font-size: 18px;
  }
  .team {
  padding: 4% 0;
  }

.website-velly-box h4 {
    font-size: 32px;
    padding-bottom: 2rem;
    font-weight: 700;
}

.website-velly-box h5 {
    font-size: 24px;
}

.website-velly-box h6 {
    font-size: 15px;
}

.website-velly-box a {
    font-size: 18px;
    font-weight: 700;
    color: #045cb4;
    text-decoration: underline;
}
  .website-velly-box {
    background-color: #F2F2F2;
    padding: 4rem 2rem;
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 50%);
    min-height: 550px;
    transition: 0.7s ease all;
    text-align: center;
}
  /* velly work ball */

  .bbb {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.bbb li img {
    width: 100%;
}

.dcma {
    text-align: center;
}

.oscar-ryan {
    background-image: url(../images/Group-12145716.png);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}
.oscar-rayan-content h3 {font-size: 50px;padding: 2rem 0rem;color: #0C0C0C;}

.oscar-rayan-content h5 {
    font-size: 24px;
    font-weight: 700;
    color: #0C0C0C;
}

.oscar-rayan-content h5 span {
    display: block;
    font-family: "Poppins", Sans-serif;
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 3rem;
    color: #686868;
}
.oscar-img {text-align: center;}

.oscar-img img {
    width: 165px;
    height: auto;
}
.oscar-sec {
    padding: 2rem 0;
}
.quotes {
    width: 150px;
    height: auto;
}
/* oscar-rayan end  */

/* FOOTER SECTION */
.footer {
    background: var(--c3);
    padding-top: 5rem;
}

.bottom-footer {
    border-top: 3px solid #ffffff;
    margin-top: 2rem;
}
ul.bottom-list li a:hover {
    color: var(--c1);
}

.copyright h4 {
    font-weight: 300;
    font-size: 18px;
    color: #fff;
    font-family: "Poppins", Sans-serif;
    /* padding-top: 1.5rem; */
    padding-bottom: 1.5rem;
    margin-top: 1.5rem;
    /* border-top: 2px solid #fff; */
}

/* progress bar start  */
.animated-progress {
    width: 100%;
    height: 10px;
    overflow: hidden;
    position: relative;
    margin-bottom: 1rem;
    background: #D9D9D9;
    border-radius: 2px;
    margin-top: 5px;
  }
  
  .animated-progress span {
    height: 100%;
    display: block;
    position: absolute;
    text-align: end;
    padding-right: 5px;
    line-height: 1.2;
    font-size: 10px;
    color: #fff;
  }
  

  .progress-yellow span {
    background: var(--c1);
}
.section-plans {
    padding: 4rem 0 4rem 0;
  }
  
.card {
    -webkit-perspective: 150rem;
    perspective: 150rem;
    -moz-perspective: 150rem;
    position: relative;
    background: unset;
    border: transparent;
    height: 410px;
    overflow: hidden;
}
  
.card__side {
    height: 450px;
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 3px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
  
  .card__side--front {
    background-color: #fff;
  }
  

  .card__side--front-3 img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  }
  
  .card__side--back {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
  }

  .card:hover .card__side--front-1,
  .card:hover .card__side--front-2,
  .card:hover .card__side--front-3 {
    -webkit-transform: rotateY(-180deg);
            transform: rotateY(-180deg);
  }
  
  .card:hover .card__side--back {
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
  }
  
section.team .team-item {
    background: #f2f2f2;
}

/* flip card end */

/* satrt here testimonial */
section#blacktesti {
    padding: 200px 50px;
    text-align: center;
    text-transform: uppercase;
    background-image: url('../images/testim_bg-1-1.jpg');
}

section#blacktesti h2 {
    font-size: 70px;
    border-bottom: 4px solid #fff;
    color:#fff;
}


/* End here testimonial section here */

/* start here testimonial section here */
.myrow {
    width: 80%;
    margin: 0 auto;
    margin-top: -130px;
    background: #1c1c1c;
    padding: 70px;
}

section#testicarosel .haedimage1  img {
    width: 25%;
    border-radius: 100%;
    margin-bottom: 20px;
}

section#testicarosel h4 {
    color: #fff !important;
    text-transform: uppercase;
    margin-bottom: 20px;
}


section#testicarosel p {
    color: #fff;
    margin-bottom: 20px;
    min-height: 130px;
}

.myrow{
    position: relative;
    z-index: 1;
}

.myrow:before {
    content: '';
    background-image: url('../images/Group-8.png');
    background-repeat: no-repeat;
    width: 193px;
    height: 125px;
    position: absolute;
    bottom: 15px;
    z-index: 999;
    right: 17px;
}

.tesimonials-slider button.slick-next.slick-arrow{
    right:-60px;
}
.tesimonials-slider button.slick-prev.slick-arrow{
    left:-60px;
}
.tesimonials-slider button.slick-next.slick-arrow:before {
    content: "\f054";
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    font-size:24px;
    
}
.tesimonials-slider button.slick-prev.slick-arrow:before {
    content: "\f053";
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    font-size:24px;
}

.tesimonials-slider .tesimonials-slide {
    padding: 0 30px;
}

.tesimonials-slider .slick-dots li button:before{
    color:orange;
    transform:scale(1.9);
}


.tesimonials-slider .slick-dots li.slick-active button:before{
      color:orange;
}

.haedimage2 img {
    background: #000 !important;
    width: 150px !important;
    border-radius: 0 !important;
    background-color: #000 !important;
}

.haedimage2 i {
    display: inline-block;
    margin-bottom: 20px;
    color: orange;
}

/* start here footer */
nav.bottom-footer-inner ul {
    display: flex;
    justify-content: end;
    gap: 30px;
    margin-top: 1.5rem;
    /* padding-top: 1.5rem; */
}
li.footer-bottom-list a {
    color: #ffffff;
}


.contact_detail ul li i {
    color: #fff;
    display: inline-block;
    margin-right: 15px;
}

.contact_detail ul li a {
    color: #fff !important;
}

.contact_detail li {
    color: #fff;
}

.contact_detail {
    margin-top: 20px;
}
/* End here footer here */


/* start here contact us */
section.inner-banner {
    height: 500px;
    background: url('../images/cheerful-young-caucasian-businessman.jpg');
    background-position: center;
    background-size:cover;
    margin-bottom:70px;
    position:relative;
    background-attachment: fixed;
    display: flex;
    align-content: flex-end;
    align-items: flex-end;
}



.inner-heading {padding-bottom: 90px;position: relative;}

.inner-heading h3 {
    font-size: 60px;
    color: #fff;
}

.inner-heading h6 {
    font-size: 20px;
    color: #fff;
}

section.inner-banner:before {
    content: '';
    background-color: #00000038;
    width: 100%;
    position: absolute;
    height: 100%;
}

section.icon-contact {
    padding: 70px 0;
}

.conheading h3 {
    text-align: left;
    margin-bottom: 30px;
    text-transform:uppercase;
    border-bottom:2px solid #ccc;
    padding-bottom:15px;
    font-size:50px;
    position:relative;
}


.conheading h3:before {
    content: '';
    width: 30%;
    height: 2px;
    position: absolute;
    bottom: -2px;
    background: #262222d4;
}

.main-icon {
    display: flex;
    margin-top:30px;
   
}

.iconbox {
    width: 50PX;
    height: 50PX;
    background: #222;
    TEXT-ALIGN:CENTER;
    DISPLAY:INLINE-BLOCK;
    LINE-HEIGHT:50PX;
    border-radius:10px
  
}

.iconbox i{
    color:#ffff;
}

.iconcontact {
      margin-left:20px;
}

.iconcontact a {
    display: block;
    color:#000;
}

.iconcontact p {
    font-family: 'Oswald';
}

.con-formheading {
    margin-bottom: 30px;
}

.con-formheading h3 {
    font-size: 40px;
    margin-bottom: 15px;
}

.inputfield textarea::placeholder {
    font-family: 'Oswald';
    color: #000;
}

.inputfield textarea{
    resize:none;
}
.inputfield input::placeholder {
    color: #000;
}

section.contact-form .form-area {
    box-shadow: 0px 0px 33px -22PX;
    padding: 30px 30px;
}

section.contact-form {
    margin-bottom: 90px;
}

.contact-form .form-control {
   
    background-color: #ebebeb !important;
    padding: 12px 16px !important;
    border: none !important;
    border-radius: inherit !important;
}

button.mybutton {
    padding: 15px 70px;
    display: inline-block;
    margin-top: 22px;
    background: var(--pink-color);
    color: #fff;
    text-transform: uppercase;
}
button.mybutton:hover{
    background:#222 !important;
}

.singleimage img {
    width: 100%;
    height: auto;
}


nav.footer-nav ul {
    list-style: none;
    padding: 10px 0 ;
    margin:0;
}
nav.footer-nav ul li a{
    color:white;
    padding:20px 0;
}
nav.footer-nav ul li a:hover {
    color: #2619a1;
}
nav.footer-nav ul li {
    padding:10px 0;
}

p.policy-para {
    padding: 20px 0;
    font-size: 20px;
}
.policy-item h4 {
    font-size:28px;
    padding:10px 0;
}
.policy-item ol{
    list-style:decimal !important;
    padding: 0;
}
.policy-item ol li{
    padding: 10px 0 0 0 ;
    font-size: 18px;
    line-height: 180%;
}
.policy-item p{
  font-size:18px;
  padding: 20px 0 10px;
  line-height: 34px;
}
/* End here contact us */


/* services starts here */

/* services starts here */
.services {
    padding: 50px 0;
}

.services .services-heading {
    padding: 20px 0 ;
}

.services .services-heading h3 {
    font-size: 44px;
    font-weight: 700;
    text-align: center;
    color: black;
}

.services .services-heading h3 span {
    color: var(--pink-color);
}

.services .services-heading p {
    font-size: 22px;
    font-weight: 400;
    text-align: center;
}

section.services .service-item {
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow: 0px 0px 20px -10px;
    padding: 60px 20px;
    min-height: 380px;
    margin: 20px 0;
    border-radius: 15px;
    transition: all .9s;
}

section.services .service-item img {
    transition: all 0.7s;
}

.service-item .services-content {
    position: relative;
    z-index: 2;
}

.service-item .services-content h5 {
    color: black;
    font-size: 24px;
    font-weight: 600;
    margin: 25px 0;
}

.service-item .services-content h5 span {
    color: brown;
}

.service-item .services-content p {
    color: black;
    font-size: 16px;
    font-weight: 500;
}

section.services .service-item:before {
    content: "";
    display: table;
    position: absolute;
    width: 5%;
    height: 5%;
    background: var(--c1);
    border-radius: 50%;
    top:90%;
    left: 90%;
    z-index: 0;
    transition: all 0.7s ease-in-out;
}

section.services .service-item:hover {
    transform: scale(1.05);
}

section.services .service-item:hover:hover:before {
    bottom: 0;
    top:0;
    right:0;
    left: 0;
    border-radius: 0;
    width: 100%;
    height: 100%;
    
}

/* section.services .service-item:hover h5 , section.services .service-item:hover p {
    color: white;
}

section.services .service-item:hover span {
    color: white;
} */

section.services .service-item:hover img {
    filter: brightness(0) invert(1);
}


/* services ends here  */


/* packages starts here */

/* packages starts here  */
section.main-packages {
    padding: 70px 0;
}

section.main-packages .main-heading h3 {
    font-size: 50px;
    font-weight: 700;
    text-align: center;
    color: var(--black-color)
}

section.main-packages .main-heading h3 span {
    color: var(--pink-color)
}

section.main-packages .main-heading p {
    font-size: 22px;
    font-weight: 400;
    text-align: center;
    color: var(--black-color)
}

.main-packages .nav-item {
    width: 17%;
    margin: 0 10px;
}

/* .main-packages .nav-link {
    position: relative;
    background: var(--pink-color);
    color: var(--black-color);
    font-family: var(--family);
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0;
    width: 100%;
    padding: 10px;
    box-shadow: 0 0 20px -10px;
    transition: all 0.7s ease;
    overflow: hidden;
}

.main-packages .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 100%;
    background-color: var(--black-color);
    transition: all 0.9s ease;
    z-index: -1;
}

.main-packages .nav-link:hover::before {
    width: 100%;
    left: 0;
}

.main-packages .nav-link:hover {
    color: white;
} */
.main-packages .nav-link {
    position: relative;
    background: var(--pink-color);
    color: var(--black-color);
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0;
    width: 100%;
    padding: 10px;
    box-shadow: 0 0 20px -10px;
    transition: all 0.7s ease;
    border-top-right-radius:10px;
    border-bottom-left-radius:10px;
  }
  
  .main-packages .nav-link:after,
  .main-packages .nav-link:before {
    content: " ";
    width: 10px;
    height: 10px;
    position: absolute;
    border: 0px solid #fff;
    transition: all 1s;
  }
  
  .main-packages .nav-link:after {
    top: -1px;
    left: -1px;
    border-top: 5px solid black;
    border-left: 5px solid black;
  }
  
  .main-packages .nav-link:before {
    bottom: -1px;
    right: -1px;
    border-bottom: 5px solid black;
    border-right: 5px solid black;
  }
  
  .main-packages .nav-link:hover {
    border-top-right-radius: 0px;
    border-bottom-left-radius: 0px;
  }
  
  .main-packages .nav-link:hover:before, .main-packages .nav-link:hover:after {
    width: 104%;
    height: 116%;
    z-index: 1;
}
  
.main-packages .nav-link.active {
    background: var(--black-color);
    
}
.main-packages .nav-link.active:before, .main-packages .nav-link.active:after {
    width: 104%;
    height: 116%;
    z-index: 1;
}
.main-packages .package-item {
    margin: 20px 0;
    background: white;
    border-radius: 20px ;
    box-shadow: 0 0 20px -10px ;
}

.main-packages .package-item .package-header {
    position: relative;
    overflow: hidden;
    padding: 40px 10px;
    background-color: var(--black-color);
    border-radius: 20px 20px 0 0;
}

.main-packages .package-item .package-header::before {
    content: '50% Off';
    position: absolute;
    width: 150px;
    top: 12px;
    right: -42px;
    color: black;
    background: var(--c1);
    transform: rotate(37deg);
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 30px;
}

.main-packages .package-item .package-header h3 {
    color: white;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin: 10px 0;
}

.main-packages .package-item .package-header h3 span {
    color: var(--pink-color)
}

.main-packages .package-item .package-header h2 {
    color: white;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
}

.main-packages .package-item .package-header h2 sup {
    text-decoration: line-through;
}

.main-packages .package-item .package-body {
    padding: 20px;
    margin-bottom: 20px;
}

.package-body h6 {
    font-weight: 500;
    font-size: 24px;
    color: var(--black-color);
    border-bottom: 1px solid var(--black-color);
    padding-bottom: 13px;
    margin-bottom: 12px;
}

.main-packages .package-item .package-body-data {
    max-height: 250px;
    overflow-y: scroll;
    overflow-x: hidden;
}

.main-packages .package-item .package-body-data::-webkit-scrollbar {
    width: 3px;
}

.main-packages .package-item .package-body-data::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.233);
}

.main-packages .package-item .package-body-data::-webkit-scrollbar-thumb {
    background: var(--pink-color);
    border-radius: 1px;
}

.package-body ul li {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 36px;
    letter-spacing: 0.07em;
    color: var(--black-color);
    position: relative;
}

.main-packages .package-item .package-footer {
    padding: 15px 10px ;
    text-align: center;
}

.main-packages .package-item .package-footer a {
    color: black;
    border: 2px solid black;
    background: transparent;
    text-decoration: none;
    padding: 12px 25px ;
    margin: 10px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 500;
    transition: all 0.9s ease;
}

.main-packages .package-item .package-footer a:hover {
    background: black;
    color: white;
}

.main-packages .package-item .package-footer a.ordernow {
    border: 2px solid brown;
    color: brown;
}

.main-packages .package-item .package-footer a.ordernow:hover {
    color: white;
    background-color: brown;
}

.main-packages .package-item .package-footer p {
    margin: 25px 0;
    font-size: 16px;
    font-weight: 500;
}

/* portfolio starts here */
.portfolio {
    padding: 70px 0;
}

.portfolio .content-style-1 {
    text-align: center;
    margin-bottom: 45px;
}

.portfolio .content-style-1 h2 {
    font-size: 50px;
    font-weight: 700;
    text-align: center;
}

.portfolio .content-style-1 h2 span {
    color: var(--pink-color);
}

.portfolio .content-style-1 p {
    font-size: 22px;
    font-weight: 400;
    text-align: center;
}

.portfolio .imageBox {
    height: 450px;
    width: auto;
    object-fit: cover;
    overflow: hidden;
    transition: 0.5s;
    margin: 10px 0;
}


.portfolio .imageBox:hover img {
    object-position: bottom ;
    cursor: pointer;
}

.portfolio .imageBox img {
    height: 100%;
    object-fit: cover;
    object-position: top ;
    transition: all 3s ease-in-out;
    width: 100%;
}

/* start here responsive here */

@media (max-width: 1600px) {}



@media (max-width: 1440px) {
.home-slider-content h2 {
    font-size: 59px;

}

.home-slider .slick-dots {
  right: 59px;
   
}

}



@media (max-width: 1366px) {}



@media (max-width: 1280px) {}


@media (max-width: 1024px) {
       header.header .logo img  {
    width: 300px !important;
}
.we-accept img {
    width: 100%;
}
a#open-mobile-menu {
    display: block;
}
.oscar-ryan {
  background-size: 100% 100%;
}

.website-card-items p {
    min-height: 210px;
}
.main-packages .nav-item {
    width: 30%;
    margin: 0 10px;
}
}

@media (max-width: 800px) {
    section.main-packages ul#pills-tab {
        justify-content: center;
        flex-wrap: nowrap;
        justify-content: flex-start !important;
        overflow-y: scroll;
    }
    section.main-packages ul#pills-tab li {
        width: auto;
        margin: 0 10px;
    }
    .main-packages .nav-link {
        margin: 10px 0px;
        width: 200px;
    }
}


@media (max-width: 768px) {
.website-card-items {
    background-color: #F2F2F2;
    padding: 30px;
    margin-bottom:30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.website-card-items p {
    min-height: 0;
}

.website-card {
  margin-bottom: 0rem;
}

.who-we-content.content-text {
    margin-bottom: 30px;
}

.counter-board {
   
    background-size: cover;
    padding: 3rem;
}

.pc-p-4 {
    padding: 0 0;
}

.website-velly-box {margin-bottom: 30px;}

section.we-proud.content-text.pc-p-4 {
    margin-top: 50px;
}
.website-velly-box {
 
    padding: 1rem 2rem;

}

section.team .col {
    display: block !important;
    flex: none;
}

section.team img{
  width:100%
}

.we-accept img {
    width: 70%;
}

section.icon-contact {
    padding: 0 0;
    margin-bottom: 50px;
}



section.icon-contact .col-md-6:last-child {
    margin-top: 20px;
}

a#open-mobile-menu {
    display: block;
}

header.header .logo {
    width: 100%;
    display: flex;
    justify-content: space-between;
    width: 100% !important;
}

header.header .col-md-6 {
    width: 100%;
}

}

@media (max-width: 690px) {
.tesimonials-slider .tesimonials-slide {
    padding: 0 0px;
}

.inputfield {
    margin-bottom: 15px;
}

form#myform .mb-3 {
    margin: 0 !important;
}

.inputfield textarea {
    width: 95%;
    margin: 0 auto;
    text-transform: capitalize;
}

section.icon-contact .col-12 {
    margin-bottom: 15px;
}


}

@media (max-width: 540px) {
.home-slider-content h2:before{
    content: '' !important;
    background-image:url('');
width:0 !important;
    height:0 !important;
}





.home-slider-content h2 {
    font-size: 35px !important;
    padding-left: 0;
}


.home-slider-img img {
    width: 100%;
    height: 475px;
    object-fit: cover;
}

section#blacktesti h2 {
    font-size: 34px;
}

.content-text h3 {
    font-size: 34px;
   
}
.myrow {
    width: 100%;
}

.section-title h2 {
    font-size: 30px;
   
}

.myrow {
  padding: 30px;
}

.tesimonials-slider button.slick-prev.slick-arrow {
    left: -34px;
}

.tesimonials-slider button.slick-next.slick-arrow {
    right: -34px;
}

.contact_detail {
    margin-top: 20px;
    margin-bottom: 20px;
}

.we-accept img {
margin-top:15px;
    text-align: center !important;
    width: 100%;
    text-align: center;
}

.we-accept {
    width: 70%;
    margin: 0 auto;
}
.contact_detail li {
    color: #fff;
    padding: 4px 0;
}
.website-velly-box {
    min-height: auto;
    padding: 30px 0 !important;
}
section.we-proud .we-proud h3 {
    margin: 0 auto 2.5rem;
}
.footer-logo {
    text-align: center;
}
.contact_detail {
    text-align: center;
}
.footer {
    background: var(--c3);
    padding-top: 3rem;
}
.copyright h4 {
    font-size: 15px;
    padding: 12px 0;
}
.inner-heading h3 {
    font-size: 40px;   
}

section.inner-banner {
    height: 364px;

}

.conheading h3 {
    font-size: 34px;
}

section.contact-form .form-area {
    padding: 15px 10px;
}

.inputfield button {
    text-align: center;
    margin: 0 auto;
    display: inherit;
}
nav.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

}
.footer-logo img {
    width: 60%;
    height: 82px;
    object-fit: cover;
}
@media(max-width: 568px){
 
}

@media (max-width: 375px) {}


@media (max-width: 360px) {
       header.header .logo img  {
    width: 220px !important;
}
}

/* End here responsive here */

.contact-container {
    position: fixed;
    top: 200px;
    right: 0px;
    transform: translateY(50%);
    display: flex;
    align-items: end;
    transition: right 0.4s ease-in-out;
}

button#getInTouchBtn {
    position: relative;
    bottom: 0px;
    font-size: 22px;
    font-weight: 400;
    transition: transform 0.3s ease-in-out;
    transform: 0.3s animation-timing-function;
    transform: rotate(270deg);
    left: 41px;
    padding: 13px 20px 13px 20px;
    background: var(--c1);
    color: var(--c2);
    border-radius: 30px 30px 0 0;
    border: none;
    outline: none;
}





/*banner start*/
.modal-body .options {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
    }

    .option-card {
      text-align: center;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 40px 0;
      flex: 1;
      transition: all 0.3s;
      height: 250px;
      margin: 30px 5px 25px 5px;
    }

    .option-card:hover {
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .option-icon {
      font-size: 36px;
      margin-bottom: 10px;
    }

    .btn-custom {
    background-color: #fddd6c;
    color: #1e1e1e;
    padding: 10px 20px;
    margin-top: 10px;
    width: 60%;
    border-radius: 48px;
}

    .btn-custom:hover {
      background-color: #212529;
      color: #fff;
      border: none;
    }

    .modal-dialog {
      max-width: 950px;
    }

    .modal-body {
      position: relative;
      flex: 1 1 auto;
      /* text-align: center; */
    }

    .modal-header h5 {
      position: absolute;
      left: 408px;
      font-size: 25px;
      top: 22px;
    }

    .modal-header {
      border-bottom: none;
    }

    /*banner start*/
    .heading-form {
      margin-bottom: 20px;
    }

    .heading-form h6 {
      font-family: 'Poppins', sans-serif;
      font-style: normal;
      font-weight: 600;
      font-size: 20px;
      line-height: 30px;
      color: #E92747;
      margin: 0 0 10px 0;
    }

    .heading-form h3 {
      font-family: 'Poppins', sans-serif;
      font-style: normal;
      font-weight: 600;
      font-size: 32px;
      line-height: 34px;
      text-align: center;
      color: #000000;
    }

    .main-banner-contact input {
      height: 45px;
      border: 1px solid #CACACA !important;
      margin-bottom: 20px;
      width: 100%;
      padding: 0 10px;
    }

    .main-banner-contact textarea {
      height: 100px;
      width: 100%;
      border: 1px solid #CACACA !important;
      margin-bottom: 20px;
      resize: none;
      padding: 10px 10px;
    }

    .main-banner-contact textarea::placeholder {
      color: #CACACA;
      font-weight: 600;
      font-size: 14px;
      font-family: 'Poppins', sans-serif;
    }

    .main-banner-contact input::placeholder {
      color: #CACACA;
      font-weight: 600;
      font-size: 14px;
      font-family: 'Poppins', sans-serif;
    }

    input#submit {
      padding: 13px 0px;
      background: #000000;
      color: #fff;
      border-radius: 16px;
      text-transform: uppercase;
      font-size: 20px;
      letter-spacing: 1px;
      border: none;
      width: 40%;
      outline: none;
    }

    input#submit:hover {
      background: var(--c1);
      color: #000000;
    }

    .banner-item p span {
      color: #e92747;
    }

    .button-area a:before {
      content: '';
      display: table;
      position: absolute;
      width: 100%;
      height: 100%;
      background: #fff;
      left: -100%;
      top: 0;
      transition: all .7s;
    }

    .button-area a:hover:before {
      left: 0;
    }

    .button-area a span {
      position: relative;
      /* color: black; */
    }

    button#submit {
      background: #000000;
      color: white;
      border-radius: 2px;
      width: 100%;
      padding: 15px;
    }

    button#submit:hover {
      background: #e1f92a;
      color: #000000;
    }

    /* End here banner here */
    .sub-dialog {
      width: 30%;
    }

    button.btn-close.sub-close {
      position: absolute;
      top: 7px;
      right: 7px;
    }

    .sub-body {
    height: 624px;
    padding-top: 32px;
}
    span.cta-v2__content {
    padding: 0px 14px;
    line-height: 49px;
}
.banner-btn button {
    width: 21%;
    font-size: 24px;
    font-family: 'Oswald', sans-serif;
    text-transform: capitalize;
    font-weight: 400;
    background: #212529;
    color: #fff;
    border: 2px solid #212529;
    border-radius: 12px;
    margin-left: 74px;
    border: none;
    padding: 6px 6px 6px 6px;
        outline: none;
}
.banner-btn button:hover {
      background-color: #044787;
      color: #fff;
      border:none;
      outline: none;
    }
    h5.modal-title-2 {
    position: absolute;
    left: 191px;
    font-size: 35px;
    top: 22px;
}

a.frame-anc {
    color: #000;
    text-decoration: underline;
}



.policy-item ul li {
    margin-bottom: 20px;
    list-style: disc;
}
.policy-item ul li a {
    text-decoration: underline;
    color: #000;
}
/*cookies modal*/

section.policy-main .container {
    padding: 0;
}
section.policy-main {
    margin-bottom: 40px;
}
.policy-item p a {
    color: #000;
    text-decoration: underline;
}
.amazon-img img {
    width: 100%;
    height: 109px;
    object-fit: cover;
}
span.cta-v2__text {
    color: #000;
    text-decoration: underline;
}
  .cookies-modal {
    position: fixed;
    bottom: 0; /* Align with the footer */
    left: 0;   /* Stick to the left side */
    z-index: 1050; /* Ensure it appears above other elements */
    padding: 16px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px 8px 0 0;
    max-width: 300px;
    width: 100%;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  }

  .cookies-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .cookies-content p {
    margin: 0;
    font-size: 14px;
    flex-grow: 1;
  }

  .cookies-content button {
    margin-left: 8px;
  }



