/*
	Theme Name: HTML5 Blank
	Theme URI: http://html5blank.com
	Description: Custom WordPress Theme
	Version: 1.0.0
	Author: Milan Nikolic
	Author URI: https://nikolic.win
	Tags: Blank, HTML5, CSS3
	License: MIT
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
	margin: 0;
	padding: 0;
}
/* html element 62.5% font-size for REM use */
html {
	font-size:62.5%;
}
body {
	font:400 1.8rem/1.5 'Nunito', sans-serif;
	color:#1b1a1a;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    min-height: 100vh;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

img {
	max-width:100%;
	vertical-align:bottom;
}
a {
	color:#007AD5;
	text-decoration:none;
	transition:all .23s ease-in;
	-webkit-transition:all .23s ease-in;
	-moz-transition:all .23s ease-in;
	-ms-transition:all .23s ease-in;
	-o-transition:all .23s ease-in;
}
a:hover {
	color:#444;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:none;
	border:none;
}

.img-fit {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;	
}
.img-wrap {
	position: relative;
	overflow: hidden;
}
/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/
.container,
.container-narrow {
	margin: 0 auto;
}
.container {
	max-width: 1170px;
}
.container-narrow {
	max-width: 860px;
}
@media only screen and (max-width:1170px) {
	.container,
	.container-narrow {
		padding: 0 15px;
	}
}
.col1,
.col2,
.col3,
.col4,
.col5,
.col6,
.col7,
.col8,
.col9,
.col10,
.col11,
.col12 {
	position: relative;
	padding: 15px;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 100%;
	flex: 1 1 100%;
	max-width: 100%;
}
@media only screen and (min-width:480px) {
	.col3{
		-webkit-box-flex: 1;
		-ms-flex: 1 1 50%;
		flex: 1 1 50%;
		max-width: 50%;
	}
}
@media only screen and (min-width:768px) {
	.col1{
	-webkit-box-flex: 1;
	-ms-flex: 1 1 8.33%;
	flex: 1 1 8.33%;
	max-width: 8.33%;
}
.col2{
	-webkit-box-flex: 1;
	-ms-flex: 1 1 16.66%;
	flex: 1 1 16.66%;
	max-width: 16.66%;
}

.col4{
	-webkit-box-flex: 1;
	-ms-flex: 1 1 33.33%;
	flex: 1 1 33.33%;
	max-width: 33.33%;
}
.col5{
	-webkit-box-flex: 1;
	-ms-flex: 1 1 41.66%;
	flex: 1 1 41.66%;
	max-width: 41.66%;
}
.col6{
	-webkit-box-flex: 1;
	-ms-flex: 1 1 50%;
	flex: 1 1 50%;
	max-width: 50%;
}
.col7{
	-webkit-box-flex: 1;
	-ms-flex: 1 1 58.33%;
	flex: 1 1 58.33%;
	max-width: 58.33%;
}
.col8{
	-webkit-box-flex: 1;
	-ms-flex: 1 1 66.66%;
	flex: 1 1 66.66%;
	max-width: 66.66%;
}
.col9{
	-webkit-box-flex: 1;
	-ms-flex: 1 1 75%;
	flex: 1 1 75%;
	max-width: 75%;
}
.col10{
	-webkit-box-flex: 1;
	-ms-flex: 1 1 83.33%;
	flex: 1 1 83.33%;
	max-width: 83.33%;
}
.col11{
	-webkit-box-flex: 1;
	-ms-flex: 1 1 91.63%;
	flex: 1 1 91.63%;
	max-width: 91.63%;
}
.col12{
	-webkit-box-flex: 1;
	-ms-flex: 1 1 100%;
	flex: 1 1 100%;
	max-width: 100%;
}

}
@media only screen and (min-width:1024px) {
	.col3{
		-webkit-box-flex: 1;
		-ms-flex: 1 1 25%;
		flex: 1 1 25%;
		max-width: 25%;
    }
}
.row {
	margin: 0 -15px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;	
}
/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/
body::-webkit-scrollbar-track,
.modal-content::-webkit-scrollbar-track
{
	background-color:#000;
}
body::-webkit-scrollbar,
.modal-content::-webkit-scrollbar
{
	width: 6px;
	background-color: #000;
}

body::-webkit-scrollbar-thumb,
.modal-content::-webkit-scrollbar-thumb
{
	background-color: #0062DF;
}
/* wrapper */
.wrapper {
	-webkit-box-flex: 1;
	-ms-flex: 1 0 auto;
	flex: 1 0 auto;
	position:relative;
}

/*------------------------------------*\
    FLEX
\*------------------------------------*/
.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.flex-center {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.flex-vertical-center {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.flex-wrap {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.flex-space-between {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.flex-end {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
.flex-column{
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
/*------------------------------------*\
    HEADER
\*------------------------------------*/
.header ul {
	list-style: none;
}
.header {
	padding: 1rem 0;
}
.header nav .fa-heart {
	position: relative;
	top: -1px;
	-webkit-transition: all .23s ease-in;
	transition: all .23s ease-in;
}
.header nav .fa-heart:hover {
	-webkit-transform: scale(1.4);
	transform: scale(1.4);
}
/************ DESKTOP MENU ***************/
.header ul {
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header ul li a {
	text-transform: uppercase;
	margin: 0 15px;
	cursor: pointer;
	-webkit-transition: all .23s ease-in;
	transition: all .23s ease-in; 
	font-weight: 600;
	font-size: 1.5rem;
	letter-spacing: .5px;
	position: relative;
	display: inline-block;
	z-index: 1;
}
.header ul li a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 5px;
	transform: skew(-23deg);
	background: rgba(255,255,255,0.5);
	z-index: 0;
	transition: all .23s ease-in-out;
	-webkit-transition: all .23s ease-in-out;
	-moz-transition: all .23s ease-in-out;
	-ms-transition: all .23s ease-in-out;
	-o-transition: all .23s ease-in-out;
	-webkit-transform: skew(-23deg);
	-moz-transform: skew(-23deg);
	-ms-transform: skew(-23deg);
	-o-transform: skew(-23deg);
}
.header ul li a:hover::after, .header .current-menu-item > a::after {
	width: 100%;
}
.header ul > li {
	position: relative;
}
.header .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
}
.header ul > li.menu-item-has-children:hover > .sub-menu {
	display: block;
}
.header .menu-item-has-children::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f078";
}
header .logo img {
	display: block;
	max-height: 75px;
}
/************ MOB MENU ***************/
.mob-menu-bar {
    cursor: pointer;
    position: relative;
    z-index: 202300001;
    margin-left: auto;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.mob-menu-bar span {
    font-size: 1.4rem;
	font-weight: 500;
    margin-right: 15px;
    color: #000;
}
.bar1 {
    width: 30px;
}
.bar2 {
    width: 21px;
}
.bar3 {
    width: 30px;
}
.bar1, .bar2, .bar3 {
    height: 2px;
    margin: 5px auto 5px 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    background-color: #000;
}

.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-5px, 6px);
    transform: rotate(-45deg) translate(-5px, 6px);
    width: 30px;
}

.change .bar2 {opacity: 0;}

.change .bar3 {
    -webkit-transform: rotate(45deg) translate(-4px,-5px);
    transform: rotate(45deg) translate(-4px,-5px);
    width: 30px;
}
.mob-menu-bar.change > span {
	display: none;
}
.mobile-header nav.open {
	-webkit-transform: translateX(0);
    transform: translateX(0);	
}
.mobile-header nav {
		position: fixed;
		top: 0;
		bottom: 0;
		left: 0;
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
		z-index: 2023;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		background: #000;
		padding: 5rem 2rem;
		-webkit-transition: all .43s ease-in-out;
		transition: all .43s ease-in-out;
		-moz-transform: translateX(-100%);
		-ms-transform: translateX(-100%);
		-o-transform: translateX(-100%);
		min-width: 70%;
}
.mobile-header nav ul {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
.mobile-header nav ul li {
	margin:1rem 0;
}
.mobile-header nav ul a {
	color: #fff;
}
/**** end of mobile menu ***/

/*------------------------------------*\
    FOOTER
\*------------------------------------*/
/* return to top button */
#return-to-top { 
	position: fixed; 
	bottom: 20px; right: 20px; 
	display: none; 
	z-index: 1983;
}
#return-to-top i { 
	color: #B80005; 
	font-size: 28px;  
}

.footer {
	color: #fff;
	background-color: #2F4858;
	position: relative;
	padding: 2rem 0;
	font-size: 1.4rem;
}
.footer ul {
	list-style-type: none;
}

.footer-bottom ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.footer-bottom ul li {
	margin-left: 2rem;
}

.footer a {
	color: #fff;
}
.footer .email {
    border: 1px solid #fff;
    border-radius: 4px;
    display: inline-block;
    padding: 10px 23px;
    font-family:  'Nunito', sans-serif;
        letter-spacing: .5px;
    font-size: 16px;
}

.footer-top {
    padding: 40px 0;
}
.footer-top .text-center {
    max-width: 300px;
}
/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/
.text-center {
	text-align: center;
}
.text-right {
	text-align: right;
}

p, h1, h2, h3, h4, h5, h6 {
	margin-bottom: 2rem;
}
h1, h2, h3, h4, h5, h6 {
	line-height: 1.1;
	font-weight: 800;
}
h1 {
	font-size: 5rem;
}
h2 {
	font-size: 4rem;
}
h3 {
	font-size: 3rem;
}
h4 {
	font-size: 2.5rem;
}
h5 {
	font-size: 2rem;
}
h6 {
	font-size: 1.8rem;
}
@font-face {
	font-family:'Font-Name';
	src:url('fonts/font-name.eot');
	src:url('fonts/font-name.eot?#iefix') format('embedded-opentype'),
		url('fonts/font-name.woff') format('woff'),
		url('fonts/font-name.ttf') format('truetype'),
		url('fonts/font-name.svg#font-name') format('svg');
    font-weight:normal;
    font-style:normal;
}
.gutenberg ol,
.gutenberg ul {
    margin-bottom: 20px;
}
.gutenberg ol,
.gutenberg ul {
    padding-left: 20px;
}
.gutenberg ol li,
.gutenberg ul li {
    margin-bottom: 2rem;
}

.btn,
.wp-block-button__link,
body .wpcf7 .wpcf7-submit {
	border: 1px solid #fff;
	color: #fff;
	padding: 15px 64px 15px 32px;
	display: inline-block;
	text-decoration: none;
	font-size: 1.3rem;
	margin-top: 2rem;
	-webkit-transition: all .23s ease-in;
	transition: all .23s ease-in;
	background-image: url(assets/images/arrow-right.svg);
	background-repeat: no-repeat;
	background-position: 88% center;
	background-color: #007AD5;
	text-transform: uppercase;
	border-radius:3px ;
	-webkit-border-radius:3px ;
	-moz-border-radius:3px ;
	-ms-border-radius:3px ;
	-o-border-radius:3px ;
	font-weight: 500;
    letter-spacing: 1px;
}
 
.btn:hover,
.wp-block-button__link:hover,
body .wpcf7 .wpcf7-submit:hover {
    background-position: 95% center;
    opacity: .8;
	color: #fff;
}
/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (min-width:320px) {

}
@media only screen and (min-width:480px) {

}
@media only screen and (max-width:768px) {
	.cover-foto-inner {
		left: 20px!important;
	}
}
@media only screen and (max-width:1024px) {
	.top-names .flex-space-between {
		flex-direction: column;
		align-items: center;
	}
}
@media only screen and (min-width:1140px) {

}
@media only screen and (min-width:1280px) {

}
@media only screen and (-webkit-min-device-pixel-ratio:1.5),
	   only screen and (min-resolution:144dpi) {

}



/*------------------------------------*\
    ANIMATIONS
\*------------------------------------*/
@-webkit-keyframes fadeIn {
    from {
      opacity: 0;
    }
  
    to {
      opacity: 1;
    }
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
  
    to {
      opacity: 1;
    }
  }
  
  .fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
  }
  @-webkit-keyframes fadeInLeft {
    from {
      opacity: 0;
      -webkit-transform: translate3d(-100%, 0, 0);
      transform: translate3d(-100%, 0, 0);
    }
  
    to {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
  }
  @keyframes fadeInLeft {
    from {
      opacity: 0;
      -webkit-transform: translate3d(-100%, 0, 0);
      transform: translate3d(-100%, 0, 0);
    }
  
    to {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
  }
  
  .fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
  }
  .animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }
  .delay1 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
  }
@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
/*------------------------------------*\
    POST TOP BANNER
\*------------------------------------*/
.post-top-banner-inner {
	position: relative;
	max-width: 80%;
}
.post-top-banner-inner::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0, 0, 0, .6);
	z-index: 1;
}
.post-data {
	position: absolute;
	left: 4rem;
	bottom: 4rem;
	z-index: 2;
	color: #fff;
}
.home .post-top-banner-inner {
    max-width: 100%;
}
/*------------------------------------*\
    SINGLE POST
\*------------------------------------*/
.single-content {
	padding: 6rem 0;
}

/*------------------------------------*\
    POSTs LOOP
\*------------------------------------*/
.posts-loop article{
	padding: 3rem 0;
	border-top: 1px solid #ddd;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.post-loop-data {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding-left: 2rem;
}
.posts-loop article:first-child {
	border-bottom: none;
}
.posts-loop article p {
	margin-bottom: 0;
}
.posts-loop article .img-wrap {
	margin-bottom: 1rem;
	display: block;
}

.posts-loop article .img-wrap img {
	transition: all .23s ease-in;
	-webkit-transition: all .23s ease-in;
	-moz-transition: all .23s ease-in;
	-ms-transition: all .23s ease-in;
	-o-transition: all .23s ease-in;
}
.posts-loop article .img-wrap:hover img {
	transform: scale(1.04);
	-webkit-transform: scale(1.04);
	-moz-transform: scale(1.04);
	-ms-transform: scale(1.04);
	-o-transform: scale(1.04);
}
.posts-loop article h3 {
	margin-bottom: 1rem;
}
.pagination {
	padding: 2rem 0;
	border-top: 1px solid #ddd;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.pagination .page-numbers {
	font-weight: 500;
	margin: 0 5px;
}
.pagination .page-numbers svg {
	max-height: 17px;
}


.name span{
	display: inline-block;
  	position: relative;
}
.name span::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 14px;
    -webkit-transform: skew(-12deg);
    transform: skew(-12deg);
    background: rgba(12,64,118,0.5);
    z-index: -1;
}
.header {
	background-color: #C6363C;
}
.header a {
	color: #fff;
}
.celebrety {
	margin-bottom: 5px;
}

.cover-foto {
	height: 500px;
	overflow: hidden;
	margin-bottom: 3rem;
	position: relative;
}
.cover-foto::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0, 0, 0, .4);
}
.cover-foto img {
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.cover-foto-inner {
    position: absolute;
    bottom: 20px;
    left: calc(50% - 430px);	
	color: #fff;
}
.cover-foto-inner .name span::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 14px;
    -webkit-transform: skew(-12deg);
    transform: skew(-12deg);
    background: rgba(255,255,255,0.5);
    z-index: 0;
}
.cover-foto-inner h1 {
	font-size: 8rem;;
}
.first-letter {
	margin-top: 3rem;
	background: #ddd;
	padding: 5px 15px;
}
.loop-names article .flex {
	padding-left: 15px;;
}



.favorite-name {
	margin: 40px 0;
}

.favorite-name h4 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	border-bottom: 1px solid #ddd;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding:10px 0;
}

.favorite-name span {
	font-size: 13px;
    font-weight: 100;
    text-transform: uppercase;
	margin-left: auto;
	cursor: pointer;
}

.page-section {
	padding:6rem 0;
}
.letters-filter span {
	margin-right: 15px;
	font-weight: 700;
	cursor: pointer;
}

.other-names {
    border-top: 1px solid #ddd;
    margin-top: 5rem;
    padding-top: 5rem;	
}
.other-names span {
    font-weight: 900;
    font-size: 10rem;
    line-height: 1;
}
.other-names a {
    margin: 1.5rem 2rem 2rem 2rem;
    display: inline-block;
    font-weight: 600;
    font-size: 2.1rem;
}
.like__btn {
	    margin: -5rem 0 3rem;
}
.like__btn::after {
	content: "SVIĐA MI SE";
	display: inline-block;
	margin-left: 1.5rem;
}
.like__number {
	font-size: 1.4rem!important;
}


.gutenberg img {
    height: auto;
}
.gutenberg .wp-block-columns img {
        border-radius: 40% 70% 70% 40%/40% 40% 70% 70%;
    -webkit-box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
    -webkit-transition: all .69s ease-in;
    transition: all .69s ease-in;
}
.gutenberg .wp-block-columns img:hover {
        border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
}
.top-names {
    padding: 80px;
}
.top-names video {
    max-width: 500px;
}
.napomena {
        border-bottom: 1px solid #e6e5e6;
    padding-bottom: 30px;
    margin-botttom: 30px;
}
h2 {
    position: relative;
}
.section-title {
    text-align: center;
}
.section-title span {
    position: relative;
}
h2.section-title span::after {
        content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 14px;
    -webkit-transform: skew(-12deg);
    transform: skew(-12deg);
    background: rgba(0,134,72,0.5);
    z-index: 0;
}
.top-boy-names a {
    color: #007AD5;
    font-weight: 600;
}

.top-boy-names a, .top-girl-names a {
    font-size: 2rem;
}
.top-girl-names, .top-girl-names a {
        color: #CA366F;
}
.top-boy-names a, .top-boy-names {
    color: #007AD5;
    color: #007AD5;
}

.name-cats {
	padding: 8rem 0;
}
.name-cats a {
    box-shadow: 0 3px 6px rgb(0 0 0 / 0%), 0 3px 6px rgb(0 0 0 / 11%);
    display: inline-block;
    margin: 2rem;
    padding: 0.7rem 2rem;
    letter-spacing: .1rem;
    text-transform: uppercase;
    font-size: 1.6rem;
}