@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Poppins', 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.5;
    margin: 0;
}


/***** 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
} */
@font-face {
    font-family: 'themefontone';
    src: url(../font/PlayfairDisplay-Bold.ttf);
    font-weight: 400;
    font-style: normal
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.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;
}

.theme_btn {
    padding: 15px 25px;
    border: unset;
    border-radius: 15px;
    color: #ffffff;
    z-index: 1;
    background: #242889;
    position: relative;
    font-size: 17px;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms;
    overflow: hidden;
    display: inline-block;
}

.theme_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 14px;
    background-color: #72d219;
    z-index: -1;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms
}

.theme_btn:hover {
    color: #000000;
}

.theme_btn:hover::before {
    width: 100%;
}

.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: 'themefontone';
    font-size: 90px;
    line-height: 1.2;
    color: #fff;
    font-weight: 500;
    margin: 0 0 17px;
}

h2 {
    font-family: 'themefontone';
    font-size: 50px;
    line-height: 1.2;
    color: #000;
    font-weight: 500;
    margin: 0 0 30px;
}

h3 {
    font-family: 'themefontone';
    font-size: 30px;
    line-height: 1.2;
    color: #000000;
    font-weight: 600;
    margin: 0 0 28px;
}

h4 {
    font-family: 'themefontone';
    font-size: 24px;
    line-height: 1.2;
    color: #000;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: 'themefontone';
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: 'themefontone';
    font-size: 15px;
    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: 8px 0;
    position: absolute;
    z-index: 1;
    width: 100%;
    background: #000;
    margin-top: 15px;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: end;
    text-transform: capitalize;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
    text-align: start;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #fff;
    padding: 16px 10px;
    font-size: 16px;
    text-transform: uppercase;
}



/* .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: #83070d;
    border: 1px solid #83070d;
    border-radius: 10px;
    padding: 10px;
}

.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] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px!important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    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: 30px;
    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: rgba(0, 0, 0, 0.1);
}

.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: #28b16d;
    width: 10px;
    height: 12px;
}


/*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  */






.logo-header a h4 {
    color: #fff;
    margin: 0;
    font-size: 30px;
    text-align: center;
}
ul.header-num-icon-set {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
}

ul.header-num-icon-set li a h6 {
    color: #fff;
    margin: 0;
    text-transform: capitalize;
}
.mail-icon-head {
    height: 35px;
    width: 35px;
    background: #83070d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 17px;
    border: 1px solid #fff;
}
ul.header-num-icon-set li a {
    padding: 0;
}
.logo-header {
    position: relative;
}

/* .logo-header:before {
    position: absolute;
    content: '';
    top: -19px;
    left: -9px;
    height: 72px;
    width: 368px;
    background: #96171c;
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
} */
.banner_text p {
    font-size: 17px;
    line-height: 30px;
    width: 79%;
    margin-bottom: 30px;
}
a.btn-side-set {
    color: #fff;
    background: #96171c;
    padding: 13px 30px;
    border-radius: 30px;
}
a.btn-side-set:hover {
    color: #96171c;
    border: 1px solid #96171c;
    background: transparent;
    /* padding: 12px 20px;
    border-radius: 30px; */
}
.about-us-img {
    position: relative;
}

.about-us-img-2 {
    position: absolute;
    right: 30px;
    bottom: -30%;
}
section.about-sec {
    padding: 80px 0px 0px;
    position: relative;
}
section.about-sec:before {
    position: absolute;
    content: '';
    background-image: url(../images/bg-side-points.png);
    height: 440px;
    width: 33%;
    top: 0;
    right: 0px;
    background-repeat: no-repeat;
    background-size: cover;
}
span{
    display: block;
}
.about-us-text p {
    line-height: 30px;
    margin-bottom: 34px;
    font-size: 18px;
}
.about-us-text {
    position: relative;
}

.about-us-text:before {
    position: absolute;
    content: '';
    top: -16px;
    left: 0;
    height: 6px;
    width: 130px;
    background: #96171c;
}
section.finance-sec {
    margin: 136px 0px 80px;
}
.finance-main-head h2 {
    text-align: center;
    position: relative;
}
.finance-main-head h2:before {
    position: absolute;
    content: '';
    height: 6px;
    width: 120px;
    top: -15px;
    left: 47%;
    background: #96171c;
}
.finance-slider-text {
    text-align: center;
    padding-bottom: 20px;
}
.finance-slider-text h3 {
    margin-bottom: 10px;
}
.finance-slider .slick-active {
    opacity: 1;
}
.finance-slider-img img {
    height: 270px;
    width: 100%;
    object-fit: cover;
    margin-bottom: 20px;
}

.finance-slider .slick-prev:before {
    content: '';
}
.finance-slider .slick-next:before {
    content: '';
}
.finance-slider .slick-prev {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 60px;
    height: 50px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
    background-image: url(../images/slider-lefft-img-icon.png);
    left: -6%;
}
.finance-slider .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 80px;
    height: 50px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
    background-image: url(../images/slider-right-img-icon.png);
    left: 100%;
}
a.btn-color {
    color: #96171c;
    font-size: 18px;
    font-weight: 600;
    /* padding: 20px; */
    /* margin: 0; */
}
a.btn-color:hover {
    background: #96171c;
    color: #fff;
    border: 1px solid #96171c;
    padding: 5px 14px;
    border-radius: 20px;
}
.finance-slider-text p {
    margin-bottom: 12px;
}
ul.why-choose-icon li {
    display: flex;
    margin: 26px 0px;
    gap: 14px;
}
section.why-choose-sec {
    /* background: #000; */
    position: relative;
    padding: 70px 0px 0px;
}

section.why-choose-sec:before {
    position: absolute;
    content: '';
    height: 530px;
    width: 72%;
    top: 0;
    left: 0;
    background: #000;
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
}
.why-choose-text h2 {
    color: #fff;
}
ul.why-choose-icon {
    margin: 0px 0px 30px;
}
.why-choose-text {
    color: #fff;
}



.banner .vieosection {

    position: relative;
  
    overflow: hidden;
  
  }
  
  
  
  .video-container button.play-button {
  
background: #96171c;
  
width: 70px;
  
height: 70px;
  
border-radius: 95px;
  
border: 0;
  
position: absolute;
  
top: 40%;
  
left: 45%;
  
right: 0;
  
margin: 0 auto;
  
transition: 0.5s;
  }
  
  
  
  .video-container button.play-button span {
  
outline: 4px solid #fff;
  
outline-offset: 19px;
  
border-radius: 65px;
  
width: 12px;
  
height: 12px;
  
display: flex;
  
justify-content: center;
  
align-items: center;
  
margin: 0px auto;
  
text-align: center;
  
transition: 0.55s;
  }
  
  
  
  .video-container button.play-button:hover span i {
  
    color: #fff;
  
    background-color: transparent;
  
    border-radius: 35px;
  
    display: flex;
  
    justify-content: center;
  
  }
  
  
  
  .video-container button.play-button span i {
  
    color: #fff;
  
  }
  
  
  
  .video-container button.play-button:hover {
  
box-shadow: 0px 0px 20px 7px #96171c;
  
background-color: #000;
  
transform: scale(1.1);
  }
  

  section.number-set-sec {
    position: relative;
    padding: 28px 0px 40px;
    margin-bottom: 100px;
}

section.number-set-sec:before {
    position: absolute;
    content: '';
    top: -6px;
    right: 0;
    height: 100%;
    width: 100%;
    background: #96171c;
    z-index: -1;
}
.num-colu-box {
    display: flex;
    align-items: center;
    gap: 5px;
}
.number-text {
    text-align: center;
}

.number-text h3 {
    margin-bottom: 6px;
    font-size: 55px;
    color: #fff;
}
.number-text h5 {
    margin: 0;
    color: #fff;
    font-size: 22px;
}




/*TESTIMONIAL SECTION*/
.sec_head h2 {
    font-size: 52px;
    font-weight: 800;
    color: #000;
    margin: 0 0 0 0;
}
.testimonial_content{
  background-color: #fff;
  box-shadow: 0 0 12px #00000021;
  border-radius: 2px;
  padding: 30px 35px 60px;
  text-align: right;
  margin: 20px 0 0px 0px;
}
.testimonial_content p{
  font-size: 14px;
  /* font-weight: 400; */
  /* font-style: normal; */
  text-align: left;
  /* color: #8a8888; */
  line-height: 32px;
}
.testimonial_content img {
    margin: 0 0 0 auto;
    width: initial;
}

.testimonial_slider .slick-slide {
    margin: 0px 10px;
    opacity: 1;
}
.client_name h4{
  font-size: 18px;
  font-weight: 500;
  color: #000;
  margin-bottom: 0;
  text-transform: uppercase;
}
.client_name p{
  font-size: 14px;
  font-style: normal;
  color: #7c7c7c;
  margin-bottom: 0;
  line-height: 15px;
}
.client_name ul li{
  display: inline-block;
  font-size: 14px;
  color: #d8af08;
}
.client_description{
  display: flex;
  align-items: flex-end;
  margin-top: -25px;
  padding: 0 15px;
}
.client_iamge{
  border-radius: 50%;
  /* padding: 8px; */
  background-color: #fff;
  box-shadow: 0 0 20px #00000021;
  margin-right: 20px;
}
.client_iamge img{
  border-radius: 50%;
  height: 120px;
  width: 120px;

}
.testimonial_sec .slick-dots{
    bottom: -60px;
}
.testimonial_sec .slick-dots li button:before{
    content: '';
}
.testimonial_sec .slick-dots li {
    width: 25px;
    height: 6px;
    background: #6b6969;
    opacity: 1;
}
.testimonial_sec li.slick-active{
    background-color: #4169e1;
}



.sec_head h2 {
    font-size: 48px;
    /* font-family: 'OPTICopperplate'; */
    position: relative;
}
.sec_head h2:before {
    position: absolute;
    content: '';
    left: 45%;
    top: -22px;
    height: 6px;
    width: 9%;
    background: #96171c;
}
/* .sec_head h2:after {
   
} */

section.testimonial_sec {
    position: relative;
    margin-bottom: 80px;
}

section.testimonial_sec:before {
    position: absolute;
    content: '';
    right: 0%;
    top: -100px;
    height: 342px;
    width: 29%;
    background-image: url(../images/bg-side-points.png);
    background-repeat: no-repeat;
    background-size: cover;
}
/*Testimonal End*/


/* latest blog sec css start */
.lates-main-head {
    text-align: center;
    position: relative;
}

.lates-main-head:before {
    position: absolute;
    content: '';
    top: -20px;
    left: 46%;
    background: #96171c;
    height: 7px;
    width: 110px;
}
section.latest-blog-sec {
    /* background-color: #000;
    color: #fff; */
    padding: 73px 0 80px 0;
    margin-bottom: 90px;
  }
  ion.latest-blog-sec h4 {
    margin: 10px 0 56px 0;
  }
  .cont p {
    margin-bottom: 30px;
}
.cont img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    margin-bottom: 20px;
}

/*footer start*/
.footerSec {
    /* background-image: url(../images/footer-back.jpg); */
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 50px;
    background: #121313;
}
ul.footer-head li {
    display: flex;
    align-items: baseline;
}
.footerSec h4 {
  font-size: 28px;
  color: #fff;
  margin-left: 8px;
  font-weight: 700;
  text-transform: uppercase;
}
.footerSec p {
  font-size: 14.58px; 
  color: #fff;
}
ul.footer-media {
    display: flex;
    margin-top: 20px;
}
ul.footer-media  li {
  margin-right: 14px;
  background: #96171c;
  height: 35px;
  width: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
ul.footer-media li a {
  font-size: 20px;
  color: #fff;
  /* background: red; */
  /* height: 29px; */
  /* padding: 10px; */
  /* border-radius: 50%; */
}
ul.linkList li a {
    font-size: 16px;
    color: #fff;
    line-height: 2.5;
}
ul.footer-adress li {
    line-height: 2.5;
}
ul.footer-adress li i {
    color: #fff;
    font-size: 16px;
    margin-right: 10px;
}
ul.footer-adress li a {
    color: #fff;
    font-size: 16.82px;
    font-weight: 400;
}
.copy-right p {
    margin: 0;
    padding: 30px 0px;
}
.copy-right {
    border-top: 1px solid #fff;
    text-align: center;
    margin-top: 50px;
}
/*footer end*/

/*newsletter start*/
.letter-txt h3 {
    font-size: 46.08px;
    color: #fff;
    font-weight: 700;
    margin: 0;
  }
  .letter-txt h6 {
      font-size: 19.06px;
      color: #232429;
      font-weight: 400;
      margin: 0; 
  }
  .news-emial input {
      width: 100%;
      padding: 14px 20px;
      border: none;
      background: #f4f4f4;
      border-radius: 20px;
  }
  .news-emial {
    position: relative;
  }
  .subsribe-btn {
    position: absolute;
    top: 0;
    right: 0;
  }
  button.sub-btn {
      font-size: 17.22px;
      color: #fff;
      background: #121313;
      border: none;
      padding: 14px 50px;
      border-radius: 20px;
  }
  .news-emial input::placeholder {
    font-size: 17.22px; 
    color: #555555;
    font-family: 'Saira', sans-serif;
  }
  .border {
      border: 1px solid #000;
      padding: 40px 40px;
      background-color: #08c4b1;
      /* box-shadow: 0 0 10px 0 #0000008c; */
  }
  section.newsletter-sec {
      position: absolute;
      width: 100%;
      left: 0;
      margin-top: -47px;
  }
  /*newsletter end*/

 

  /* latest blog sec css end */



  .contact-txt h3 {

    font-size: 50px;

    line-height: 50px;

    color: #295e73;

    margin-bottom: 15px;

}

.contact-txt p{

  font-size: 13px;

  color: #1f1f1f;

}

.contact-txt {

/* width: 100%; */

text-align: center;

/* color: #fff; */
}

.contact-txt input {

width: 100%;

border: 1px solid #e1e1e1;

background-color: transparent;

padding: 12px;

border-radius: 5px;

margin-bottom: 30px;

outline: none;

color: #fff;
}

.contact-txt select {

width: 100%;

border: 1px solid #e1e1e1;

background-color: transparent;

padding: 12px;

border-radius: 5px;

margin-bottom: 30px;

outline: none;

-webkit-appearance: auto;
}

.contact-txt textarea{

width: 100%;

border: 1px solid #e1e1e1;

background-color: transparent;

padding: 12px;

border-radius: 5px;

margin-bottom: 30px;

outline: none;

height: 150px;

resize: none;
color: #fff;
}
select#searchresults4 {
    color: #fff;
}

.contact-txt select option {
    color: #000;
}

.contact-second h4 {

    font-size: 33px;

    line-height: 33px;

    margin-bottom: 30px;

    color: #fff;

}
.contact-form-set{
    background-image: url(../images/contact-left-sec-img.png);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 64px 60px;
    margin-top: 0px;
}
.contact-txt h3 {
    color: #fff;
}

.contact-txt p {
    color: #fff;
    margin-bottom: 20px;
}
button.btn-side-set {
    color: #fff;
    background: #96171c;
    padding: 13px 30px;
    border-radius: 30px;
    border: none;
    width: 44%;
}
section.contact-sec {
    position: relative;
    margin-bottom: 100px;
}

section.contact-sec:before {
    position: absolute;
    content: '';
    background-image: url(../images/contact-posi-back.png);
    height: 700px;
    width: 65%;
    background-size: cover;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    z-index: -1;
}
::placeholder {
    color: #fff;
    opacity: 1; /* Firefox */
  }




  .gt_option {
    position: absolute !important;
    left: 0;
    width: 100% !important;
}
.gt_container--hich1m .gt_switcher .gt_selected {
    background: unset !important;
    border: 1px solid #fff !important;
}

.gt_container--hich1m .gt_switcher .gt_selected a {
    color: #fff !important;
    padding: 10px 5px !important;
}

.gt_container--hich1m .gt_switcher .gt_selected a:after {
    filter: brightness(5.5);
    right: 10px !important;
}
.gt_container--hich1m .gt_switcher .gt_selected a:hover {
  background: unset !important;
}
.gt_container--hich1m .gt_switcher {
    font-family: Arial;
    font-size: 10pt;
    text-align: left;
    cursor: pointer;
    overflow: hidden;
    width: 110px !important; 
    line-height: 0;
}
.gt_container--hich1m .gt_switcher .gt_selected a {
    border: 1px solid #ccc;
    color: #666;
    padding: 3px 5px;
    width: 105px !important;
}





  /* CHAT ONLINE ON START */

  