	.my-3 a {
	  color: #212529;
	  text-decoration: underline;
	  text-decoration-line: none;
	}

	.my-3  a:hover {
	  color: #28abe3;
	}

	 /*** Section Title ***/
	.section-title::before {
		position: absolute;
		content: "";
		width: 150px;
		height: 5px;
		left: 0;
		bottom: 0;
		background: #28abe3;
		border-radius: 2px;
	}

	.section-title.text-center::before {
		left: 50%;
		margin-left: -75px;
	}

	.section-title.section-title-sm::before {
		width: 90px;
		height: 3px;
	}

	.section-title::after {
		position: absolute;
		content: "";
		width: 6px;
		height: 5px;
		bottom: 0px;
		background: #FFFFFF;
		-webkit-animation: section-title-run 5s infinite linear;
		animation: section-title-run 5s infinite linear;
	}

	.section-title.section-title-sm::after {
		width: 4px;
		height: 3px;
	}

	.section-title.text-center::after {
		-webkit-animation: section-title-run-center 5s infinite linear;
		animation: section-title-run-center 5s infinite linear;
	}

	.section-title.section-title-sm::after {
		-webkit-animation: section-title-run-sm 5s infinite linear;
		animation: section-title-run-sm 5s infinite linear;
	}

	@-webkit-keyframes section-title-run {
		0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
	}

	@-webkit-keyframes section-title-run-center {
		0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
	}

	@-webkit-keyframes section-title-run-sm {
		0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
	}

	.scroll_wrap {
    width: 50px;
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    height: 63px;
    z-index: 3;
    cursor: pointer;
    animation: motion 1.5s linear 0s infinite alternate;
	}