@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
    font-family: 'Queensila';
    src: url("../fonts/Queensila.ttf");

}


/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Montserrat', sans-serif;
    color: #393939;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul {
    margin: 0 0 20px;
    padding: 0;
    list-style-type: none;
}

p {
    font-weight: 500;
    line-height: 1.7;
    font-size: 14px;
    color: #737373;
}


/***** Font Files *****/

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}


/***** Custom Classes *****/

.noPadding {
    padding: 0 0 0px 0;
    color: #fff;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.pt_8 {
    padding-top: 80px;
}

.pb_8 {
    padding-bottom: 80px;
}

.py_8 {
    padding: 80px 0px;
}



.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: 'Queensila';
    font-size: 55px;
    line-height: 1.2;
    color: #fff;
    font-weight: 500;
    margin: 0 0 17px;
}

h2 {
    font-family: 'Queensila';
    font-size: 55px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 30px;
}

h3 {
    font-family: 'Queensila';
    font-size: 30px;
    line-height: 1.2;
    color: #000000;
    font-weight: 600;
    margin: 0 0 28px;
}

h4 {
    font-family: 'Queensila';
    font-size: 24px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: 'Queensila';
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: 'Queensila';
    font-size: 18px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}


/*header css start */

.menuSec {
    padding: 20px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    text-transform: uppercase;
    margin: 0 0 0 150px;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    font-weight: 600;
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #222222;
    padding: 10px 23px;
    font-size: 14px;
}

.menuSec ul li a:after {
    content: '';
    position: absolute;
    top: 35%;
    right: 0;
    width: 1px;
    height: 13px;
    background-color: #393939;
    display: none;
}

.menuSec ul li:last-child a {
    padding-right: 0px;
}

.menuSec ul li:last-child a:after {
    display: none;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #c82b56;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}

.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
}

.menuSec ul:after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}

.droopdwon {
    float: left;
}

.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}


/*header css start */

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}


/*banner css start */


/* Tab slider fix  */

.tab_sec .tab-pane {
    display: block;
    border: 0;
    height: 0;
}

.tab_sec .tab-pane.active {
    display: block !important;
    height: auto;
}


/* Tab slider fix  */

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    background: none;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: #fff;
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

.carousel-indicators [data-bs-target] {
    margin: 0 0 !important;
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 3px;
    height: 60px;
    padding: 0;
    /* margin: 3px!important; */
    text-indent: -999px;
    cursor: pointer;
    background-color: #cfcfcf;
    background-clip: padding-box;
    border: 0;
    /* border-top: 10px solid transparent; */
    /* border-bottom: 10px solid transparent; */
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}

.carousel-caption {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    background: none;
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0;
}

.carousel-indicators .active {
    margin: 0;
    background-color: #b93e5c;
    width: 3px;
    height: 60px;
}


/*banner css end*/

.blog_sec {
    padding: 5% 0;
}


/* Tabs  */

.tab_sec .nav-tabs .nav-link.active {
    background: #242889;
    color: #fff;
}

.tab_sec .nav-tabs .nav-link {
    background: #ccc;
    border-radius: 50px;
    color: #000;
    padding: 7px 28px;
}

.tab_sec .nav-tabs {
    border: none;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}


/* Tabs  */





.theme_btn {padding: 3px 5px;border: unset;border-radius: 50px;color: #ffffff;z-index: 1;background: #fff;position: relative;font-size: 14px;transition: all 250ms;overflow: hidden;display: flex;gap: 10px;text-transform: uppercase;align-items: center;width: 196px;font-weight: 600;}
.theme_btn::before {content: "";position: absolute;top: 0;left: 0;height: 100%;width: 0;border-radius: 14px;background-color: #c61b4f;z-index: -1;transition: all 400ms;}
.theme_btn:hover {color: #fff; }
.theme_btn:hover::before {width: 100%; }
.theme_btn .txt_wrp{padding: 12px 25px; background: #c61b4f; border-radius: 50px; } 
.theme_btn span {}
.theme_btn span img{}
.theme_btn:hover span img{filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(308deg) brightness(130%) contrast(106%);}



.theme_btn1 {padding: 3px 5px;border: unset;border-radius: 50px;color: #73737A;z-index: 1;background: #c61b4f;position: relative;font-size: 14px;transition: all 250ms;overflow: hidden;display: flex;gap: 10px;text-transform: uppercase;align-items: center;width: 196px;font-weight: 600;}
.theme_btn1::before {content: "";position: absolute;top: 0;left: 0;height: 100%;width: 0;border-radius: 14px;background-color: #fff;z-index: -1;transition: all 400ms;}
.theme_btn1:hover {color: #fff;}
.theme_btn1:hover::before {width: 100%; }
.theme_btn1 .txt_wrp{padding: 12px 25px;background: #fff;border-radius: 50px;} 
.theme_btn1 span {}
.theme_btn1 span img{    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(308deg) brightness(130%) contrast(106%);
}
.theme_btn1:hover span img{filter:unset;}
.theme_btn1:hover .txt_wrp{background: #c61b4f;}


header a h4{font-size: 30px; font-weight: 600; color: #cd274d; margin: 0; } 
header {position: absolute; top: 0; left: 0; width: 100%; z-index: 1; }
.padd_sec{padding: 60px 0;}
.about_Sec{}
.about_Sec .abt_left{}
.about_Sec .abt_left img{}
.about_Sec .abt_right{
    padding: 30px 30px;
    margin: 100px 0 0 -220px;
    background: #fff;
}
.about_Sec .abt_right h2{}
.about_Sec .abt_right p{}
.about_Sec .abt_right a{}
.head{}
.head span{
    display: block;
    font-size: 40px;
    color: #cd274d;
}


.services {
}

.card {
  position: relative;
  border: none;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
}

/* Image */
.card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  border-radius: 15px;
}

/* Top pink title */
.top-title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, rgba(210, 66, 95, 1) 0%, rgba(212, 73, 100, 1) 50%, rgba(209, 59, 89, 1) 100%);
  color: #fff;
  text-align: center;
  padding: 15px;
  font-size: 20px;
  z-index: 2;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

/* Overlay */
.overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  background: #D2425F;
  background: linear-gradient(90deg, rgba(210, 66, 95, 1) 0%, rgba(212, 73, 100, 1) 50%, rgba(209, 59, 89, 1) 100%);
  color: #fff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transform: translateY(100%);
  transition: all 0.4s ease;
}



/* Hover effect */
.card:hover .overlay {
  transform: translateY(0);
}

/* Text */
.overlay h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #fff;
}

.overlay p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #fff;
}



.card:hover .top-title{ display: none; }
.overlay .btn_wrp a img{
    height: auto;
}


.servi_top {
    text-align: center;
    padding: 0 150px;
    margin: 0 0 50px 0;
}

.servi_top h2 {
    margin: 0 0 10px 0;
}

.why_choose .theme_btn1{
    width: 200px;
}


.why_left ul li {
    padding: 8px 0;
    text-transform: uppercase;
    color: #131313;
    font-size: 14px;
    font-weight: 600;
}

.why_left ul li img {
    margin: 0 10px 0 0;
}


.blog_Sec{}
.blog_Sec .blog_txt{
    text-align: center;
    padding: 0 150px;
    margin: 0 0 50px 0;
}
.blog_Sec .blog_txt h2{
    margin: 0 0 10px 0;
}
.blog_Sec .blog_bx{}
.blog_Sec .blog_bx img{
    width: 100%;
}
.blog_Sec .blog_bx .btm_bx{
    padding: 15px 15px;
    border-radius: 10px;
    border: 1px solid #eaeaea;
    margin: -10px 0 0 0;
    background: #fff;
    position: relative;
}
.blog_Sec .blog_bx .btm_bx ul{
    margin: -50px 0 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: end;
}
.blog_Sec .blog_bx .btm_bx ul li{}
.blog_Sec .blog_bx .btm_bx ul li p{
    margin: 0;
    font-size: 20px;
    padding: 20px 20px;
    background: #292929;
    text-align: center;
    line-height: 1;
    color: #fff;
    border-radius: 5px;
}
.blog_Sec .blog_bx .btm_bx ul li img{
    width: auto;
}
.blog_Sec .blog_bx .btm_bx ul li span{
    color: #000;
}
.blog_Sec .blog_bx .btm_bx h6{
    font-size: 30px;
    color: #000;
    margin: 0 0 0 0;
}
.blog_Sec .blog_bx .btm_bx p{}


.blog_Sec .blog_bx .btm_bx .btn{
    width: 100%;
    margin: 20px 0 0 0;
    padding: 20px 0 0 0;
    border-top: 1px solid #d7d7d7;
}
.blog_Sec .blog_bx .btm_bx .btn a{
    color: #000;
    text-transform: uppercase;
    text-decoration: underline;
    font-weight: 600;
}

.custm_con{
    max-width: 1200px;
}



.btm_form{}
.btm_form .form_img{}
.btm_form .form_img img{
    width: 100%;
}
.btm_form .form_detail{
    width: 95%;
    margin: 40px 0 0 0;
}
.btm_form .form_detail .d-flex{
    gap: 20px;
}
.btm_form .form_detail .grp{width: 100%;margin: 0 0 20px 0;}
.btm_form .form_detail .grp input{
    width: 100%;
    padding: 5px 10px;
    border: 0;
    height: 50px;
    border-bottom: 1px solid #cfcfcf;
}
.btm_form .form_detail .grp textarea{
    width: 100%;
    padding: 5px 10px;
    border: 0;
    height: 100px;
    border-bottom: 1px solid #cfcfcf;
    resize: none;
}
.btm_form .form_detail .grp a{}

.contact_txtw {
    padding: 20px;
    background: linear-gradient(90deg, rgba(210, 66, 95, 1) 0%, rgba(212, 73, 100, 1) 50%, rgba(209, 59, 89, 1) 100%);
    border-radius: 10px;
    margin: -200px 0 0 -50px;
}

.contact_txtw h4 {
    color: #fff;
    font-size: 40px;
}

.contact_txtw p {
    color: #fff;
}

.footerSec {
    background: #cd274d;
    padding: 50px 0 5px 0;
    position: relative;
}

ul.list-inline {
    display: flex;
    justify-content: end;
    gap: 20px;
    margin: 0 0 100px 0;
}

ul.list-inline li a i {
    height: 50px;
    width: 50px;
    border: 2px solid #d85871;
    border-radius: 50px;
    padding: 14px;
    color: #d85871;
    font-size: 20px;
}

ul.list-inline li a {
}


.ftr_bg {
    background: #d85871;
    padding: 20px 30px;
    border-radius: 10px;
}

.footerSec h5 {
    color: #fff;
    font-size: 24px;
}

.footerSec .ftr_bg p {
    color: #fff;
    line-height: 1.5;
    font-size: 12px;
}

.footerSec  p {
    color: #fff;
    line-height: 1.5;
    font-size: 15px;
}

ul.linkList li {
    padding: 0 0 15px 0;
}

ul.linkList li a {
    color: #fff;
    text-transform: uppercase;
}








.footerForm input {
    width: 100%;
    padding: 5px 15px;
    margin: 0 0 15px 0;
    background: transparent;
    border: 0;
    border: 1px solid #fff;
    height: 55px;
    border-radius: 30px;
}

.footerForm input::placeholder{color: #fff;}


.footerSec:before {
    position: absolute;
    content: "";
    height: 1px;
    width: 90%;
    background: #fff;
    left: 0;
    right: 0;
    margin: auto;
    top: 150px;
    opacity: .2;
}

ul.list-inline li a i:hover{
    background: #d85871;
    color: #fff;
}

.banner-img img {
    height: 120vh;
    width: 100%;
    object-fit: cover;
}


.banner_text  h1 {
    background: #fff;
    font-size: 48px;
    color: #000;
    padding: 20px;
    position: relative;
    top: 110px;
    border-radius: 10px;
    display: inline-block;
}

.banner_text h1 span {
    font-size: 70px;
    display: block;
}
.banner_left{
    margin: 140px 0 0 0;
    text-align: center;
}
.banner_left li{
    padding: 0 0 20px 0;
}
.banner_left li .count{}
.banner_left li .count p{
    text-transform: uppercase;
    margin: 0;
    color: #fff;
}
.banner_left li .count p span{
    display: block;
    font-size: 40px;
}
.banner_left li img{}

.carousel-indicators {display: block !important;bottom: 250px;left: -30px;}
ul.smm_icons{
    display: flex;
    position: relative;
    bottom: 70px;
    left: 150px;
    right: 0;
    margin: auto;
    gap: 40px;
    align-items: center;
    z-index: 1;
}
ul.smm_icons li{}
ul.smm_icons li a{}
ul.smm_icons li a i{
    height: 50px;
    width: 50px;
    border: 2px solid #b3b3b3;
    border-radius: 50px;
    padding: 14px;
    color: #b3b3b3;
    font-size: 20px;
    background: #e5e5e5;
}
ul.smm_icons li a i:hover{
    background: #d13d5a;
    color: #ffff;
    border-color: #d13d5a;
}


.banner_text {
    position: relative;
}


ul.smm_icons li h6{
    margin: 0;
    font-weight: 600;
    font-family: 'Montserrat';
    color: #b3b3b3;
}

ul.smm_icons li:nth-child(5) {margin: 0 0 0 200px;}
ul.smm_icons:before{position: absolute;content: "";height: 2px;width: 50%;background: #b3b3b3;left: 0;z-index: -1;}




.blog_Sec .blog_bx:hover .btm_bx ul li p {    background: linear-gradient(90deg, rgba(210, 66, 95, 1) 0%, rgba(212, 73, 100, 1) 50%, rgba(209, 59, 89, 1) 100%);}



.mar_left {
    margin: 0 0 0 100px;
}

.footerForm {
    width: 100%;
}

.overlay .theme_btn .txt_wrp{    background: linear-gradient(90deg, rgba(210, 66, 95, 1) 0%, rgba(212, 73, 100, 1) 50%, rgba(209, 59, 89, 1) 100%);}