/* Description: Master CSS file */

/*****************************************
Table Of Contents:
- General Styles
- Navigation
- Home
- Information
- Button
- Services
- Plans
- Testimonials
- Newsletter
- Back To Top Button
- Extra Pages
- Media Queries
******************************************/


/**************************/
/*     General Styles     */
/**************************/
:root {
	--primary: #192072;
	--primary-light: #192072;
	--secondary: #FFDD15;
	--tertiary: #FFDD15;
	--gradient: linear-gradient(to right, #FFDD15, #FFDD15);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Poppins", sans-serif;
}

h1 {
	font-size: 60px;
	font-weight: 500;
}

button {
	font-family: sans-serif;
}

p,
ul,
h4 {
	margin: 0;
	padding: 0;

}

a {
	color: white;
	text-decoration: none;
}

li {
  	list-style-type: none;
}

/* Section Background */
.services
{
	height: 190vh;
	position: relative;
}
.home,
.about,
.plans,
.work,
.contact {
	/*height: 90vh;*/
	height: auto;
	position: relative;
}

.contact,
.testimonial{
  	background-color: #192071;
}
.about,
.plans,
.services,
.company,
.newsletter,
.location {
  	background-color: #d1d1d1;
}

.bottom {
  	background-color: black;
}

/* Gradient Border And Background On Icons */
.home_text,
.home .fas,
.plans .far,
.information .fas,
.work .fas,
.services .fas,
.location .far,
.location .fas {
	padding: 15px 0;
	background: #FFDD15;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.navbar-nav a:hover,
.footer a:hover,
.footer .fab:hover {
	cursor: pointer;
	background: var(--gradient);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}


/**********************/
/*     Navigation     */
/**********************/
.navbar {
	font-weight: 500;
	font-size: 0.875rem;
	line-height: 0.875rem;
	background-color: var(--primary);
	box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.025);
}

.navbar .navbar-brand {
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
}

.navbar .logo-image img {
	width: 108px;
	height: 32px;
}

.navbar .logo-text {
	color: #fff;
	font-weight: 500;
	line-height: 1rem;
	font-size: 1.575rem;
	text-decoration: none;
}

.offcanvas-collapse {
	position: fixed;
	top: 2.75rem; /* adjusts the height between the top of the page and the offcanvas menu */
	bottom: 0;
	left: 100%;
	width: 100%;
	overflow-y: auto;
	visibility: hidden;
	padding-right: 1rem;
	padding-left: 1rem;
	background-color: #192072e0;
	transition: transform 0.2s ease-in-out, visibility 0.2s ease-in-out;
}

.offcanvas-collapse.open {
	visibility: visible;
	transform: translateX(-100%);
}

.navbar .navbar-nav {
	margin-top: 0.75rem;
	margin-bottom: 0.5rem;
}

.navbar .dropdown-menu {
	border: none;
	margin-top: 0.25rem;
	margin-bottom: 0.25rem;
	background-color: var(--primary);
}

.navbar .dropdown-item {
	color: #eee;
	font-weight: 500;
	font-size: 0.875rem;
	line-height: 0.875rem;
	padding-top: 0.625rem;
	text-decoration: none;
	padding-bottom: 0.625rem;
}

.navbar .dropdown-item:hover {
  	background-color: var(--primary);
}

.navbar .dropdown-divider {
	width: 100%;
	height: 1px;
	border: none;
	margin: 0.5rem auto 0.5rem auto;
	background-color: var(--primary-light);
}

.navbar .nav-item .nav-link {
	color: #fff;
	font-size: 17px;
	text-decoration: none;
	padding-top: 0.625rem;
	padding-bottom: 0.625rem;
	transition: all 0.2s ease;
}

.navbar .fa-stack {
	width: 3em;
	font-size: 1rem;
	margin-right: 4rem;
}

.navbar .fa-stack-2x {
	background: #FFDD15;

		
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: all 0.2s ease;
}

.navbar .fa-stack-1x {
	
	transition: all 0.2s ease;
}

.navbar .fa-stack:hover .fa-stack-2x {
  	color: var(--primary);
}

.navbar .fa-stack:hover .fa-stack-1x {
  	color: var(--primary);
}

.navbar .navbar-toggler {
	padding: 0;
	border: none;
	font-size: 1.25rem;
}


/****************/
/*     Home     */
/****************/
.home {
	/*background-image: url(./assets/images/home.jpg);*/
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.para {
  	width: 50%;
}

.para-light {
  	opacity: 1;
}


/***********************/
/*     Information     */
/***********************/
.information .container-fluid .row div:first-child {
  	background-color: #192071;
}

.information .container-fluid .row div:last-child {
  	background-color: #192071;
}

.information .container-fluid .row div:nth-child(2) {
  	background-color: #fff;

}


/******************/
/*     Button     */
/******************/
.btn {
	color: white;
	border-radius: 0;
	border-width: 2px;
	padding: 10px 30px;
	border-image-slice: 1;
	background-image: none;
	background: transparent;
	border-image-source: var(--gradient);
	box-shadow: 5px 5px 0px 0px var(--secondary);
}

.btn:hover {
	color: white;
	box-shadow: none;
	border-radius: 0;
	padding: 10px 30px;
	transform: translate(5px, 5px);
}

/* Email - Newsletter Button */
.btn-secondary {
	color: black;
	border-width: 2px;
	padding: 10px 30px;
	border-image-slice: 1;
	background-image: none;
	background: transparent;
	border-image-source: var(--gradient);
}

.btn-secondary:hover {
	color: black;
	padding: 10px 30px;
	background-image: var(--gradient);
}

/* Other Pages Button */
.btn-tertiary {
	color: black;
	border-radius: 0;
	border-width: 2px;
	padding: 10px 30px;
	border-image-slice: 1;
	background-image: none;
	background: transparent;
	border-image-source: var(--gradient);
	box-shadow: 5px 5px 0px 0px var(--secondary);
}

.btn-tertiary:hover {
	color: black;
	box-shadow: none;
	border-radius: 0;
	padding: 10px 30px;
	transform: translate(5px, 5px);
}


/********************/
/*     Services     */
/********************/
.services .card {
	padding: 20px;
	border-radius: 0;
	border: 2px solid white;
	height: 200px;
}

.services .card:hover {
	border: 10px solid;
	transform: scale(1.01);
	border-image-slice: 1;
	border-width: 2px;
	border-image-source: var(--gradient);
	box-shadow: 5px 5px 0px 0px #FFDD15;
}


/*****************/
/*     Plans     */
/*****************/
.plans .card {
	padding: 20px;
	border: 2px solid white;
}


/************************/
/*     Testimonials     */
/************************/
.slider-1 {
	padding-top: 2.2rem;
	padding-bottom: 2.2rem;
	margin-bottom: 1rem;
}

.slider-1 .section-title {
  	text-align: center;
}

.slider-1 .h2-heading {
	text-align: center;
	margin-bottom: 3rem;
}

.testimonial-card {
	border: 10px solid;
	border-image-slice: 1;
	border-width: 3px;
	border-image-source: var(--gradient);
}

.slider-1 .slider-container {
  	position: relative;
}

.slider-1 .swiper-container {
	width: 86%;
	position: static;
}

.slider-1 .swiper-button-prev,
.slider-1 .swiper-button-next {
  	color: var(--primary);
}

.slider-1 .swiper-button-prev:focus,
.slider-1 .swiper-button-next:focus {
	/* even if you can't see it chrome you can see it on mobile device */
	outline: none;
}

.slider-1 .swiper-button-prev {
	left: -14px;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23707375'%2F%3E%3C%2Fsvg%3E");
	background-size: 18px 28px;
}

.slider-1 .swiper-button-next {
	right: -14px;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23707375'%2F%3E%3C%2Fsvg%3E");
	background-size: 18px 28px;
}

.slider-1 .card {
	border: none;
	position: relative;
	background-color: transparent;
}

.slider-1 .card-image {
	width: 80px;
	height: 80px;
	margin-left: auto;
	margin-right: auto;
	border-radius: 50%;
	margin-bottom: 1.25rem;
}

.slider-1 .card-body {
  	padding: 0;
}

.slider-1 .testimonial-text {
  	margin-bottom: 0.75rem;
}

.slider-1 .testimonial-author {
	margin-bottom: 0;
	color: #252c38;
}

.slider-1 .avatar {
	width: 70px;
	height: 70px;
	border-radius: 50%;
}

/* Dropdown Menu */
.navbar .dropdown .dropdown-menu {
  	animation: fadeDropdown 0.2s; /* required for the fade animation */
}

@-webkit-keyframes fadeDropdown {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes fadeDropdown {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}


/**********************/
/*     Newsletter     */
/**********************/
.form-control-input,
.form-control-textarea {
	width: 100%;
	appearance: none;
	border-radius: 4px;
	font-size: 0.875rem;
	line-height: 1.5rem;
	padding-left: 1.5rem;
	padding-top: 0.775rem;
	padding-bottom: 0.775rem;
}


/******************************/
/*     Back To Top Button     */
/******************************/
#myBtn {
	z-index: 99;
	right: 20px;
	width: 52px;
	height: 52px;
	bottom: 20px;
	border: none;
	outline: none;
	display: none;
	position: fixed;
	cursor: pointer;
	border-radius: 50%;
	background-color: #323137;
}

#myBtn:hover {
  	background-color: #0f0f11;
}

#myBtn img {
	width: 18px;
	margin-left: 0.125rem;
	margin-bottom: 0.25rem;
}


/***********************/
/*     Extra Pages     */
/***********************/
.ex-header {
	padding-top: 8.5rem;
	padding-bottom: 4rem;
	background-color: var(--primary);
}

.ex-header h1 {
  	color: #fff;
}

.ex-basic-1 .list-unstyled .fas {
	font-size: 0.375rem;
	line-height: 1.625rem;
}

.ex-basic-1 .list-unstyled .flex-grow-1 {
  	margin-left: 0.5rem;
}

.ex-basic-1 .text-box {
	padding: 1.25rem 1.25rem 0.5rem 1.25rem;
	background-color: #f7f9fd;
}

.ex-cards-1 .card {
	border: none;
	background-color: transparent;
}

.ex-cards-1 .card .fa-stack {
	width: 2em;
	font-size: 1.125rem;
}

.ex-cards-1 .card .fa-stack-2x {
  	color: var(--secondary);
}

.ex-cards-1 .card .fa-stack-1x {
	width: 2em;
	color: #ffffff;
	font-weight: 700;
	line-height: 2.125rem;
}

.ex-cards-1 .card .list-unstyled .flex-grow-1 {
  	margin-left: 2.25rem;
}

.ex-cards-1 .card .list-unstyled .flex-grow-1 h5 {
	margin-top: 0.125rem;
	margin-bottom: 0.5rem;
}


/*************************/
/*     Media Queries     */
/*************************/
@media only screen and (max-width: 1024px) {
	.services,
	.work,
	.testimonial,
	.about,
	.contact,
	.plans {
		height: 100%;
	}
}

@media (min-width: 992px) {
	.slider-1 .swiper-container {
		width: 92%;
	}

	.slider-1 .swiper-button-prev {
		left: -16px;
		width: 22px;
		background-size: 22px 34px;
	}

	.slider-1 .swiper-button-next {
		right: -16px;
		width: 22px;
		background-size: 22px 34px;
	}

	/* Navigation */
	.navbar {
		box-shadow: none;
		transition: all 0.2s;
		padding-top: rem;
		background-color: #192071;
	}

	.navbar.top-nav-collapse {
		padding-top: 0.5rem;
		padding-bottom: 0.5rem;
		background-color: var(--primary);
		box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.025);
	}

	.offcanvas-collapse {
		position: static;
		top: auto;
		bottom: auto;
		left: auto;
		width: auto;
		padding-right: 0;
		padding-left: 0;
		background-color: transparent;
		overflow-y: visible;
		visibility: visible;
	}

	.offcanvas-collapse.open {
		transform: none;
	}

	.navbar .navbar-nav {
		margin-top: 0;
		margin-bottom: 0;
	}

	.navbar .nav-item .nav-link {
		padding-right: 0.75rem;
		padding-left: 0.75rem;
	}

	.navbar .dropdown-menu {
		padding-top: 0.75rem;
		padding-bottom: 0.875rem;
		box-shadow: 0 3px 3px 1px rgba(0, 0, 0, 0.08);
	}

	.navbar .dropdown-divider {
		width: 90%;
	}

	.navbar .social-icons {
		margin-left: 0.5rem;
	}

	.navbar .fa-stack {
		margin-right: 0;
		margin-left: 0.25rem;
	}
}

@media only screen and (max-width: 540px) {
	h1 {
		font-size: 30px;
	}

	.para {
		width: 100%;
	}

	.swiper-container {
		width: 92%;
	}

	.swiper-button-prev {
		left: -16px;
		width: 22px;
		background-size: 22px 34px;
	}

	.swiper-button-next {
		right: -16px;
		width: 22px;
		background-size: 22px 34px;
	}
}


/*------------------------------------------------------------------
    breadcrumb AREA
-------------------------------------------------------------------*/

/*--- breadcrumb ---*/



/* line 1, ../../01 cl html template/New folder/May 2019/174 Ariclaw Lawyer/Ariclaw Lawyer Html/sass/_breadcrumb.scss */
.breadcrumb_bg {
    background-color: 
#fff;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 200px;
  /*background-color: #000000;  */
}

/* line 5, ../../01 cl html template/New folder/May 2019/174 Ariclaw Lawyer/Ariclaw Lawyer Html/sass/_breadcrumb.scss */
.breadcrumb {
  position: relative;
  z-index: ;
  text-align: center;
  padding: 0;
  height:185px;
  margin-top: 100px;
  font-weight: 600;
}

/* line 11, ../../01 cl html template/New folder/May 2019/174 Ariclaw Lawyer/Ariclaw Lawyer Html/sass/_breadcrumb.scss */
.breadcrumb .breadcrumb_iner {
  /*height: 440px;*/
  width: 100%;
  display: table;
}

/* line 16, ../../01 cl html template/New folder/May 2019/174 Ariclaw Lawyer/Ariclaw Lawyer Html/sass/_breadcrumb.scss */
.breadcrumb .breadcrumb_iner .breadcrumb_iner_item {
  display: table-cell;
  vertical-align: middle;
}

/* line 20, ../../01 cl html template/New folder/May 2019/174 Ariclaw Lawyer/Ariclaw Lawyer Html/sass/_breadcrumb.scss */
.breadcrumb .breadcrumb_iner .breadcrumb_iner_item h2 {
  color: #192072;
  font-size: 40px;
  font-weight: 500;
  margin-top: 60px;
  text-transform: capitalize;
}

@media (max-width: 575px) {
  /* line 20, ../../01 cl html template/New folder/May 2019/174 Ariclaw Lawyer/Ariclaw Lawyer Html/sass/_breadcrumb.scss */
  .breadcrumb .breadcrumb_iner .breadcrumb_iner_item h2 {
    font-size: 35px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  /* line 20, ../../01 cl html template/New folder/May 2019/174 Ariclaw Lawyer/Ariclaw Lawyer Html/sass/_breadcrumb.scss */
  .breadcrumb .breadcrumb_iner .breadcrumb_iner_item h2 {
    font-size: 35px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  /* line 20, ../../01 cl html template/New folder/May 2019/174 Ariclaw Lawyer/Ariclaw Lawyer Html/sass/_breadcrumb.scss */
  .breadcrumb .breadcrumb_iner .breadcrumb_iner_item h2 {
    font-size: 40px;
  }
}

/* line 42, ../../01 cl html template/New folder/May 2019/174 Ariclaw Lawyer/Ariclaw Lawyer Html/sass/_breadcrumb.scss */
.breadcrumb .breadcrumb_iner .breadcrumb_iner_item p {
  font-size: 15px;
  color: #000;
  text-transform: capitalize;
}

/* line 48, ../../01 cl html template/New folder/May 2019/174 Ariclaw Lawyer/Ariclaw Lawyer Html/sass/_breadcrumb.scss */
.breadcrumb .breadcrumb_iner .breadcrumb_iner_item span {
  margin: 0px 5px;
  font-size: 12px;
}

/* line 58, ../../01 cl html template/New folder/May 2019/174 Ariclaw Lawyer/Ariclaw Lawyer Html/sass/_breadcrumb.scss */
.breadcrumb {
  margin-bottom: 0px !important;
}


/*### client ###*/

.section-header h3 {
     font-size: 36px;
     color: #192072;
     text-align: center;
     font-weight: 500;
     position: relative
 }

 .section-header p {
     text-align: center;
     margin: auto;
     font-size: 15px;
     padding-bottom: 60px;
     color: #192072;
     width: 50%
 }

 #clients {
     padding: 60px 0
 }

 #clients .clients-wrap {
     
     margin-bottom: 30px
 }

 #clients .client-logo {
     display: -webkit-box;
     display: -webkit-flex;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-pack: center;
     -webkit-justify-content: center;
     -ms-flex-pack: center;
     justify-content: center;
     -webkit-box-align: center;
     -webkit-align-items: center;
     -ms-flex-align: center;
     align-items: center;
     
     overflow: hidden;
     background: #fff;
     height: 200px;
     width: 100%;
 }

 #clients img {
     transition: all 0.4s ease-in-out
 }


 /*##### team ####*/

 #team {
    padding: 60px 0;
    text-align: center;
    background-color: #d1d1d1;
    
}
#team h2 {
    position: relative;
    padding: 0px 0px 15px;
    color: #192072;
}
#team p {
    font-size: 15px;
    font-style: italic;
    padding: 0px;
    margin: 25px 0px 40px;
    color: #192072;
}
#team h2::after {
    content: '';
    border-bottom: 2px solid #fff;
    position: absolute;
    bottom: 0px;
    right: 0px;
    left: 0px;
    width: 90px;
    margin: 0 auto;
    display: block;
}
#team .member {
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    padding: 10px;
    border-radius: 15px 0px 15px 0px;
    box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.4);
}
#team .member .member-info {
    display: block;
    position: absolute;
    bottom: 0px;
    left: -200px;
    transition: 0.4s;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.4);
}
#team .member:hover .member-info {
    left: 0px;
    right: 0px;
}
#team .member h4 {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 18px;
    color: #fff;
}
#team .member span {
    font-style: italic;
    display: block;
    font-size: 13px;
    color: #fff;
}
#team .member .social-links {
    margin-top: 15px;
}
#team .member .social-links a {
    transition: none;
    color: #fff;
}
#team .member .social-links a:hover {
    color: #FFDD15;
}
#team .member .social-links i {
    font-size: 18px;
    margin: 0 2px;
}

/*#### gallery ####*/


img{ max-width:100%;}

.gallery_box li{ width:33.333333%; max-width: 100% ; display:inline-block; float: left; text-align: center; overflow: hidden;    position: relative;}
.gallery_box{ padding:0;display: flow-root;}

.gallery_box li:hover img {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.gallery_box li img{-webkit-transition: transform 0.5s ease;
    -o-transition: transform 0.5s ease;
    transition: transform 0.5s ease;}
.gallery_box li:nth-child(even) {
    height: 304px;
}
.gallery_box li:nth-child(odd) {
    height: 438px; 
}
.gallery_box li:nth-child(odd) .box_data{ background:rgba(0,0,0,0.17) }
.gallery_box li:nth-child(even) .box_data{ background:rgba(0,44,255,0.27) }
.gallery_box .box_data{ position:absolute; top: 0; left: 0; right:0; bottom:0; color:#fff;}
.gallery_box .box_data span{ position:absolute; top: 50%; transform: translateY(-50%); left:0 ; right:0; font-size:24px;}
/*.gallery_box li:hover .box_data {
	background:rgba(255,0,39,0.55)
}*/

/*#### blog ###*/

.articles-wrapper {
    margin: 0 auto;
    box-sizing: border-box
}

@media only screen and (min-width: 980px) and (max-width:1299px),only screen and (min-width:1300px) {
    .articles-wrapper {
        width:980px
    }
}

@media only screen and (min-width: 481px) and (max-width:979px),only screen and (min-width:980px) and (max-width:1299px),only screen and (min-width:1300px) {
    .articles-wrapper {
        display:-webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap
    }
}

@media only screen and (max-width: 480px),only screen and (min-width:481px) and (max-width:979px) {
    .articles-wrapper {
        width:100%;
        /*padding: 0 20px*/
    }
}

.articles-wrapper .left-section,.articles-wrapper .right-section {
    box-sizing: border-box;
    transition: left 1s ease-in-out
}
.explore{
margin-top: 44px;
}
@media only screen and (min-width: 481px) and (max-width:979px),only screen and (min-width:980px) and (max-width:1299px),only screen and (min-width:1300px) {
    .articles-wrapper .left-section,.articles-wrapper .right-section {
        width:50%;
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
        flex-flow: column wrap
    }
}

@media only screen and (max-width: 480px) {
    .articles-wrapper .left-section,.articles-wrapper .right-section {
        width:100%
    }
}

.articles-wrapper .article {
    width: 100%;
    padding: 10px;
    box-sizing: border-box
}

.articles-wrapper .article .wrap {
    min-height: 400px;
    position: relative
}

.articles-wrapper .article .wrap .source {
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.articles-wrapper .article .wrap .source .logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff no-repeat center center/cover;
    margin-right: 20px
}

.articles-wrapper .article .wrap .source .author p {
    margin: 0;
    font-size: 14px;
    color: #fff
}

.articles-wrapper .article .wrap .source {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2
}

.articles-wrapper .article .wrap .bottom,.articles-wrapper .article .wrap .top {
    width: 100%;
    min-height: 200px;
    padding: 20px;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    cursor: default;
    transition: all .4s
}

.articles-wrapper .article .wrap .bottom h5,.articles-wrapper .article .wrap .top h5 {
    font-family: sofia_prolight,sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 25px;
    line-height: 27px;
    color: #fff
}

.articles-wrapper .article .wrap .top {
    background: transparent no-repeat center center/cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    z-index: 1;
    position: relative
}

.articles-wrapper .article .wrap .top .vignette {
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.4);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1
}

.articles-wrapper .article .wrap .top h5 {
    position: relative;
    z-index: 2
}

.articles-wrapper .article .wrap .bottom {
    background: #d1d1d1;
    z-index: 2
}

.articles-wrapper .article .wrap .bottom h5 {
    margin: 70px 0 20px 0;
    color: #192072;
}

.articles-wrapper .article .wrap .bottom .description {
    font-family: sofia_prolight,sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    line-height: 16px;
    color: #192072
}

.articles-wrapper .article .wrap .hover-area {
    width: 100%;
    height: 50%;
    padding-bottom: 40px;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: center;
    background: transparent no-repeat center center/cover;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    transition: all .4s
}

.articles-wrapper .article .wrap .hover-area .sharer a {
    width: 30px;
    height: 30px;
    display: inline-block;
    margin: 0 10px;
    background: transparent no-repeat center center;
    background-size: 80% 80%;
    cursor: pointer
}

.articles-wrapper .article .wrap .hover-area .sharer a.twitter {
    background-image: url(/media/images/social/twitter.svg);
}

.articles-wrapper .article .wrap .hover-area .sharer a.facebook {
    background-image: url(/media/images/social/facebook.svg)
}

.articles-wrapper .article .wrap .hover-area .sharer a.mail {
    background-image: url(/media/images/social/mail.svg)
}

.articles-wrapper .article .wrap .hover-area .sharer a.share {
    background-image: url(/media/images/social/share.svg)
}

.articles-wrapper .article .wrap .hover-area .sharer {
    position: relative;
    z-index: 2
}

.articles-wrapper .article .wrap .hover-area .flare {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9InJnYigwLDAsMCkiIHN0b3Atb3BhY2l0eT0iMCIvPjxzdG9wIG9mZnNldD0iNTAlIiBzdG9wLWNvbG9yPSJyZ2IoMjEsIDE2MywgMjM3KSIgc3RvcC1vcGFjaXR5PSIwLjY1Ii8+PC9saW5lYXJHcmFkaWVudD48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2xlc3NoYXQtZ2VuZXJhdGVkKSIgLz48L3N2Zz4=);
    background-image: linear-gradient(180deg,transparent 0,#192072)
}

.articles-wrapper .article .wrap .hover-area .apply {
    padding: 5px 20px;
    margin: 40px auto 15px;
    border: none;
    display: block;
    background: #FFDD15;
    font-family: sofia_prolight,sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 17px;
    color: #000000;
    cursor: pointer;
    outline: 0;
    transition: background .2s;
    position: relative;
    z-index: 2
}

.articles-wrapper .article .wrap .hover-area .apply:hover {
    background: #192072;
    color: #FFDD15;
}

.articles-wrapper .article .wrap .hover-area a.learn-more {
    font-family: sofia_prolight,sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    color: #fff;
    position: relative;
    z-index: 2
}

.articles-wrapper .article:hover .hover-area {
    height: 100%;
    opacity: 1
}

.articles-wrapper .article.no-image .wrap {
    min-height: 200px
}

.articles-wrapper .article.no-image .wrap .source .author p {
    color: rgba(46,46,46,.8)
}

.articles-wrapper .article.no-image .wrap .bottom {
    height: 100%
}

.articles-wrapper .article.no-image .wrap .hover-area {
    height: 100%;
    background: 0 0
}

.articles-wrapper .preloader {
    height: 50px;
    max-height: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1 100%;
    flex: 1 100%;
    background: transparent url(/media/images/spin.svg) no-repeat center center;
    overflow: hidden;
    opacity: 0;
    transition: all .2s
}

.articles-wrapper .preloader.visible {
    max-height: 50px;
    opacity: 1
}

.articles-wrapper .preloader.top {
    position: relative;
    top: -15px
}

.articles-wrapper .preloader.bottom {
    margin-top: 40px
}

.articles-wrapper>.article {
    display: none
}

.article {
    width: 100%;
    max-width: 1280px;
    margin: 40px auto 0 auto;
    box-sizing: border-box;
    padding: 0 20px
}

@media only screen and (min-width: 980px) and (max-width:1299px),only screen and (min-width:1300px) {
    .article {
        display:-webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap
    }
}

.article .left-section,.article .right-section {
    min-width: 1px;
    min-height: 1px;
    box-sizing: border-box
}

@media only screen and (min-width: 980px) and (max-width:1299px),only screen and (min-width:1300px) {
    .article .left-section {
        width:65%;
        -webkit-box-flex: 0;
        -ms-flex: 0 1 65%;
        flex: 0 1 65%;
        padding-right: 20px
    }
}

.article .left-section h1,.article .left-section h2,.article .left-section h3 {
    margin: 20px 0;
    font-family: sofia_prolight,sans-serif;
    font-weight: 400;
    font-style: normal;
    text-align: left;
    color: #030303
}

@media only screen and (min-width: 481px) and (max-width:979px),only screen and (min-width:980px) and (max-width:1299px),only screen and (min-width:1300px) {
    .article .left-section h1 {
        font-size:45px;
        line-height: 45px;
        letter-spacing: -3px
    }
}

@media only screen and (max-width: 480px) {
    .article .left-section h1 {
        padding:0 50px;
        font-size: 35px;
        line-height: 35px;
        letter-spacing: -1px
    }
}

@media only screen and (min-width: 980px) and (max-width:1299px),only screen and (min-width:1300px) {
    .article .left-section h2 {
        font-size:38px;
        line-height: 38px;
        letter-spacing: -2px
    }
}

@media only screen and (max-width: 480px),only screen and (min-width:481px) and (max-width:979px) {
    .article .left-section h2 {
        padding:0 50px;
        font-size: 30px;
        line-height: 30px;
        letter-spacing: -1px
    }
}

@media only screen and (min-width: 980px) and (max-width:1299px),only screen and (min-width:1300px) {
    .article .left-section h3 {
        font-size:30px;
        line-height: 30px;
        letter-spacing: -2px
    }
}

@media only screen and (max-width: 480px),only screen and (min-width:481px) and (max-width:979px) {
    .article .left-section h3 {
        padding:0 50px;
        font-size: 25px;
        line-height: 25px;
        letter-spacing: -.5px
    }
}

.article .left-section p {
    max-width: 100%
}

.article .left-section a {
    color: #14a3ec
}

.article .left-section img {
    display: inline-block;
    padding: 10px
}

.article .left-section img.alignright {
    float: right
}

.article .left-section img.alignleft {
    float: left
}

.article .left-section iframe {
    max-width: 100%;
    display: block
}

.article .left-section .sharer a {
    width: 30px;
    height: 30px;
    display: inline-block;
    margin: 0 10px;
    background: transparent no-repeat center center;
    background-size: 80% 80%;
    cursor: pointer
}

.article .left-section .sharer a.twitter {
    background-image: url(/media/images/social/twitter.svg)
}

.article .left-section .sharer a.facebook {
    background-image: url(/media/images/social/facebook.svg)
}

.article .left-section .sharer a.mail {
    background-image: url(/media/images/social/mail.svg)
}

.article .left-section .sharer a.share {
    background-image: url(/media/images/social/share.svg)
}

.article .left-section .sharer {
    margin-top: 50px
}

.article .left-section .sharer p {
    font-family: sofia_prolight,sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    font-weight: 300;
    color: #aaa
}

.article .left-section .sharer a.twitter {
    background-image: url(/media/images/social/twitter-blue.svg)
}

.article .left-section .sharer a.facebook {
    background-image: url(/media/images/social/facebook-blue.svg)
}

.article .left-section .sharer a.mail {
    background-image: url(/media/images/social/mail-blue.svg)
}

@media only screen and (min-width: 980px) and (max-width:1299px),only screen and (min-width:1300px) {
    .article .right-section {
        width:35%;
        -webkit-box-flex: 0;
        -ms-flex: 0 1 35%;
        flex: 0 1 35%;
        padding-left: 20px
    }
}

@media only screen and (min-width: 481px) and (max-width:979px) {
    .article .right-section {
        margin-top:20px
    }
}

@media only screen and (max-width: 480px) {
    .article .right-section {
        display:none
    }
}

.article .right-section h5 {
    margin-bottom: 20px;
    font-family: sofia_prolight,sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    color: #b1b1b1
}

.article .right-section .related-article {
    padding: 10px 30px 10px 15px;
    margin-bottom: 20px;
    border: 1px solid #14a3ec;
    position: relative
}

.article .right-section .related-article .source {
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.article .right-section .related-article .source .logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ddd no-repeat center center/cover;
    margin-right: 20px
}

.article .right-section .related-article .source .author p {
    margin: 0;
    font-size: 14px;
    color: #eee
}

.article .right-section .related-article .source {
    margin-bottom: 20px
}

.article .right-section .related-article .source .author p {
    color: #b1b1b1
}

.article .right-section .related-article a {
    font-family: sofia_prolight,sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 22px;
    line-height: 27px;
    color: #14a3ec
}

.article .right-section .related-article .arrow {
    width: 30px;
    height: 100%;
    font-family: sofia_prolight,sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 25px;
    background: transparent url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAsCAYAAAB/nHhDAAAAAXNSR0IArs4c6QAAAsFJREFUWAm9l9t2EjEUhncyeGEtrgIF+iiej12rR70X6It475Nw8F5rS9eyWm09PEqhHLqk1AuZxL0DwQHCMDMEc9GsJpPv3//OHiYB+F8tXWy8Tpfbj2zrcQISXAK8AeEe2BZRAgD8lAF0UeSWEim2Htpygtx+U5GjAxJhDK5A8u2LveSpno/aDwUIsAiREQGjCOdbF7nkmRUHGrJaaT9mrvthmK45RCYc2BaZKkBCAye08Uu08Qz4Zr2Q/KaDCNIPytT8aCOX+OKAs4NRXEsJyxJENVNq3Tc/bR71daCXrBXbT1xQe7KEYx3O+FZQJ74OtMD5XuJEO8GxuJDiMPO2eU/P+/WBHGjAWrn91BXuPu0JjnV4jG3WX6W+63lTH0qAAGFFQgsYRRy2Uc+lflhxoCHZyuUzIXr7WF03cazDp4hEchBGJFAVaeB4X8utfOI8tosv4W+ciwsB1Wypecf73FwCBFIiEHuhRKS87QIceUXmSpE30mzp8rmA3nu1J4z9cgA2aoXUT2sCJJYtN9aFhHdekblT5HUBkl1JYH9ojIG8AUwuW3NAeaf8A+4D7Qdn8LKWX/1oRWAanJzMnaJMpXnXFDnBqcX6XbS/BBeuPMLVcZUWLNdafuXYS4ucIiO8MAonoUgpom/BROQGOAmEdqDgPVnFtf204E8Fvc0EM7VQDkbg+J2m3yE/OAniGx2s0cdeiEHkBHdwQ30i19RADhQcv8O4KI45vXa4MzNyLTCzTAlOxxVcQK+9gp/nE581YFbv6yBdaT0gOJ2JosBJfKoDgoMQh0M4HsAw8pNZEY/PG8vUCMez0fjiIP9PVFFa3W6GkXfxwLVLB68gMNMzIw4UnImDQVq60nF26HxqWhh0bCiwCDgFoaqof7P8lxYbkWuH/SoSLpYjXv7wpgnc2ca0fNUPWOsXdRG3FuA00F9BvXZ4qFCmdAAAAABJRU5ErkJggg==) no-repeat center center;
    background-size: 15px auto;
    position: absolute;
    top: 0;
    right: 0
}

@media only screen and (max-width: 992px) {
    .section-header p {

     padding-bottom: unset; 
    
}
#clients .client-logo {
    height: 130px;

}
.navbar .nav-item .nav-link {

    padding-top: 35px;
    padding-bottom: 10px;
    font-size: 22px;
}
.nav-item.social-icons{
display:none;
}
.breadcrumb {

    height: 150px;
    margin-top: 60px;

}
.explore{
margin-top: unset;
}
}


