/*------------------------------------------------------------------
[Master Stylesheet]

Project:    DezVu
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[Table of contents]

1. Body
2. Header / #header
3. banner section / #banner
4. sloution box section / #sloution box 
5. service section / #service
6. help section / #help
7. client section / #client
8. work section / #work
9. tastimonials section / #tastimonials
10. information section / #information
11. footer section / #footer
12. price plan page css  / #price plan page
13. team details page css  / #team details page
14. contact page css / #contact page
19. modal css / #modal
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
# [Color codes]

# primary--color: #0e151d
# secondary--color: #fff
# text-color: #545454
# accent-color: #0cbe7e
# dark-blue-color:#3b3c4e
# */
/*------------------------------------------------------------------
[Typography]

Body copy:     'Jost', sans-serif;

-------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700&display=swap');
body {
	font-family: 'Jost', sans-serif;
}
:root {
	--primary--color: #0e151d;
	--secondary--color: #fff;
	--text-color: #545454;
	--accent-color: #0cbe7e;
	--dark-blue-color:#3b3c4e;
}
/****** headerm and banner section******/
.header-and-banner-con{
    background: url(../image/banner-bg-img.png) no-repeat top left;
    background-size: cover;
}
.header-main-con{
    padding: 40px 0;
}
.header-con .navbar-nav .nav-item .nav-link{
	font-size: 18px;
	color: var(--primary--color) !important;
	font-weight: 700;
}
.header-con .navbar-nav .nav-item .nav-link:hover{
	color: var(--accent-color) !important;
}
.header-con .navbar-nav .nav-item .nav-link span {
    font-size: 12px;
    margin-bottom: -4px;
    text-align: end;
}
.header-con .navbar-nav .nav-item {
    padding: 0 28px;
}
.banner-left-con h1{
	font-weight: 700;
    margin-bottom: 24px;
}
.banner-left-con p {
    margin-bottom: 35px;
}
.banner-left-con span{
	font-weight: 700;
	color: var(--dark-blue-color);
	font-size: 24px;
	margin-top: 40px;
}
.banner-left-con small{
	font-weight: 700;
	color: var(--accent-color);
	font-size: 24px;
}
.banner-img-detail{
    width: 320px;
    height: 190px;
    background: var(--secondary--color);
    box-shadow: 1px 1px 60px 0px rgb(0 0 0 / 20%);
    position: absolute;
    bottom: 50px;
    left: -125px;
    border-radius: 0 38px 65px 38px;
    padding: 45px 10px 36px;
    text-align: center;
}
.banner-img-detail h3{
	font-weight: 700;
}
.banner-img-detail h3 span{
	color: #d8c4b6;
	text-transform: none;
}
.banner-main-con{
	padding-top: 88px;
	padding-bottom: 132px;
}
.dropdown-item{
	font-size: 16px;
	font-weight: 500;
	color: var(--primary--color);

	padding: 8px 24px;
}
.dropdown-menu{
    border-radius: 8px;
    background: var(--secondary--color);
    box-shadow: 1px 1px 6px 0px rgb(0 0 0 / 20%);
    border: 0;
}
.dropdown-item:hover{
	background-color: var(--accent-color);
	color: #fff;
}
.dropdown-menu .dropdown-item:first-child {
    border-radius: 8px 8px 0 0;
}
.dropdown-menu .dropdown-item:last-child{
    border-radius:0 0 8px 8px;
}
/****** headerm and banner section******/
/****** our brand section ********/
.brand-section {
  background: linear-gradient(90deg, #ffffff, #ffffff, #ffffff);
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  margin: 40px auto;
  max-width: 1100px;
}

.brand-title {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary--color);
  white-space: nowrap;
}

.brand-logos {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  flex: 1;
  margin-left: 0px;
}

.brand-logos img {
  height: 80px;          /* atur tinggi seragam */
  max-width: 150px;      /* batas lebar biar nggak melebar */
  object-fit: contain;   /* biar proporsi gambar tetap terjaga */
  transition: transform 0.3s ease, filter 0.3s ease;
}

.brand-logos img:hover {
  transform: scale(1.1);
  filter: grayscale(0);
}
.brand-con {
  padding-top: 0 !important;
  margin-top: -175px; /* tarik ke atas */
}
.certified-by {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  color: #333;
}

.cert-logo {
  max-height: 60px;
  object-fit: contain;
}
/* Responsive */
@media (max-width: 700px) {
  .brand-section {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .brand-title {
    margin-bottom: 15px;
  }

  .brand-logos {
    gap: 20px;
    margin-left: 0;
  }

  .brand-logos img {
    height: 40px;
  }
}
/****** our brand section ********/
/****** sloution box section ********/
.sloution-box-content{
	background: url(../image/sloution-box-bg-img.png) no-repeat center;
	background-size: cover;
	padding: 100px 96px;	
}
.sloution-box-right-content {
    padding-left: 78px;
}
.sloution-box-right-content figure{
	margin-bottom: 30px;
}
.sloution-box-right-content figure img,
.testimonials-content figure img
{
	transition-duration: .3s;
    transition-property: transform;
    transition-timing-function: ease-out;
}
.sloution-box-right-content figure img:hover,
.testimonials-content figure img:hover{
	transform: translateY(-8px);
}
.sloution-box-right-content h2{
	font-weight: 700;
	margin-bottom: 30px;
}
.sloution-box-right-content p {
    margin-bottom: 30px;
}
/****** sloution box section ********/
/****** team-style (replace service box) ********/
.service-box-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 0 38px 85px 38px;
  background: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.service-box-item:hover {
  box-shadow: 0 0 60px rgba(0,0,0,0.1);
  transform: translateY(-6px);
}

/* foto orang */
.service-box-item figure {
  margin: 0 auto 16px;
  background: linear-gradient(135deg, #f8faff, #eaf7f4);
  border-radius: 0 38px 85px 38px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 350px;
}

.service-box-item figure img {
  max-width: 15	0%;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.service-box-item:hover figure img {
  transform: scale(1.05);
}

/* nama */
.service-box-item h4 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
  line-height: 1.4;
}

/* jabatan */
.service-box-item p {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-color);
}

/* hapus style link lama */
.service-box-item a {
  display: none;
}

/* sosmed */
.team-social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.team-social a {
  font-size: 20px;
  color: var(--primary--color);
  transition: 0.3s;
}

.team-social a:hover {
  color: var(--accent-color);
  transform: translateY(-3px);
}

/******* help section ********/
.help-con {
  background: url(../image/help-bg-img.jpg) no-repeat top right;
  background-size: cover;
}

/* Buat kotak video */
.help-left-con {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.help-video-box {
  width: 100%;          /* default isi kolom penuh */
  max-width: 2000px;     /* lebar maksimal (customizable) */
  height: 300px;        /* tinggi custom */
  margin: 0 auto;
  border-radius: 10px;  /* kalau mau full kotak ubah ke 0 */
  box-shadow: 0 25px 25px rgba(0,0,0,0.1);
  overflow: hidden;
  position: relative;
}

.help-video-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Judul */
.help-right-con h2 span {
  z-index: 1;
  color: var(--dark-blue-color);
  font-size: 38px;   /* ubah sesuai kebutuhan, misalnya 16px */
  line-height: 1.;  /* biar lebih rapi dan mudah dibaca */
  color: #213555;       /* opsional, untuk kontras lebih jelas */
}

.help-right-con h2 span::after {
  bottom: 5px;
  background-color: #213555; /* biru tua */
}

/* Elemen lama (kotak kecil) disembunyikan */
.client-details-box,
.designer-con,
.commetns-con {
  display: none !important;
}
/******* help section ********/

/*** client section *****/
.client-con{
  background: url(../image/work-bg-img1.jpg) no-repeat center;
  background-size: cover;
}

.client-box ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* biar rata tengah */
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.client-box ul li {
  flex: 0 1 calc(20% - 25px); /* 4 kolom per baris */
  max-width: calc(20% - 25px);
  height: 200px;
  border-radius: 0 38px 38px 38px;
  background: #f2f6fc;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* animasi hover & klik */
.client-box ul li:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.client-box ul li:active {
  transform: scale(0.95);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.1s ease;
}

.client-box-item {
  text-align: center;
}

.client-box-item figure {
  margin-bottom: 5px;
}

.client-box-item p {
  font-weight: 700;
  font-size: 12px; /* kecilkan ukuran font */
  line-height: 1.2; /* biar rapi */
  margin: 0; /* reset margin bawaan */
  padding: 0 12px; /* kasih jarak kiri kanan */
  word-wrap: break-word; /* biar teks panjang otomatis turun */
}

.client-box ul li:nth-child(2),
.client-box ul li:nth-child(3),
.client-box ul li:nth-child(4),
.client-box ul li:last-child {
  background: #f2f6fc;
}

.static-con h2 {
  font-weight: 700;
}

.client-box {
  margin-bottom: 72px;
}

.static-con p {
  margin-left: 14px;
  line-height: 24px;
}

/*** client section *****/

/*** work section *****/
.work-con {
  background: url(../image/work-bg-img1.jpg) no-repeat center;
  background-size: cover;
}

/* Grid container untuk kotak-kotak */
.work-portfolio-box {
  display: grid;
  grid-template-columns: repeat(1, 1fr); /* 2 kolom */
  gap: 30px 30px; /* jarak antar baris & antar kolom */
}

.work-portfolio-box a {
  text-decoration: none;
}

.work-portfolio-box-content span {
  font-size: 14px;
  color: var(--secondary--color);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.work-portfolio-box-content h3 {
  font-weight: 700;
  position: relative;
  z-index: 1;
  color: var(--secondary--color);
}

.work-portfolio-box-content {
  position: absolute;
  bottom: 30px;
  left: 40px;
  z-index: 1;
  display: none;
}

.work-portfolio-box-item {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
}

.work-portfolio-box-item:hover:after {
  content: "";
  width: 100%;
  height: 100%;
  background: #213555;
  opacity: 0.8;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 32px;
}

.work-portfolio-box-item:hover .work-portfolio-box-content {
  display: block;
}

.work-portfolio-box-content h3::after {
  background: #213555;
}

/*** work section *****/
/**** testimonials section****/
.tastimonials-con {
    background: url(../image/tastimonials-bg-img.png) no-repeat center;
    background-size: cover;
}

.testimonials-content h6 {
    font-weight: 600;
    margin-bottom: 14px;
}

.testimonials-content h2 {
    font-weight: 700;
    margin-bottom: 28px;
}

.testimonials-content p {
    font-size: 24px;
    line-height: 36px;
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 26px;
}

.carousel-control-prev {
    left: 47px;
}

.testimonials-inner-content span:last-child {
    font-size: 18px;
    line-height: 16px;
    color: var(--text-color);
}

.auther-name {
    color: var(--accent-color);
    line-height: 22px;
    margin-bottom: 10px;
    font-weight: 700;
}

.carousel-control-next,
.carousel-control-prev {
    opacity: 1;
    top: inherit;
    bottom: -86px;
    width: auto;
}

.carousel-control-prev {
    left: inherit;
    right: 60px;
}

.carousel-control-next:hover,
.carousel-control-prev:hover {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: none;
}

.carousel-control-prev span,
.carousel-control-next span {
    width: 50px;
    height: 50px;
    border-radius: 50% 50% 50% 0px;
    font-size: 20px;
    border: 2px solid var(--text-color);
    color: var(--text-color);
}

.carousel-control-next span {
    border-radius: 50% 50% 0 50%;
}

.carousel-control-prev span:hover,
.carousel-control-next span:hover {
    background: var(--accent-color);
    border-color: transparent;
    color: var(--secondary--color);
}

.carousel-control-next {
    left: inherit;
    right: 0;
}

.tastimonials-left-con figure::before {
    content: "";
    width: 660px;
    height: 600px;
    position: absolute;
    top: -26px;
    left: -84px;
    background: url(../image/tastimonials-lft-bg-img.png) no-repeat top left;
}

.tastimonials-left-con img {
    position: relative;
    z-index: 1;
}

.testimonials-content figure {
    margin-bottom: 31px;
    margin-top: 8px;
}

.testimonials-content h2 span {
    position: relative;
    color: var(--accent-color);
}

.testimonials-content h2 span::after {
    bottom: 13px;
}

/* === Tambahan untuk perbesar logo Google Reviews === */
.testimonials-content img.google-review-logo {
    width: 160px;   /* ubah sesuai kebutuhan (contoh: 140px / 180px) */
    height: auto;
    margin-bottom: 20px;
    display: block;
}
/**** testimonials section****/

/****information section***/
.information-inner-con:after{
	background: url(../image/human-img2.png) no-repeat top left;
	width: 500px;
	height: 750px;
	top: -133px;
}
.service-box-item h4{
	line-height: 30px;
}
.information-inner-con .service-box-item:hover{
	background: var(--accent-color);
}
.information-inner-con .service-box-item:hover a{
	background-color: var(--secondary--color);
	color: var(--text-color);
}
.information-inner-con .service-box-item:hover h4,
.information-inner-con .service-box-item:hover p{
	color: var(--secondary--color);
}
.blog-main-con .service-box .service-box-item img {
    width: 100% !important;
    height: auto !important;
}
/****information section***/
/****ARTIKEL SECTION***/
.service-box-item a {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 18px;
  background: #00a5e0;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.service-box-item a:hover {
  background: #007bb5;
}
.service-box-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

/****ARTIKEL SECTION***/
/**** New Footer Section ****/
.footer-bpg {
  color: #ffffff; /* semua teks default putih */
}

.footer-bpg h6 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-bpg p,
.footer-bpg a,
.footer-bpg li,
.footer-bpg span {
  color: #ffffff;
  font-size: 15px;
  line-height: 24px;
}

.footer-bpg a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bpg a:hover {
  color: var(--accent-color); /* pakai warna aksen saat hover */
}

.footer-bpg .social-icon li a span {
  font-size: 20px;
  margin: 0 8px;
  transition: all 0.3s ease;
  color: #ffffff;
}

.footer-bpg .social-icon li a span:hover {
  color: var(--accent-color);
  transform: translateY(-5px);
}

/* Tombol Playstore & App Store */
.footer-bpg .app-links {
  display: flex;
  align-items: center;
  gap: 12px; /* jarak antar tombol */
}

.footer-bpg .app-links img:hover {
  transform: scale(1.1);
}

/* Gambar HP */
.footer-bpg .footer-phone img {
  width: 250px !important;  /* pakai width fix biar override bootstrap */
  max-width: none !important;
  height: auto !important;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.footer-bpg .footer-phone img:hover {
  transform: scale(1.05);
}
/* Override khusus untuk footer kanan */
.footer-bpg .footer-right {
  color: #000000; /* semua teks default hitam */
  display: flex;
  justify-content: flex-start; /* posisikan konten mepet kiri */
}

/* Supaya isi di dalamnya tidak terlalu tengah */
.footer-bpg .footer-app {
  margin-left: -80px; /* geser lebih ke kiri */
}
.footer-bpg .footer-right h6,
.footer-bpg .footer-right h7,
.footer-bpg .footer-right p {
  color: #000000; /* heading & paragraf hitam */
}

.footer-bpg .footer-r

.generic-banner-con{
	background: url(../image/generic-banner.png) no-repeat center;
	background-size: cover;
}
.generic-banner-con .banner-con h1{
	font-weight: 700;
	margin-bottom: 27px;
}
.generic-banner-con .banner-con p{
	margin-bottom: 29px;
}
.generic-banner-con .banner-main-con{
	padding-bottom: 120px;
	padding-top: 120px;
}
.generic-banner-link a{
	text-decoration: none;
	color: var(--text-color);
	font-size: 16px;
}
.generic-banner-link span{
	font-size: 16px;
}
.generic-banner-link a:hover{
	color: var(--accent-color);
}
.project-con h2{
	font-weight: 700;
	margin-bottom: 44px;
}
.project-con h2 span{
	color: var(--accent-color);
}
.project-inner-con figure{
	margin-bottom: 32px;
}

/********* price plan page**********/
.price-plan-inner-con{
	margin-top: -307px;
} 
.price-plan-item{
	background: var(--secondary--color);
	padding: 40px;
	border-radius: 0 28px 28px 28px;
}
.price-plan-item figure{
	margin-bottom: 14px;
}
.price-plan-item h4{
	font-weight: 700;
	margin-bottom: 15px;
	color: var(--primary--color);
}
.price-plan-list li{
	color: var(--text-color);
	font-size: 18px;
	line-height: 20px;
	margin-bottom: 18px;
}
.price-plan-banner .banner-main-con {
    padding-bottom: 307px;
}
.price-plan-list li .fa-check-circle{
	color: var(--accent-color);
	font-size: 18px;
	padding-right: 4px;
}
.price-plan-list li .fa-times-circle{
	color: #ff0000;
	font-size: 18px;
	padding-right: 4px;
}
.price-plan-list{
	margin-bottom: 40px;
}
.price-plan-item a{
	color: var(--text-color);
    padding: 14px 25px 12px;
    display: inline-block;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    border-radius: 0 30px 30px 30px;
    transition-duration: .3s;
    transition-property: transform;
    transition-timing-function: ease-out;
}
.price-plan-item a:hover{
	transform: translateY(-8px);
}
.price-plan-item:hover{
    box-shadow: 0 0 100px rgb(0 0 0 / 10%);
}
.price-plan-item:hover a{
	background: var(--accent-color);
	color: var(--secondary--color);
}
/********* price plan page**********/
/***** team details page *****/
.service-box .price-plan-item p{
	margin-bottom: 36px;
}
.skills{
	background-color: rgb(243 228 203 / 70%);
    width:100%;
    height:15px;
    position:relative;
    margin:80px 0;
    border-radius: 8px;
  }
  .title-bar{
    position:absolute;
    top: -5px;
  }
  .skills span {
    float: right;
    margin-top: -24px;
    margin-right: 5px;
    border-radius: 6px;
    color: #fff;
  }  
  .skillbar{
    background-color:#ffffff;
    width:0px;
    height:15px;
    border-radius: 8px;
  }
  .title-bar h5 {
    position: relative;
    top: -32px;
	letter-spacing: normal;
	font-size: 18px;
	font-weight: 700;
}
.skills span {
    float: right;    
    margin-top: -38px;
    margin-right: 5px;
    border-radius: 6px;
	color: var(--text-color);
	font-size: 18px;
	font-weight: 700;
}
.team-professional-right .skills:nth-child(2){
	background: rgba(255, 255, 255, 0.7);
}
.team-professional-right .skills:nth-child(2) .skillbar{
	background: #ffffff;
}
.team-professional-right .skills:nth-child(3){
	background: rgb(233 207 228 / 70%);
}
.team-professional-right .skills:nth-child(3) .skillbar{
	background: #ffffff;
}
.team-professional-right .skills:last-child{
	background: rgba(255, 255, 255, 0.7);
}
.team-professional-right .skills:last-child .skillbar{
	background: #ffffff;
}
.leading-con{
	background: none;
}
.service-build-con{
	background: url(../image/service-build-img.jpg) no-repeat center;
	background-size: cover;
}
.experiences-con{
	background: url(../image/experiences-bg-img.jpg) no-repeat center;
	background-size: cover;
}
.team-con{
	background: url(../image/team-bg-img.jpg) no-repeat center;
	background-size: cover;
}
.team-box-item h4{
    font-weight: 700;
    margin-bottom: 2px;
    line-height: 30px;
}
.team-box-item p:nth-child(3){
	margin-bottom: 20px;
}
.team-box-item p:nth-child(4) {
    margin-bottom: 24px;
    padding: 0 45px;
}
.team-social-icon ul li a span{
	width: 40px;
	height: 40px;
	border: 1px solid var(--text-color);
	border-radius: 50%;
	color: var(--text-color);
	font-size: 18px;
	transition-duration: .3s;
    transition-property: transform;
    transition-timing-function: ease-out;
}
.team-social-icon ul li a .fa-twitter {
    margin: 0 7px 0 5px;
}
.team-social-icon ul li a{
	text-decoration: none;
}
.team-box-item figure{
	margin-bottom: 26px;
	display: inline-block;
}
.team-social-icon ul li a span:hover{
	border-color: transparent;
	border-radius: 0 30px 30px 30px;
	background: var(--accent-color);
	color: var(--secondary--color);
	transform: translateY(-8px);
}
.team-box-item figure{
	position: relative;
}
.team-box-item figure:hover:after{
	content: "";
	position: absolute;
	top: 0;
	left:0;
	width: 100%;
	height: 100%;
	background: rgb(12 190 126 / 70%);
	border-radius: 0 30px 100px 30px;
}
.team-member-detail h2{
	font-weight: 700;
	margin-bottom: 30px;
}
.team-detail-con img {
    border-radius: 0 30px 100px 30px;
}
.team-contanct{
	margin-bottom: 10px;
}
/***** team details page *****/
/****** contact page css ********/
.map-con iframe{
	border-radius: 30px;
	width: 100%;
	height: 490px;
	border: 0;
}
.form-inner-con{
	background: var(--secondary--color);
	box-shadow: 0 0 100px rgb(0 0 0 / 10%);
	border-radius: 0 38px 85px 38px;
	padding: 100px 90px;
}
.form-inner-con input,
.form-inner-con textarea{
    width: 100%;
    border: 1px solid #ccc;
    padding: 20px 26px 18px;
    font-size: 14px;
    color: var(--text-color);
    border-radius: 30px;
    margin-bottom: 20px;
}
.form-inner-con input:focus,
.form-inner-con textarea:focus{
	border-color: var(--accent-color) !important;
	outline: none;
}
.form-inner-con textarea{
	height: 140px;
	resize: none;
	margin-bottom: 14px;
}
.form-inner-con button{
	width: 100%;
	background: var(--accent-color);
	color: var(--secondary--color);
	font-size: 16px;
	font-weight: 500;
	border: none;
	padding: 19px 160px 18px;
	border-radius: 30px;
}
.form-con{
	margin-top: -307px;
}
/****** contact page css ********/
/****** modal css ********/
.modal-header button {
	background: var(--accent-color);
    opacity: 1 !important;
    position: absolute;
    right: 2px;
    top: -2px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    border-radius: 50%;
    justify-content: center;
}
.modal-header button span {
    color: var(--secondary--color);
    font-weight: 300;
    font-size: 18px;
}
.modal-header {
    border-bottom: none;
}
.modal-header button:focus{
	outline: none;
}
.modal-body{
	padding-bottom: 50px;
}
.modal-content{
	border-radius: 30px;
}
/****** modal css ********/