

/* Please â¤ this if you like it! */

@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200;300;400;600;700;900&display=swap');
/*@import url('https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&subset=devanagari,latin-ext');*/

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* #Primary
================================================== */
:root {
    --blue: #283891;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red-m:#EC1C24;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #FFB81D;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
}

a {
    color: #283891;
    text-decoration: none;
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}
a:hover {
    color: var(--yellow);
    text-decoration: none;
}
body{
    /* font-family: 'Poppins', sans-serif; */
    font-family: 'Source Sans Pro', sans-serif;
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	color: #212112;
	/* background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/1462889/pat-back.svg'); */
	background-position: center;
	background-repeat: repeat;
	background-size: 7%;
	background-color: #fff;
	overflow-x: hidden;
    transition: all 200ms linear;
}
::selection {
	color: #fff;
	background-color: #8167a9;
}
::-moz-selection {
	color: #fff;
	background-color: #8167a9;
}
button:focus {
    outline: 0px dotted;
    outline: 0px auto -webkit-focus-ring-color;
}
h1{
	font-size: 48px;
	line-height: 1.2;
	font-weight: 700;
	color: #212112;
	text-align: center;
}
.h2, h2 {
    font-size: 3rem;
}
p{
	margin: 0;
	color: #6C757D;
	/* transform: translate(0);
    transition: all 300ms linear;
    transition-delay: 1700ms; */
}
.rwapper{
    position: relative;
    width:100%;
    height: 100%;
    display: block;
    overflow: hidden;
}
.custom-row{
    margin-right: -12px;
    margin-left: -12px;
}
.custom-row [class*='col-']{
    padding-right: 6px;
    padding-left: 6px;
}
.position-index{
    position: relative;
    z-index:2;
}
.thems-bg{
    background: var(--red-m); 
}
.btn-primary {
    color: #fff;
    background-color: var(--blue);
    border-color: var(--blue);
}
.btn-primary:hover,.btn-primary:focus{
    outline: none;
    background: var(--red-m);
    border-color: var(--red-m);
}
.btn-thems{
    background: var(--red-m);
}
.btn-thems:hover{
    color: #fff;
    background-color: #080808;
    border-color: #080808;
}
.btn-arrow i{
    margin-left: 6px;
    background: #AE191F;
    border-radius: 8px;
    width: 28px;
    height: 28px;
    line-height: 28px;
    font-size: 16px;
}
.btn-custom,.btn-md{
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
    border-radius: 13px;
    border: none;
    cursor: pointer;
    font-size: 20px;
    
}
.btn-sm{
    padding: 0.5rem 1.2rem;
    border-radius: 13px;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}
.btn-custom i{
    background: url(../images/right-arrow.svg);
    background-repeat: no-repeat;
    width: 21px;
    height: 17px;
    background-size: cover;
    top: 3px;
    position: relative;
}
.btn-transparent{
    position: relative;
    font-size: 1.2rem;
    padding: 1rem 0;
    color: var(--blue);
    font-weight: 400;
}
.btn-transparent::after{
    position: absolute;
    left: 0;
    width: 100%;
    content: '';
    top: 100%;
    height: 4px;
    background: var(--yellow);
}
.btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show>.btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgb(0 0 0 / 18%);
}
.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #080808;
    border-color: #080808;
}


/* =============-------start custom form with checkbox and radio button---------- ===========*/
.form-box{
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0px 11px 50px rgba(0, 0, 0, 0.07);
    position: relative;
    overflow: hidden;
    z-index: 2;
}
.form-box::after{
    position: absolute;
    right: -60px;
    top: -80px;
    content: '';
    width: 150px;
    height: 150px;
    background: rgb(251,211,209);
    background: radial-gradient(circle, rgba(251,211,209,1) 0%, rgba(255,255,255,1) 57%);
    z-index: -1;
    opacity: 0.5;
}
.form-group {
    position: relative;
    margin-top: 30px;
  }
  
  .form-control,
  .custom-file-label {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #e1e1e1;
    border-radius: 0;
    outline: 0;
    box-shadow: none;
    padding-left: 0;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  }
  
  .form-control:focus {
    border: none;
    border-bottom: 1px solid #00888c;
    box-shadow: 0px 2px 0px -1px #00888c;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s;
  }
  
  .form-control + label {
    color: #858484;
    position: absolute;
    top: 10px;
    left: 10px;
    transition: all 0.5s;
  }
  
  .form-control:focus + label,
  .form-control.has-value + label {
    top: -15px;
    left: 0px;
/*    transform: scale(0.8);*/
    transform-origin: top left;
  }
  
  label {
    color: #858484;
  }
  
  .form-control:focus + label {
    color: #00888c;
  }
  
  .custom-control-label::before {
    position: absolute;
    top: 0.25rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    pointer-events: none;
    content: "";
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #fff;
    border: 1px solid #ddd;
  }
  
  .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before,
  .custom-radio .custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    background-color: #00888c;
  }
  
  .custom-file-label {
    margin-top: 0;
    color: #858484;
  }
  
  .custom-file-label::after {
    border: none;
    border-radius: 0px;
    background: #858484;
    top: 1px;
    color: #fff;
  }
  
  /* Don't copy from here cuz it's already available on the buttons section above*/
  .btn-main {
    position: relative;
    padding: 6px 30px 12px;
    border-radius: 20px 20px 0px 20px;
    border: 1px solid transparent;
    background: #00888c;
    color: #fff;
  }
  
  .btn-main:hover {
    border-color: #005659;
  }
  
  .btn-main:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #005659;
    border-radius: 20px 20px 0px 20px;
    z-index: -1;
    transition: transform 0.5s;
  }
  
  .btn-main:hover:after {
    transform: translate(3px, 6px) scale(1.05);
    transition: transform 0.5s;
  }
  
  .custom-file-label {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #858484;
    border-radius: 0;
    outline: 0;
    box-shadow: none;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  }
  
  .form-control:focus {
    border: none;
    border-color: var(--red-m);
    /* border-bottom: 1px solid #ec1c24; */
    box-shadow: 0px 2px 0px -1px #ec1c24;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s;
  }
  
  .form-control + label,
   .form-control:focus + label,
  .form-control.has-value + label {
    color: #040404;
    position: absolute;
    top: -20px;
    left: 0;
    transition: all 0.2s;
    font-size: 18px;
  }
  
 /* .form-control:focus + label,
  .form-control.has-value + label {
    top: -15px;
    left: 0px;
    transform: scale(0.8);
    transform-origin: top left;
  }*/
  
  label {
    color: #858484;
  }
  
  .form-control:focus + label {
    color: #66cc46;
  }
  
  .custom-control-label::before {
    position: absolute;
    top: 0.25rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    pointer-events: none;
    content: "";
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #fff;
    border: 1px solid #ddd;
  }
  
  .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before,
  .custom-radio .custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    background-color: #00888c;
  }
  
  .custom-file-label {
    margin-top: 0;
    color: #858484;
  }
  
  .custom-file-label::after {
    border: none;
    border-radius: 0px;
    background: #858484;
    top: 1px;
    color: #fff;
  }
  
  /* Don't copy from here cuz it's already available on the buttons section above*/
  .btn-main {
    position: relative;
    padding: 6px 30px 12px;
    border-radius: 20px;
    background: var(--red-m);
    color: #fff;
    border: none;
  }
  
  .btn-main:hover {
    border-color: #005659;
  }
  
  .btn-main:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(216, 60, 60, 0.07);
    border-radius: 20px;
    z-index: -1;
    transition: transform 0.5s;
  }
  
  .btn-main:hover:after {
    transform: translate(3px, 6px) scale(1.05);
    transition: transform 0.5s;
  }
  




/* #Navigation
================================================== */

.navbar-light a.navbar-brand {
    font-size: 16px;
}

.navbar-light .navbar-brand font:first-child {
    margin-right: 33px;
}
.navbar-light .navbar-brand font {
    color: #000;
    font-size: 2em;
    text-transform: uppercase;
    font-weight: 700;
    margin-left: 0;
}

.navbar-light .navbar-brand .span_c {
    position: absolute;
    display: inline-block;
    width: 30px;
    left: 22px;
}
.tagline-underLogo {
    /* position: absolute; */
    /* bottom: 27px; */
    /* font-family: 'Avant Garde Demi BT'; */
    /* left: 50px; */
    margin-left: 53px;
    font-size: 13px;
    color: #131313;
    letter-spacing: 0.2px;
    margin-top: -6px;
    display: block;
    clear: both;
    font-weight: 500;
}

.crcle-half-left-inside {
  background: linear-gradient(to top,#000,#000);
    position: absolute;
    border-bottom-left-radius: 91px;
    border-top-left-radius: 90px;
    top: 16%;
    left: 32px;
    z-index: 9999;
    width: 14px;
    height: 28px;
    -webkit-animation: mover-logo1 1s infinite alternate;
    animation: mover-logo1 1s infinite alternate;
}

span.v-line:after {
    content: '';
    position: absolute;
    height: 90px;
    background-color: #f1503b;
    width: 1px;
    top: 2px;
    z-index: 999;
    left: 23.9%;
}

.navbar-light .navbar-brand .v-line {
    position: absolute;
    width: 2px;
    top: -10px;
    height: 66px;
    background: #ff1515;
    display: inline-block;
    left: 14px;
    border-radius: 4px;
}
.navbar-light .navbar-brand .v-line::before {
    height: 100%;
    width: 2px;
    content: '';
    top: 0;
    left: 0;
    background: red;
}


.crcle-half-left{
    background-color:#333;
    position:absolute;
    border-bottom-left-radius:91px;
    border-top-left-radius:90px;
    width:14px;
    height:28px;
    left:30px;
    -webkit-animation:mover-logo1 1s infinite alternate;
    animation:mover-logo1 1s infinite alternate
}
@keyframes mover-logo1{0%{transform:translateY(0)}25%{transform:translateY(-1px)}50%{transform:translateY(0)}100%{transform:translateY(10px)}}

@keyframes mover-logo2{0%{transform:translateY(0)}25%{transform:translateY(-1px)}50%{transform:translateY(0)}100%{transform:translateY(-10px)}}
.crcle-half-left-inside{
    background:linear-gradient(to top,#000,#000);
    position:absolute;
    border-bottom-left-radius:91px;
    border-top-left-radius:90px;
    top:16%;z-index:9999;
    width:14px;
    height:28px;
    -webkit-animation:mover-logo1 1s infinite alternate;
    animation:mover-logo1 1s infinite alternate
}
.crcle-half-right-inside{
  background: linear-gradient(to top,#e72e40,#f1503b);
    position: absolute;
    border-bottom-right-radius: 91px;
    border-top-right-radius: 90px;
    top: 16%;
    right: 69%;
    z-index: 9999;
    width: 14px;
    height: 28px;
    -webkit-animation: mover-logo2 1s infinite alternate;
    animation: mover-logo2 1s infinite alternate;
}



.start-header {
	opacity: 1;
	transform: translateY(0);
	padding: 10px 0;
	/* box-shadow: 0 10px 30px 0 rgba(138, 155, 165, 0.15); */
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
    position: relative;
    z-index: 999;
}
.start-header .navbar {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.start-header .call-us{
    width: auto;
}
.start-header .call-us a{
    position: relative;
    color: rgb(255, 255, 255);
    text-transform: none;
    background: var(--red-m);
    padding: 8px 20px;
    border-radius: 10px;
}
.start-header .call-us a i{
    margin-right: 5px;
    color: white;
    background: #AE191F;
    padding: 3px;
    border-radius: 3px;
}
.start-header .call-us a:hover{
    text-decoration: none;
}
.start-header.scroll-on {
	box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
	padding: 10px 0;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
    position: fixed;
    width: 100%;
}
/*.start-header.scroll-on .navbar-brand img{*/
/*	height: 36px;*/
/*	-webkit-transition : all 0.3s ease-out;*/
/*	transition : all 0.3s ease-out;*/
/*}*/
/* .navigation-wrap{
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1000;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
} */
.start-style{
    position:relative;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1000;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.logo-bw-ui {
    position: relative;
}
.navbar-brand img{
	/*height: 69px;*/
	/*width: auto;*/
	width:180px;
	display: block;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.navbar-toggler {
	float: right;
	border: none;
	padding-right: 0;
}
.navbar-toggler:active,
.navbar-toggler:focus {
	outline: none;
}
.navbar-light .navbar-toggler-icon {
	width: 24px;
	height: 17px;
	background-image: none;
	position: relative;
	border-bottom: 1px solid #000;
    transition: all 300ms linear;
}
.navbar-light .navbar-toggler-icon:after, 
.navbar-light .navbar-toggler-icon:before{
	width: 24px;
	position: absolute;
	height: 1px;
	background-color: #000;
	top: 0;
	left: 0;
	content: '';
	z-index: 2;
    transition: all 300ms linear;
}
.navbar-light .navbar-toggler-icon:after{
	top: 8px;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
	transform: rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
	transform: translateY(8px) rotate(-45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
	border-color: transparent;
}

.dropdown-menu .dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    font-size: 16px;
    letter-spacing: 0;
}
.nav-item:hover .nav-link{
	color: var(--red-m) !important;
}
.nav-item.active .nav-link{
	color: var(--red-m) !important;
}
.nav-link{
    color: #747474 !important;
    font-weight: 600;
    transition: all 200ms linear;
    font-size: 18px;
}
.nav-item:after{
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 2px;
	content: '';
	background-color: var(--red-m);
	opacity: 0;
    transition: all 200ms linear;
}
.nav-item:hover:after{
	bottom: 0;
	opacity: 1;
}
.nav-item.active:hover:after{
	opacity: 0;
}
.nav-item{
	position: relative;
    transition: all 200ms linear;
}

/* #Primary style
================================================== */

.bg-light {
	background-color: #fff !important;
    transition: all 200ms linear;
}
.section {
    position: relative;
	width: 100%;
	display: block;
    
}
.sec-ptb{
    padding: 4em 0;
}
.container-max{
    max-width: 94%;
    width: 100%;
    margin:  auto;
}
.full-height {
    height: 100vh;
}
.over-hide {
    overflow: hidden;
}
.absolute-center {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
  margin-top: 40px;
	transform: translateY(-50%);
	z-index: 20;
}


.nav-item .dropdown-menu {
    transform: translate3d(0, 10px, 0);
    visibility: hidden;
    opacity: 0;
	max-height: 0;
    display: block;
	padding: 0;
	margin: 0;
    transition: all 200ms linear;
}
.nav-item.show .dropdown-menu {
    opacity: 1;
    visibility: visible;
	max-height: 999px;
    transform: translate3d(0, 0px, 0);
}
.dropdown-menu {
	padding: 10px!important;
	margin: 0;
	font-size: 13px;
	letter-spacing: 1px;
	color: #212121;
	background-color: #fcfaff;
	border: none;
	border-radius: 3px;
	box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
    transition: all 200ms linear;
}
.dropdown-toggle::after {
	display: none;
}

.dropdown-item {
	padding: 3px 15px;
	color: #212121;
	border-radius: 2px;
    transition: all 200ms linear;
}
.dropdown-item:hover, 
.dropdown-item:focus {
	color: #fff;
	background-color: var(--blue);
}


.bg-slider{
    font-size: 20px;
    position: relative;
    height: 100%;
    padding: 3em 0;
}
/* .bg-slider .midle-box{
    display: table-cell;
    vertical-align: middle;
} */
.bg-slider::before{
    position: absolute;
    left: 0;
    top: 0;
    width: 200px;
    height: 200px;
    background: rgb(251,211,209);
    background: radial-gradient(circle, rgba(251,211,209,1) 0%, rgba(255,255,255,1) 84%);
}
.bg-slider::before,.bg-slider::after{
    width: 200px;
    height: 200px;
    content: '';
    background: rgb(251,211,209);
    background: radial-gradient(circle, rgba(251,211,209,1) 0%, rgba(255,255,255,1) 84%);
}
.bg-slider::before{
    position: absolute;
    left: -150px;
    top: 0;  
}
.bg-slider::after{
    position: absolute;
    right: -70px;
    bottom: -80px;  
}
.bg-slider .title-slider{
    padding-bottom: 30px;
}
.bg-slider .title-slider h2{
    font-weight: 700;
    font-size: 4em;
    line-height: 1.1;
    color: var(--red-m);
    
}
.bg-slider .title-slider h4{
    font-size: 1.8em;
    color: #03071E
}
.bg-slider .owl-dots{
    position: absolute;
    bottom: 12%;
}
.main-slider .img-slider{
    max-width: 100% !important;
    display: block;
    padding-top: 110px;
}

.main-slider .owl-dots .owl-dot span {
    width: 14px;
    height: 14px;
    margin: 5px 5px;
    background: #ffffff;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px;
    border: 2px solid #363636;
}
.main-slider .owl-dots .owl-dot.active span, .main-slider .owl-dots .owl-dot:hover span {
    background: #FFB81D;
    border-color: #FFB81D;
}


.carousel-strip{
    background: #000;
    padding: 1em 0;
}
.carousel-strip h3{
    color: #FFF;
    text-align: center;
}



.fetures-col{
    width: 100%;
    padding: 2em 0;
}
.fetures-col .line{
    height: 0.5px;
    background: #e7e7e7;
    width: 100%;
    margin: 2em 0;
}
.fetures-col h3{
    font-size: 2em;
}
.fetures-col .item-box{
    width: 100%;
    position: relative;
    padding-left: 60px;
    text-align: left;
    font-size: 22px;
}
.fetures-col .item-box span{
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 80px;
}
.fetures-col .item-box span img{
    max-width: 100%;
    display: block;
}
.fetures-col .item-box h4{
    font-weight: 400;
    font-size: 1.2em;
}
.fetures-col .item-box p{
    font-size: 0.8em;
}

.fetures-col h4{
    font-weight: 400;
}

/* end-of-feature section */

.main-headings {
    width: 100%;
    display: block;
    position: relative;
    z-index: 2;
}
.main-headings h4{
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    color: #ec1c24;
    font-size: 1.2em;
}
.img-title{
    width: 130px;
    margin-bottom: 13px;
    display: inline-block;
}
.img-title img{
    max-width: 100%;
    display: block;
}
.main-headings h2 {
    font-weight: 500;
}
.main-headings h5 {
    position: relative;
    display: inline-block;
    font-weight: 400;
    padding: 0 33px;
}
.custom-row {
    margin-right: -12px;
    margin-left: -12px;
}
.custom-row [class*='col-'] {
    padding-right: 6px;
    padding-left: 6px;
}
/* satart-of-offers-feat*/
.offers-feat{
    position: relative;
    width: 100%;
}
.offers-feat .card{
    width: 100%;
    border: none;
    padding: 30px;
    border-radius: 20px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    padding-bottom:70px;
}
.offers-feat .card a{
   color:#000;
}
.offers-feat .card::before {
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 100%;
    content: '';
    background: var(--red-m);
    z-index: -1;
    opacity: 0;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
}

.offers-feat .card span{
    /* display: block; */
    margin-bottom: 1em;
    background: #ffb5bc;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 3px;
}
.offers-feat .card h3{
    display: block;
    margin-bottom: 0.8em;
    font-size: 1.3em;
}
.offers-feat .card:hover{
    box-shadow: 0 10px 30px rgb(253, 177, 177);
}
.offers-feat .card:hover a{
   color:#fff;
}
.offers-feat .card:hover::before{
    opacity: 1;
    height: 100%;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
}
.offers-feat .card:hover span{
    background: #FFF;
    color: #FFFF;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    line-height: 50px;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
}
.offers-feat .card:hover p,.offers-feat .card:hover h3{
    color: #FFF;
}
.offers-feat .img-over{
    width: 100%;
    margin-bottom: 6em;
}
.offers-feat .img-over img{
    position: absolute;
    right: 0;
    top: 0;
    max-width: 80%;;
}
/* start-about-section*/
.about-section{
    display: block;
}
.about-section .img-shape{
    max-width: 230px;
    margin: 0 auto;
}
.about-section .img-shape .text-border{
    border: 2px solid #e1e1e1;
    padding: 0.6em 2em;
    border-radius: 2em;
}
.about-section .content{
    padding: 0;
}
.about-section .content h2{
    margin-bottom: 0.5em;
}
.about-section .content p{
    margin-bottom: 1.5em;
}

/* start-digtal-marketing-section*/
.digi-section{
    width: 100%;
    height: 100%;
    font-size: 16px;
}
.digi-section .gap{
    margin-bottom:120px;
}
.digi-section h2{
    margin-bottom: 30px;
    line-height: 1.1;
    font-size: 4em;
}
.digi-section h3{
    font-size: 2em;
}
.digi-section p{
    color: #FFF;
}
.digi-section .text-border{
    color: #FFF;
    padding: 0.4em 2em;
    border: 2px solid #FFF;
    text-align: center;
    display: inline-flex;
    border-radius: 30px;
}
.digi-section .text-border:hover{
    color: var(--red-m);
    background: white;
}
.list-items,.list-items-bull{
    width: 100%;
}
.list-items ul, .list-items-bull ul{
    display: block;
    list-style-type: none;
}

.list-items ul li{
    position: relative;
    padding-left: 2em;
    border-bottom: 1px solid rgba(255, 184, 184, 0.3);
    margin-top: 0;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
}
.list-items-bull ul li{
    position: relative;
    padding-left: 2em;
}


.list-items ul li::before{
    background: url(../images/bullets.png);
}
.list-items-bull ul li::before{
    background: url(../images/bullets.svg);
}
.list-items ul li::before,.list-items-bull ul li::before{
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
    top:16px;
    width: 20px;
    height: 20px;
    content: ''; 
}
.list-items-bull ul.chosseUs li{
    padding-left:0;
    position:relative;
    display:flex;
    align-items:center;
    padding-bottom:15px;
    padding-top:0;
}
.list-items-bull ul.chosseUs li a{
    width: calc(100% - 65px);
    padding-left: 20px;
    border: none;
}
.list-items-bull ul.chosseUs li::before{
    content:'';
    display:none;
}
.list-items ul li a{
    padding: 0.5em;
    line-height: 1.1;
    color: white;
    display: block;
}
.list-items-bull ul li a{
    padding: 1.2em 0.5em;
    line-height: 1.1;
    color: rgb(10, 10, 10);
    border-bottom: 1px solid rgba(255, 184, 184, 0.3);
    display: block;
}


.hover-blur {
    display: block;
    position: relative;
    overflow: hidden;
  }
  .hover-blur::after{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    content: '';
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(255,255,255,0) 46%);
    z-index: 1;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    transition: all 0.5s linear;
  }
  .hover-blur img {
    width: 100%;
    height: auto;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  .hover-blur:hover img {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
  }
  .hover-blur:hover{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 0px;
    margin-bottom: 0px;
    height: 100%;
    width: 100%;
    padding: 0;
    text-align: center;
    background-color: rgba(255, 184, 184, 0.3);
    -webkit-background-size: 3px 3px;
    -moz-background-size: 3px 3px;
    background-size: 3px 3px;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    transition: all 0.5s linear;
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity:1;
    z-index: 2;
  }
  .hover-blur h2 {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 0px;
    margin-bottom: 0px;
    transform: translate(-50%, -50%);
    text-align: center;
    -webkit-background-size: 3px 3px;
    -moz-background-size: 3px 3px;
    background-size: 3px 3px;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    transition: all 0.5s linear;
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
    z-index: 2;
    font-size: 1.9em;
  }
  .hover-blur h2 .eye{
    display: inline-block;
    width: 24px;
    margin-left: 15px;
  }
  .hover-blur::before{
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    transition: all 0.5s linear;
    position:absolute;
    content: '';
    background: var(--red-m);
    height: 100%;
    width: 100%;
    z-index: 1;
    top: 0;
    left: 0;
    opacity: 0;
  }
  .hover-blur:hover::before{
    height: 100%;
    width: 100%;
    opacity: 0.9;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  .hover-blur:hover h2 {
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
  }
  .hover-blur .over{
    position: absolute;
    bottom: 16px;
    width: 100%;
    color: #FFF;
    z-index: 2;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    transition: all 0.5s linear;
  }
  .hover-blur:hover .over{
    opacity: 0;
  }
  .hover-blur .text-white {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    transition: all 0.5s linear;
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
  }
  .hover-blur:hover .text-white {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    transition: all 0.5s linear;
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=1)";
    filter: alpha(opacity=1);
    opacity: 1;
  }
/* start-pipeline-section*/
.pipeline-section{
    width: 100%;
}
.pipeline-section .content {
    padding: 4em;
    /* max-width: 600px;
    margin: 0 auto; */
    font-size: 16px;
}
.pipeline-section .content h2{
    font-size: 3rem;
}
.pipeline-section .content h4{
    font-weight: 400;
}
.pipeline-section .content.service-items{
  display: block;
  font-size: 20px;
}
.pipeline-section .list-sample{
    width: 100%;
}
.pipeline-section .content.service-items ul,.pipeline-section .list-sample ul{
    display: block;
    list-style-type: none;
}
.pipeline-section .list-sample ul{
    margin-left: 30px;
}
.pipeline-section .content.service-items ul li{
    border: 1px solid #f2f2f2;
    padding: 20px;
    width: calc(50% - 28px);
    margin: 6px;
    display: inline-block;
    border-radius: 3px;
    position: relative;
    padding-left: 53px;
}
.pipeline-section .list-sample ul li{
    width: 100%;
    border: none;
    padding: 10px;
    padding-left: 53px;
    position: relative;
}
.pipeline-section .list-sample ul li::before{
    content: '\f269';
    position: absolute;
    left: 16px;
    top: 13px;
    font-size: 2em;
    display: inline-block;
    font: normal normal normal 14px/1 'Material-Design-Iconic-Font';
    font-size: 20px;
    color: var(--blue);
}
.pipeline-section .content.service-items ul li::before{
    content: '\f269';
    position: absolute;
    left: 24px;
    top: 23px;
    font-size: 2em;
    display: inline-block;
    font: normal normal normal 14px/1 'Material-Design-Iconic-Font';
    font-size: 20px;
    color: var(--blue);

}
.pipeline-section .img-shape{
    width: 100%;
    position: relative;
}
.pipeline-section .img-shape.over-all{
    width: 100%;
    position: relative;
    border-top-right-radius: 20px;
    overflow: hidden;
    border-bottom-right-radius: 200px;
}
.pipeline-section .img-shape img{
    width: 100%;
}
.pipeline-section .img-shape::after{
    position: absolute;
    left: 50%;
    bottom: -23px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--blue);
    content: '';
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -webki-transform: translateX(-50%);
    transform: translateX(-50%);
    animation: fade-up;
}
.box-left-radius{
    position:relative;
    width: 100%;
    padding-top: 2.5em;
    font-size: 20px;
}
.box-left-radius h2{
   font-size: 2em;
}
/* .box-left-radius::before{
    position:absolute;
    right: 0;
    top:0;
    width: 50%;
    height: 100%;
    background: var(--blue) url(../images/coworkers-having-work-meeting-office.jpg);
    background-size: cover;
    content: '';
    border-top-left-radius: 200px;
    overflow: hidden;
    border-bottom-left-radius: 20px
    
} */
/* get-in-touch-for-start */
.getin-touch{
    background: url(../images/skyscrapers-tropical-trees.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}
.getin-touch .form-group {
    margin-bottom: 2.5rem;
}
.getin-touch .form-group .form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: transparent;
    background-clip: padding-box;
    border: none;
    border-bottom: 2px solid #ced4da;
    border-radius: 0;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.getin-touch .form-group .form-control:focus {
    color: #495057;
    background-color: transparent;
    border-color: var(--blue);
    outline: 0;
    box-shadow: 0 0 0 0 rgb(0 123 255 / 25%);
}

.insider-50{
    width: 100%;
    position: relative;
}
.insider-50::after{
    position: absolute;
    left: 0;
    top:0;
    width: 50%;
    content: '';
    height: 100%;
    background: url(../images/banner-1A.jpg);
    background-size: cover;
    z-index: -1;
    background-position: center;
}
/* blog-section-start */
.blog-sec{
    width: 100%;
    padding: 3em 0;
}
.blog-sec .starter-template {
    text-align: center;
}

.blog-sec span.lower-text {
    color: #ffc300;
    font-size: 25px;
    display: block;
}

.blog-sec .hover-div {
    /* padding: 20px 20px; */
    /* text-align: center; */
    /* min-height: 350px; */
    text-align: left;
}

.blog-sec .hover-div {
    border-top: 1px solid #f8f8f8;
    background: #FFF;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    margin: 10px 0px;
    border-radius: 20px;
    font-size: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}
.blog-sec .hover-div img{
    width: 100%;
}
.blog-sec .hover-div:hover {
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
    box-shadow: 0 22px 43px rgba(0, 0, 0, 0.32);
    cursor: pointer;
    border-radius: 20px;
}
.blog-sec .hover-div_inner{
    margin-top: 20px;
    padding: 20px;
}
.blog-sec .hover-div_inner h3{
    font-size: 1.5em;
    font-weight: 400;
}
.blog-sec .hover-div_inner h3 a{
    color: #3B383B;
}
.blog-sec .hover-div-lower{
    margin: 1em 0;
}
.blog-sec .hover-div-lower a{
    font-size: 1.3em;
}


/* start our client section */
.clients-carousel{
   width: auto;
}
.clients-carousel .owl-stage-outer{
    padding: 24px 0px;
}
.clients-carousel .item div{
    background: #FFF;
    box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.07);
    padding: 20px;
    border-radius: 20px;
}

/* -------=about us section start===----------- */
.inner-banner{
    background: url(../images/banner-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;

}
.contact-us{
    background: url(../images/contact-baner.jpg);
    background-size: cover;;
    background-repeat: no-repeat;
    background-position: center right;
}
.inner-banner .bg-banner{
    padding-bottom: 2em;
    padding-top: 4em;
}
.inner-banner .title-banner{
    color: #FFF;
    
}
.inner-banner .title-banner h2{
    color: #FFF;
}
.inner-banner .strip-img{
    background: #FFF;
    border-radius: 20px;
    padding: 16px;
    
    -webkit-box-shadow: 0px 20px 30px 0px rgb(52 104 190 / 10%);
    -moz-box-shadow: 0px 20px 30px 0px rgba(52,104,190,0.10);
    box-shadow: 0px 20px 30px 0px rgb(52 104 190 / 10%);
}
.inner-banner .strip-img .img-box{
    overflow: hidden;
    border-radius: 20px;
}

.inner-banner .breadcrumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 1rem;
    list-style: none;
    background-color: transparent;
    border-radius: 0.25rem;
}
.inner-banner .breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    color: #74a9d8;
    content: "/";
}
.breadcrumb-item.active {
    color: #FFF;
}
.breadcrumb-item a{
    color: #89c8ff;
}
.breadcrumb-item a:hover{
    color: #FFF;
    text-decoration: underline;
}
.about-col {
    width: 100%;
    padding: 3em 0;
    background: #FFF;
}
.about-col h2{
    font-weight: 300;
}
.about-col h6{
    color: var(--blue);
    margin-bottom: 28px;
}







.Marquee {
    /* background: -webkit-linear-gradient(225deg, #008ed9, #8b00db);
    background: -moz-linear-gradient(225deg, #008ed9, #8b00db);
    background: -o-linear-gradient(225deg, #008ed9, #8b00db);
    background: -ms-linear-gradient(225deg, #008ed9, #8b00db);
    background: linear-gradient(-135deg, #008ed9, #8b00db); */
    background: #040404;
    width: 100%;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 1em;
    color: #fff;
    font-weight: 200;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    overflow: hidden;
  }
  .Marquee-tag a{
    color:#fff;
}
  .Marquee-content {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-animation: marquee 3s linear infinite running;
    -moz-animation: marquee 3s linear infinite running;
    -o-animation: marquee 3s linear infinite running;
    -ms-animation: marquee 3s linear infinite running;
    animation: marquee 3s linear infinite running;
  }
  .Marquee-content:hover {
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
    -ms-animation-play-state: paused;
    animation-play-state: paused;
  }
  .Marquee-tag {
    width: auto;
    white-space: nowrap;
    margin: 0 1em;
    padding: 0.5em 1em;
    font-weight: 500;
    font-size: 20px;
    border-radius: 20px;
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-box;
    display: inline-flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -o-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .Marquee-tag:hover {
    background: var(--red-m);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    cursor: pointer;
  }
  @-moz-keyframes marquee {
    0% {
      -webkit-transform: translateX(0);
      -moz-transform: translateX(0);
      -o-transform: translateX(0);
      -ms-transform: translateX(0);
      transform: translateX(0);
    }
    100% {
      -webkit-transform: translate(-50%);
      -moz-transform: translate(-50%);
      -o-transform: translate(-50%);
      -ms-transform: translate(-50%);
      transform: translate(-50%);
    }
  }
  @-webkit-keyframes marquee {
    0% {
      -webkit-transform: translateX(0);
      -moz-transform: translateX(0);
      -o-transform: translateX(0);
      -ms-transform: translateX(0);
      transform: translateX(0);
    }
    100% {
      -webkit-transform: translate(-50%);
      -moz-transform: translate(-50%);
      -o-transform: translate(-50%);
      -ms-transform: translate(-50%);
      transform: translate(-50%);
    }
  }
  @-o-keyframes marquee {
    0% {
      -webkit-transform: translateX(0);
      -moz-transform: translateX(0);
      -o-transform: translateX(0);
      -ms-transform: translateX(0);
      transform: translateX(0);
    }
    100% {
      -webkit-transform: translate(-50%);
      -moz-transform: translate(-50%);
      -o-transform: translate(-50%);
      -ms-transform: translate(-50%);
      transform: translate(-50%);
    }
  }
  @keyframes marquee {
    0% {
      -webkit-transform: translateX(0);
      -moz-transform: translateX(0);
      -o-transform: translateX(0);
      -ms-transform: translateX(0);
      transform: translateX(0);
    }
    100% {
      -webkit-transform: translate(-50%);
      -moz-transform: translate(-50%);
      -o-transform: translate(-50%);
      -ms-transform: translate(-50%);
      transform: translate(-50%);
    }
  }














.sect-val{
    padding: 3em 0;
}
.sect-val .card-box{
    background: var(--blue);
    color: white;
    padding: 15px;
    margin: 6px;
    border-radius: 3px;
    font-size: 18px;
    min-height: 100px;
    display: table;
    width: auto;
}

.sect-val .card-box h3,.sect-val .card-box p{
    color: #FFF;
}
.sect-val .card-box p{
    display: table-cell;
    vertical-align: middle;
}
.sect-val .card-box h3{
    font-size: 1.3em;
}

.sect-val .card-box .midle-conntent{
    display: table-cell;
    vertical-align: middle;
}


/* start contact us section */
.sec-title-style1 {
    position: relative;
    display: block;
    margin-top: -9px;
    padding-bottom: 50px;
}
.sec-title-style1.max-width{
    position: relative;
    display: block;
    max-width: 770px;
    margin: -9px auto 0;
    padding-bottom: 52px;    
}
.sec-title-style1.pabottom50 {
    padding-bottom: 42px;
}
.sec-title-style1 .title {
    position: relative;
    display: block;
    color: #131313;
    font-size: 36px;
    line-height: 46px;
    font-weight: 700;
    text-transform: uppercase;
}
.sec-title-style1 .title.clr-white{
    color: #ffffff;
}
.sec-title-style1 .decor {
    position: relative;
    display: block;
    width: 70px;
    height: 5px;
    margin: 19px 0 0;
}
.sec-title-style1 .decor:before{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 5px;
    height: 5px;
    background: #FFA500;
    border-radius: 50%;
    content: "";
}
.sec-title-style1 .decor:after{
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    width: 5px;
    height: 5px;
    background: #FFA500;
    border-radius: 50%;
    content: "";
}
.sec-title-style1 .decor span {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 1px;
    background: #FFA500;
    margin: 2px 0;
}


.sec-title-style1 .text{
    position: relative;
    display: block;
    margin: 7px 0 0;
}
.sec-title-style1 .text p{
    position: relative;
    display: inline-block;
    padding: 0 15px;
    color: #131313;
    font-size: 14px;
    line-height: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}
.sec-title-style1 .text.clr-yellow p{
    color: #FFA500;
}
.sec-title-style1 .text .decor-left{
    position: relative;
    top: -2px;
    display: inline-block;
    width: 70px;
    height: 5px;
    background: transparent;
}
.sec-title-style1 .text .decor-left span {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 1px;
    background: #bf1e2d;
    content: "";
    margin: 2px 0;
}
.sec-title-style1 .text .decor-left:before{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 5px;
    height: 5px;
    background: #bf1e2d;
    border-radius: 50%;
    content: "";
}
.sec-title-style1 .text .decor-left:after{
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    width: 5px;
    height: 5px;
    background: #bf1e2d;
    border-radius: 50%;
    content: "";
}

.sec-title-style1 .text .decor-right{
    position: relative;
    top: -2px;
    display: inline-block;
    width: 70px;
    height: 5px;
    background: transparent;
}
.sec-title-style1 .text .decor-right span {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50px;
    height: 1px;
    background: #bf1e2d;
    content: "";
    margin: 2px 0;
}
.sec-title-style1 .text .decor-right:before{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 5px;
    height: 5px;
    background: #bf1e2d;
    border-radius: 50%;
    content: "";
}
.sec-title-style1 .text .decor-right:after{
    position: absolute;
    top: 0;
    left: 10px;
    bottom: 0;
    width: 5px;
    height: 5px;
    background: #bf1e2d;
    border-radius: 50%;
    content: "";
}

.sec-title-style1 .bottom-text{
    position: relative;
    display: block;
    padding-top: 16px;
}
.sec-title-style1 .bottom-text p{
    color: #848484;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    margin: 0;
}
.sec-title-style1 .bottom-text.clr-gray p{
    color: #cdcdcd;    
}
.contact-address-area{
    position: relative;
    display: block;
    background: #ffffff;
    padding: 60px 0 120px;
}
.contact-address-area .sec-title-style1.max-width {
    padding-bottom: 72px;
}
.contact-address-box{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;    
}
.single-contact-address-box {
    position: relative;
    display: block;
    background: #f4f4f4;
    padding: 85px 30px 77px;
}
.single-contact-address-box .icon-holder{
    position: relative;
    display: block;
    padding-bottom: 24px;
}
.single-contact-address-box .icon-holder span:before{
    font-size: 75px;
}
.single-contact-address-box h3{
    color: #ffffff;
    margin: 0px 0 9px;
}
.single-contact-address-box h2{
    color: var(--blue);
    font-size: 38px;
    font-weight: 600;
    margin: 0 0 19px;
}
.single-contact-address-box a{
    color: #ffffff;
}

.single-contact-address-box.main-branch {
    background: var(--blue);
    padding: 53px 30px 51px;
    margin-top: -20px;
    margin-bottom: -20px;
    border-radius: 4px;
}
.single-contact-address-box.main-branch h3{
    color: #ffffff;
    font-size: 48px;
    font-weight: 300;
    margin: 0 0 38px;
    /* text-transform: uppercase;*/
}
.single-contact-address-box.main-branch .inner{
    position: relative;
    display: block;
    
}
.single-contact-address-box.main-branch .inner ul{
    position: relative;
    display: block;
    overflow: hidden;
}
.single-contact-address-box.main-branch .inner ul li{
    position: relative;
    display: block;
    padding-left: 180px;
    padding-bottom: 23px;
    margin-bottom: 24px;
    position: relative;
}
.single-contact-address-box.main-branch .inner ul li i{
    position: absolute;
    left: 0;
    top: 0px;
    /* width: 60px; */
    /* height: 60px; */
    color: #d9ebff;
    line-height: 62px;
    /* border-radius: 50%; */
    /* text-align: center; */
    /* border: 2px solid #FFF; */
    font-size: 27px;
}
.single-contact-address-box.main-branch .inner ul li:last-child{
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.single-contact-address-box.main-branch .inner ul li .title{
    position: absolute;
    top: 13px;
    left: 45px;
    display: inline-block;
}
.single-contact-address-box.main-branch .inner ul li .title h4{
    color: #FFF;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    text-transform: capitalize;
    border-bottom: 2px solid #ffffff;
}

.single-contact-address-box.main-branch .inner ul li .text{
    position: relative;
    display: block;
}
.single-contact-address-box.main-branch .inner ul li .text p{
    color: #FFF;
    font-size: 20px;
    line-height: 24px;
    margin: 0;
}

.contact-info-area {
    position: relative;
    display: block;
    background: #ffffff;
}
.contact-form {
    position: relative;
    display: block;
    background: #ffffff;
    z-index: 3;
}
.contact-form .sec-title-style1{
    position: relative;
    display: block;
    padding-bottom: 51px;
    width: 50%;
}
.contact-form .text-box{
    position: relative;
    display: block;
    margin-top: 19px;
    width: 50%;    
}
.contact-form .text p{
    color: #848484;
    line-height: 26px;
    margin: 0;
}

.contact-form .inner-box{
    position: relative;
    display: block;
    background: #ffffff;
}
.contact-form form{
    position: relative;
    display: block;
}
.contact-form form .input-box{
    position: relative;
    display: block;
}

.contact-form form input[type="text"],
.contact-form form input[type="email"],
.contact-form form textarea{
    position: relative;
    display: block;   
    background: #ffffff;
    border: 1px solid #eeeeee;
    width: 100%;
    height: 55px;
    font-size: 16px;
    padding-left: 19px;
    padding-right: 15px;
    border-radius: 3px;
    margin-bottom: 20px;
    transition: all 500ms ease;
}
.contact-form form textarea {
    height: 130px;
    padding-left: 19px;
    padding-right: 15px;
    padding-top: 14px;
    padding-bottom: 15px;
}
.contact-form form input[type="text"]:focus{
    color: #222222;
    border-color: #d4d4d4; 
}
.contact-form form input[type="email"]:focus{
    color: #222222;
    border-color: #d4d4d4;
}
.contact-form form textarea:focus{
    color: #222222;
    border-color: #d4d4d4;
}
.contact-form form input[type="text"]::-webkit-input-placeholder {
    color: #848484;
}
.contact-form form input[type="text"]:-moz-placeholder {
    color: #848484;
}
.contact-form form input[type="text"]::-moz-placeholder {
    color: #848484;
}
.contact-form form input[type="text"]:-ms-input-placeholder {
    color: #848484;
}
.contact-form form input[type="email"]::-webkit-input-placeholder {
    color: #848484;
}
.contact-form form input[type="email"]:-moz-placeholder {
    color: #848484;
}
.contact-form form input[type="email"]::-moz-placeholder {
    color: #848484;
}
.contact-form form input[type="email"]:-ms-input-placeholder {
    color: #848484;
}
.contact-form form button {
    position: relative;
    display: block;
    width: 100%;
    background: var(--blue);
    border: 1px solid var(--blue);
    color: #ffffff;
    font-size: 16px;
    line-height: 55px;
    font-weight: 600;
    text-align: center;
    text-transform: capitalize;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    cursor: pointer;
    border-radius: 3px;
}

.contact-form form button:hover{
    color: #ffffff;
    background: #131313;
}

/* start-footer-section */

footer{
    width: 100%;
    display: block;
    font-size: 16px;
    padding: 1px 0;
    background: #000;
    position:absolute;
}
footer .navbar-light .navbar-brand font {
    color: #fff;
    font-size: 2em;
    text-transform: uppercase;
    font-weight: 700;
    margin-left: 0;
}
footer .crcle-half-left-inside{
    background: linear-gradient(to top,#FFF,#FFF);
}
footer .tagline-underLogo{
    color: #FFF;
}
footer h3{
    font-size: 1.4em;
    margin-bottom: 1em;
    color: #FFF;
}
footer .footer-links,footer .contact-ifo{
    display: block;
}
footer .footer-links ul,footer .contact-ifo ul{
    margin: 0;
    padding: 0;
    list-style-type: none;
}
footer .footer-links ul li,footer .contact-ifo ul li{
    display: block;
    margin:7px 0;
    color: #6C757D;
}
footer .contact-ifo ul li{
    padding-left: 40px;
    position: relative;
    
}
footer .contact-ifo ul li:nth-child(2) p{
    font-size: 14px;
    color: #3B383B;
}
footer .contact-ifo ul li i{
    color: var(--blue);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.3em;
}
footer .footer-links ul li a,footer .contact-ifo ul li a{
    font-size: 16px;
    margin:5px 0;
    color: #6C757D;
    font-weight: 600;
}
footer .footer-links ul li a:hover,footer .contact-ifo ul li a:hover{
    color: var(--red-m);
    
}
footer .inline-links{
    width: 100%;
}
footer .inline-links ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
footer .inline-links ul li{
    display: inline-block
}
footer .inline-links ul li a{
    color: #6C757D;
    font-weight: 600;
    font-size: 20px;
}
footer .inline-links ul li a:hover{
    color: var(--red-m);
}
footer .foot-bot{
/*    border-top: 1px solid #454545;*/
    padding:0em 0 1em 0;
}
footer .foot-bot p{
    font-size: 16px;
}
footer .social-media{
    width: 100%;
}
footer .social-media ul{
    display: flex;
    list-style-type: none;
    margin: 0;
    align-items: center;
    justify-content: space-between;
}
footer .social-media ul li{
    margin: 6px;
    padding: 0;
    display: inline-block;
}
footer .social-media ul li a{
    width: 30px;
    height: 30px;
    display: block;
    color: #FFF;
    text-align: center;
    line-height: 30px;
    font-size: 22px;
}


.foot-strip {
    background: #FFF;
    border-radius: 10px;
    padding:15px 30px;
    position: relative;
    left: 0;
    top: -30px;
    box-shadow:0px 6px 30px rgb(29 3 3 / 37%);
}
.foot-strip h3{
   color:#000;
   margin:0;
}

.btnEnquire-link {
    padding: 15px 30px !important;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff !important;
    background: #ff0000;
    font-weight: 600;
    position: relative;
    top: 0px;
    margin-left: 0;
    height: 50px;
    line-height: 20px;
    text-align: center;
}
/* #Media query start
================================================== */

@media (max-width: 767px) { 
	h1{
		font-size: 38px;
	}
	.nav-item:after{
		display: none;
	}
	.nav-item::before {
		position: absolute;
		display: block;
		top: 15px;
		left: 0;
		width: 11px;
		height: 1px;
		content: "";
		border: none;
		background-color: #000;
		vertical-align: 0;
	}
	.dropdown-toggle::after {
		position: absolute;
		display: block;
		top: 10px;
		left: -23px;
		width: 1px;
		height: 11px;
		content: "";
		border: none;
		background-color: #000;
		vertical-align: 0;
		transition: all 200ms linear;
	}
	.dropdown-toggle[aria-expanded="true"]::after{
		transform: rotate(90deg);
		opacity: 0;
	}
	.dropdown-menu {
		padding: 0 !important;
		background-color: transparent;
		box-shadow: none;
		transition: all 200ms linear;
	}
	.dropdown-toggle[aria-expanded="true"] + .dropdown-menu {
		margin-top: 10px !important;
		margin-bottom: 20px !important;
	}
	body.dark .nav-item::before {
		background-color: #fff;
	}
	body.dark .dropdown-toggle::after {
		background-color: #fff;
	}
	body.dark .dropdown-menu {
		background-color: transparent;
		box-shadow: none;
	}
	footer .inline-links ul li a {
  font-size: 16px;
    padding: 0;
}
footer .row{margin-top:0!important;}
.navbar-brand img {
    width: 144px;
}
section.client-testimonial .main-headings h2{margin-bottom:30px;}
}

/* #Link to page
================================================== */

.logo {
	position: absolute;
	bottom: 30px;
	right: 30px;
	display: block;
	z-index: 100;
	transition: all 250ms linear;
}
.logo img {
	height: 26px;
	width: auto;
	display: block;
  filter: brightness(10%);
	transition: all 250ms linear;
}
body.dark .logo img {
  filter: brightness(100%);
}

@media(max-width:768px){
    /* .container {
        width: calc(100% - 40px);
        padding-right: 20px;
        padding-left: 20px;
        margin-right: auto;
        margin-left: auto;
    } */
    .start-header{
        box-shadow: 0 10px 30px 0 rgb(138 155 165 / 15%);
    }
    .start-header .navbar {
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .main-headings{
        text-align: center;
    }
    .main-headings h2 {
        font-size: 2rem;
        font-weight: 600;
    }
    .offers-feat .img-over {
        width: 100%;
        margin-bottom: 0;
        background: #ff7676;
        height: 175px;
        border-radius: 20px;
    }
    .offers-feat .img-over img {
        position: relative;
        right: 0;
        top: 0;
        max-width: 250px;
        margin: 0 auto;
        display: block;
    }
    .banner-slider{
        background: rgb(40 56 145);
        background: linear-gradient(90deg, rgb(110 122 146) 0%, rgb(149 94 110) 99%);
    }
    .bg-slider {
        background: transparent;
        padding: 20px 15px;
        overflow: hidden;
        border-radius: 0;
        font-size: 16px;
    }
    .form-box{
        margin-bottom: 30px;
    }
    .bg-slider .title-slider h2 {
        font-weight: 700;
        font-size: 3em;
    }
    .main-slider .img-slider {
        max-width: 100% !important;
        display: block;
        padding-top: 0;
    }
    .main-slider .title-slider {
        padding: 38px 0px;
        text-align: center;
    }
    .main-slider .title-slider h2 {
        font-weight: 600;
        font-size: 1.5em;
        color: #ffffff;
    }
    .about-section .img-shape {
        max-width: 230px;
        margin: 0 auto;
        text-align: center;
    }
    .about-section .img-shape .text-border {
        border: 2px solid #626262;
        padding: 0.6em 2em;
        border-radius: 2em;
        margin-bottom: 1em;
        display: block;
    }
    .digi-section{
        font-size: 16px;
    }
    .digi-section h2{
        font-size: 2em;
    }
    .pipeline-section .content h2 {
        font-size: 2rem;
    }
    .getin-touch{
        height: 100%;
    }
}
@media(max-width:480px){
    .sec-ptb {
        padding: 2em 0;
    }
.single-contact-address-box.main-branch {
    background: var(--blue);
    padding: 30px 15px 30px;
    margin-bottom: 0;
}
.single-contact-address-box.main-branch .inner ul li .title {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.single-contact-address-box.main-branch .inner ul li {
    position: relative;
    display: block;
    padding-left: 48px;
    padding-bottom: 23px;
    margin-bottom: 24px;
    position: relative;
}
.single-contact-address-box.main-branch h3{
    text-align: center;
}
.single-contact-address-box.main-branch .inner ul li .text p {
    font-size: 15px;
    line-height: 24px;
    margin: 0;
}
.btn-custom, .btn-md{
    font-size: 15px;
}
}
@media(max-width:320px){
    .single-contact-address-box.main-branch h3 {
        font-size: 34px;
    }
    .btn-custom, .btn-md{
        font-size: 15px;
    }
}


.modal-title.titleModel {
    font-size: 20px;
    color: #727272;
    letter-spacing: 0;
    font-weight: 400;
}

.row.no-g {
    margin-left: 7px;
    margin-right: 7px;
}
.no-g>[class*=col-] {
    padding-right: 7px;
    padding-left: 7px;
}

.model-body-form .form-group {
    margin-bottom: 0.5rem;
    margin-top:0;
}
.form-contact .form-group .title-input {
    font-size: 14px;
    font-weight: 600;
    color: #747b89;
}
.title-input {
    margin-bottom: 1px;
    letter-spacing: 1px;
}
.form-contact .form-group .form-control.form-contactUs {
    padding: 7px 10px;
    font-size: 14px;
    color: #797979;
    /* background-color: #f4f4f4; */
    background-clip: padding-box;
    border: 1px solid #dadada;
    border-radius: 2px;
    font-weight: 300;
    height: 45px;
}
.submit-btn-form {
    background: #ff0000;
    font-size: 16px;
    padding: 14px 40px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    position: relative;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    z-index: 1;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.4px;
    border: none;
    width: 100%;
    border-radius: 3px;
}
.form-contact .form-group .form-control.form-dropdown {
    padding: 14px 10px;
    font-size: 14px;
    color: #797979;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #dadada;
    border-radius: 2px;
    font-weight: 500;
    height: 45px !important;
    margin: 0;
}
span.tagline-underLogo {
    position: absolute;
    bottom: 27px;
    font-family: sans-serif;
    left: 13px;
    font-size: 14px;
    font-weight: normal;
    color: #000;
    letter-spacing: 0.5px;
}

section.client-testimonial{margin-bottom:60px;}

section.client-testimonial .owl-carousel .item:first-child .client-box,section.client-testimonial .owl-carousel .item:last-child .client-box {
    margin-left: 18px;
    margin-right: 0px;
}
section.client-testimonial .client-box {
       box-shadow: 0 3px 99px #E6EBF2;
    text-align: left;
    padding: 25px 35px;
    color: #B0B0B0;
    line-height: 25px;
    margin: 20px 10px;
    font-size: 16px;
    border-radius: 25px;
}

section.client-testimonial .client-box img {
    width: auto;
}

section.client-testimonial .client-box .quote {
    margin-bottom: 20px;
    display: inline-block;
}


section.client-testimonial .client-box  .author {
    display: flex;
    align-items: center;
    margin-top: 26px;
}


section.client-testimonial .client-box  .author  .author-name h3 {
    font-size: 19px;
    font-weight: bold;
    color: #000;
    margin-bottom: 0;
}

section.client-testimonial .client-box  .author .author-name {
    margin-left: 20px;
}

section.client-testimonial .owl-theme .owl-nav [class*=owl-]:hover {
    background:none;}
    
section.client-testimonial .owl-theme .owl-nav [class*=owl-]:hover span {
    color:#000;}

section.client-testimonial .owl-theme .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    margin-top: 0!important;
    right: 0;
}

section.client-testimonial .owl-theme .owl-nav button.owl-prev{
    
position: absolute;
    
left: -34px;
    
}
section.client-testimonial .owl-theme .owl-nav button{
    
    font-size:60px;
    
   }

section.client-testimonial .owl-theme .owl-nav button.owl-next {
    position: absolute;
    right: -32px;
}  
    
    
section.client-testimonial .client-box p {
    min-height: 150px;
}

section.client-testimonial .client-box .author .author-name p {
    min-height: auto;
}
.getaQuote {
    position: absolute;
    bottom: 25px;
    width: 72%;
    text-align: center;
}
.whatsApp{
    display: table;
    margin-left: auto;
    margin-right: 0;
}
.whatsApp a{
    background: green;
    color: #fff;
    padding: 0.6rem 0.8rem;
    font-size: 17px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    grid-column-gap: 10px;
}