@charset "utf-8";

@import url("framework.css");

/* Copyright [Google Fonts - Google] [https://fonts.google.com] */
@import url('https://fonts.googleapis.com/css2?family=Rubik&display=swap');
@import url('https://fonts.googleapis.com/css?family=Montserrat:500,700&display=swap&subset=latin-ext');

/* Copyright [NanumSquare - Naver] [https://hangeul.naver.com/font] */
@font-face {
    font-family: 'NanumSquare';
    src: url('https://durango-database.vercel.app//NanumSquareR.ttf');
}

/* Copyright [Infinity Sans - Wemade] [https://wemade.com/Company/Ci] */
@font-face {
    font-family: 'InfinitySans Regular';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-04@2.1/InfinitySans-RegularA1.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'InfinitySans Bold';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-04@2.1/InfinitySans-BoldA1.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* Copyright [Raleway Font - Google] [https://fonts.google.com/specimen/Raleway] */
@font-face {
    font-family: 'Raleway';
    src: url('https://durango-database.vercel.app/fonts/Raleway-Regular.ttf');
}

@font-face {
    font-family: 'Raleway Medium';
    src: url('https://durango-database.vercel.app/fonts/Raleway-Medium.ttf');
}

@font-face {
    font-family: 'Raleway Bold';
    src: url('https://durango-database.vercel.app/fonts/Raleway-Bold.ttf');
}

/* Copyright [Pappins Font - The Poppins Project Authors] [https://github.com/itfoundry/Poppins] */
@font-face {
    font-family: 'Poppins';
    src: url('https://durango-database.vercel.app/fonts/Poppins-Regular.ttf');
}

@font-face {
    font-family: 'Poppins Medium';
    src: url('https://durango-database.vercel.app/fonts/Poppins-Medium.ttf');
}

@font-face {
    font-family: 'Poppins SemiBold';
    src: url('https://durango-database.vercel.app/fonts/Poppins-SemiBold.ttf');
}

@font-face {
    font-family: 'Poppins Bold';
    src: url('https://durango-database.vercel.app/fonts/Poppins-Bold.ttf');
}

@font-face {
    font-family: 'Poppins Bold Italic';
    src: url('https://durango-database.vercel.app/fonts/Poppins-BoldItalic.ttf');
}

/* Copyright [Vampiro Font - Sorkin Type Co] [https://www.sorkintype.com] */
@font-face {
    font-family: 'Vampiro';
    src: url('https://durango-database.vercel.app/fonts/VampiroOne-Regular.ttf');
  }

html, body {
	height: 100%;
}


/* Rows
--------------------------------------------------------------------------------------------------------------- */

.row {
	width: 94%;
	max-width: 1140px;
	margin: 0 auto;
}

.row0 {
    border-bottom: 0.25rem solid;
}

.row1 {
    border-bottom: 0.25rem solid;
}

.row2 {
    border-bottom: 0.1625rem solid;
}

.row4 {
    border-bottom: 0.1625rem solid;
}

.col-twelve,
.col-full {
	width: 100%;
}

.col-six,
.col-1-2 {
	width: 50%;
}

[class*="col-"] {
    padding: 0 20px;
}

@media screen and (max-width: 1024px) {
    [class*="col-"] {
        padding: 0 18px;
    }
}

[class*="col-six"], .bgrid {
    float: left;
}

@media (max-width: 768px) {
	.row {
		width: auto;
		padding-left: 30px;
		padding-right: 30px;
	}

	.row .row {
		padding-left: 0;
		padding-right: 0;
		margin-left: -15px;
		margin-right: -15px;
	}

	[class*="col-"] {
		padding: 0 15px;
	}

	.tab-1-4 {
		width: 25%;
	}

	.tab-1-3 {
		width: 33.33333%;
	}

	.tab-1-2 {
		width: 50%;
	}

	.tab-2-3 {
		width: 66.66667%;
	}

	.tab-3-4 {
		width: 75%;
	}

	.tab-full {
		width: 100%;
	}
}

img.pull-right {
	margin: .9rem 0 0 2.4rem;
}

a {
    color: #82b7df;
    text-decoration: none;
}

.pace {
	-webkit-pointer-events: none;
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.pace-inactive {
	display: none;
}

.pace .pace-progress {
	background: #2591df;
	position: fixed;
	z-index: 2000;
	top: 0;
	right: 100%;
	width: 100%;
	height: 6px;
}

#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #151515;
	z-index: 1999;
	height: 100%;
	width: 100%;
}

#loader {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 60px;
	height: 60px;
	margin: -30px 0 0 -30px;
	padding: 0;
}

#loader:before {
	content: "";
	border-top: 10px solid rgba(255, 255, 255, 0.1);
	border-right: 10px solid rgba(255, 255, 255, 0.1);
	border-bottom: 10px solid rgba(255, 255, 255, 0.1);
	border-left: 10px solid #2591df;
	-webkit-animation: load 1.1s infinite linear;
	animation: loading 1.1s infinite linear;
	display: block;
	border-radius: 50%;
	width: 60px;
	height: 60px;
}

@-webkit-keyframes loading {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes loading {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.header-text {
    display: inline-block;
    font-family: 'PermanentMaker';
    font-size: 1.35rem;
    color: #aaa;
    text-align: left;
}

#slide-menu li a {
    display: block;
    color: #ffffff;
    border-color: transparent;
    z-index: 1000;
}

#slide-menu .slide-item .active,
#slide-menu .slide-item a:hover,
#slide-menu .slide-item li:hover>a,
#slide-menu .slide-item-sub .active,
#slide-menu .slide-item-sub a:hover,
#slide-menu .slide-item-sub li:hover>a {
    color: #70b7f3;
}

#slide-menu .slide-go-arrow .active,
#slide-menu .slide-drop-arrow .active {
    color: #70b7f3;
}

#slide-menu .slide-go-arrow a:hover,
#slide-menu .slide-go-arrow li:hover>a,
#slide-menu .slide-drop-arrow a:hover,
#slide-menu .slide-drop-arrow li:hover>a {
    color: #70b7f3;
}

.slide-menu-container {
    display: none;
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 85%;
    z-index: 999;
    margin: 0 auto;
    background-color: transparent;
    overflow: auto !important;
    border: solid 1px #fff;
    border-top: none;
}

@media (max-width: 578px) {
    .slide-menu-container {
        width: 100%;
    }
}

.slide-menu {
    color: #ffffff;
}

.slide-item {
    font-family: 'Poppins Medium', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    color: #ffffff;
    cursor: pointer;
    border-bottom: 1.25px solid #ffffff;
}

.slide-item:hover,
.slide-item.active {
    color: #70b7f3;
}

.slide-link {
    color: #ffffff;
    padding: 14px 20px;
    transition: all 0.2s ease-in-out;
}

#slide-menu-pages,
#slide-menu-archive {
    display: none;
}

.slide-item-sub {
    display: block;
    font-family: 'Poppins Medium', sans-serif;
    font-size: 14px;
    text-transform: none;
    color: #ffffff;
    border-top: 1.75px solid #ffffff;
    cursor: pointer;
}

.slide-link-sub {
    color: #ffffff;
    padding: 14px 30px;
    transition: all 0.2s ease-in-out;
}

.slide-go-arrow {
    display: block;
    position: absolute;
    right: 0;
    color: #ffffff;
    border-left: 1.75px solid #ffffff;
    font-weight: normal;
    cursor: pointer;
    text-align: center;
    z-index: 1020;
    font-size: 21px;
}

.slide-go-arrow a {
    padding: 14px 22.5px;
    transition: all 0.2s ease-in-out;
}

.slide-drop-arrow {
    display: block;
    position: absolute;
    right: 0;
    color: #ffffff;
    border-left: 1.75px solid #ffffff;
    font-weight: normal;
    cursor: pointer;
    text-align: center;
    z-index: 1020;
    font-size: 21px;
}

.slide-drop-arrow a {
    padding: 14px 20px;
    transition: all 0.2s ease-in-out;
}

#intro {
    display: table;
	width: 100%;
	height: 100vh;
	min-height: 720px;
    position: relative;
	text-align: center;
    background: #151515 url('https://durango-database.vercel.app/images/intro-background.gif') no-repeat center bottom;
	background-size: cover;
    background-attachment: fixed;
    margin: 0 auto;
}

.intro-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #111111;
	opacity: 0.45;
}

.intro-content {
    display: table-cell;
	vertical-align: middle;
	text-align: center;
	transform: translateY(0);
}

.intro-content h1 {
	color: #ffffff;
	font-family: "Poppins Medium", sans-serif;
	font-size: 3.85rem;
    font-weight: bold;
	line-height: 1.05;
	max-width: 900px;
	margin-bottom: 0.75rem;
    letter-spacing: 0.1rem;
	margin: 0 auto;
	text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.intro-content .intro-position {
	font-family: "Poppins Medium", "InfinitySans Regular";
	font-size: 1.65rem;
	line-height: 2.75rem;
	text-transform: uppercase;
	letter-spacing: 0.2rem;
	color: #ffffff;
	text-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}

.intro-content .intro-position span {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .intro-content h1 {
        font-size: 2.75rem;
    }
    
    .intro-content .intro-position span {
        font-size: 0.9rem;
    }
}

.intro-content .intro-position span::after {
	content: "|";
	text-align: center;
	display: inline-block;
	padding: 0 6px 0 10px;
	color: rgba(255, 255, 255, 0.5);
}

.intro-content .intro-position span:first-child::before {
	content: "|";
	text-align: center;
	display: inline-block;
	padding: 0 10px 0 6px;
	color: rgba(255, 255, 255, 0.5);
}

.button,
a.button {
	display: inline-block;
	font-family: "Poppins Bold", sans-serif;
	font-size: 1.4rem;
	text-transform: uppercase;
	letter-spacing: 0.3rem;
	height: 5.4rem;
	line-height: 5.4rem;
	margin: 0 0.3rem 1.2rem 0;
	text-decoration: none;
	cursor: pointer;
	text-align: center;
	white-space: nowrap;
	border: none;
	transition: all 0.3s ease-in-out;
}

.button:hover,
a.button:hover {
	outline: 0;
}

.intro-content .button {
	color: #ffffff !important;
    font-family: "Poppins Bold", sans-serif;
    border-color: rgba(255, 255, 255, 0.375) !important;
    height: 4.25rem !important;
    line-height: 3.75rem !important;
    padding: 0 2.25rem 0 2.25rem !important;
    margin-top: 1.25rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
}

.intro-content .button:hover {
	border-color: rgba(255, 255, 255, 0.25) !important;
    background: rgba(0, 0, 0, 0.125) !important;
}

.intro-content .button::after {
    display: inline-block;
    content: "\f107";
    font-family: "FontAwesome";
    font-size: 1rem;
    line-height: inherit;
    text-align: center;
    position: relative;
    top: 0;
    left: 0.5rem;
    animation: arrow-down 2s infinite;
    animation-play-state: running;
}

button.stroke, .button.stroke {
	background: transparent !important;
	border: 3px solid #313131;
	line-height: 4.8rem;
}

@media (max-width: 568px) {
    .intro-content .intro-position span {
        font-size: 0.75rem;
    }

    .intro-content .intro-position span::after {
        content: "|";
        text-align: center;
        display: inline-block;
        padding: 0 4px 0 7px;
        color: rgba(255, 255, 255, 0.35);
    }
    
    .intro-content .intro-position span:first-child::before {
        content: "|";
        text-align: center;
        display: inline-block;
        padding: 0 7px 0 4px;
        color: rgba(255, 255, 255, 0.35);
    }
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}


/* Navigation
--------------------------------------------------------------------------------------------------------------- */

nav ul,
nav ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

#mainnav,
#breadcrumb,
.sidebar nav {
    line-height: normal;
}

#mainnav .drop::after,
#mainnav li li .drop::after,
#breadcrumb li a::after,
.sidebar nav a::after {
    position: absolute;
    font-family: "Font Awesome\ 5 Free";
    font-weight: 900;
    font-size: 10px;
    line-height: 10px;
    cursor: pointer;
}


/* Top Navigation */

#mainnav {
    position: relative;
    float: right;
}

#mainnav ul {
    text-transform: uppercase;
}

#mainnav ul ul {
    position: absolute;
    width: 180px;
    text-transform: none;
}

#mainnav ul ul ul {
    left: 180px;
    top: 0;
}

#mainnav a:hover:before,
#mainnav li:hover > a:before,
#mainnav .active:before {
    visibility: visible;
    width: 100%;
}

#mainnav > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    width: 0;
    background-color: #ffffff;
    visibility: hidden;
    transition: all 0.3s ease-in-out 0s;
}

#mainnav li {
    display: inline-block;
    position: relative;
    margin: 0 20px 0 0;
    padding: 0;
    font-family: 'Poppins Medium', sans-serif;
    font-size: 15px;
    cursor: pointer;
    color: #ffffff;
}

#mainnav li:last-child {
    margin-right: 0;
}

#mainnav li li {
    width: 100%;
    margin: 0;
}

#mainnav li a {
    display: block;
    padding: 0;
    border: solid;
    border-width: 1px 0 0 0;
    transition: all 0.2s ease-in-out;
    color: inherit;
    border-color: transparent;
}

#mainnav li li a {
    border-width: 0 0 1px 0;
}

#mainnav .drop {
    padding-left: 15px;
}

#mainnav li li a,
#mainnav li li .drop {
    display: block;
    margin: 0;
    padding: 10px 15px;
}

#mainnav .drop::after,
#mainnav li li .drop::after {
    content: "\f0d7";
}

#mainnav .drop::after {
    top: 8px;
    left: 4px;
}

#mainnav li li .drop::after {
    top: 15px;
    left: 5px;
}

#mainnav ul ul {
    visibility: hidden;
    opacity: 0;
}

#mainnav ul li:hover>ul {
    position: absolute;
    top: 0;
    visibility: visible;
    opacity: 1;
    transition: 0.65s;
    padding-top: 34.5px;
}

#mainnav li li>a {
    color: #ffffff;
    background-color: transparent;
    border-color: #ffffff;
}

#mainnav li li:hover>a,
#mainnav li li>a.active {
    color: #70b7f3;
}

@media (min-width: 768px) {
    .nav-items {
        position: relative;
        right: 0;
        display: block;
        float: right;
    }

    .ham {
        display: none;
    }
}

@media (max-width: 1048px) {
    .nav-items {
        position: relative;
        right: 3.5%;
        display: block;
        float: right;
    }
}

@media (max-width: 768px) {
    .nav-items {
        display: none;
    }

    .ham {
        display: block;
        cursor: pointer;
    }
}

.ham span {
    display: block;
    background: #fff;
    width: 32px;
    height: 4px;
    border-radius: 0.25px;
    transition: margin 0.25s 0.25s, transform 0.25s;
}

.ham .bar1 {
    margin-bottom: 6px;
}

.ham .bar3 {
	margin-top: 6px;
}

.ham.active span {
	transition: margin 0.25s, transform 0.25s 0.25s;
}

.ham.active .bar1 {
	margin-top: 8px;
	margin-bottom: -4px;
	transform: rotate(45deg);
}
.ham.active .bar2 {
	transform: rotate(45deg);

}
.ham.active .bar3 {
	margin-top: -4px;
	transform: rotate(135deg);
}

a.back-to-top {
	position: fixed;
	z-index: 999;
	right: 0.75rem;
	bottom: 0.75rem;
	display: none;
	width: 2.65rem;
	height: 2.65rem;
	border-radius: 50%;
    color: #ffffff !important;
	background: #298eff;
    background-size: 1.15rem 1.15rem;
    transition: all 0.15s ease-in-out;
}

a:hover.back-to-top {
	background-color: #4099ff;
}

a.back-to-top::after {
    display: inline-block;
    content: "\f106";
    font-family: "FontAwesome";
    font-size: 1.25rem;
    line-height: inherit;
    text-align: center;
    position: relative;
    top: 8px;
    left: 12px;
}


hr,
.borderedbox {
    border-color: #D7D7D7;
}

label span {
    color: #FF0000;
    background-color: inherit;
}

input:focus,
textarea:focus,
*:required:focus {
    border-color: #82b7df;
}

.overlay {
    color: #ffffff;
    background-color: inherit;
}

.overlay::after {
    color: inherit;
    background-color: rgba(0, 0, 0, .55);
}

.overlay.dark::after {
    color: inherit;
    background-color: rgba(37, 100, 146, .85); /* #256492 */
}

.overlay.light::after {
    background-color: rgba(130, 183, 223, .65); /* #82b7df */
}

body {
    color: #787976;
    background-color: #151515;
}


/* Header */

#header {
    padding: 40px 0;
    z-index: 997;
    transition: all 0.2s ease-in-out;
}

#header.header-scrolled {
    background: rgba(0, 0, 0, 0.85);
    padding: 20px 0;
    transition: all 0.25s ease-in-out;
}

@media (max-width: 768px) {
    #header {
        padding: 40px 0;
        background: transparent;
        z-index: 997;
        transition: all 0.2s ease-in-out;
    }

    #header.header-scrolled {
        background: rgba(0, 0, 0, 0.85);
        padding: 30px 0;
        transition: all 0.25s ease-in-out;
    }
}

#header .logo {
    display: inline-block;
    margin: 0;
    padding: 0;
    line-height: 0.75;
    vertical-align: top;
}

#header .logo a {
    font-family: 'Poppins Bold Italic';
    font-size: 2.5rem;
    font-weight: 400;
    color: transparent;
    text-align: left;
    cursor: pointer;
    padding: 0 5px;
    letter-spacing: -1px;
    background-clip: text;
    -webkit-background-clip: text;
    --tw-gradient-to: #6b9aff;
    --tw-gradient-from: #a8d7ff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.section-intro {
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	margin-bottom: 3.6rem;
	position: relative;
}

.section-intro h1 {
	font-family: "Poppins SemiBold", serif;
	font-size: 2.75rem;
	color: #313131;
	line-height: 1.25;
    margin-bottom: -1.25rem;
}

.section-intro h5 {
    font-family: "Poppins Bold", serif;
	color: #56aff3;
	font-size: 1.25rem;
	line-height: 1.31;
	margin-bottom: 0;
	letter-spacing: 0.4rem;
    text-transform: uppercase;
}

.box-shadow {
    padding: 3rem 1.25rem;
    position: relative;
    background-color: #ffffff;
    margin-bottom: 3rem;
    z-index: 2;
    box-shadow: 0 1px 1px 0 rgb(0 0 0 / 6%), 0 2px 5px 0 rgb(0 0 0 / 20%);
}

p img {
	margin: 0;
}

p.lead {
	font-family: "InfinitySans Bold", sans-serif;
	font-size: 1.2rem;
	line-height: 1.8;
	color: #717171;
}

p.lead a {
    display: inline-block;
	font-family: "InfinitySans Bold", sans-serif;
	font-size: 1.2rem;
	line-height: 1.8;
	color: #717171;
    word-break: break-all;
}

p.lead a:hover {
	text-decoration: underline;
}

@media (max-width: 768px) {
	p.lead {
		font-size: 1.1rem;
	}

    p.lead a {
        font-size: 1.1rem;
    }
}

#about {
	background: #ffffff;
    padding: 7.25rem 0;
}

#about .section-intro {
	margin-bottom: 3rem;
}

.intro-info {
	margin-top: 4.2rem;
	margin-right: -30px;
	margin-left: -30px;
}

.intro-info img {
	height: 7.5rem;
	width: 7.5rem;
	border-radius: 50%;
	margin: -0.9rem 0 0 -2.25rem;
	float: left;
}

@media (max-width: 578px) {
	.intro-info {
		margin-top: 3rem;
	}

	.intro-info img {
		height: 6.6rem;
		width: 6.6rem;
		float: none;
		display: inline-block;
        margin: -2.25rem 0 0 0;
	}

	.intro-info .lead {
		padding-left: 0;
	}
}

.bgrid {
    float: left;
	padding: 0 20px;
}

@media (max-width: 1024px) {
	.bgrid {
		padding: 0 18px;
	}
}

@media (max-width: 768px) {
	.bgrid {
		padding: 0 15px;
	}
}

@media (max-width: 578px) {
	.bgrid {
		padding: 0 10px;
	}
}

@media (max-width: 468px) {
	.bgrid {
		padding: 0;
	}
}

.popup-modal {
	max-width: 850px;
	background: #ffffff;
	position: relative;
	margin: 0 auto;
}

.popup-modal .media {
	position: relative;
}

.popup-modal img {
	vertical-align: bottom;
}

.popup-modal .description-box {
    padding: 1.75rem 2.5rem;
}

.popup-modal .description-box h4 {
	font-family: "Poppins Bold", sans-serif;
	font-size: 1.2rem;
    color: #313131;
	line-height: 1.25rem;
	margin-bottom: 0.85rem;
}

.popup-modal .description-box p {
	font-family: "NanumSquare", sans-serif;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 1.25rem;
    margin-bottom: 12px;
}

.popup-modal .categories {
	font-family: "Poppins Bold", sans-serif;
	font-size: 0.9rem;
	line-height: 1.6rem;
	text-transform: uppercase;
	letter-spacing: 0.05rem;
	display: block;
	text-align: left;
	color: rgba(0, 0, 0, 0.5);
}

.popup-modal .link-box {
	width: 100%;
	overflow: hidden;
	background: #151515;
}

.popup-modal .link-box a {
	font-family: "Poppins Bold", sans-serif;
    font-size: 0.95rem;
    line-height: 3.75rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    display: block;
    text-align: center;
    float: left;
    width: 50%;
    transition: all 0.3s ease-in-out;
}

.popup-modal .link-box a:first-child {
	border-right: 2px solid rgba(200, 200, 200, 0.1);
}

.popup-modal .link-box a:hover {
	background: #70b7f3;
}

@media (max-width: 578px) {
	.popup-modal {
		width: auto;
		margin: 0 20px;
	}
}

.mfp-fade.mfp-bg {
	opacity: 0;
	transition: all 0.5s ease-in-out;
}

.mfp-fade.mfp-bg.mfp-ready {
	opacity: 0.9;
}

.mfp-fade.mfp-bg.mfp-removing {
	opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
	opacity: 0;
	transform: translateY(-100%);
	transition: all 0.5s ease-in-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
	opacity: 1;
	transform: translateY(0);
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
	opacity: 0;
	transform: translateY(-100%);
}

.hoc {
    max-width: 80%;
}

@media (max-width: 768px) {
    .fl_left,
    .fl_right {
        display: block;
        float: none;
    }

    .projects {
        padding: 90px 0;
    }

    .projects .heading {
        font-size: 2rem;
    }
}

.nav-link {
    cursor: pointer;
}

.nav-link a:hover:before,
.nav-link .active:before {
    visibility: visible;
    width: 100%;
}

.nav-link > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    width: 0;
    background-color: #fff;
    visibility: hidden;
    transition: all 0.3s ease-in-out 0s;
}

* {
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 578px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1208px) {
    .container {
        max-width: 1140px;
    }
}

.grid {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}