@import url("https://use.typekit.net/dbt8din.css");

:root {
    --font-family-1: 'rama-gothic-m', serif;
    --font-family-2: 'libre-franklin', sans-serif;
    --regular: 400;
    --medium: 500;
    --semi-bold: 600;
    --bold: 700;
    --extra-bold: 800;
    --black: 900;
    --bg-light-purple: #F2EBE6;
    --bg-dark-blue: #0100B6;
    --bg-off-white: #F9F7F5;
    --facebook-button: #3b5998;
    --twitter-button: #1da1f2;
    --instagram-button: #d600a9;
    --youtube-button: #FF0000;
	--linkedin-button: #0072b1;
}

body, html {
    height: 100%;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: inherit;
    display: flex;
    flex-direction: column;
    margin: 0px;
}

.container {
    max-width: 1200px;
    width: 100%;
}

.btn:focus {
    outline: none;
    box-shadow: none;
}

/* FULL MENU CSS */
#full-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-light-purple);
    opacity: 0;
    transition: none;
}

#full-menu.open {
    z-index: 1031;
    opacity: 1;
    transition: none;
}

.menu-items li{
    list-style:none;
}

.menu-items li:not(:last-child){
    margin-bottom: 12px;
}

.menu-items > li:not(:last-child) a{
    color: #000;
    letter-spacing: 0.01em;
    font-family: var(--font-family-2);
    font-weight: var(--semi-bold);
    font-size: 24px;
    line-height: 48px;
    position: relative;
}

.menu-items > li:not(:last-child) a::after {
    background: #ffd248;
    bottom: -6px;
    left: 0px;
    content: "";
    display: block;
    height: 2px;
    position: absolute;
    transition: .5s cubic-bezier(.65,.05,.36,1);
    width: 0;
}

.menu-items li a:hover{
    opacity: 1;
    text-decoration: none;
}

.menu-items > li:not(:last-child) a:hover:after {
    width: 100%;
}

.main-menu {
    margin-bottom: 0px;
}

.main-menu li:not(:last-child) {
    line-height: 32px;
    margin-right: 58px;
}

.main-menu li:not(:last-child) a {
    font-family: var(--font-family-2);
    font-weight: var(--medium);
    font-size: 18px;
    letter-spacing: 0.08em;
    line-height: 30px;
    color: #000 !important;
    text-transform: uppercase;
}

.main-menu li:not(:last-child) a:hover {
    opacity: 1;
    text-decoration: none;
}

.mobile-header {
    padding: 20px 15px;
    z-index: 4;
}

.mobile-header::before {
    left: 0;
    height: 69.96px;
}

.mobile-header.mho {
    position: static;
}

/* MENU ICON */
#mobile-main-menu-btn.active {
    position: relative;
    z-index: 1032;
    top: 0;
    right: 0;
}

#mobile-main-menu-btn {
    margin-left: auto;
}

.menu-btn {
    height: 33px;
    padding: 0;
    background: transparent;
    border: none;
    position: relative;
    right: 0;
    top: -7px;
} 

.menu-btn:focus,
.menu-btn:visited {
    outline: none !important; 
    box-shadow: none !important;
}

.scrolled .menu-btn {
    opacity: 1;
    z-index: 2;
}

.no-scroll .menu-btn {
    opacity: 1;
}

.menu-btn:hover {
    cursor: pointer;
}

.menu-span {
    padding: 0;
    position: relative;
    display: block;
    width: 36px;
    height: 2px;
    margin: 0 auto;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    background: var(--bg-dark-blue);
    color: inherit;
    font-size: 0;
    transition: 0.35s;
}

.menu-span:after,
.menu-span:before {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: var(--bg-dark-blue);
    content: "";
    transition: transform 0.35s;
}

.active .menu-span,
.active .menu-span:after, 
.active .menu-span:before {
    background: #000 !important;
}

.menu-span:before {
    transform: translate(-50%, -10px);
}

.menu-span:after {
    transform: translate(-50%, 10px);
}

.menu-span:before, .menu-span:after {
    transform-origin: 0% 0%;
}

.menu-btn.active .menu-span {
    background: 0 0;
}

.menu-btn.active .menu-span:before {
    transform: translate(-50%, 0) rotate(-45deg) scaleX(0.7);
}

.menu-btn.active .menu-span:after {
    transform: translate(-50%, 0) rotate(45deg) scaleX(0.7);
}

/* NO SCROLL CSS */
.no-scroll {
    height: 20vh;
    overflow: hidden;
}

/* Header CSS */
.landing-header {
    background-color: #fff;
    padding: 10px 0px 14px;
    position: relative;
    box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.16);
    z-index: 2;
}

.main-menu {
    margin-bottom: 0px;
    text-align: right;
}

.landing-header .main-menu li {
    display: inline-flex;
    align-items: center;
}

.main-menu li:not(:last-child) {
    margin-right: 35.5px;
    line-height: 40px;
}

.main-menu li a {
    position: relative;
    font-size: 18px;
    font-weight: var(--regular);
    font-family: var(--font-family-2);
    /*letter-spacing: 0.02em;*/
    line-height: 27px;
    color: #fff !important;
}

.main-menu li:not(:last-child) a::after {
    background: #ffd248;
    bottom: -14px;
    content: "";
    display: block;
    height: 2px;
    position: absolute;
    transition: .5s cubic-bezier(.65,.05,.36,1);
    width: 0;
}

.main-menu li:not(:last-child) a:hover {
    text-decoration: none;
}

.main-menu li:not(:last-child) a:hover:after {
    width: 100%;
}

.btn-header {
    width: 58px;
    height: 40px;
    padding: 10px 13px;
    background-color: #9898E1;
    border: none;
    border-radius: 0px;
    font-size: 18px !important;
    font-weight: var( --semi-bold) !important;
    line-height: 22px !important;
    letter-spacing: 0.08em;
}

.btn-header:first-child {
    border-radius: 2px 0px 0px 2px;
}

.btn-header:last-child {
    border-radius: 0px 2px 2px 0px;
}

.btn-header:hover {
    background-color: var(--bg-dark-blue);
}

.btn-header.active,
.btn-header.active:hover {
    background-color: var(--bg-dark-blue);
    color: #fff !important;
}

.btn-header:not(:last-child) {
    margin-right: -5px;
}

.mobile-header {
    display: none;
    background-color: #fff;
    padding: 10px 0px 14px;
    box-shadow: 0px 3px 15px rgb(0 0 0 / 16%);
    position: relative;
}

.mobile-header ul {
    margin-bottom: 0px;
    text-align: right;
}

.mobile-header ul li a {
    color: #fff;
}

.home-hero {
    position: relative;
    padding: 91px 0px 199px;
    background-color: var(--bg-light-purple);
    /*background-image: url(../images/new-hero-image.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right center;*/
}

.home-hero::before {
    content: " ";
    width: 50%;
    height: 100%;
    background-image: url(../images/new-hero-image.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
    position: absolute;
    top: 0px;
    right: 0px;
   /* z-index: -1;*/
}

.hero {
    position: relative;
    background-color: var(--bg-light-purple);
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url(../images/hero-bg-img.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: 0;
}

.hero:after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 121px;
    height: 100%;
    background-image: url(../images/hero-triangle.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    z-index: 1;
}

.hero [class*="col-"] {
    padding-top: 58px;
    padding-bottom: 126px;
}

.main-heading {
    font-family: var(--font-family-1);
    font-weight: var(--bold);
    font-size: 80px;
    letter-spacing: 0.02em;
    line-height: 80px;
    color: #000;
    text-transform: uppercase;
    max-width: 500px;
    margin-bottom: 28px;
}

.home-hero .main-heading {
    font-size: 100px;
    line-height: 100px;
}

.home-hero p {
    font-family: var(--font-family-2);
    font-weight: var(--medium);
    font-size: 21px;
    letter-spacing: 0.02em;
    line-height: 30px;
    color: #000;
    opacity: 0.9;
    max-width: 556px;
    margin-bottom: 0px;
}

.home-hero p:not(:last-child) {
    margin-bottom: 26px;
}

.hero p {
    font-family: var(--font-family-2);
    font-weight: var(--medium);
    font-size: 21px;
    letter-spacing: 0.02em;
    line-height: 30px;
    color: #000;
    max-width: 570px;
    margin-bottom: 0px;
}

.hero p:not(:last-child) {
    margin-bottom: 26px;
}

.resources {
    background-color: var(--bg-off-white);
    padding-bottom: 110px;
}

.gl-page-content {
    position: relative;
    margin-top: -85px;
}

.box {
    background-color: var(--bg-dark-blue);
    padding: 52px 59px 51px 50px;
    margin-bottom: 30px;
    height: 170px;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 3;
}

.box .media-body {
    padding-right: 15px;
}

.box i {
    font-size: 50px;
    letter-spacing: 0.02em;
    line-height: 27px;
    text-align: center;
    color: #F9E74D;
}

.box-title {
    font-family: var(--font-family-2);
    font-weight: var(--bold);
    font-size: 26px;
    letter-spacing: 0.04em;
    line-height: 28px;
    color: #fff;
    margin-bottom: 0;
}

.box-link:hover .box {
    background-color: #ffd248;
    border-color: #6d4105;
}

.box-link, .box-link * {
    transition: .2s ease-in-out;
}

.box-link:hover, .box-link:hover * {
    color: #fff;
    opacity: 1;
    text-decoration: none;
    transition: .2s ease-in-out;
}

/* Inner Page CSS */
.hero.inner::before {
    background-position: top center;
}

.hero.inner [class*="col-"] {
    padding-top: 66px;
    padding-bottom: 83px;
}

.hero.inner .main-heading {
    max-width: 430px;
}

.all-assets {
    padding: 60px 0px 90px;
    background-color: var(--bg-off-white);
}

.profile-photo {
    padding: 54px 0px 95px;
}

.profile-photo a:hover {
    text-decoration: none;
}

.section-heading {
    font-family: var(--font-family-1);
    font-weight: var(--bold);
    font-size: 50px;
    letter-spacing: 0.02em;
    line-height: 60px;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.asset-holder {
    margin-bottom: 45px;
    cursor: pointer;
}

.asset-holder span {
    font-weight: var(--bold);
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 28px;
    color: #03115b;
    margin-top: 5px;
    display: block;
}

.asset-holder span i {
    font-size: 16px;
}

.resources.inner {
    padding: 54px 0px 90px;
}

.resources.inner a:hover {
    text-decoration: none;
}

.resources.inner .asset-holder {
    margin-bottom: 30px;
}

.asset-holder-box {
    background-color: var(--bg-dark-blue);
    border-radius: 2px;
    padding: 38px 41px 40px 40px;
    min-height: 240px;
    background-image: url(../images/lct-icon.png);
    background-repeat: no-repeat;
    background-size: 58px auto;
    background-position: calc(100% - 40px) calc(100% - 39px);
}

.resources.inner a:hover .asset-holder-box {
    background-color: #ffd248;
}

.asset-holder-box h2 {
    font-family: var(--font-family-2);
    font-weight: var(--bold);
    font-size: 26px;
    letter-spacing: 0.04em;
    line-height: 36px;
    max-width: 420px;
    color: #fff;
}

.draft-step-btn {
    border-radius: 2px;
    background:  var(--bg-dark-blue);
    font-family: var(--font-famliy-2);
    font-weight: var(--bold);
    font-size: 17px;
    letter-spacing: 0.04em;
    line-height: 46px;
    text-align: center;
    color: #FFF;
    width: 100%;
    height: 60px;
    position: relative;
    border: none;
}

.draft-step-btn:focus {
    outline: none;
    box-shadow: none;
    color: #fff;
}

.draft-step-btn span {
    color: #F9E74D;
    position: absolute;
    left: 20px;
    top: 8px;
}

.draft-step-btn span i {
    font-size: 20px;
}

.draft-step-btn:hover {
    background: #F2A00A !important;
    color: #ffffff;
}

.draft-step-btn:hover span i {
    color: #ffffff;
}

.h-101 {
    height: calc(100% + 90px)!important;
}

.profile-photo .draft-step-btn {
    color: #ffffff;
}

.profile-photo .draft-step-btn span {
    color: #ffffff;
}

/*----- social share template ------*/
.social-holder .social-media-wrap {
    padding: 19px 20px 19px;
    border-radius: 0px 0px 2px 2px;
    background: #fff;
    border: 1px solid;
    border-top: none;
}

.facebook-post-holder .social-media-wrap {
    border-color: #5172FC;
}

.facebook-post-holder .social-media-wrap,
.instagram-post-holder .social-media-wrap {
    min-height: 231px;
    display: flex;
    flex-direction: column;
}

.social-holder .social-media-wrap h6 {
    font-family: var(--font-family-2);
    font-weight: var(--bold);
    font-size: 16px;
    line-height: 24px;
    color: #000;
    margin-bottom: 6px;
}

.social-holder .social-media-wrap p {
    font-family: var(--font-famliy-2);
    font-weight: var(--regular);
    font-size: 16px;
    line-height: 24px;
    text-align: left;
    color: #000;
    max-width: 480px;
    flex-grow: 1;
}

.facebook-btn {
    background-color: var(--facebook-button);
}

.social-holder .social-media-wrap .draft-step-btn span {
    margin-top: 0px;
    line-height: 34px;
}

.all-assets a:hover .draft-step-btn span {
    color: #fff !important;
}

.twitter-heading {
    background-color: #1da1f2;
}

.twitter-btn {
    background-color: var(--twitter-button) !important;
}

.twitter-post-holder .social-media-wrap {
    border-color: #59C5EF;
    min-height: 245px;
    display: flex;
    flex-direction: column;
}

.instagram-heading {
    background: #D600A9;
}

.instagram-btn {
    background: var(--instagram-button) !important;
}

.instagram-post-holder .social-media-wrap {
    border-color: #D600A9;
}

.hid-field {
    position: absolute;
    left: -999999px;
}

.social-holder .social-media-wrap .draft-step-btn span {
    top: 16px;
}

.twitter-heading,
.instagram-heading {
    margin-top: 23px;
}

.draft-head {
    background-color: var(--bg-light-purple);
    padding-top: 126px;
    padding-bottom: 199px;
    position: relative;
}

.back-post,
.back-post:visited {
    font-size: 40px;
    position: absolute;
    top: 9px;
    left: 30px;
    display: block;
    color: #000 !important;
    opacity: 0.8;
}

.back-post:hover {
    color: var(--bg-light-purple) !important;
}

.draft-head .main-heading {
    margin-bottom: 0px;
}

.draft-head p {
    font-family: var(--font-family-2);
    font-weight: var(--medium);
    font-size: 21px;
    letter-spacing: 0.02em;
    line-height: 30px;
    color: #000;
    opacity: 0.9;
    margin-bottom: 0px;
}

.draft-steps-box-holder {
    background-color: var(--bg-off-white);
    padding-bottom: 141px;
}

.draft-step-box {
    border-radius: 2px;
    background: #fff;
    padding: 25px 28px 20px;
    border: 1px solid var(--bg-dark-blue);
    position: relative;
    margin-top: -97px;
    display: flex;
    flex-direction: column;
    min-height: 374px;
}

.draft-step-number {
    font-family: var(--font-family-2);
    font-weight: var(--medium);
    font-size: 16px;
    letter-spacing: 0.08em;
    line-height: 28px;
    color: var(--bg-dark-blue);
    margin-bottom: 6px;
}

.draft-step-heading {
    font-family: var(--font-family-2);
    font-weight: var(--semi-bold);
    font-size: 20px;
    letter-spacing: 0.03em;
    line-height: 28px;
    color: #000;
    margin-bottom: 18px;
}

.draft-step-content {
    max-width: 306px;
    font-family: var(--font-family-2);
    font-weight: var(--regular);
    font-size: 18px;
    letter-spacing: 0.02em;
    line-height: 24px;
    color: #000;
    opacity: 0.9;
    flex-grow: 1;
}

.draft-step-image-box {
    width: 100%;
    /*height: 100%;*/
    /*max-height: 170px;*/
    border-radius: 4px;
    margin-bottom: 20px;
}

.return-media-post {
    font-family: var(--font-family-2);
    font-weight: var(--bold);
    font-size: 18px;
    letter-spacing: 0.02em;
    line-height: 16px;
    text-align: center;
    color: #fff;
    display: block;
    margin: 49px 0px 0px;
}

.return-media-post i {
    margin-right: 10px;
}

.return-media-post:hover {
    color: var(--bg-light-purple);
    text-decoration: none;
}


/* Footer CSS */
footer {
    flex-shrink: 0;
}

footer {
    background-color: #000;
    padding: 16px 0px 15px;
}

.sv-copyright {
    font-family: var(--font-family-2);
    font-weight: var(--medium);
    font-size: 16px;
    letter-spacing: 0.04em;
    line-height: 24px;
    text-align: left;
    color: var(--bg-light-purple);
    margin-bottom: 0px;
}

.social-link {
    text-align: right;
    margin-bottom: 0px;
}

.social-link li {}

.social-link li:not(:last-child) {
    margin-right: 42px;
}

.social-link li a {
    font-size: 24px;
    letter-spacing: 0.02em;
    line-height: 27px;
    color: var(--bg-light-purple);
}

.twitter:hover {
    color: var(--twitter-button)
}

.instagram:hover {
    color: var(--instagram-button)
}

.facebook:hover {
    color: var(--facebook-button)
}

.linkedin:hover {
    color: var(--linkedin-button);
}

.youtube:hover {
    color: var(--youtube-button)
}

@media(min-width: 767px) {
    .cc-center {
        height: 100%;
    }
}

@media(max-width: 1024px) {
    .home-hero::before {
        content: none;
    }
	
	.home-hero .main-heading,
	.home-hero p {
		max-width: 100%;
	}
}

@media (max-width: 992px) {
    .landing-header {
        display: none;
    }

    .mobile-header {
        display: block;
    }

    .mobile-header .logo-link img {
        max-width: 150px;
    }

    #mobile-main-menu-btn, 
    #mobile-main-menu-btn.active {
        position: absolute;
        right: 15px;
        top: 24px;
    }

    .menu-span {
        width: 30px;
    }

    .home-hero {
        padding: 60px 0px 120px;
    }
    
    .home-hero::before {
        content: none;
    }

    .hero:after,
    .hero:before {
        content: none;
    }
    
    .hero [class*="col-"] {
        padding-top: 50px;
        padding-bottom: 70px;
    }
    
    .main-heading {
        font-size: 38px;
        line-height: 56px;
        max-width: 100%;
        margin-bottom: 25px;
    }
    
    .hero p {
        font-size: 20px;
        line-height: 28px;
        max-width: 100%;
    }
    
    .hero p:not(:last-child) {
        margin-bottom: 20px;
    }
    
    .home-hero .main-heading {
        font-size: 60px;
        line-height: 60px;
    }
    
    .home-hero p {
        font-size: 20px;
        line-height: 28px;
        max-width: 100%;
    }
    
    .home-hero p:not(:last-child) {
        margin-bottom: 20px;
    }
    
    .resources {
        padding-bottom: 40px;
    }
    
    .gl-page-content {
        margin-top: -50px;
    }

    .box {
        padding: 40px 35px;
        margin-bottom: 20px;
        height: 130px;
    }
    
    .box i {
        font-size: 40px;
        letter-spacing: 0.02em;
        line-height: 27px;
    }

    .hero.inner [class*="col-"] {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .profile-photo {
        padding: 40px 0px 23px;
    }
    
    .asset-holder {
        margin-bottom: 30px;
    }
    
    .social-holder .social-media-wrap {
        padding: 15px;
    }
    
    .social-holder .social-media-wrap h6 {
        margin-bottom: 2px;
    }
    
    .resources.inner {
        padding: 40px 0px 40px;
    }
    
    .section-heading {
        font-size: 30px;
        line-height: 42px;
        margin-bottom: 15px;
    }
    
    .resources.inner .asset-holder {
        margin-bottom: 20px;
    }
    
    .asset-holder-box {
        padding: 30px 30px;
        min-height: 220px;
        background-position: calc(100% - 29px) calc(100% - 30px);
    }
    
    .asset-holder-box h2 {
        font-size: 24px;
        letter-spacing: 0.04em;
        line-height: 34px;
    }

    .draft-head {
        padding-top: 60px;
        padding-bottom: 95px;
    }
    
    .draft-head .main-heading {
        margin-bottom: 20px;
    }
    
    .draft-head p {
        font-size: 20px;
        line-height: 28px;
    }
    
    .draft-steps-box-holder {
        padding-bottom: 40px;
    }
    
    .h-101 {
        height: auto !important;
    }
    
    .draft-step-box {
        padding: 20px;
        position: relative;
        margin-top: 0px;
        margin-bottom: 30px;
    }
    
    .draft-step-one {
        margin-top: -50px;
    }
    
    .back-post, .back-post:visited {
        top: 0;
        left: 15px;
    }
    
    .draft-step-content {
        max-width: 100%;
    }
    
    .return-media-post {
        margin: 10px 0px 0px;
    }
    
    .social-link li:not(:last-child) {
        margin-right: 34px;
    }
    
    .social-link li a {
        font-size: 22px;
    }
    
}

@media(max-width: 767px) {
    #full-menu {
        height: 100vh;
        top: 0;
    }

    .cc-center {
        position: absolute;
        width: 100%;
        top: calc(50% + 35px);
        left: 50%;
        transform: translate(-50%, calc(-50% - 50px));
    }

    .hero [class*="col-"] {
        padding-top: 40px;
        padding-bottom: 50px;
    }
    
    .main-heading {
        font-size: 30px;
        line-height: 42px;
        margin-bottom: 15px;
    }
    
    .hero p {
        font-size: 16px;
        line-height: 24px;
    }
    
    .hero p:not(:last-child) {
        margin-bottom: 15px;
    }

    .home-hero {
        padding: 45px 0px 80px;
    }
    
    .home-hero .main-heading {
        font-size: 50px;
        line-height: 50px;
        margin-bottom: 20px;
    }
    
    .home-hero p {
        font-size: 16px;
        line-height: 24px;
    }
    
    .home-hero p:not(:last-child) {
        margin-bottom: 15px;
    }
    
    .resources {
        padding-bottom: 30px;
    }
    
    .gl-page-content {
        margin-top: -40px;
    }
    
    .box {
        padding: 30px 20px;
        height: 100px;
    }
    
    .box-title {
        font-size: 22px;
        line-height: 25px;
    }
    
    .box i {
        font-size: 30px;
        letter-spacing: 0.02em;
        line-height: 27px;
    }

    .hero.inner [class*="col-"] {
        padding-top: 30px;
        padding-bottom: 25px;
    }

    .social-holder .social-media-wrap p {
        font-size: 14px;
        line-height: 22px;
    }
    
    .resources.inner {
        padding: 30px 0px 30px;
    }
    
    .section-heading {
        font-size: 24px;
        line-height: 34px;
        margin-bottom: 12px;
    }
    
    .asset-holder-box {
        padding: 25px 20px;
        min-height: 210px;
        background-size: 55px auto;
        background-position: calc(100% - 19px) calc(100% - 25px);
    }
    
    .asset-holder-box h2 {
        font-size: 21px;
        line-height: 31px;
    }

    .draft-head {
        padding-bottom: 75px;
    }
    
    .draft-head .main-heading {
        margin-bottom: 15px;
    }
    
    .draft-head p {
        font-size: 16px;
        line-height: 24px;
    }
    
    .draft-step-content {
        font-size: 16px;
        line-height: 24px;
    }
    
    .draft-step-heading {
        margin-bottom: 15px;
    }

    .sv-copyright {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .social-link {
        text-align: center;
    }

    .social-link li:not(:last-child) {
        margin-right: 30px;
    }
    
    .social-link li a {
        font-size: 18px;
    }
}