@import url('https://fonts.googleapis.com/css2?family=Overpass:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
	--primary_color: #F5195D;
	--secondary_color: #213856;
	--white_color: #FFFFFF;
	--light_gery: rgba(59, 59, 65, 0.2);
	--yellow_t: rgba(244, 181, 35, 0.95);
	--green_t: rgba(25, 204, 109, 0.95);
	--pink_t: rgba(245, 25, 95, 0.95);
	--blue_t: rgba(23, 92, 188, 0.95);
	--red_t: rgba(245, 25, 25, 0.95);
	--violet_t: rgba(96, 46, 213, 0.95);

}

* {
	margin: 0;
	padding: 0;
	outline: none;
	box-sizing: border-box;
}

*::after,
*::before {
	transition: all ease-in-out 0.5s;
	-moz-transition: all ease-in-out 0.5s;
	-ms-transition: all ease-in-out 0.5s;
	-o-transition: all ease-in-out 0.5s;
	-webkit-transition: all ease-in-out 0.5s;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	outline: none;
}

*:hover,
*:focus {
	outline: none;
	text-decoration: none;
	box-shadow: none;
}

/* Let's get this party started */
::-webkit-scrollbar {
	width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
	-webkit-border-radius: 5px;
	border-radius: 5px;
	background: #1CB0BD;
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb:window-inactive {
	background: #1CB0BD;
}

ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

li {
	list-style: none;
}

a,
a:hover,
a:focus {
	text-decoration: none;
	outline: none;
	color: inherit;
}


img {
	border: 0px;
	outline: none;
	display: block;
}

video {
	border: 0px;
	outline: none;
	display: block;
	width: 100%;
}

body {
	width: 100%;
	margin: 0px !important;
	padding: 0px !important;
	background-color: #fff;
	color: var(--secondary_color);
	font-family: 'Overpass', sans-serif;
	overflow-x: hidden;
}

.main_wrapper {
	width: 800px;
	margin: auto;
}

@media (min-width:0px) and (max-width:800px) {
	.main_wrapper {
		width: 100%;
		margin: auto;
	}
}

header .bg-light {
	background-color: #ffffff !important;
	border-bottom: 1px solid #E3E3E3;
}

@media (min-width: 1400px) and (max-width:2500px) {
	.container {
		max-width: 1300px;
	}
}

header .navbar-brand {}

header .navbar-nav {
	border-left: 1px solid #E3E3E3;
	padding-left: 15px;
}

header .navbar-nav .nav-item {
	margin-right: 20px;
}

header .nav-link {
	padding: 20px;
	color: #2F2F2F !important;
	font-size: 16px;
	font-weight: 300;
}

header .btn-pad {
	padding: 5px 20px;
	font-size: 16px;
	font-weight: 300;
}

.panel_1 {
	float: left;
	width: 100%;
	text-align: center;
	padding: 100px 0px;
	display: flex;
	align-items: center;
	position: relative;
}

.panel_1::before {
	position: absolute;
	content: '';
	left: 0px;
	bottom: 0px;
	background: url(../images/dots/dot0.png) no-repeat left;
	width: 64px;
	height: 134px;
}

.panel_1 h2 {
	font-size: 18px;
	font-weight: bold;
	color: #1312348a;
	text-transform: uppercase;
}

.panel_1 h1 {
	font-size: 70px;
	font-weight: 800;
	color: #131234;
	font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
}

.panel_1 p {
	font-size: 22px;
	font-weight: 200;
	color: #131234;
	opacity: .8;
	padding: 0px 50px;
}

.panel_1 span {
	float: left;
	width: 100%;
	margin-top: 10px;
}

.panel_1 span a {
	background: #1CB0BD;
	padding: 10px 20px;
	color: #fff;
	border-radius: 5px;
	font-size: 16px;
	font-weight: 300;
}

.panel_1 span a:hover {
	text-decoration: none;
	background: #1C1837;
}

.panel_5 {
	float: left;
	width: 100%;
	text-align: left;
	height: 100vh;
	display: flex;
	align-items: center;
	color: #fff;
}

.panel_2 {
	float: left;
	width: 100%;
	background: #ECF0F8;
	padding: 70px;
	position: relative;
	z-index: 9;
}

.panel_2::before {
	position: absolute;
	content: '';
	right: 0px;
	top: 0px;
	background: url(../images/dots/dot1.png) no-repeat left;
	width: 134px;
	height: 164px;
}

.panel_2::after {
	position: absolute;
	content: '';
	left: 85px;
	bottom: -75px;
	background: url(../images/dots/dot3.png) no-repeat left;
	width: 134px;
	height: 134px;
}

.panel_2 .headline {
	font-weight: 700;
	color: #131234;
	font-size: 40px;
	line-height: 50px;
}

.panel_2 p {
	font-size: 16px;
	font-weight: 300;
	color: #131234;
	float: left;
	width: 100%;
	margin-top: 10px;
}

.panel_2 span {
	float: left;
	width: 100%;
	margin-top: 10px;
}

.panel_2 span a {
	background: #1CB0BD;
	padding: 10px 20px;
	color: #fff;
	border-radius: 5px;
	font-size: 16px;
	font-weight: 300;
}

.panel_2 span a:hover {
	text-decoration: none;
	background: #1C1837;
}

.cl_1 {
	float: left;
	width: 100%;
}

.cl_1 a {}

.cl_1 .img {}

.cl_1 .img img {
	border-radius: 10px;
}

.cl_1 h5 {
	float: left;
	width: 100%;
	color: #131234;
	font-size: 20px;
	font-weight: 700;
	margin-top: 25px;
}

.cl_1 p {
	font-size: 14px;
	color: #62627E;
	font-weight: 400;
	margin-top: 0px;
}

.col-left {
	float: left;
	padding-top: 90px;
	position: relative;
}

.col-left::before {
	position: absolute;
	content: '';
	left: 0px;
	top: 30px;
	background: url(../images/dots/dot2.png) no-repeat left;
	width: 134px;
	height: 64px;
}

.panel_3 {
	float: left;
	width: 100%;
	text-align: left;
	height: 100vh;
	display: flex;
	align-items: center;
	color: #fff;
	background: url(../images/panel-3.png) no-repeat;
	background-size: cover;
	position: relative;
	padding-top: 300px;
}

.panel_3::before {
	position: absolute;
	content: '';
	left: 0px;
	top: 0px;
	background-color: #131234;
	width: 100%;
	height: 100%;
	opacity: .9;
}

.panel_3b {
	padding-top: 0px !important;
}

.panel_3b::before {
	opacity: 1 !important;
}

.pad-70 {
	padding: 70px;
}

.panel_3a {}

.panel_3a h3 {
	font-size: 50px;
	font-weight: 700;
	padding-right: 60px;
}

.panel_3a h4 {
	font-size: 22px;
	opacity: .6;
	font-weight: 600;
}

.panel_3a p {
	font-size: 16px;
	opacity: .6;
	font-weight: 300;
}

.btn-main {
	background: #1CB0BD;
	border: 1px solid #1CB0BD;
	color: #fff;
	padding: 10px 20px;
	border-radius: 5px;
}

.btn-main:hover {
	background-color: #213856;
	border: 1px solid #FFFFFF;
	color: #fff;
}

.btn-sub {
	background: #131234;
	border: 1px solid #131234;
	color: #fff;
	padding: 10px 20px;
	border-radius: 5px;
}

.btn-sub:hover {
	background-color: #213856;
	border: 1px solid #FFFFFF;
	color: #fff;
}

.btn-sub-2 {
	background: #fff;
	color: #DE0E0E;
	border: 1px solid #fff;
	padding: 10px 20px;
	border-radius: 5px;
}


.btn-sub-2:hover {
	background-color: #1CB0BD;
	border: 1px solid #FFFFFF;
	color: #fff;
}

.btn-outline {
	background: #fff;
	color: #1CB0BD;
	border: 1px solid #1CB0BD;
	padding: 10px 20px;
	border-radius: 5px;
}


.btn-outline:hover {
	background-color: #1CB0BD;
	border: 1px solid #FFFFFF;
	color: #fff;
}

.panel_4 {
	background-color: #1CB0BD;
	float: left;
	width: 100%;
	color: #fff;
	height: 100vh;
	display: flex;
	align-items: center;
}

.panel_4 .cl_img {
	float: left;
	width: 100%;
	height: 100%;
}

.panel_4 .cl_img img {
	float: left;
	width: 100%;
	height: 100%;
}

.col-img-wrap {
	width: 285px;
	margin-left: 130px
}


.panel_5 {
	float: left;
	width: 100%;
	text-align: left;
	height: 100vh;
	display: flex;
	align-items: center;
	color: #fff;
	background: url(../images/panel-4.png) no-repeat;
	background-size: cover;
	position: relative;
}

.panel_5::before {
	position: absolute;
	content: '';
	left: 0px;
	top: 0px;
	background-color: #DE0E0E;
	width: 100%;
	height: 100%;
	opacity: .9;
}

.panel_6 {
	float: left;
	width: 100%;
	text-align: left;
	height: 100vh;
	display: flex;
	align-items: center;
	color: #fff;
	background: url(../images/panel-5.png) no-repeat;
	background-size: cover;
	position: relative;
}

.panel_6::before {
	position: absolute;
	content: '';
	left: 0px;
	top: 0px;
	background-color: #131234;
	width: 100%;
	height: 100%;
	opacity: .9;
}

.panel_7 {
	float: left;
	width: 100%;
	text-align: left;
	height: 100vh;
	display: flex;
	align-items: center;
	color: #fff;
	background: url(../images/panel-6.png) no-repeat;
	background-size: cover;
	position: relative;
}

.panel_7::before {
	position: absolute;
	content: '';
	left: 0px;
	top: 0px;
	background-color: #1CB0BD;
	width: 100%;
	height: 100%;
	opacity: .9;
}

.pd-r-80 {
	padding-right: 80px !important;
}

.panel_8 {
	float: left;
	width: 100%;
	padding: 100px 0px;
}

.panel_8 .col-1a {
	float: left;
	width: 100%;
	position: relative;
	padding: 30px;
}

.panel_8 .col-1a::before {
	position: absolute;
	content: '';
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background: -moz-linear-gradient(top, rgba(19, 18, 52, 0.45) 0%, rgba(19, 18, 52, 1) 100%);
	/* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(19, 18, 52, 0.45) 0%, rgba(19, 18, 52, 1) 100%);
	/* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(19, 18, 52, 0.45) 0%, rgba(19, 18, 52, 1) 100%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#73131234', endColorstr='#131234', GradientType=0);
	/* IE6-9 */

}

.panel_8 .col-1a:hover::before {
	position: absolute;
	content: '';
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background: #1CB0BD;
	opacity: .9;
}

.panel_8 .col-1a a {
	float: left;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0px;
	height: 100%;
}

.panel_8 .col-1a .icon {
	float: left;
	margin-bottom: 20px;
}

.panel_8 .col-1a h5 {
	float: left;
	width: 100%;
	color: #fff;
	font-size: 24px;
	font-weight: 200;
}

.panel_8 .col-1a a>div {
	position: absolute;
	bottom: 40px;
	left: 30px;
}

.panel_8 .col-1a:hover h5 {
	text-decoration: underline;
}

.panel_8 .col-1-img1 {
	background: url(../images/investment-management-portfolio-diversification-2021-08-29-17-05-04-utc.png) no-repeat left;
	background-size: cover;
	height: 400px;
}

.panel_8 .col-1-img2 {
	background: url(../images/farmer-andry-2021-10-21-22-03-53-utc.png) no-repeat left;
	background-size: cover;
	height: 400px;
}

.panel_8 .col-1-img3 {
	background: url(../images/young-asia-business-lady-call-mobile-phone-with-co-2021-09-02-09-26-35-utc.png) no-repeat left;
	background-size: cover;
	height: 400px;
}

.panel_8 .col-1-img4 {
	background: url(../images/food-fruits-vegetables-produce-in-string-bag-reu-2022-03-25-04-43-17-utc.png) no-repeat left;
	background-size: cover;
	height: 400px;
}

.panel_red {
	background-color: #DE0E0E;
}

.panel_blue {
	background-color: #131234;
}

.pull_top {
	float: left;
	margin-top: -250px;
}

.dotted,
.dotted1,
.dotted2,
.dotted1a,
.dotted3a {
	position: relative;
}


.dotted1::before {
	position: absolute;
	content: '';
	right: 100px;
	/* top:50%; */
	background: url(../images/dots/dot4.png) no-repeat;
	width: 94px;
	height: 154px;
}

.dotted1a::before {
	position: absolute;
	content: '';
	right: 20px;
	/* top:50%; */
	background: url(../images/dots/dot4.png) no-repeat;
	width: 94px;
	height: 154px;
}

.dotted2::before {
	position: absolute;
	content: '';
	right: 0px;
	top: -175px;
	background: url(../images/dots/dot5.png) no-repeat;
	width: 134px;
	height: 134px;
}

.dotted::before {
	position: absolute;
	content: '';
	right: 0px;
	/* top:50%; */
	background: url(../images/dots/dot6.png) no-repeat;
	width: 134px;
	height: 204px;
}

.dotted3a::before {
	position: absolute;
	content: '';
	right: 20px;
	/* top:50%; */
	background: url(../images/dots/dot3.png) no-repeat;
	width: 94px;
	height: 154px;
}

footer {
	float: left;
	width: 100%;
	padding: 50px 0px 25px;
	background-color: #131234;
}

footer .cl-ftr {
	float: left;
	width: 100%;
}

footer .ftr-head {
	float: left;
	width: 100%;
	font-size: 26px;
	margin-bottom: 10px;
	font-weight: 900;
	color: #fff;
}

footer .ftr-logo {
	float: left;
	margin-bottom: 17px;
}

footer .ftr-logo img {
	float: left;
	width: 100%;
}

footer .cl-ftr p {
	float: left;
	width: 100%;
	font-size: 14px;
	color: #717185;
	padding-right: 40px;
}

footer .cl-ftr input {
	width: 100%;
	background: #fff;
	padding: 10px;
	border-radius: 6px;
	border: 1px solid;
}

footer .cl-ftr-list {
	float: left;
	width: 100%;
}

footer .cl-ftr-list ul {
	float: left;
	width: 100%;
	margin: 0px;
	padding: 0px;
}

footer .cl-ftr-list ul li {
	float: left;
	width: 100%;
	list-style: none;
	line-height: 27px;
}

footer .cl-ftr-list ul li a {
	float: left;
	width: 100%;
	font-size: 14px;
	color: #717185;
	text-decoration: none;
}

footer .cl-ftr-list ul li a:hover {
	color: #fff;
}

footer .ftr-copy {
	float: left;
	width: 100%;
	border-top: 1px solid #ffffff42;
	padding-top: 20px;
	margin-top: 50px;
}

footer .ftr-copy span {
	float: left;
	width: 100%;
	font-size: 14px;
	color: #fff;
	text-align: center;
	opacity: .8;
	font-weight: 200;
}

.login_sec .profile_icon {}

.login_sec .profile_icon img {
	border-radius: 5px;
}

.login_sec .profile_name {
	margin-left: 15px
}

.login_sec .profile_name span {
	font-size: 12px;
	width: 100%;
	float: left;
	color: #131234;
}

.login_sec .profile_name .fname {
	font-size: 16px;
	font-weight: 800;
}

.h3_head {
	float: left;
	width: 100%;
	font-size: 30px !important;
	font-weight: 600 !important;
}

.para_grey {
	float: left;
	width: 100%;
	font-size: 16px !important;
	font-weight: 300 !important;
	opacity: .6 !important;
	color: #fff;
	line-height: 27px;
}

.para_grey1 {
	float: left;
	width: 100%;
	font-size: 14px !important;
	font-weight: 300 !important;
	opacity: .6 !important;
	color: #fff;
	line-height: 27px;
}

.colum1 {}

.colum1 .colum1_img {
	float: left;
	width: 100%;
}

.colum1 .colum1_img img {
	border-radius: 10px;
	width: 100%;
}

.colum1 h5 {
	float: left;
	width: 100%;
	font-size: 20px;
	font-weight: 800;
}

.para_light {
	float: left;
	width: 100%;
	font-size: 14px !important;
	font-weight: 300 !important;
	opacity: .8 !important;
	color: #fff;
	line-height: 27px;
}

.f-16 {
	font-size: 16px !important;
}

.wrapper {
	float: left;
	width: 100%;
	background: #ECF0F8;
	position: relative;
}

.pd-x-70 {
	padding-left: 70px;
	padding-right: 70px;
}

.pd-y-100 {
	padding-top: 100px;
	padding-bottom: 100px;
}

.panel_6_story {
	float: left;
	width: 100%;
	background: #1CB0BD;
	padding: 70px 0px 0px;
	position: relative;
}

.panel_6_story::before {
	position: absolute;
	content: '';
	bottom: 0px;
	left: 0px;
	background: #fff;
	height: 150px;
	width: 100%;
}

.panel_6_story_head {
	float: left;
	width: 100%;
	text-align: center;
	font-size: 30px;
	font-weight: 300;
	color: #131234;
}

.panel_6_story_sub_head {
	float: left;
	width: 100%;
	text-align: center;
	font-size: 16px;
	font-weight: 200;
	color: #131234;
}

.col-story {
	float: left;
	width: 100%;
	margin-top: 25px;
}

.col-story .story_image {
	float: left;
	width: 100%;
	margin-bottom: 20px;
}

.col-story .story_title {
	float: left;
	width: 100%;
	font-size: 22px;
	font-weight: 300;
	color: #131234;
	padding-right: 55px;
}

.col-story .story_date {
	float: left;
	width: 100%;
	font-size: 16px;
	font-weight: 300;
	color: #131234;
	margin-top: 5px;
}

.col-story .story_badge {
	float: left;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    background-color: #1CB0BD;
    padding: 10px 25px;
    width: auto;
    margin-top: 0px;
    position: absolute;
    bottom: 0px;
}

.col-story .story_date span {
	font-size: 14px;
    color: #62627E;
    width: auto;
    margin-top: 1px;
    margin-right: 5px;
}

.panel_7_concept {
	float: left;
	width: 100%;
	padding: 80px 0px 40px;
	background: #fff;
}

.concept_head {
	float: left;
	width: 100%;
	font-size: 40px;
	font-weight: 900;
	color: #131234;
}

.concept_sub_head {
	float: left;
	width: 100%;
	font-size: 26px;
	color: #22254D;
	font-weight: 200;
}

.col_concept_box {
	float: left;
	width: 100%;
	background: #EBEBEB;
	padding: 20px;
	margin-top: 20px;
}

.col_concept_box span {
	float: left;
	width: 100%;
	font-size: 22px;
	font-weight: 800;
	color: #131234;
	margin-bottom: 5px;
}

.col_concept_box p {
	float: left;
	width: 100%;
	font-size: 14px;
	font-weight: 400;
	color: #22254D;
	line-height: 27px;
	margin-bottom: 0px;
	opacity: 1;
}


.inner_wrapper{
	float:left;
	width:100%;
	position: relative;
}
.inner_wrapper::before{
	position: absolute;
	content:'';
	left:0px;
	bottom:0px;
	height:70%;
	width:100%;
	background-color: #F1F1F1;
}

.inner_wrapper2{
	float:left;
	width:100%;
	position: relative;
}
.inner_wrapper2::before{
	position: absolute;
	content:'';
	left:0px;
	bottom:0px;
	height:40%;
	width:100%;
	background-color: #1CB0BD;
}

.panel_1_inner{
	padding-bottom: 50px
}
.panel_1_inner::before{
	left: 15px;
    bottom: -60px;
}

.inner_dot::after{
    position: absolute;
    content: '';
    left: 70px;
    top: 60px;
    background: url(../images/dots/dot2.png) no-repeat left;
    width: 134px;
    height: 64px;
	z-index: -9;
}
.inner_dot2::after{
	top: 30px;
}

.inner_dot h2{    float: left;
    width: 100%;
    font-size: 30px;
    color: #131234;
    padding: 30px 0px 10px;
    font-weight: 300;}
.inner_dot .btn-main{    width: auto;
    border-radius: 0px;
    font-size: 16px;
    font-weight: 300;
    padding: 8px 20px;
    margin-bottom: 15px;}
	.inner_dot .btn-main:hover{cursor: default;}
.inner_dot p{color:#62627E; font-size:16px; line-height:27px;}

.story_focus_panel{    border-bottom: 1px solid #E3E3E3;
    padding-bottom: 40px;
    margin-bottom: 20px;}
.story_focus_panel .col_story_focus{ float:left; width:100%; background-color:#1CB0BD; padding: 50px 20px; color: #fff; }
.story_focus_panel .col_story_focus h5{float:left; width:100%;font-size:30px; font-weight:300;}
.story_focus_panel .col_story_focus span{float:left; width:100%;font-size:14px; font-weight:200;}

.story_focus_panel .col_story_focus2{ float:left; width:100%; background-color:#131234; padding: 50px 20px; color: #fff; text-align: center;position: relative; }
.story_focus_panel .col_story_focus2::before{ position: absolute;
    content: '';
    background-color: #fff;
    opacity: .3;
    width: 1px;
    height: 60%;
    right: 0px;
    top: 20%;}
.story_focus_panel .col_story_focus2 .text1{float:left; width:100%;font-size:16px; font-weight:300; opacity:.8; margin-top: 0px;}
.story_focus_panel .col_story_focus2 .text2{float:left; width:100%;font-size:50px; font-weight:200; margin-top: 0px;}
.story_focus_panel .col_story_focus2 .text3{float:left; width:100%;font-size:14px; font-weight:200; margin-top: 0px;}

.bg-primary{background:#1CB0BD !important;}
.bg-secondary{background:#131234 !important;}

.content_title{float:left; width:100%; font-size:22px; font-weight:300;}

.border_class{background:#E3E3E3;height:1px; width:100%;}
.border-radius-0{border-radius:0px;}
.hgt-45{height: 45px;}


.contact_form{}
.input-field{float: left; width:100%; border:1px solid #E3E3E3; background-color: #fff; padding:13px 15px;}
.text-mesaage{height:130px;}

.inner_wrapper2{padding-bottom:100px;}
.panel_contact::after {
	width: 0px;
}

.col_cnt{float: left;
    width: 100%;
    background: #ECF0F8;}
.col_cnt .cnt_icon1{         background: #E3E3E3;
    padding: 20px 20px;
    align-items: center;
    display: flex;}
.col_cnt .cnt_icon1 img{}
.col_cnt .cnt_col{      width: 100%;  padding: 22px 20px;}
.col_cnt .cnt_col p{    margin-bottom: 2px;
    color: #62627E;
    font-size: 16px;font-weight: 300;}
.col_cnt .cnt_col span{color: #131234;}
.social_icons {margin-top: 4px;
    float: left;}
.social_icons li{ display: inline; margin-right: 25px; float: left;}
.social_icons li .sc_1{}
.social_icons li .sc_2{display: none;}
.social_icons li a:hover .sc_2{display: block;}
.social_icons li a:hover .sc_1{display: none;}
.navbar-light .navbar-toggler-icon{background-image:none;}

#pencet{
	display:flex;
	align-items:center;
	/* margin-top:50vh; */
	flex-direction:column;
	cursor:pointer;
  }
  
  #pencet span{
	background-color: #131234;
    width: 30px;
    height: 2px;
    margin: 4px 0px;
    display: block;
    transition: all .4s ease;
    transform-origin: 0 0;
  }
  
  .Diam span:nth-child(1) {
	transform: rotate(45deg) translate(0px, -2px);
  }
  
  .Diam span:nth-child(2) {
	Transform: scaleX(0);
  }
  
  .Diam span:nth-child(3) {
	transform: rotate(-45deg) translate(1px, 0);
  }



@media(max-width:1199px) {
	.panel_3a {
		height: auto;
		padding: 80px 0px !important;
	}
}

@media(max-width:767px) {

	html{
		overflow-x: hidden;
	}
	.cl_1 .img img {
		width: 100%;
	}

	.cl_1 {
		margin-top: 20px;
	}

	.col-left {
		text-align: center;
	}

	.panel_3a {
		background-size: cover;
		padding: 50px 0px !important;
	}

	.pad-70 {
		padding: 20px;
	}

	.col-img-wrap {
		width: 100%;
		margin-left: 0px;
		display: none;
	}

	.panel_4 .cl_img {
		margin-top: 15px;
	}

	.pull_top {
		margin-top: 50px;
	}

	.panel_2::after {
		width: 0px;
	}
	.navbar-light .navbar-toggler{
		border-color:#fff;
	}
	header .navbar-nav{
		border-left:0px;
		padding-left: 0px;
	}
	header .nav-link {
		padding: 8px 13px !important;
		color: #464242 !important;
		font-size: 15px;
		font-weight: 300;
		background: #ffffff;
		color: #fff;
		margin-bottom: 2px;
	}
	.navbar-collapse{
		margin-top: 20px;
	}
	.cl_1 .img img {
		border-radius: 10px;
		width: 100%;
	}

	[data-aos^=fade][data-aos^=fade].aos-animate{
		transform: none !important;
	}
	[data-aos][data-aos][data-aos-duration='1000'], body[data-aos-duration='1000'] [data-aos] {
		transition-duration: 0s !important;
	}
}

@media(min-width:250px) and (max-width:600px) {
	.panel_1 h2{
		font-size: 16px;
	}
	.panel_1 h1 {
		font-size: 40px;
		padding: 0px 10px
	}
	.panel_1 p{
		font-size:17px;
	}
	.panel_2 .headline{
		font-size: 30px;
    line-height: 39px;
	}
	.panel_3a h3{
		font-size:40px;
		padding-right: 10px;
	}
	
	.panel_2 {
		margin: 0px;
		padding: 15px;
	}
	.navbar .row{
		margin: 0px;
	}
	.inner_dot h2{
		font-size: 22px;
	}
	.pd-y-100 {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.pd-x-70 {
		padding-left: 20px;
		padding-right: 20px;
	}
	.col-story .story_title{
		font-size: 16px;
	}
	
}

@media(min-width:601px) and (max-width:767px) {
	.panel_2{
		padding:25px;
		margin: 0px;
	}
	.hgt-45.btn-sub{    width: 130px;}
	
}

@media(min-width:768px) and (max-width:991px) {
	.panel_2{padding:25px;margin: 0px;}
	.navbar-light .navbar-toggler{
		border-color:#fff;
	}
	header .navbar-nav{
		border-left:0px;
		padding-left: 0px;
	}
	header .nav-link {
		padding: 8px 13px !important;
		color: #464242 !important;
		font-size: 15px;
		font-weight: 300;
		background: #ffffff;
		color: #fff;
		margin-bottom: 2px;
	}
	.navbar-collapse{
		margin-top: 20px;
	}
	.cl_1 .img img {
		border-radius: 10px;
		width: 100%;
	}
	.col-img-wrap {
		width: 200px;
		margin-left: 3px;
	}
}

@media(min-width:992px) and (max-width:1200px) {
	.cl_1 .img img {
		border-radius: 10px;
		width: 100%;
	}
	.col-img-wrap {
		width: 200px;
		margin-left: 15px;
	}
}
