@charset "utf-8";
/* CSS Document */

/* Body - Default Font and Layout */
body {
	font-family: 'Roboto', sans-serif;
	font-size: 18px;
	font-weight: 400;
	color: #fff;

	background-color: #071624;
}

/* Body - Smooth Scroll */
html {
	scroll-behavior: smooth;
}

/* Custom Font */
@font-face {
    font-family: 'NewRedo';
    src: url('/fonts/newredo.ttf');
}

/* Body - Links */
a {
	color: #fff;
	text-decoration: none;

	transition: 0.3s;
}
	a:hover {
		color: #f1f1f1;
		text-decoration: none;

		transition: 0.3s;
	}

/* Body - Lines */
hr {
	border-top: 3px solid #1ea4e4;

    width: 80%;
}

/* Body - Paragraphs */
p:last-child {
	margin-bottom: 0;
}
.truncate {
	overflow: hidden;
	text-overflow: ellipsis;

	display: -webkit-box;
  	-webkit-line-clamp: 4;
  	-webkit-box-orient: vertical;
}
.truncate_sm {
	overflow: hidden;
	text-overflow: ellipsis;

	display: -webkit-box;
  	-webkit-line-clamp: 2;
  	-webkit-box-orient: vertical;
}
blockquote {
	margin: 0;
}
.pquote {
	border-left: 2px solid #1ea4e4;

	font-size: 32px;
	font-weight: 600;
	text-align: right;
	line-height: 42px;

	display: block;
	float: right;

	width: 400px;

	padding: 0 0 0 10px;
}

/* Body - Headers */
h1, h2, h3, h4, h5 , h6 {
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 700;
}
	h1 {
		font-size: 72px;
	}
	h2 {
		font-size: 68px;
	}
	h3 {
		font-size: 56px;
	}
	h4 {
		font-size: 42px;
	}
	h5 {
		font-size: 38px;
	}
	h6 {
		font-size: 24px;
	}

/* Body - Default Buttons */
button {
	box-shadow: none !important;

	outline: none !important;
}
	*:focus {
		box-shadow: none !important;

		outline: none !important;
	}
	*:active {
		box-shadow: none !important;

		outline: none !important;
	}

/* Body - Borders */
.border-dotted {
	border: 2px dotted #d5d5d5;
}
.border-blue-left {
	border-left: 2px dotted #324d66;
}
.border-blue-right {
	border-right: 2px dotted #324d66;
}
.border-blue-top {
	border-top: 2px dotted #324d66;
}
.border-blue-bottom {
	border-bottom: 2px dotted #324d66;
}

/* Body - Lists */
.ul-01 {
	list-style: none;

	padding: 0;
	margin: 0;
}
	.ul-01 li {
		padding: 5px 0;
		margin: 0;
	}

.ul-02 {
	list-style: none;

	padding: 0;
	margin: 0;
}
	.ul-02 li {
		background: none;
		border-bottom: 1px dotted #ccc;

		padding: 8px 0px 8px 0px;
		margin: 0 8px 0 0;
	}
		.ul-02 li:last-child {
			border-bottom: none;
		}

.ul-03 {
	list-style: none;

	padding: 0;
	margin: 0;
}
	.ul-03 li {
		padding: 0 20px 0 0;
		margin: 0;

		display: inline-block;
	}
	.ul-03 li:last-child {
		padding: 0;
	}

/* Body - Default Navigation - Sticky */
.sticky-element {
    position: sticky;
    top: 0;

    width: 100%;

    z-index: 300;
}

/* Images */
.image-circle {
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
	z-index: 20;

    margin: 0 auto;

	width: 100px;
    height: auto;
}
	.image-circle__number {
		padding-top: 24px;

		position: relative;
		z-index: 30;
	}
	.image-circle__line-left {
		border-top: 3px solid #F4F5F8;

		position: relative;
	    top: 50px;
	    right: -100px;
		z-index: 10;

	    width: 28%;

	    float: right;
	}
	.image-circle__line-right {
		border-top: 3px solid #F4F5F8;

		position: relative;
	    top: 50px;
	    left: -100px;
		z-index: 10;

	    width: 28%;

	    float: left;
	}
	.image-circle__line-straight {
		border-right: 8px solid #1ea4e4;

		position: relative;
	    top: 0;
	    left: 5px;
	    z-index: 10;

		width: 50%;
		height: 100%;
	}
		.image-circle__line-straight.left {
			left: 3px;
		}
		.image-circle__line-straight.right {
			left: 5px;
		}

	.image-circle__content {
		font-size: 18px;

		padding: 0px 50px;
	}

/* Bootstrap - Overrides */
@media (min-width: 1640px){
	.container {
		max-width: 1580px;
	}
}

.dropdown-toggle::after {
	margin-left: 6px;

	vertical-align: 3px;
}

.review {
    padding: 20px;
}
    .carousel-inner {
        padding: 20px 40px;
    }
    .review::before {
        content: open-quote;

        font-family: sans-serif;
        font-size: 175px;
        color: #071624;

        position: absolute;
        left: 20px;

        margin-top: -125px;

    }

    .review_signature {
        font-weight: 700;
    	font-size: 26px;
    }
    .carousel-control-next, .carousel-control-prev {
    	width: 20px;
    }
    .carousel-control-prev-icon {
        background-image: none;
    }

    .carousel-control-next-icon {
        background-image: none;
    }

	.grey-scale-image {
		filter: brightness(0) invert(1);
	}
	.aspect-ratio-image {
		object-fit: fit;
		max-height: 40px;
		min-width: 40px;
		min-height: 40px;
	}

	.social-media-icon {
		filter: brightness(0) invert(1);
	}