@import url('https://fonts.googleapis.com/css2?family=Engagement&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


/* <==== file contain ====> 
 1.variables 
 2.common css 
 3.header 
 4.hero section 
 5.about section 
 6.my experience section 
 7.projects section 
 8.contact section 
 9.footer
*/


/* variables */

:root {
  --primary-color:#CE2E85;
  --secondary-color:#1a1919;
  --tertiory-color: #linear-gradient(120deg, rgb(206, 46, 133) 30%, rgb(223, 63, 82) 70%);
  --info-color:#ebebeb;
  --bg-color: #;
  --primary-font-family:"Poppins", sans-serif;
  --secondary-font-family:"Engagement", cursive;
}

/* common css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}
body {
  font-family: var(--primary-font-family);
  font-size: 1.6rem;
  letter-spacing: 1.5px;
}
img {
  height: auto;
  max-width: 100%;
}
ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1{font-weight:700;}
p {
  margin: 0;
  padding: 0;
}
i {
  vertical-align: middle;
}
a {
  text-decoration: none;
  display: inline-block;
}
.sec_padding {
  padding: 25px 0;
}
.section_title {
    font-size: 31px;
    text-transform: capitalize;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 600;
}
.logo img{width: 200px;}
.info-section p {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 15px;
  text-align: justify;
}
.content-box p {
  font-size: 17px;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 15px;
  text-align: justify;
}
.content-box p a{
 color:#c51777;
 font-weight: 600;
}
.info-section h1,.content-box h1 {
  font-weight: 900;
  font-size: 35px;
  line-height: 37px;
}
.info-section h2 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 27px;
    line-height: 31px;
  text-align: left;
  color: #000;
}
.btn {
  font-size: 1.55rem;
  font-weight: 500;
  padding: 3px 25px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  transition: all 0.2s ease-out;
}
.primary_btn {
    color: var(--info-color);
    background:linear-gradient(120deg, rgb(206, 46, 133) 30%, rgb(223, 63, 82) 70%);
}
.primary_btn:hover {
  background-color: var(--tertiory-color);
  color: var(--secondary-color);
  border-color: var(--tertiory-color);
}
.secondary_btn {
  background-color: transparent;
  color: var(--secondary-color);
}
.secondary_btn:hover {
  color: var(--primary-color);
  background-color: var(--secondary-color);
}

.navbar {
  --bs-navbar-brand-hover-color: unset !important;
}
.navbar-toggler:focus {
  box-shadow: none !important;
}
/* header */

/*top header */
.top_header {
  background-color: var(--primary-color);
  padding: 7px 0;
}

.top_header a {
  color:var(--info-color);
  font-weight: 500;
  font-size: 1.4rem;
  text-transform: uppercase;
}
.top_header a i {
  padding:0 7px;
}
.th_right a:not(:last-child) {
  padding-right: 10px;
  position: relative;
}
.th_right a:not(:last-child)::after {
  position: absolute;
  content: '';
  width: 2px;
  height: 12px;
  top: 50%;
  right: 3px;
  transform: translateY(-50%);
  background-color: var(--info-color);
}

/* main header */
.main_header {
  background-color: var(--secondary-color);
}
.main_header .logo a{
  font-size: 36px;
  font-family: var(--secondary-font-family);
  color: var(--info-color);
}
.navbar_menu li a{
  padding:30px 20px;
  color: var(--info-color);
}
.navbar_menu li:last-child a {
  padding-right: 0;
}

/* mobile menu start */
.ham_btn {
  width: 37px;
  height: 37px;
  position: relative;
  overflow: hidden
}

.ham_btn .line {
  height: 2.5px;
  background-color: #fff;
  position: absolute;
  right: 0;
  transition: all .5s;
  border-radius: 50px
}

.line1 {
  width: 23px;
  top: 10px
}

.line2 {
  width: 16px;
  top: 17px
}

.line3 {
  width: 25px;
  top: 24px
}

.ham_btn:hover .line {
  width: 25px
}

.menu_close {
  font-size: 20px;
  text-align: end;
  display: none;
}
.menu_close i {
  background-color: #fff;
    padding: 3px 6px;
    margin: 10px;
    border-radius: 2px;
    cursor: pointer;
}

.menu_close i:hover {
  background-color: var(--primary-color);
  color: var(--tertiory-color);
}
.mobile_menu {
  display: none;
}

/* hero section */
.banner_form {
  background-color: #e7e7e7;
  padding-top: 16px;
}
.form_input_group div, .form_input_group button  {
  margin-bottom: 16px;
}
.form_input_group button{
  vertical-align: unset;
}
.form_input_group select, .form_input_group input {
  background-color: #fff;
  border-radius: 5px;
  border: none;
  padding: 12px 20px;
  color:#656565;
}
/*
.form_input_group .input-group::after {
    position:absolute;
    top:50%;
    right:53.5%;
    transform:translate(-50%, -50%);
    content:'';
    width:1px;
    height:39px;
    background-color:#cbcbcb;
}*/
/* best cities */
.country_wrap {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  z-index: 1;
}
.country_wrap::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(360deg, #22222294 8.64%, rgba(34, 34, 34, 0) 35.99%);
  opacity: 0.93;
  border-radius: 10px;
  z-index: 0;
}
.country_name {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: var(--info-color);
}
.country_name span{
  font-weight: 500;
  font-size: 18px;
}
.country_name p{
  font-weight: 600;
  font-size: 21px;
}
/* More Cities */
.mc_names a{
  background-color: var(--primary-color);
    padding: 9px 18px;
    margin: 7px 10px;
    border-radius: 8px;
    color: var(--info-color);
    font-weight: 500;
}
/* about section */
.about_us_sec {
background-color: #f2f2f2;
}
.about_content p {
  font-size: 16px;
  line-height: 28px;
  text-align: justify;
  margin-bottom: 7px;
}
/* Our service section */
.service-box {
  padding: 25px;
  border-radius: 5px;
  box-shadow: 0 4px 15px rgba(136, 136, 136, 0.3);
    height: 100%;
    background-color: #fec3e4;
}
.service-box .title {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-color);
}
/* faq section */
.faq_sec {
  background-color: #f2f2f2;
}
.faq_sec h2 .accordion-button{
  font-size: 2rem;
  font-weight: 500;
  padding: 2rem 2.25rem;
}
.accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background-color: #fec3e4;
}
.accordion-body {
  padding: 2rem 2.25rem;
}
/* Testimonial section */
.carousel-control-next .carousel-control-next-icon, .carousel-control-prev .carousel-control-prev-icon {
  background-image: none !important;
  color: #000;
  margin-bottom: 70px;
  font-size: 2.3rem;
}
.carousel-inner {
  max-width:75%;
  margin: 0 auto;
}
.accordion-item {
  margin-bottom: 15px;
  border: none;
}
/* footer */
.footer_top {
  background-color: var(--primary-color);
  color: var(--info-color);
  padding: 50px 0 30px 0;
}
.footer_bottom {
  background-color: #c51777;
  padding: 15px 0;
  color: var(--info-color);
  font-size: 1.5rem;
}
.footer_wrap a {
margin:0 10px;
text-decoration: underline;
color: var(--info-color);
font-weight: 500;
}

/* list page start here */

.breadcrumb_sec {
  padding: 15px 0;
  background-color: #f2f2f2;
}
.owl-carousel .item a{
  position: relative;

}
.owl-carousel .item a img {
  border-radius: 5px;
}
.owl-carousel .item a .new_btn{
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: var(--primary-color);
  color: #fff;
  opacity: 0.7;
  font-size: 13px;
  padding: 0px 5px;
  border-radius: 3px;
}
.list_wrapper {
  display: flex;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: all 0.5s ease;
}
.list_wrapper .list_image {
  width: 100%;
  min-width: 16%;
  max-width: 16%;
  height: auto;
  overflow: hidden;
}
.list_wrapper .list_image a {
  width: 100%;
  height: 100%;
}
.list_wrapper .list_image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.list_wrapper .list_content {
  padding: 40px;
}
.list_content>.profile-title{
  font-size: 18.5px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1a1919 !important;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.list_content p { 
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #656565;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.list_content ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 25px;
}
.list_content ul h4 {
  margin-bottom:0;
  color: #1a1919;
  font-weight: 600;
}
.list_content ul li:not(:last-child) {
  margin-right: 30px;
}
.list_content ul span {
  font-size: 14px;
  color: #777777;
}
.list_content ul li {
  position:relative
}
.list_content ul li:not(:last-child)::after {
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 15px;
  background-color:#777777;
  content: ' ';
}
.list_detail_btn {
  margin-right: 15px;
  padding: 5px 12px;
  background-color: #facae4;
  border-radius: 3px;
  color: var(--primary-color);
  font-size: 15px;
}
.list_content ul li i {
  color:#ffcd41;
}
.list_wrapper .call_icon {
  position: absolute;
  right: 40px;
  bottom: 20px;
}
.call_icon a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  color: #fff;
}
.call_icon a:first-child {
  background-color: #4fcc5d;
  margin-right: 15px;
}
.call_icon a:last-child {
  background-color: var(--primary-color);
  font-size: 20px;
}

/* list detail page start */
.ld_left_content {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  margin-top: 30px;
  padding: 30px;
}
.ld_left_content p, .ld_left_content ul {
  margin-bottom: 25px;
}
.ld_left_content h5 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
} 
.ld_right_content {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  margin-top: 30px;
  padding: 20px; 
}
.ld_contact_info {
  background-color: #facae4;
  border-radius: 10px;
  padding:20px 30px;
  margin-top: 30px; 
}
.ld_contact_info a {
  color: var(--primary-color);
  font-size: 18px;
}
.ld_contact_info ul li:not(:last-child) a {
  margin-bottom: 10px;
}
.ld_right_content h3 {
  font-weight: 600;
  font-size: 21px;
  margin-bottom: 20px;
}
.ld_right_content li {
  display: flex;
}
.ld_right_content ul li:not(:last-child) {
  margin-bottom: 20px;
}

.ld_right_content .sl_img {
  width: 80px;
  height: 100px;
  overflow: hidden;
  flex-shrink: 0;
} 
.ld_right_content .sl_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ld_right_content .sl_content {
  padding-left:15px;
}
.ld_right_content .sl_content h4 {
  font-size: 17px;
  font-weight: 500;
  display: -webkit-box;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical;
    line-clamp: 3;
}
.ld_right_content .sl_content a {
  color: #1a1919;
}
.ld_right_content .sl_content  span {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
}
.ld_contact_form {
  background-color: #f2f2f2;
  margin-top: 30px;
  padding: 30px;
  border-radius: 10px;
}
.ld_contact_form h3 {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 20px;
}
.ld_contact_form input {
  height: 50px;
  background: #FFFFFF;
  margin-bottom: 15px;
  padding: 15px;
  font-size: 14px;
  border: 1px solid transparent;
  line-height: 28px;
  outline: none;
  width: 100%;
}
.ld_contact_form textarea {
  height: 130px;
  background: #fff;
  padding: 15px 15px;
  font-size: 14px;
  border: 1px solid transparent;
  width: 100%;
}
.ld_contact_form_btn {
  display: block;
    min-width: 100%;
    border-radius: 0;
    padding: 15px;
    margin-top: 20px;
    background-color: var(--primary-color);
    color: var(--info-color);
    border: none;
    outline: none;
}


.section-pad-sm {
  padding-top: 40px;
  padding-bottom: 40px;
}
.content {
  position: relative;
  z-index: 2;
}

.wide-xs {
  max-width: 570px;
  margin: 0 auto;
}
.form-field h1{
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 20px;
}
.pull-right {
  float: right !important;
}
.home-form .form-message {
  background: #fff !important;
  padding: 50px 50px !important;
  border-top: 3px solid #c51777;
  box-shadow: 15px 15px 25px rgb(0 0 0 / .08);
}

.form-quote:first-child, .form-message:first-child {
  margin-top: 0;
}
.home-form .form-message .form-control {
  background: #fff;
}
.form-quote .form-control, .form-message .form-control {
  height: 45px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  border: 1px solid #e1e1e1;
  background-color: #f4f8f8;
  margin-bottom: 15px;
  font-size: 15px;
}
.home-form a:hover, .home-form a:focus, .home-form a:active {
  outline: 0;
  color: #c51777;
}

.home-form a:link, .home-form a:visited {
  text-decoration: none;
}
.form-quote .btn:hover, .form-message .btn:hover {
  background: #c51777;
}

.form-quote .btn, .form-message .btn {
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
  padding: 0;
  height: 40px;
}
.home-form .btn {
  font-size: 16px;
  line-height: 1.4;
  padding: 12px 20px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: #fff;
  background-color: #000;
  box-sizing: border-box;
  transition: all 0.4s;
  -ms-border-radius: 2px;
  border-radius: 0;
  opacity: 1;
}
.form-quote .btn, .form-message .btn {
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
  padding: 0;
  height: 40px;
}
button.close {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: 0 0;
  border: 0;
}
.login-box {margin-top: 20px;}
.login-box p,.login-box p a {font-size: 17px;color:#c51777;}
.home-form .close {
  float: right;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity = 20);
  opacity: .2;
}
.form-quote .form-control, .form-message .form-control {
  height: 45px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  border: 1px solid #e1e1e1;
  background-color: #f4f8f8;
  margin-bottom: 15px;
}