@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 .nav-link:hover{
	color:#1CB0BD !important;
}
header .btn-pad {
	padding: 5px 20px;
	font-size: 16px;
	font-weight: 300;
}

.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);
  }

  .navbar-light .navbar-toggler{
	border-color:#fff;
}


.panel_1 {
	float: left;
	width: 100%;
	text-align: center;
	padding:100px 0px 80px;
	display: flex;
	align-items: center;
	position: relative;
}

.panel_1::before {
	position: absolute;
	content: '';
	left: 0px;
	top: 25px;
	background: url(../images/dots/dot0.png) no-repeat left;
	width: 64px;
	height: 134px;
}

.panel_1 h2 {
	font-size: 30px;
    font-weight: 300;
    color: #22254D;
    /* text-transform: capitalize; */
}

.panel_1 h1 {
    font-size: 50px;
    font-weight: 900;
    color: #1DB0BD;
}

.panel_1 p {
	font-size: 18px;
    font-weight: 400;
    color: #22254D;
    opacity: .8 !important;
	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;
}


.bg-primary{background-color:#1DB0BD !important;}
.bg-secondary{background-color:#131234 !important;}

.wrapper{
	width:900px;
	margin: auto;
}

@media(max-width:1024px)
{
	.wrapper{
		width:100%;
	}
}

.panel_2{
	float:left;
	width:100%;
	padding:0px 0px 100px;
}
.panel_3{
	float: left;
    width: 100%;
    padding-bottom: 100px;
}

.btn-main{    background: #1CB0BD;
    border: 1px solid #1CB0BD;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;}
	.btn-main:hover{
		background-color:#131234;
		color:#fff;
		border: 1px solid #131234;
	}	

.col-p2-box{ float:left;width:100%; background-color:#131234; padding:20px;}
.col-p2-box p{float:left; width:100%; color:#fff; opacity:.8; font-size:16px; text-align: center; font-weight:400;}
.col-p2-box h3{float:left; width:100%; color:#fff; font-size:50px; text-align: center; font-weight:200; margin-bottom: 0px;}
.col-p2-box h4{float:left; width:100%; color:#fff; font-size:20px; text-align: center; font-weight:200;}
.col-p3-rgt{}
.col-p3-rgt h2{ float:left; width:100%; font-size:40px; font-weight:900; color:#1DB0BD;}
.col-p3-rgt h3{float:left; width:100%; font-size:26px; font-weight:300; color:#22254D;    padding: 10px 0px;line-height: 33px;}
.col-p3-rgt p{float: left;
    width: 100%;
    font-size: 18px;
    font-weight: 300;
    color: #22254D;
    line-height: 29px;}


.panel_4{float:left;width:100%; background-color:#131234; padding:100px 0px;}
.panel_4 h2{float:left; width:100%; color:#fff; font-size:40px; font-weight:800; margin-bottom: 5px;}
.panel_4 h4{float:left; width:100%; color:#DDDDDD; font-size:26px; font-weight:300; opacity:.8;}

.col-p4-list{}
.col-p4-list ul{}
.col-p4-list ul li{    float: left;
    width: 100%;
    line-height: 30px;
    margin-bottom: 30px;}
.col-p4-list ul li a{ float:left; width:100%; font-size:26px; font-weight:100; color:#fff;}
.col-p4-list ul li a:hover{color: #1CB0BD;}

.panel_5{float:left;width:100%;position: relative;}
.panel_5::before{    position: absolute;
    content: '';
    width: 100%;
    height: 40%;
    background-color: #131234;
    left: 0px;
    top: 0px;}
.panel_5 .container{    padding: 90px 65px; background-color: #FFFFFF;     position: relative;}
.panel_5 h2{float:left; width:100%; color:#1DB0BD; font-size:40px; font-weight:900; margin-bottom: 5px;}
.panel_5 h4{float:left; width:100%; color:#22254D; font-size:26px; font-weight:300;}

.col-p6-rgt{    float: left;
    width: 100%;}
.col-p6-rgt ul{}
.col-p6-rgt ul li{ display: inline-flex;
    float: left;
    width: 25%;
    height: 90px;
    margin-bottom: 20px;
    overflow: hidden;
    align-items: center;}
.col-p6-rgt ul li img{width:120px}
.border_class{ float:left; width:100%; height:1px; background-color:#EBEBEB;}

.panel_6{
	float:left;
	width:100%;
	padding:0px 0px 80px;
}
.panel_6 h2{float:left; width:100%; color:#1DB0BD; text-align: center; font-size:40px; font-weight:900; margin-bottom: 5px;}
.panel_6 h4{float:left; width:100%; color:#22254D;  text-align: center; font-size:26px; font-weight:300;}

.panel_7_concept {
    float: left;
    width: 100%;
    padding:0px 0px 80px;
    background: #fff;
}
.dotted, .dotted1, .dotted2, .dotted1a, .dotted3a {
    position: relative;
}
.dotted3a::before {
    position: absolute;
    content: '';
    right: 20px;
    /* top: 50%; */
    background: url(../images/dots/dot3.png) no-repeat;
    width: 94px;
    height: 154px;
}
.dotted::before {
	position: absolute;
    content: '';
    right: 20px;
    top: -180px;
    background: url(../images/dots/dot4a.png) no-repeat;
    width: 64px;
    height: 164px;
}
.dotted1::before {
	position: absolute;
    content: '';
    right: 20px;
    top: -75px;
    background: url(../images/dots/dot4.png) no-repeat;
    width: 64px;
    height: 164px;
}
.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;
}

footer{
	float:left;
	width: 100%;
	background-color:#131234;
	padding:30px 0px;
	color:#fff;
	font-size:16px;
	font-weight:300;
}
footer ul li{
	float:left;
	display:inline;
	position: relative;
	margin-right: 30px;
}
footer ul li::before{
	position: absolute;
	content:'';
	right:-15px;
	top:0px;
	background-color:#fff;
	width:1px;
	height:100%;
}
footer ul.social_media li::before{width:0px;}
footer ul li:last-child{
	margin-right: 0px;
}
footer ul li:last-child::before{
	width: 0px;
}
footer ul li a{
	color: #fff;
	font-size:16px;
	font-weight:300;
}
footer ul li a:hover{
	text-decoration: underline;
}
footer .row{
	justify-content: space-between;
}

.col-p5-lft{position: relative;}
.col-p5-lft::before{
	position: absolute;
    content: '';
    left: 5px;
    top: 100px;
    background: url(../images/dots/dot0.png) no-repeat left;
    width: 64px;
    height: 134px;
}

.homw_search{    float: left;
    width: 100%;
    box-shadow: 1px 1px 8px 6px #cccccc59;
    margin-top: 20px;}
.homw_search form{    float: left;
    width: 100%;}
	.homw_search form label{float: left;
		width: 100%;
		text-align: left;
		font-size: 14px;
		font-weight: 400;
	margin-bottom: 0px;
    margin-top: 5px;}
	.homw_search form select{    float: left;
		width: 100%;
		padding: 10px 1;
		border: 0px;
		font-size: 18px;
		font-weight: 700;
		color: #636681;}
	.homw_search form button{    border-radius: 0px;
		font-size: 20px;
		font-weight: 700;
		padding: 18px 20px; width: 130px;}
.homw_search .srch{width: 225px;
    border-right: 1px solid #DDDDDD; padding: 5px 20px;}
	.homw_search .srch1{    width: 130px;
		border: 0px;
		background: #1cb0bd;
		padding: 0px;}
		.homw_search .srch1:hover{
			background-color: #131234;
		}



@media(max-width:991px)
{
	header .navbar-nav{border:0px;}
	.col-p6-rgt ul li img {
		width: 80%;
	}
	.col-p6-rgt{margin-top: 30px;}
	footer{font-size:14px;}
}

@media(min-width:200px) and (max-width:467px)
{
	.panel_5 .container{padding:80px 15px 15px;}
	.col-p6-rgt ul li{width:33%;}
	
}

@media(min-width:200px) and (max-width:767px)
{
	footer .row {
		justify-content: normal;
		display: block;
	}
	footer .row span, footer .row ul{width:100%; float:left; padding: 10px 15px;}
	.homw_search {
		float: left;
		width: 92%;
		box-shadow: 1px 1px 8px 6px #cccccc59;
		margin-top: 20px;
		margin-left: 4%;
	}
	.homw_search form {
		float: left;
		width: 100%;
	}
	.homw_search .srch {
		width: 100%;
		border-bottom: 1px solid #DDDDDD;
		padding: 5px 20px;
		float: left;
		margin-bottom: 0px;
	}
	.homw_search form label {
		float: left;
		width: 100%;
		text-align: left;
		font-size: 14px;
		font-weight: 400;
		margin-bottom: 0px;
		margin-top: 5px;
	}
	.homw_search form select {
		float: left;
		width: 100%;
		padding: 10px 0px;
		border: 0px;
		font-size: 18px;
		font-weight: 700;
		color: #636681;
	}
	.homw_search .srch1 {
		width: 100%;
		border: 0px;
		background: #1cb0bd;
		padding: 0px;
		float: left;
	}
	.homw_search form button {
		border-radius: 0px;
		font-size: 20px;
		font-weight: 700;
		padding: 18px 20px;
		width: 100%;
	}

	p{font-size:16px !important;}
	.panel_1 h2, .col-p3-rgt h3, .panel_4 h4, .col-p4-list ul li a, .panel_5 h4, .panel_6 h4, .concept_sub_head{font-size: 20px;}
	.panel_1 h1, .col-p2-box h3{font-size:35px;}
	.col-p3-rgt h2, .panel_4 h2, .panel_5 h2, .panel_6 h2, .concept_head{font-size:30px;}
	.panel_6 h2{margin-top: 40px;}
	.col_concept_box span{font-size:18px;}
	.col_concept_box p{font-size: 14px !important;}
}