@import "custom.css";


/*HEADER*/
header {
  position: sticky;
  top: 0px;
  width: 100%;
  z-index: 2;
  background: hsl(var(--wc));
 box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
}

.active {
  color: var(--sc);
}

.logo a img {
  width: 250px;
}

.logo.menubar-mobile {
  cursor: pointer;
  padding: 8px 0;
}

.menubar {
  text-align: right;
}

.menubar > ul > li {
  display: inline-block;
}

.menubar > ul > li > a {
  text-transform: capitalize;
  font-weight: 600;
  padding: 35px 12px;
  -webkit-transition: 0.3s;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  letter-spacing: 2px;
}

.menubar > ul > li > a:hover {
  color: hsl(var(--base))
}

.menubar > ul > li > a:hover i{
  transform: rotate(180deg);
}

.menubar ul li a img {
  width: 16px;
  margin-right: 2px;
}

.menubar ul li a.tel-talk {
  background: var(--background);
  padding-top: 15px;
  padding-bottom: 15px;
  color: hsl(var(--wc));
  border: 2px solid hsl(var(--wc));
  
}
.menubar ul li a.tel-talk:hover{
  background: none;
  color: hsl(var(--base));
  border-image: var(--border);
}


.sub-btn {
  position: relative;
}

.sub-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--wc);
  width: 150px;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
  border-radius: 5px;
  z-index: 3;
}

.sub-btn:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(100%);
  -ms-transform: scaleY(100%);
  transform: scaleY(100%);
}

.sub-menu a {
  display: block;
  width: 100%;
  padding: 6px 10px;
  text-transform: capitalize;
  -webkit-transition: 0.3s;
  -o-transition: 0.2s;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  color: var(--pc2);
  text-transform: capitalize;
}

.sub-menu a:hover {
  border-left: 3px solid var(--sc);
  background: #ffebeb;
}

.child-btn:hover > a {
  border-left: 3px solid var(--sc);
  background: #ffebeb;
}

.sub-btn a span {
  padding: 0 10px;
  font-weight: 500;
  color: #c9c6c6;
}

.child-btn a {
  color: var(--pc2);
}

.sub-btn a i {
  color: #c9c6c6;
  font-size: 16px;
}

.sub-btn {
  position: relative;
}

.child-menu {
  position: absolute;
  top: 0;
  right: 101%;
  background: var(--wc);
  width: 200px;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
  border-radius: 5px;
  z-index: 3;
}

.child-btn:hover .child-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(100%);
  -ms-transform: scaleY(100%);
  transform: scaleY(100%);
}

.child-btn {
  position: relative;
}

.child-btn > a > i {
  float: right;
  font-size: 12px;
}

.menubar .menu-active {
  color: var(--sc);
}

.sub-btn a span {
  padding: 0 5px;
  font-weight: 500;
  color: var(--pc2);
}

.sub-btn a i {
  color: var(--pc2);
}

header .fa-bars {
  font-size: 25px;
  cursor: pointer;
  padding: 10px;
}

/* MEGA MENU */
.megemenu-btn{
  position: relative;
}
.megamenu-btn:hover > a{
  color: hsl(var(--base));
}
.megamenu-btn:hover > a i{
  transform: rotate(180deg);
}
.megamenu{
  position: absolute;
  left: 0;
  width: 100%;
  display: block;
  top: 100%;
  padding: 50px 150px;
  background: #ffffff;
  z-index: 1;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0);
  transform-origin: top;
  transition: 0.3s;
  border-top: 1px solid hsl(var(--body-color)/.1);
}
.megamenu-btn:hover .megamenu{
  opacity: 1;
  visibility: visible;
  transform: scaleY(100%);
}
.mega-menu{
  max-width: 70%;
}
.mega-menu a{
  min-width: 33.33%;
  text-align: left;
  padding: 10px;
  transition: .2s;
}
.mega-menu a:hover{
  color: hsl(var(--base));
}
.mega-header h1::after{
  content: '';
  height: 4px;
  width: 100px;
  background: hsl(var(--base));
  display: block;
  margin-top: 10px;
}
/* MEGA MENU END*/

/*HEADER END*/

/*MOBILE MENU*/

/*ACCORDION CUSTOM*/
.mobile-logo img {
  width: 100px;
  margin-left: 10px;
}

.mobile-logo i {
  float: right;
  margin: 5px 20px;
  color: hsl(var(--body-color));
  cursor: pointer;
  height: 25px;
  width: 25px;
  line-height: 25px;
  border: 1px solid hsl(var(--body-color));
  border-radius: 50%;
  text-align: center;
  font-size: 14px;
}

.mobile-logo i:hover {
  border: 1px solid hsl(var(--base));
  color: hsl(var(--base)) !important;
}

.mobile-logo i:hover {
  color: var(--sc);
}

.custom.accordion-button {
  text-transform: capitalize;
  font-size: 15px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  color: var(--pc);
  font-weight: 400;
}

.custom.accordion-button:hover {
  color: var(--sc);
}

.custom.accordion-button:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
  border-top: 1px solid #ccc;
}

.custom.accordion-button:not(.collapsed) {
  color: hsl(var(--wc));
  background: hsl(var(--base));
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  font-weight: 400;
}

.none.accordion-button:not(.collapsed)::after {
  content: none;
  -webkit-transform: rotate(0deg) !important;
  -ms-transform: rotate(0deg) !important;
  transform: rotate(0deg) !important;
}

.none.accordion-button::after {
  content: none;
}

.custom.accordion-body {
  padding: 0 0px;
}

.custom.accordion-body ul {
  padding: 0;
  margin: 0;
}

.custom.accordion-body ul li {
  list-style: none;
  padding: 8px 0;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.custom.accordion-body ul li a {
  text-decoration: none;
  font-size: 15px;
  text-transform: capitalize;
  color: var(--pc);
  font-weight: 400;
  display: inline-block;
  margin-left: 40px;
}

.custom.accordion-body ul li a i {
  font-size: 10px;
  margin-right: 10px;
}

.custom.accordion-body ul li:hover {
  color: var(--wc);
  background: var(--rc);
}

.custom.accordion-body ul li:hover a {
  color: var(--sc);
}

.custom.accordion-item a {
  text-decoration: none;
  display: block;
  width: 100%;
}

.custom.accordion-item .accordion-button {
  display: block;
  width: 100%;
}

.accordion-button.custom i {
  padding: 0 10px;
}

.custom.accordion-button:focus {
  border: none;
}

/*ACCORDION CUSTOM END*/

.mobile-menu {
  width: 300px;
  position: fixed;
  left: -380px;
  top: 0;
  z-index: 3;
  background: hsl(var(--wc));
  height: 100%;
  overflow: auto;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  padding: 10px 0;
}

#mobileOverlay {
  position: fixed;
  left: 0;
  width: 100%;
  top: 0;
  height: 100%;
  background: hsl(var(--base2)/.6);
  z-index: 2;
  cursor: pointer;
}

.mobileAdd {
  left: 0 !important;
  width: 300px;
}

.mobile-overlay {
  position: inherit !important;
}

/*MOBILE MENU END*/

/*HOEM SECTION*/
.home-image img {
  width: 100%;
}

/*HOEM SECTION END*/

.home-section video {
    width: 100%;

}
/*



/*CLIENT SECTION*/
.brand-slider-section{
  background: hsl(var(--bc)/.1);
}
.brand-slider-box img{
  max-width: 80%;
  max-height: 80px;
}

.slider-box {
  position: relative;
}

.next {
  position: absolute;
  top: 50%;
  cursor: pointer;
  right: 18px;
  height: 35px;
  width: 35px;
  z-index: 1;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  line-height: 35px;
  background: hsl(var(--wc));
  text-align: center;
  border-radius: 50%;
  box-shadow: 0px 2px 13px -5px hsl(var(--body-color)/.4);
  border: 1px solid hsl(var(--body-color)/.1);
  transition: 0.4s;
  color: hsl(var(--body-color));
}

.next:hover {
  color: hsl(var(--base));
  border: 1px solid hsl(var(--base)/.5);
}

.prev {
  position: absolute;
  top: 50%;
  cursor: pointer;
  left: 18px;
  height: 35px;
  width: 35px;
  z-index: 1;
  transform: translateY(-50%);
  line-height: 35px;
  background: hsl(var(--wc));
  text-align: center;
  border-radius: 50%;
  box-shadow: 0px 2px 13px -5px hsl(var(--body-color)/.4);
  border: 1px solid hsl(var(--body-color)/.1);
  transition: 0.4s;
  color: hsl(var(--body-color));
}

.prev:hover {
  color: hsl(var(--base));
  border: 1px solid hsl(var(--base)/.5);
}

/*CLIENT SECTION END*/

/* ABOUT SECTION */
.about-section{
  background-image: url(../images/photos/about-2.webp);
  background-repeat: no-repeat;
  background-size: 40%;
  background-position: right center;
}
.about-section.bg-image-none{
  background-image: none;
}
.about-section h2{
  font-size: 45px;
  font-weight: 700;
  line-height: 50px;
}

.about-section h6{
  font-size: 20px;
  text-transform: uppercase;
  margin-top: 35px;
}
.about-section h6::after{
  content: '';
  height: 3px;
  width: 100px;
  background: hsl(var(--base));
  display: block;
  margin-top: 15px;
}
.about-section p{
  font-size: 20px;
  line-height: 30px;
}
.about-image img{
  width: 80%;
}

.about2-image img{
  width: 90%;
}

@media only screen and (max-width:767px) {
  .about-section{
    background: none;
  }
}
/* ABOUT SECTION END*/

/* AD SECTION */
.add-section{
  background-image: url(../images/photos/ad-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.add-section h2{
  color: hsl(var(--wc));
  font-size: 50px;
  text-align: center;
}
/* AD SECTION END*/

/* TESTOMONIAL SECTION */
.testomonial-image img {
  width: 220px;
  border-radius: 10px;
}
.testomonial-image{
  margin-right: 40px;
}
.testomonial-box i{
  font-size: 60px;
  color: hsl(var(--base)/.2);
}
.testimonial_slider h3{
  font-size: 40px;
  font-weight: 700;
}
.testimonial_slider p{
  font-size: 22px;
  line-height: 30px;
}
.testimonial_slider h6{
  font-size: 25px;
}
/* TESTOMONIAL SECTION END*/

/* COUNT SECTION */
.count-section{
  background: hsl(var(--bc)/.9);
  color: hsl(var(--wc));
}
.count-section img{
  width: 100px;
}
.count-section .count-box{
  text-align: center;
  padding: 0 20px;
}
.count-box h3{
  margin: 0;
  font-size: 50px;
}
.count-box p{
  font-size: 18px;
  margin: 0;
}
/* COUNT SECTION END*/

/* SERVICE SECTION */
.service-box img{
  width: 100%;
  transition: .3s;
}
.service-box{
  position: relative;
  overflow: hidden;
  transition: .3s;
  width: 100%;
  display: block;
}
.service-box:hover img{
  transform:scale(1.1);
}
.service-box:hover .service-overlay{
  padding: 25px 15px;
  background: hsl(var(--base)/.9);
}
.service-overlay {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  background: hsl(var(--base));
  clip-path: polygon(0 0, 100% 40%, 100% 100%, 0% 100%);
  padding: 20px 15px;
  transition: .3s;
}
.service-overlay h4 {
  margin: 0;
  color: hsl(var(--wc));
  max-width: 70%;
  font-weight: 500;
  font-size: 18px;
}
.service-overlay h4 i{
  font-size: 18px;
  margin-left: 10px;
}
/* SERVICE SECTION END*/

/* SERVICE TAB SECTION */
.service-tab-main .nav-link{
  color: hsl(var(--body-color));
  font-size: 20px;
  width: 380px;
  margin-bottom: 20px;
}
.service-tab-main .nav-link.active{
  background: hsl(var(--base));
}
.service-tab-content{
  position: relative;
}
.service-tab-content .tabs-overlay{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: hsl(var(--bc)/.8);
  padding: 20px;
  color: hsl(var(--wc));
}
.service-tab-content img{
  width: 100%;
}
@media only screen and (max-width:991px) {
.service-tab-main .nav-link{
  margin:  0 auto;
}
}
/* SERVICE TAB SECTION END*/

/* REVIEW SECTION */
.review-box2{
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 15px;
}
.review-box2 .user_title{
  height: 40px;
  width: 40px;
  line-height: 40px;
  border-radius: 50%;
  background: hsl(var(--base)/.8);
  display: inline-block;
  text-align: center;
  color: hsl(var(--wc));
}
.review-box2 h6{
  font-size: 15px;
  margin: 0;
}
.review-box2 .date{
  font-weight: 300;
  font-size: 13px;
}
.review-box2 .star i{
  font-size: 15px;
  color: #f6bb06;
}
.review-box2 .message{
  height: 100px;
  overflow: auto;
}
.review-box2 .review-icon{
  width: 20px !important;
}

.review-box2 .message::-webkit-scrollbar {
  width: 4px;
}

.review-box2 .message::-webkit-scrollbar-track {
  background: hsl(var(--wc)); 
  border: 1px solid hsl(var(--body-color)/.3);
  border-radius: 10px;
}

.review-box2 .message::-webkit-scrollbar-thumb {
  background: hsl(var(--body-color)/.3); 
  border-radius: 10px;
}

/* Handle on hover */
/* .review-box .message::-webkit-scrollbar-thumb:hover {
  background: white; 
} */
/* REVIEW SECTION END*/

/*FOOTER*/
footer {
 background: hsl(var(--body-color));
}

.footer-head {
  color: var(--pc);
}

.footer-head h6 {
  font-weight: 600;
  font-size: 24px;
  color: hsl(var(--wc));
  padding-bottom: 15px;
  margin-bottom: 5px;
}

.footer-head ul li a {
  color: #e0e0e0;
  padding: 8px 0;
  text-transform: capitalize;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  font-weight: 500;
  font-weight: 400;
}

.footer-head ul li {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}

.footer-head ul li:hover {
  margin-left: 2px;
}
.footer-head ul li:hover a{
  color: hsl(var(--base));
}
.footer-head p {
  color: #e0e0e0;
  font-weight: 400;
  font-size: 14px;
}

.footer-location p {
  position: relative;
  padding-left: 25px;
}

.footer-location p i {
  position: absolute;
  left: 0;
}

.footer-review-btn a {
  padding: 10px 30px;
  background: var(--sc);
  color: var(--wc);
  border-radius: 20px;
}


.footer-social a i {
  color: hsl(var(--wc));
  font-size: 22px;
  margin-right: 15px;
}
.footer-social a i:hover{
  color: hsl(var(--base));

}
.footer-contact-box p{
  color: hsl(var(--wc));
  font-size: 22px;
}
/* brand */
.brands{
  border-top: 1px solid hsl(var(--wc)/.2);
}
.brands img{
  max-height: 90px;
}

@media only screen and (max-width:767px) {
  .brands img{
  max-height: 70px;
  }
}
@media only screen and (max-width:575px) {
  .brands img{
  max-height: 60px;
  }
}
/* brand end */
/*FOOTER END*/


/* COPYRIGHT START*/
.copyright {
  background: hsl(var(--bc));
}

.copyright p {
  margin: 0;
  font-size: 16px;
  line-height: 26px;
  color: hsl(var(--wc));
}

.copyright-menu {
  text-align: right;
}

.copyright a {
  text-align: right;
  font-size: 14px;
  line-height: 26px;
  color: hsl(var(--wc));
  margin-left: 10px;
}
.copyright a:hover{
  text-decoration: underline;
}
/* COPYRIGHT END*/

/* CONTACT PAGE */
.contact-header{
  margin: 0 auto;
  max-width: 800px;
}
.contact-header h4{
  font-size: 40px;
  font-weight: 700;
  position: relative;
}
.contact-header h4::before{
  content: 'Contact';
  position: absolute;
  -webkit-text-fill-color: transparent;
    font-size: 80px;
    bottom: 0;
    -webkit-text-fill-color: transparent;
    z-index: 0;
    width: 100%;
    -webkit-text-stroke: 2px #1F1F1F;
    left: 0;
    opacity: .1;
}
.contact-header p{
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
}
.contact-box{
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 40px;
}
.contact-box .form--control{
  display: block;
  width: 100%;
  padding: 10px;
  border: none;
  border-bottom: 1px solid hsl(var(--bc)/.2);
  outline: none;
  padding-left: 30px;
}
.contact-box .form--control:focus{
  border-bottom: 1px solid hsl(var(--base)/.8);
}
.contact-box .input-box{
  position: relative;
}
.contact-box .input-box i{
  position: absolute;
  top:15px;
  left: 0px;
  color: hsl(var(--base)/.8);
  font-size: 18px;
}
.contact-box textarea.form--control{
  height: 100px;
}
.contact-box.form-ranger{
  width: 100%;
}
/* CONTACT PAGE END*/

/* WORK PAGE */
.contact-header.work-header h4::before{
  content: 'Work';
}
.work-section{
  background: #f4f4f4;
}
.work-box{
    border-top: 5px solid hsl(var(--bc));
    width: 100%;
    display: block;
}
.work-box img{
  width: 100%;
  opacity: .8;
  transition: .4s;
}
.work-box:hover img{
  opacity: 1;
}
.work-box:hover{
  color: hsl(var(--body-color));
}
.work-overlay{
  position: relative;
  padding: 30px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  max-width: 500px;
  margin-left: auto;
  margin-top: -120px;
  background: hsl(var(--wc));

}
.word-tag span{
  color: hsl(var(--bc)/.5);
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
}
.word-tag span::after{
  content: '';
  display: inline-block;
  height: 4px;
  width: 4px;
  background: hsl(var(--bc)/.5);
  border-radius: 50%;
  margin: 0 5px;
}
.word-tag span:last-child:after{
  display: none;
}
.word-head h2{
  font-size: 35px;
  font-weight: 700;
  color: hsl(var(--bc));
  border-bottom: 1px solid hsl(var(--bc));
  padding-bottom: 10px;
  margin: 0;
}
.word-head h2::after{
  content: '';
  height: 8px;
  width: 8px;
  border-radius: 50%;
  display: inline-block;
  background: hsl(var(--base));
  margin-bottom: 3px;
  margin-left: 10px;
}
.word-head h6{
  font-size: 20px;
  color: hsl(var(--bc));
  font-weight: 700;
  padding-top: 15px;
}
.word-head p{
    color: hsl(var(--bc));
    font-size: 16px;
    font-size: 500;
    margin: 0;
}
.work-head-h2::after{
  content: '';
   height: 8px;
  width: 280px;
  display: block;
  background: hsl(var(--bc));
}
.work-section > .row .col-12:nth-child(even) {
    padding-top: 100px;
}
/* WORK PAGE END*/


/* SERVICE DETAILS PAGE CSS START */
.service-details{
  background: var(--awc);
}
.details-banner h1{
  font-weight: 800;
  font-size: 72px;
  line-height: 78px;
}
.service-details p{
  font-size: 24px;
  line-height: 32px;
}
.proposal-btn a {
  font-weight: 400;
  font-size: 24px;
  padding: 10px 40px;
  border: 2px solid var(--primary-color);
  border-radius: 5px;
  color: var(--white-color);
  background-color: var(--primary-color);
  transition: 0.4s ease;
}
.proposal-btn a:hover{
  background-color: var(--white-color);
  color: var(--gbc);
}

.previewed-review{
  width: 60%;
  background: var(--white-color);
  border-radius: 10px;
  padding: 20px;
}
.previewed-review h4{
  font-size: 20px;
}
.previewed-review .author p{
  font-size: 16px;
  line-height: 20px;
  margin-top: 10px;
}
.previewed-review .author img{
  width: 40px;
  height: 40px;
  border-radius: 50px;
}

.previewed-review .rating ul li i{
  color: #f04d50;
}
.previewed-review .rating h6{
  font-weight: 500;
  font-size: 15px;
  margin-top: 5px;
  margin-left: 5px;
}

.service-features-details .feature-item p{
  font-weight: 600;
  font-size: 18px;
}

.title-part h2{
  font-weight: 700;
}

/* Service Items CSS */
.service-items{
  margin-top: 100px;
}
.service-items .nav-pills{
  width: 20%;
}
.service-items .tab-content{
  width: 80%;
}
.nav-pills .nav-link {
  border-radius: 0;
  color: var(--gbc);
  font-weight: 500;
  font-size: 24px;
  border-bottom: 1px solid #bdbdbd;
  padding: 25px 0px;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
  color: var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
  background-color: var(--white-color);
}

.service-items .tab-content h3{
  color: var(--primary-color);
}
.service-item-details{
  font-size: 18px;
}
.service-item-details ul li{
  list-style: disc;
}
/* SERVICE DETAILS PAGE CSS END */

/* ABOUT US PAGE CSS START */
.about-us h3{
  font-weight: 600;
  font-size: 38px;
  color: var(--gbc);
}
.about-us h6{
  font-weight: 400;
  font-size: 28px;
  line-height: 42px;
  color: #8b8fae;
}

.who-we-are{
  background-color: var(--awc);
}
.who-we-are h6 {
  font-size: 20px;
  line-height: 28px;
}
.who-we-are p{
  font-size: 18px;
}
.who-we-are .image img {
  width: 70%;
  border-radius: 10px;
  border: 10px solid var(--white-color);
  border-top-left-radius: 120px;
}
.who-we-are .image-2 img {
  width: 90%;
  border: 10px solid var(--awc);
  border-top-right-radius: 120px;
}
.who-we-are .image-3 img {
  width: 90%;
  border-radius: 10px;
  border: 10px solid var(--white-color);
  border-top-left-radius: 120px;
}
/* ABOUT US PAGE CSS END */

/* PRIVACY POLICY PAGE  */
.privacy-policy{
  background-color: var(--awc);
}
/* PRIVACY POLICY PAGE  */
