@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Poppins: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');
@font-face {
   font-family: NEXAFONT-bold;
   src: url(../css/fonts/Nexa-Bold.otf);
}
body
{
	overflow-x: hidden;
}
*{
	margin:0;
	box-sizing: border-box;
}
.container{
	max-width: 1140px;
	margin:auto;
}
ul{
	list-style: none;
	margin:0;
	padding:0;
}
a{
	text-decoration: none;
}
.sticky-nav.menu_fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  animation: sticky 1s;
  box-shadow: 2px 4px 8px rgba(51, 51, 51, 0.25);
  background-color: #fff;
}
@keyframes sticky {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
.hide-desk
{
	display: none;
}
.mb--60px
{
	margin-bottom: 40px;
}
.shadow-img
{
	background: #fff;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, .3);
    padding: 8px;
}
.read-more
{
	    color: #5d5c5c;
    font-family: "Oswald", sans-serif;
    margin-top: 10px;
    display: block;
    width: 200px;
    font-size: 18px;

}
.stick-iocn-img {
    position: fixed;
    bottom: 28px;
    right: 26px;
    line-height: normal;
    flex-direction: column;
    height: 70px;
    width: 50px;
    align-items: center;
    text-align: center;
    color: #fff;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    display: flex;
    z-index: 99999;
    border-radius: 50%;
    width: 70px;
    background-image: linear-gradient(#c40a46, #cd6823);
    background:#4699d0;
    filter: drop-shadow(4px 5px 3px rgba(12, 12, 12, 0.5));
}
/*header*/
.header{
	position:relative;
	width: 100%;
	left:0;
	top:0;
	z-index: 99;
	padding: 0px;
	background-color: #eaf4ff;
}
.header-main{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	border-radius: 4px;
}
.header .logo{
	padding: 0;
}
.header .logo a{
	font-size: 30px;
	text-transform: capitalize;
	color: #e91e63;
	font-weight: 600;
}
.header .nav-menu{
	padding: 0 15px;
}
.header .menu > .menu-item{
	display: inline-block;
	margin-left: 20px;
	position: relative;
}
.header .menu > .menu-item > a{
	display: block;
	padding: 12px 0;
	font-size: 16px;
	color: #000000;
	text-transform: capitalize;
	font-weight: 600;
	transition: all 0.3s ease;
}
.header .menu > .menu-item > a .plus{
	display: inline-block;
	height: 12px;
	width: 12px;
	position: relative;
	margin-left:5px; 
	pointer-events: none;
}
.header .menu > .menu-item > a:before {
    content: '';
    position: absolute;
    left: 0;
    background-color:#000000;
    width: 100%;
    bottom: 1px;
    height: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 650ms;
}
.header .menu > .menu-item > a:hover::before
{
  transform: scaleX(1);
}

.header .menu > .menu-item > a .plus:before,
.header .menu > .menu-item > a .plus:after{
	content:'';
	position: absolute;
	box-sizing: border-box;
	left: 50%;
	top:50%;
	background-color: #000000;
	height: 2px;
	width: 100%;
	transform: translate(-50%,-50%);
	transition: all 0.3s ease;
}
.header .menu > .menu-item:hover > a .plus:before,
.header .menu > .menu-item:hover > a .plus:after{
   background-color: #000000;
}
.header .menu > .menu-item > a .plus:after{
   transform: translate(-50%,-50%) rotate(-90deg);	
}
.header .menu > .menu-item > .sub-menu > .menu-item > a:hover,
.header .menu > .menu-item:hover > a{
	color: #000000;
}
.header .menu > .menu-item > .sub-menu{
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	width: 220px;
	position: absolute;
	left:0;
	top:100%;
	background-color: #ffffff;
	padding: 10px 0;
	border-top: 3px solid #000000;
	transform: translateY(10px);
	transition: all 0.3s ease;
	opacity:0;
	visibility: hidden;
}
@media(min-width: 992px){
.header .menu > .menu-item-has-children:hover > .sub-menu{
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
 }
 .header .menu > .menu-item-has-children:hover > a .plus:after{
    transform: translate(-50%,-50%) rotate(0deg);		
 }
}
.header .menu > .menu-item > .sub-menu > .menu-item{
	display: block;
}
.header .menu > .menu-item > .sub-menu > .menu-item > a{
	display: block;
	padding: 10px 20px;
	font-size: 16px;
	font-weight: 600;
	color: #000000;
	transition: all 0.3s ease;
	text-transform: capitalize;
}
.header .open-nav-menu{
	height: 34px;
	width: 40px;
	margin-right: 15px;
	display: none;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.header .open-nav-menu span{
	display: block;
	height: 3px;
	width: 24px;
	background-color: #000000;
    position: relative;
}
.header .open-nav-menu span:before,
.header .open-nav-menu span:after{
	content: '';
	position: absolute;
	left:0;
	width: 100%;
	height: 100%;
	background-color: #000000;
	box-sizing: border-box;
}
.header .open-nav-menu span:before{
	top:-7px;
}
.header .open-nav-menu span:after{
	top:7px;
}
.header .close-nav-menu{
	height: 40px;
	width: 40px;
	background-color:transparent;
	margin:0 0 15px 15px;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
}
.header .close-nav-menu img{
	width: 16px;
}
.header .menu-overlay{
	position: fixed;
	z-index: 999;
	background-color: rgba(0,0,0,0.5);
	left:0;
	top:0;
	height: 100%;
	width: 100%;
	visibility: hidden;
	opacity:0;
	transition: all 0.3s ease;
}

/*home section*/
.home-section{
	width: 100%;
	display: block;
	min-height: 100vh;
	background-image: url('../img/home.jpg');
	background-position: center top;
	background-size: cover;
}


/* responsive */

@media(max-width: 991px){
	.header .menu-overlay.active{
	visibility: visible;
	opacity: 1;
}
	.header .nav-menu{
		position: fixed;
		right: -280px;
		visibility: hidden;
		width: 280px;
		height: 100%;
		top:0;
		overflow-y: auto;
		background-color: #eaf4ff;
		z-index: 1000;
		padding: 15px 0;
		transition: all 0.5s ease;
	}
	.header .nav-menu.open{
		visibility: visible;
		right: 0px;
	}
	.header .menu > .menu-item{
		display: block;
		margin:0;
	}
	.header .menu > .menu-item-has-children > a{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.header .menu > .menu-item > a{
		padding: 12px 15px;
		border-bottom: 1px solid #cdcdcd;
	}
	.header .menu > .menu-item:first-child > a{
	    border-top: 1px solid #333333;	
	}
	.header .menu > .menu-item > a .plus:before, 
	.header .menu > .menu-item > a .plus:after{
		background-color: #ffffff;
	}
	.header .menu > .menu-item-has-children.active > a .plus:after{
        transform: translate(-50%,-50%) rotate(0deg);
	}
	.header .menu > .menu-item > .sub-menu{
		width: 100%;
		position: relative;
		opacity: 1;
		visibility: visible;
		border:none;
		background-color: transparent;
		box-shadow: none;
		transform: translateY(0px);
		padding: 0px;
		left: auto;
		top:auto;
		max-height: 0;
		overflow: hidden;
	}
	.header .menu > .menu-item > .sub-menu > .menu-item > a{
		padding: 12px 45px;
		color: #ffffff;
		border-bottom: 1px solid #333333;
	}
	.header .close-nav-menu,
	.header .open-nav-menu{
		display: flex;
	}
}

.logo img
{
	width: 180px;
}
.banner
{

}
.cont-txt
{
	color: #2e5481;
	  font-family: "Oswald", sans-serif;
  font-size: 36px;
  font-weight: 400;
   margin-bottom: 0;
  font-style: normal;
}
.count-text
{
	color: #2e5481;
	  font-family: "Oswald", sans-serif;
  font-size: 28px;
  font-weight: 400;
  font-style: normal;
}
.line-1
{
	background-color: #15183d;
	height: 3px;
	width: 100%;
	margin:24px 0 24px 0px;
}
.emp-txt
{
	color: #191c3f;
	font-family: "Poppins", sans-serif;
  font-size:16px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 30px;
   margin-bottom: 0;
  font-style: normal;
}
.left-sec-2 p
{
		color: #191c3f;
	font-family: "Poppins", sans-serif;
  font-size:16px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 30px;
   margin-bottom: 0;
  font-style: normal;
}
.info
{
		color: #191c3f;
	font-family: "Poppins", sans-serif;
  font-size:16px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 30px;
   margin-bottom: 0;
  font-style: normal;
}
.emp-1
{
	    padding: 0 60px 0 0;
}
.col-sm-21 {
      flex: 0 0 auto;
    width: 20%;
    padding-right: 0;
}
.info-why-box h2
{
	     color: #2e5481;
    font-family: "Oswald", sans-serif;
    font-size: 22px;
    margin: 20px 0 25px 0px;

}
.info-why-box
{
    margin:44px 0 14px 0;
    padding-right: 20px;
}
.sec-2
{
	padding:3em 0;
	background-color: #dedede;
}
.title
{
		color: #2e5481;
	  font-family: "Oswald", sans-serif;
	  font-size: 50px;
	  letter-spacing: 0.6px;
	      line-height: 66px;
}
.ban-title
{
		color: #fff;
	  font-family: "Oswald", sans-serif;
	  font-size: 50px;
	  letter-spacing: 0.6px;
	      line-height: 66px;
}
.mt-20px
{
	margin-top: 20px;
}
.sec-3
{
	    background-image: url(../images/bg-2.png);
	    z-index: 1;
    position: relative;
    background-size: cover;
    background-position: center;
		padding:3em 0;
}
.counter-num
{
	margin: 50px 0;
}
.col-fff
{
	color: #fff;
}
.txt-cnt
{
	text-align: center;
}
.left-sec-2
{
	padding-right: 80px;
}
.sec-4
{
	background-color: #ffffff;
	padding:3em 0;
}
.sec-5
{
	 background-image: url(../images/bg-3.png);
	    z-index: 1;
    position: relative;
    background-size: cover;
    background-position: center;
		padding:3em 0 2em 0;
}
.g-map-1
{
	padding:6px;
	border:1px solid #ccc;
	margin-top:10px;
	border-radius: 4px;
	padding-left:16px;
}
.sec-6
{
	background-color: #dcdcdc;
	padding:3em 0;
}
.title-2
{
		color: #3d6da7;
	  font-family: "Oswald", sans-serif;
	  font-size: 40px;
	  letter-spacing: 0.6px;
}
.btn-cnt
{
		background-color: #123055;
	  font-family: "Oswald", sans-serif;
	  color:#fff;
	  font-weight: 500;
	  font-size: 30px;
	  letter-spacing: 0.5px;
	  padding:10px 30px;
	  line-height: normal;
	   font-style: italic;
}
.mt-40px
{
	margin:40px 0 50px 0;
}
.cnt-right
{
	display: flex;
	justify-content: flex-end;
}
.sec-1
{
	background-color: #fff;
	padding:3em 0;
}
.footer
{
	background-color: #123055;
	padding:3em 0;
}
.banner
{
	background-image: url(../images/banner.png);
	    z-index: 1;
    position: relative;
    background-size: cover;
    background-position: center;
		padding:4em 0;
}
.career-banner
{
	background-image: url(../images/careers.png);
	    z-index: 1;
    position: relative;
    background-size: cover;
    background-position: center;
		padding:4em 0;
		height: 400px;
		    display: flex;
    justify-content: center;
    align-items: center;
}
.facility-banner{
    background-image: url(../images/fact-banner.png);
    z-index: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 4em 0;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.infra-banner{
    background-image: url(../images/banner-2.jpeg);
    z-index: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 4em 0;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.client-banner{
    background-image: url(../images/client-tel.png);
    z-index: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 4em 0;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.facility-policy-banner
{
	background-image: url(../images/policy-banner.png);
    z-index: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 4em 0;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact-banner{
    background-image: url(../images/banner-3.png);
    z-index: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 4em 0;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.abt-banner{
    background-image: url(../images/banner-4.png);
    z-index: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 4em 0;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.fact-banner{
    background-image: url(../images/fact-banner.png);
    z-index: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 4em 0;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.main-wrapper
{
	padding:3em 0;
}
.mb-20px
{
	margin-bottom: 14px;
}

.sec-1-abt
{
	padding:2em 0 1em 0;
}
.mt-22px
{
	margin-top:24px;
}
.sec-3-abt {
    padding: 3em 0;
    background: #e3f1fa;
    margin-top: 3em;
}
.abt-info-sec-3
{
	margin-top:40px;
	padding-right: 30px;
}
.sec-2-abt
{
	background-color: #dedede;
	padding:2em 0 3em 0;
}
.info-why-box-1 {
    margin: 30px 0 0px 0;
    padding-right: 20px;
}
.info-why-box-1 h2 {
    color: #2e5481;
    font-family: "Oswald", sans-serif;
    font-size: 22px;
    margin: 20px 0 25px 0px;
}
.title-3 {
    color: #3d6da7;
    font-family: "Oswald", sans-serif;
    font-size: 24px;
    margin-bottom: 14px;
    letter-spacing: 0.6px;
}
.vi-box-1
{
	    margin:40px;
    border-left: 5px solid #3c6da6;
    padding: 0 20px 0 40px;
        height: 285px;
}

.title-1
{
	    color: #2e5481;
    font-family: "Oswald", sans-serif;
    font-size: 30px;
    letter-spacing: 0.6px;
    line-height: 35px;
}

.title-21
{
    color: #2e5481;
    font-family: "Oswald", sans-serif;
    font-size: 20px;
    letter-spacing: 0.6px;
    line-height: 35px;
    font-weight: 300;
    margin: 10px 0 20px 0;
}
.infra-div
{
	margin-bottom: 40px;
}
.infra-top {
    margin-top: 40px;
}
.txt-just
{
	text-align: justify;
}

.list-fac
{
color: #191c3f;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 30px;
    margin-top: 18px;
}

.list-fac li
{
	    margin-bottom: 10px;
    list-style-type: disc;
    margin-left: 30px;
}
.client-21 {
    color: #2e5481;
    font-family: "Oswald", sans-serif;
    font-size: 18px;
    letter-spacing: 0.6px;
    line-height: 30px;
    font-weight: 450;
    margin: 10px 0 20px 0;
}
.client-bx
{
	    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    padding: 10px;
    border-radius: 4px;
    margin-top: 28px;
    height: 250px;
  	text-align: center;
}
.title-13 {
    color: #1d1d1d;
    font-family: "Oswald", sans-serif;
    font-size: 30px;
    letter-spacing: 0.6px;
    line-height: 35px;
}
.sub-resum-box
{
	margin:3em 0;
}
.carr-form
{
background: #e6e6e6;
    padding: 3em;
}
.title-211 {
    color: #2e5481;
    font-family: "Oswald", sans-serif;
    font-size: 20px;
    letter-spacing: 0.6px;
    line-height: 35px;
    font-weight: 300;
    margin: 10px 0 20px 0;
}

.title-233 {
    color: #3d6da7;
    font-family: "Oswald", sans-serif;
    font-size: 25px;
    letter-spacing: 0.6px;
}
.contact-right .form-control
{
 display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    height: 52px;
    margin-top: 0px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: 4px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.cont--form_1
{
	margin-bottom: 18px;
}
.contact-right label
{
	    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: 0.6px;
    padding-left:6px;
}
.title-cont {
    color: #fff;
    font-family: "Oswald", sans-serif;
    font-size: 28px;
    text-align: center;
    margin-bottom: 14px;
    letter-spacing: 0.6px;
}
.carr-form .form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    height: 58px;
    margin-top: 30px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: 4px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.cont--box
{
	margin-top: 20px;
}
.btn-cnt-1 {
    background-color: #123055;
    font-family: "Oswald", sans-serif;
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 0.5px;
    padding: 8px 20px;
    line-height: normal;
    font-style: normal;
    display: block;
    text-align: center;
    width: 174px;
    margin: 36px auto 0 auto;
}
.main-cnt
{
	color: #000;
    font-family: "Oswald", sans-serif;
    font-size:26px;
    margin-bottom: 10px;
    letter-spacing: 0.6px;
}

.infra-top-2 {
    margin-top: 20px;
}
.contact-right
{
	background-color:#2e5481;
	padding:2em;
}
.ftp-top
{
	font-family: NEXAFONT-bold;
	font-size: 18px;
	color: #fff;
	margin-bottom: 20px;
	text-transform: uppercase;
}
.lef-fot
{
	padding-left: 10px;
}
.link-footer
{
		color: #fff;
	    font-family: "Poppins", sans-serif;
}

.link-footer li
{
	margin-bottom: 10px;
}
.left-img
{
	padding-left: 20px;
}
.right-img
{
	padding-right: 20px;
}
.left-img-1
{
		padding-right: 20px;
}
.d-cnt-img
{
	display: flex;
	justify-content: center;
	align-items: center;
}
.right-img-1
{
		padding-left: 20px;
}
/*Media Query*/

@media screen and (max-width: 820px) {
  .col-sm-21 {
    flex: 0 0 auto;
    width: 48%;
    padding-right: 0;
}
.hide-desk
{
	display: none;
}
.mt-40px-tab
{
	margin-top:28px;
}
.left-sec-2 {
    padding-right: 0;
}
.ftp-top {
    font-family: NEXAFONT-bold;
    font-size: 18px;
    color: #fff;
    margin-bottom: 6px;
    text-transform: uppercase;
}
.emp-1 {
    padding: 0 60px 0 60px;
    margin-bottom: 20px;
}
.mr-pic-top
{
	margin-top: 20px;
}
.info-why-box {
    margin: 22px 0 14px 0;
    padding-right: 10px;
}
.sec-5 {
    background-image: url(../images/bg-3.png);
    z-index: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 3em 0 1em 0;
}    
.vi-box-1 {
        margin: 20px;
        border-left: 5px solid #3c6da6;
        padding: 0 0px 0 20px;
        height: auto;

}
.left-img {
    padding-left: 0;
}
}

@media screen and (max-width: 600px) {

  .col-sm-21 {
        flex: 0 0 auto;
        width: 100%;
        padding-right: 18px;
        padding-left: 18px;
    }
.sec-1-abt {
    padding: 1em 0 1em 0;
}
.info-why-box {
    margin: 20px 0 0px 0;
    padding-right: 0;
}

.sec-4 {
    background-color: #ffffff;
    padding: 2em 0;
}
.title {
    color: #2e5481;
    font-family: "Oswald", sans-serif;
    font-size: 32px;
    letter-spacing: 0.6px;
    line-height: 50px;
}
.counter-num {
    margin: 20px 0;
}
.emp-1 {
    padding: 0;
    margin-bottom: 10px;
}
.sec-6 {
    background-color: #dcdcdc;
    padding: 2em 0;
}
.mt-40px {
    margin: 20px 0 20px 0;
}
.sec-3 {
    background-image: url(../images/bg-2.png);
    z-index: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 2em 0;
}
.left-sec-2 {
    padding-right: 0;
}
.sec-2 {
    padding: 2em 0;
    background-color: #dedede;
}
.sec-1 {
    background-color: #fff;
    padding: 2em 0;
}
.logo img {
    width: 140px;
}

.mr-pic-top
{
	margin-top: 20px;
}
.abt-info-sec-3 {
    margin-top: 20px;
    padding-right: 0;
}
.info-why-box-1 {
    margin: 20px 0 0px 0;
    padding-right: 0;
}
.sec-3-abt {
    padding: 2em 0;
    background: #e3f1fa;
    margin-top: 2em;
}
.container
{
	padding:0 12px 0 16px;
}
.footer {
    background-color: #123055;
    padding: 26px 0;
}
.main-wrapper {
        padding: 30px 0 40px 0;
    }
.mb--60px {
    margin-bottom: 24px;
}
.sec-5 {
    background-image: url(../images/bg-3.png);
    z-index: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 2em 0;
}
.row-rev
{
	    flex-direction: column-reverse;
}
.client-bx {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    padding: 10px;
    border-radius: 4px;
    margin-top: 28px;
    height: 180px;
    text-align: center;
}
.client-21 {
    color: #2e5481;
    font-family: "Oswald", sans-serif;
    font-size: 14px;
    letter-spacing: 0.6px;
    line-height: 22px;
    font-weight: 450;
    margin: 10px 0 20px 0;
}
.ban-title {
    color: #fff;
    font-family: "Oswald", sans-serif;
    font-size: 38px;
    letter-spacing: 0.6px;
    line-height: 50px;
}
.abt-banner, .infra-banner, .fact-banner, .facility-policy-banner, .client-banner, .career-banner, .contact-banner {
    
    height: 300px;
 
}
.g-map-1 {
    padding: 6px;
    border: 1px solid #ccc;
    margin-top: 10px;
    border-radius: 4px;
    padding-left: 0;
    margin-bottom: 16px;
}
.lef-fot {
    padding-left: 0;
}
.title-211 {
    color: #2e5481;
    font-family: "Oswald", sans-serif;
    font-size: 18px;
    letter-spacing: 0.6px;
    line-height: normal;
    font-weight: 300;
    margin: 10px 0 10px 0;
}
.title-3 {
    color: #3d6da7;
    font-family: "Oswald", sans-serif;
    font-size: 22px;
    margin-bottom: 8px;
    letter-spacing: 0.6px;
}
.info {
    color: #191c3f;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 27px;
    margin-bottom: 0;
    font-style: normal;
}
.line-1 {
    background-color: #15183d;
    height: 2px;
    width: 80%;
    margin: 20px auto 20px auto;
}
.mb-20px {
    margin-bottom: 8px;
}
.right-img {
    padding-right: 0;
}
.right-img-1 {
    padding-left: 0;
}
.left-img-1 {
    padding-right: 0;
    margin-top: 14px;
    margin-bottom: 8px;
}
.title-21 {
    color: #2e5481;
    font-family: "Oswald", sans-serif;
    font-size: 20px;
    letter-spacing: 0.6px;
    line-height: 35px;
    font-weight: 300;
    margin: 10px 0 20px 0;
}
.left-img
{
	 margin-top: 14px;
    margin-bottom: 8px;
}
.hide-mob
{
	display: none;
}
.hide-desk
{
	display: block;
}
}
