*{
	margin:0;
	padding: 0;
	box-sizing: border-box;
}
body{
	font-family: 'Roboto', sans-serif;
        overflow-x: hidden;
}
img{
	width: 100%;
}
ul,ol{
	margin: 0;
	padding: 0;
}
h1,h2,h3,h4,h5,p{
	margin: 0;
}
a{
	text-decoration: none;
}
ul li{
	display: inline-block;
}
p{
	font-size: 18px;
	line-height: 30px;
}
h1{
	font-size: 60px;
    font-weight: 400;
    color: var(--violet-color);
}
h2 {
    font-size: 45px;
    color: var(--violet-color);
    font-weight: 500;
}
h3{
	font-size: 28px;
}

h4{
	font-size: 20px;
}
:root{
  --blue-color: #4b526e;
  --black-color:#000;
  --violet-color:#18204e;
  --bg-color:rgba(3, 16, 62, 0.7);
  --yellow-color:#fa8801;
  --card-bg:#eff2f7;

}
.yellow_color{
	color: var(--yellow-color);
}
.padd60{
	padding: 60px 10px;
}
.padd_top60{
	padding-top: 60px;
}
.txt_center{
	text-align: center;
}
.container{
	max-width: 1200px;
	margin: 0 auto;
}
.wrap_row {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 9;
}
.logo {
    color: var(--black-color);
    font-size: 21px;
    font-weight: 500;
}
.default_btn{
	color: #fff;
    padding: 15px 30px;
    border-radius: 9px;
	font-size: 16px;
	border: none;
}
.menu li a.blue_btn{
	background: var(--blue-color);
	color: #fff;
	padding: 15px 30px;
}
.menu li.active a,.menu li a:hover{
	color: var(--blue-color);
	border-bottom: 4px solid var(--blue-color);
}

.menu li a {
    color: var(--black-color);
    padding: 40px 0px;
    display: inline-block;
    font-weight: 400;
}
.menu li{
    margin-left: 50px;
}
.default_btn.blue_btn{
    background: var(--blue-color);
    background: linear-gradient(to right, var(--blue-color) 50%, var(--yellow-color) 50%);
    background-size: 200% 100%;
    background-position: left bottom;
    transition: all .3s ease;
}
.default_btn.blue_btn:hover{
    background-position: right bottom;
    cursor: pointer;
    transition: all .3s ease;
}


.default_btn.yellow_btn{
    background: var(--yellow-color);
    background: linear-gradient(to right, var(--yellow-color) 50%, var(--blue-color) 50%);
    background-size: 200% 100%;
    background-position: left bottom;
    transition: all .3s ease;
    margin-top: 18px;
    display: inline-block;
    color: #fff !important;
}
.default_btn.yellow_btn:hover{
   background-position: right bottom;
    cursor: pointer;
    transition: all .3s ease;
    color: #fff;
    text-decoration: none;
}

.wrap_row.justify_contnt{
  justify-content: space-between;
  align-items: flex-start;
}
.zigzag_lft {
    width: 50%;
}
.zigzag_lft h3{
    margin: 20px 0;
}
.zigzag_rgt {
    width: 42%;
    border: 1px solid #ddd;
    padding: 6px;
    overflow: hidden;
}
.zigzag_rgt img{
    height: 440px;
    object-fit: contain;
    transition: all 1s ease;

}

.zigzag_rgt img:hover{
    transform: scale(1.1);
  transition: all 1s ease;
  cursor: pointer;
}

/*====================Banner=======================*/

/*.banner {
    background: var(--bg-color);
    padding: 60px 10px;
    min-height: 500px;
}*/
.banner {
    background: url(../images/banner.jpg) no-repeat;
    padding:140px 90px 10px;
    min-height: 570px;
    background-size: cover;
    position: relative;
}
.banner:after{
  content: '';
  position: absolute;
  background: var(--bg-color);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.banner_lft {
    width: 66%;
    text-align: center;
}
.banner_lft h1{
    color: #fff;
    margin-bottom: 40px;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
    overflow: hidden;
    border-right: 2px solid #FEB626;
    white-space: nowrap;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: orange; }
}

.banner_lft p {
    margin: 0 0 49px 0;
    color: #fff;
}
.banner_rgt{
	width: 50%;
}
.read_more {
    margin-left: 25px;
    color: #000;
}
.read_more i {
    background: #ccc;
    width: 30px;
    height: 30px;
    text-align: center;
    border-radius: 100%;
    line-height: 28px;
    color: #000;
    margin-right: 11px;
}
.businesses_thrive {
    text-align: center;
    padding: 60px 10px;
    background: #fafbff;
}
.content {
    padding: 0 260px;
}

.content p:nth-child(2){
	margin: 60px 0
}
.card_row{
	display: flex;
	justify-content: space-between;
	margin-top: 40px;
}
.card_col{
	width: 30%;
    border: 2px solid var(--card-bg);
    border-radius: 8px;
    transform: translateY(0px);
    transition: 0.5s ease;
}
.card_col:hover{
    box-shadow: 0px 1px 4px rgba(250, 136, 1, 0.51);
    transform: translateY(-9px);
    transition: 0.5s ease;
    border-color: transparent;
}
.card_col .card_img{
   background: #f1f0ff;
   width: 100%;
   height: 323px;
   border-top-left-radius: 8px;
   border-top-right-radius: 8px;
}
.card_img img{
	height: 100%;
	object-fit: cover;
     border-top-left-radius: 8px;
   border-top-right-radius: 8px;
}
.card_contnt{
   padding: 30px 20px;
   background: #fff;
}
.card_contnt p{
	margin:15px 0;
}
.lasting_transformation {
    background: var(--violet-color);
    padding: 60px 10px;
    min-height: 472px;
}
.content.white_color {
    color: #fff;
    text-align: center;
    padding: 0 320px;
}
.content.white_color h2{
	color: #fff;
}
.video_section {
    margin-top: -166px;
}
.video_wrap{
	width: 50%;
	margin: 0 auto;
}
.video_wrap iframe{
	width: 100%;
	height: 400px;
}
.banner_lft h4{
	margin-bottom: 10px;
}
.stars li{
	display: inline-block;
}
.stars li i{
	font-size: 14px;
}
.profile {
    margin-top: 16px;
    display: flex;
    align-items: center;
}
.profile span {
    background: var(--blue-color);
    color: #fff;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}
.profile  div{
	margin-left: 10px;
}
.rating {
    margin-top: 20px;
    padding-left: 40px;
}
.rating .tag {
    margin-top: 10px;
    display: block;
    color: #878787;
}
.banner_lft h3{
	margin-bottom: 30px;
}

.profile h4{
	margin-bottom: 0;
}
.profile p {
    margin-top: 0;
    font-size: 13px;
    margin-bottom: 0;
}
.wrap_row.row_reverse{
	flex-direction: row-reverse;
}
.testimonial{
	background: var(--violet-color)
}
.testi{
	margin-bottom: 20px;
}
.stories_row {
    display: flex;
    justify-content: center;
    margin-top: 57px;
}
.stories_col {
    width: 40%;
    margin: 0 16px;
    padding: 16px 16px 36px;
    background: #fff;
    border-radius: 10px;
    text-align: center;
}
.stories_col p {
    margin: 10px 0;
    font-size: 18px;
    line-height: 31px;
    padding: 0 30px;
}
.stories_col span{
	font-size: 12px;
}
.lasting_transformation.final_call{
	min-height: auto;
}
.wrap_input{
	position: relative;
    margin-bottom: 16px;
}
.wrap_input button{
	position: absolute;
	right: 0;
}
.wrap_input input {
    background: #eff2f7;
    padding: 16px 30px;
    border: none;
    border-radius: 8px;
}
footer{
	background: #000;	
}
.menu_footer li a{
    color: #9b9b9b;
    font-weight: 300;
    font-size: 18px;
}
.menu_footer li a:hover{
    color: #ccc;
}
.footer_row {
    text-align: center;
}
.footer_col ul li{
	display: block;
	margin-bottom: 10px;
	font-size: 14px;
}
.footer_col h4{
	margin-bottom: 10px;
}

.boxes_row{
	 display: flex;
	 justify-content: space-between;
	 align-content: center;
	 margin: 90px 0px;
}
.box_col{
	width: 24%;
	text-align: center;
}
.box_col .box1{
	width: 150px;
    height: 100px;
    background-color: #eff2f7;
    margin: 0 auto;
    position: relative;
}
.box1 img{
    width: 100%;
    height: 100px;
    object-fit: cover;
}
/*.box1:after {
    content: "";
    border-bottom: 1px solid #ccc;
    position: absolute;
    right: -307px;
    width: 307px;
    top: 47px;
}*/
.box_col:nth-child(3) .box1:after{
	display: none;
}
.box_col .box_content {
    font-size: 22px;
    margin: 30px 0px;
}
.box_col p{
	margin-bottom: 10px;
}
.step_section button{
   display: block;
    margin: 0 auto;
    margin-bottom: 20px;
}
.step_section{
	/*background:#fafbff;*/
}
.box_col h4{
    margin: 10px 0px;
}
.box_col span{
	display: inline-block;
	margin-top: 16px;
}

.toggle_btn{
	background: none;
	border:none;
	display: none;
}

.menu_footer li{
  display: inline-block;
  margin: 0 24px;
}
.copyright {
    color: #9b9b9b;
    margin-top: 50px;
    font-weight: 300;
    border-top: 1px solid #4e4e4e;
    padding-top: 40px;
}
.panel-group {
    margin-bottom: 0;
}
.panel-heading {
  position: relative;
  padding: 18px 15px;
}
.faq{
    background: #fafbff;
}
.panel-heading[data-toggle="collapse"]:after {
  font-family: 'Glyphicons Halflings';
  content: "\e072"; 
  position: absolute;
  color: #b0c5d8;
  font-size: 12px;
  line-height: 22px;
  right: 20px;
  top: calc(50% - 10px);
  -webkit-transform: rotate(-90deg);
  -moz-transform:    rotate(-90deg);
  -ms-transform:     rotate(-90deg);
  -o-transform:      rotate(-90deg);
  transform:         rotate(-90deg);
}
.panel-heading[data-toggle="collapse"].collapsed:after {
  -webkit-transform: rotate(90deg);
  -moz-transform:    rotate(90deg);
  -ms-transform:     rotate(90deg);
  -o-transform:      rotate(90deg);
  transform:         rotate(90deg);
}

.panel-group .panel {
    margin-bottom: 14px;
}

/*******header**********/

.header_row {
    padding: 10px 50px;
    background: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo_col {
    width: 10%;
}
.logo_col img{
    width: 80%;
}
 #flip i{
    color: #fff;
    font-size: 25px;
    cursor: pointer;
}

#panel {
  display: none;
  z-index: 9;
  position: absolute;
  background: #fff;
  top: 68px;
  right: 38px;
  min-width: 140px;
}
#panel ul li{
    display: block;
    border-bottom: 1px solid #ccc;
}
#panel ul li a{
    color: #000;
    text-decoration: none;display: block;
    padding: 4px;
}

/*========================Media Query======================*/


@media screen and (min-width: 320px) and (max-width: 767px){

.wrap_row {
    padding: 16px 8px;
}
.banner {
    padding: 76px 0px 10px;
    min-height: 386px;
}
.wrap_row.justify_contnt {
    flex-direction: column;
}
.zigzag_lft {
    width: 100%;
}
.menu_footer li {
    display: inline-block;
    margin: 6px 18px;
}
.zigzag_rgt {
    width: 100%;
    margin-top: 15px;
}
.zigzag_rgt img {
    height: 250px;
}
.flex_direction{
	flex-direction: column;
} 
.toggle_btn{
	display: block;
}
ul.menu {
    position: absolute;
    background: #ccc;
    width: 100%;
    top: 57px;
    left: 0;
    padding: 10px 20px;
    display: none;
}
ul.menu li{
	display: block;
	margin-left: 0;
}
.menu li a{
	padding: 10px 0px;
}
.banner_lft {
    width: 100%;
}
h1 {
    font-size: 22px;
}
h2 {
    font-size: 26px;
}
h3 {
    font-size: 20px;
}
p {
    font-size: 14px;
}
.banner_rgt {
    width: 100%;
    margin-top: 34px;
}
.read_more {
    margin-left: 0;
    display: block;
    margin-top: 20px;
}
.content {
    padding: 0 0px;
}
.card_row {
    flex-direction: column;
}
.card_col {
    width: 100%;
    margin-bottom: 25px;
}
.card_contnt {
    padding: 30px 26px;
}
.content.white_color {
    padding: 0 0px;
}
.video_wrap {
    width: 91%;
    margin: 0 auto;
}
.video_wrap iframe {

    height: 215px;
}
.wrap_row.row_reverse {
    flex-direction: column;
}
.stories_row {
    flex-direction: column;
}
.stories_col {
    width: 100%;
    margin: 0 0px 18px;
}
.box_col {
    width: 100%;
    margin-bottom: 48px;
}
.box_col  .box1:after{
	display: none;
}
.footer_row {
    display: grid;
    grid-template-columns: 100%;
}
.footer_col {
    margin-bottom: 17px;
}
.padd60 {
    padding: 30px 10px;
}
.default_btn {
    color: #fff;
    padding: 14px 19px;
    font-size: 14px;
}
}


@media screen and (min-width: 768px) and (max-width: 1023px){

h1 {
    font-size: 40px;
}
h2 {
    font-size: 30px;
}
h3 {
    font-size: 21px;
}
.menu li {
    margin-left: 13px;
}

header {
    padding: 0 20px;
}
.banner_lft {
    width: 48%;
}
.content {
    padding: 0 86px;
}
.card_col {
    width: 32%;
}
.card_col .card_img {
    height: 172px;
}
.card_contnt {
    padding: 30px 10px;
}
.content.white_color {
    padding: 0 145px;
}
.video_wrap {
    width: 80%;
}
.footer_row {
    grid-template-columns: 34% 18% 16% 18%;

}
.wrap_input button {
    position: static;
    margin-top: 13px;
}
}


@media screen and (min-width: 1024px) and (max-width: 1250px){

header {
    padding: 0 30px;
}
.banner {
    padding: 60px 30px;
}
.padd60 {
    padding: 60px 30px;
}
.businesses_thrive {
    padding: 60px 30px;
}
.footer_row {
    grid-template-columns: 37% 15% 15% 12%;
}
}
