:root { 
	--primary-font :  font-family: "Quicksand", sans-serif;
    --title-font : "Encode Sans SC", sans-serif;
    --safe-font:  "Jost", sans-serif;
    --icon-font : "icomoon";
	--primary-color : #2f7b8f;
    --primary-hover-color: #3e97af;
    --primary-link-color: #2f7b8f;
    --disabled-bg :#d8d8d8;
	--text-color:#606060;
    --strong-text-color:#444444;
    --color-light-gray:#fcfcfc;

    --dark-title: var(--strong-text-color);
    --white-color:#ffffff;
	--text-gray:#999;
    --text-gray-light:#b1b1b1;
	--link-color: #e20044;
    --border-color: #e9e9e9;
    --text-2xl : 1.3em;
	--text-xl : 1.1em;

    --title-5xl: 2em;
    --title-4xl :1.8em;
    --title-3xl :1.5em;
    --title-2xl :1.4em;
    --title-xl :1.3em;
    --title-lg :1.2em;

    --line-height-big: 1.7em;
    --line-height-normal: 1.5em;
    --line-height-small: 1.3em;

    --text-normal : 1em;
    --text-small-1: 0.9em;
    --text-small: 0.8em;
    --text-smaller: 0.7em;
    --text-weight:300;
    --text-weight-light:400;
    --text-bold:700;
	--body-color: #f7f7f7;
	--nav-text-color : var(--white-color);
	--nav-text-disabled :#ff7373;
    --border-style : 1px solid var(--border-color);
    --box-shadow : 1px 2px 4px 1px #00000005;
    --margin-10:10px;
    --margin-20:20px;
    --margin-30:30px;
    --margin-40:40px;
}
body {
    color: var(--text-color);
    font-family: var(--primary-font);
    font-size: var(--text-2xl);
    font-weight: var(--text-weight);
}
h1, h2, h3, h4 {
    color: var(--dark-title);
    font-family: var(--title-font);
    font-weight: var(--text-bold);
}
article > h1{
   padding: 0 0 10px 0; 
}
article > h2{
    padding: 20px 0;
}
article h3 {
    font-size: var(--title-lg);
    padding: 40px 0 10px 0;
}

strong{
   font-family: var(--primary-font); 
   font-weight: var(--text-bold);
}
a{
    color: var(--primary-link-color);
    text-decoration: none;
}
.normal-title{
    font-family: var(--title-font);
}
h1{
    font-size: var(--title-5xl);
}
h2{
    font-size: var(--title-3xl);
}
h3 {
    font-size: var(--title-lg);
}

h4{
    font-size: var(--title-lg);
}
.small-font{
    font-size: var(--text-small);
}
.text-black{
    color:var(--strong-text-color);
}
.text-black a{
    color:var(--strong-text-color);
    text-decoration: none;
}
.text-black a:hover{
    text-decoration: underline;
}
.text-gray{
    color:var(--text-gray);
}
.text-gray a{
    color:var(--text-gray);
    text-decoration: none;
}
.text-gray a:hover{
    text-decoration: underline;
}
.content-item-list a{
    color:var(--strong-text-color);
    text-decoration: none;   
}

.sidebar-items a{
    color:var(--text-color);
    text-decoration: none;
}


/* wordpress native style to bootstrap */
.btn, button{
    font-family: var(--safe-font);
}
.card-header{
    font-weight: var(--text-bold);
}
.sidebar-items ol, .sidebar-items ul {
    padding-left: 1rem;
}
.nav-tabs .nav-link:not(.active):focus,
.nav-tabs .nav-link:not(.active):hover {
  border-color: transparent;
}
.navbar-toggler{
    color: white;
    border: none;
}
.navbar-toggler:focus{
    box-shadow:none;
}

.button{
    --bs-btn-padding-x: 0.75rem;
    --bs-btn-padding-y: 0.375rem;
    --bs-btn-font-family: ;
    --bs-btn-font-size:var(--text-normal);
    --bs-btn-font-weight: 400;
    --bs-btn-line-height: 1.5;
    --bs-btn-color: var(--bs-body-color);
    --bs-btn-bg: transparent;
    --bs-btn-border-width: var(--bs-border-width);
    --bs-btn-border-color: transparent;
    --bs-btn-border-radius: var(--bs-border-radius);
    --bs-btn-hover-border-color: transparent;
    --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),0 1px 1px rgba(0, 0, 0, 0.075);
    --bs-btn-disabled-opacity: 0.65;
    --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
    display: inline-block;
    padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
    font-family: var(--bs-btn-font-family);
    font-size: var(--text-normal);
    font-weight: var(--bs-btn-font-weight);
    line-height: var(--bs-btn-line-height);
    color: var(--bs-btn-color);
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
    border-radius: var(--bs-btn-border-radius);
    background-color: var(--bs-btn-bg);
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    text-decoration: none;
}

.button-primary, .btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--primary-color);
    --bs-btn-border-color: var(--primary-color);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--primary-hover-color);
    --bs-btn-hover-border-color: var(--primary-hover-color);
    --bs-btn-focus-shadow-rgb: 49,132,253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--primary-hover-color);
    --bs-btn-active-border-color: var(--primary-hover-color);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--text-gray);
    --bs-btn-disabled-bg: var(--disabled-bg);
    --bs-btn-disabled-border-color: var(--disabled-bg);
    border-radius: 0;
    text-decoration: none;
    display: flex;
    gap:10px;
    justify-content: center;
    align-items: center;
}
.button:hover, .button-primary:hover, .btn-primary:hover {text-decoration: none;}

.btn-download {
    display: inline-flex;
    align-items: center;
}
.btn-download:before {
    font-family: var(--icon-font);
    content: "\e90c";
    margin-right: 5px;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
}

.btn-link {
    display: inline-flex;
    align-items: center;
}
.btn-link:before {
    font-family: var(--icon-font);
    content: "\e917";
    margin-right: 5px;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
}
.page-link{
    color:var(--strong-text-color);
    font-family: var(--safe-font);
}
.active>.page-link, .page-link.active{
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
/* Google login btn */
.googlesitekit-sign-in-with-google__frontend-output-button > div{
    position: relative;
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

/*Bootstrap Navbar */
.navbar {
    padding:10px 0;
    border-bottom:1px solid #ddd;
    background: white;
}
.navbar-wrapper{
    background-color:var(--primary-color);
    margin-bottom:var(--margin-20);
}
.navbar-brand {
    padding-top:0;
}
.nav-link {
    color:var(--primary-color);
}
.card-img-top {
    background-size: 120%;
    transition: background-size 0.1s ease-in-out;
}

.post-thumbnail-link:hover .card-img-top {
    background-size: 130%;
}
.top-nav-float.float-nav {
  transform: translateY(0);
  opacity: 1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.float-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff; /* or transparent with blur */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
  animation: .3s fadeInDown;
}
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-100%)
    }
    to {
        opacity: 1;
        transform: translate(0)
    }
}


#menu-top-navigation > li > a.nav-link, nav.navbar div div ul.navbar-nav li a.nav-link {
    font-size:var(--text-small);
    font-weight: 400;
    padding: 2px 15px;
    display: flex;
    align-items: center;
    text-transform: lowercase;
}
.dropdown-menu .nav-link {
    padding: 5px 0;
}
#menu-top-navigation > li > .nav-link {
    font-family: var(--title-font);
    font-size: var(--text-small);
}

.navbar-nav .dropdown-menu{
    color: var(--text-color);
    min-width: 240px;
}
.navbar-nav .dropdown-menu > .menu-item:hover{
    background-color: var(--color-light-gray);
}

.navbar-nav .dropdown-menu > .menu-item {
    border-bottom: 1px solid #ddd;
    padding: 5px 0px;
}
.navbar-nav .dropdown-menu > .menu-item:last-child {
    border-bottom: none;
    padding: 5px 0px;
}
.navbar-nav .dropdown-menu #loginform p {
    display: flex;
    flex-direction: column;
}

.navbar-nav .dropdown-menu #loginform p input[type=text], .navbar-nav .dropdown-menu #loginform p input[type=password]{
    display: block;
    padding: .375rem .75rem;
    font-size: var(--text-normal);
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.nav-tabs .nav-link{
    color: var(--text-gray);
}
.nav-tabs .nav-link:hover{
    text-decoration: none;
}

ul.user-menu{
    padding:0;
    margin: 0;
    list-style: none;
}

ul.user-menu li.dropdown ul.dropdown-menu li.menu-item {
    padding: 0 var(--margin-20);
    border-bottom: var(--border-style);
}
ul.user-menu li.dropdown ul.dropdown-menu li.menu-item:last-child {
    border-bottom: none;
}

ul.user-menu li.dropdown ul.dropdown-menu li.menu-item .nav-link{
    color: var(--text-color)!important;
}

.menu-item > .dropdown-toggle,.menu-item > .dropdown-toggle:focus, .menu-item > .dropdown-toggle:active, .nav-link{
    font-family: var(--title-font);
}

.icon-chevron-down {
  display: inline-block;
  margin-left: 0.25em;
  font-size: 15px;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}
.nav-link[aria-expanded="true"] .icon-chevron-down{
  transform: rotate(180deg);
}

.navbar-collapse{
    flex-grow:inherit;
}
.home-background{
    position: relative;
}
.home-background img{
    width:100%;
}
.contact-info-text {
    padding: 10px 0;
    background-color: #113D48;
    color: white;
    border-bottom: 1px solid #103740;
}
.contact-info-text div{
    font-family: var(--safe-font);
    font-size: var(--text-small);
    display: flex;
    align-items: center;
    justify-content: end;
    gap:20px;
}
.contact-info-text div span{
    display: flex;
    align-items: center;
    gap:10px;
}
.home-slogan-text {
    font-size: var(--text-2xl);
    background: #efd2a7c4;
    text-align: center;
    padding: 10px 0;
    position: absolute;
    width: 100%;
    bottom: 0;
    color: #000000;
    text-shadow: 1px 1px 1px #ffffff40;
}
/* Bootstrap Cards */
.card {
    --bs-card-border-color: var(--border-color);
    box-shadow: var(--box-shadow);
}

/* content style */
.content-item-list, .content-wrp, .post-content{
    padding:  var(--margin-40);
    border: var(--border-style);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    background-color: #fff;
}
.content-item-list{
    margin-bottom: var(--margin-20);
}
img.post-thumb, img.size-full {
    height: auto;
    border: 1px solid #ddd;
    padding: 10px;
    margin: 10px 0;
    width: 100%;
}
.webpexpress-processed{
    width:100%;
    height: auto;
}
.content-btn-wrp a{
    font-family: var(--safe-font);
}
.wp-caption-text {
    font-size: medium;
    text-align: center;
    background: #f5f5f5;
    display: flex;
    min-height: 35px;
    align-items: center;
    justify-content: center;
}

.single-post article ul, .single-post article ol{
    margin:20px 0;
}

/* content table */
.content-table-wrapper {
    overflow-x: auto;
    font-size: var(--text-small);
    max-width: 100%;
}
.content-table-wrapper > table{
    width: max-content;
}
.content-table-wrapper > table tr {
    border-bottom: 1px solid #f2f2f2;
}
.content-table-wrapper > table th {
    color: #333333;
    line-height: 1.4;
    text-transform: uppercase;
    text-align: left;
    padding: 8px 10px;
}
.content-table-wrapper > table td {
    padding: 8px 10px;
}
.content-table-wrapper > table td.first-col,  .content-table-wrapper > table th.first-col{
    background-color: #f2f2f2;
    border-bottom: 1px solid #ffffff;
}

/* Content Tabs */
.single-post .nav-tabs  li a{
    margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
    border: var(--bs-nav-tabs-border-width) solid transparent;
}
.single-post .nav-tabs li a{
    color: var(--text-gray);
    font-size: var(--text-small-1);
}
.single-post .nav-tabs a, .single-post .nav-tabs li.active a{
    color: var(--bs-nav-tabs-link-active-color);
    background-color: var(--bs-nav-tabs-link-active-bg);
    border-color: var(--bs-nav-tabs-link-active-border-color);
}
.single-post .nav-tabs a{
    display: block;
    padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
    font-size: var(--bs-nav-link-font-size);
    font-weight: var(--bs-nav-link-font-weight);
    color: var(--bs-nav-link-color);
    text-decoration: none;
    background: 0 0;
    border: 0;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
}
/* Sidebar Items */
.normal-text{
     font-size: var(--text-small);
    line-height: var(--line-height-normal);   
}
.icon-google:before {
    color: #f44242;
}
.social-links {
    margin-top:  var(--margin-10);
}
.social-links a{
    background-color:#f5f5f5;
    padding:5px;
}
.social-links a span{
    font-size:20px;
}
.social-links a:hover{
    background-color:#ececec;
}
ul.recent-posts li, ul.related-posts li, ul.comments-lists li {
    list-style-type: circle;
    margin-bottom: 10px;
}
.sidebar-items{
    font-family: var(--safe-font);
    font-weight: var(--text-weight);
    line-height: var(--line-height-normal);
    font-size:var(--text-small);
}
.sidebar-items ol {
    list-style: none;
    counter-reset: item;
    list-style-position: outside;
    margin: 0;
    padding:0;
    position: relative;
}
.sidebar-items ol > li{ 
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    counter-increment: item; 
    margin-bottom: 5px; 
} 

ul.comments-lists{
    list-style: none;
    margin: 0;
    padding:0;
    position: relative;
}
ul.comments-lists > li{
    list-style: none;  
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.comment-submit-load{
    display:none;
}
.sidebar-items ul.nav-tabs li .nav-link{
    font-size: var(--text-small-1);
    font-family: var(--safe-font);
}
/* Author bio sidebar */
.author-name, .comment-author{
    font-family: var(--title-font);
    font-weight: var(--text-bold);
}
.author-avatar{
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid #ddd;
    float: right;
}

.post-info, .post-info a{
    font-size: var(--text-small-1);
    color:var(--text-gray);
    font-family: var(--safe-font);
    margin-top: 5px;
}

/* page comments */

.comment-form-style{
    padding:0;
    margin:0;
    list-style: none;
}
.post-comment-item{
    overflow:hidden;
}
ul.page-comments {
    list-style: none;
    padding: 0;
    margin: 0;
}
ul.page-comments > li,  ul#the-comments-list > li,  ul#the-comments-list > li > ul > li{
    list-style: none;
    padding: 20px;
    border-bottom: var(--border-style);
    font-size: var(--text-small-1);
    line-height: 1.6;
}
ul#respond li{
    list-style: none;
    padding: 10px; 
    font-size: var(--text-small-1);
    position: relative;
    font-family: var(--safe-font);
}

.empty-comments li.card-title, .page-comments li.card-title{
    margin:0!important;
    padding: 15px 20px;
}
.card-footer:last-child {
    border-top:none;
}
ul.page-comments li a{
    color: var(--text-color);
    text-decoration: none;
    font-family: var(--safe-font);
}
ul.page-comments li a:hover{
    text-decoration: underline;
}
ul.page-comments li .comment-date, ul.page-comments li .comment-date a{
   font-size: var(--text-small-1); 
   color: var(--text-gray-light);
}
ul.page-comments li.even {
    background-color: #fdfdfd;
}
ul.page-comments li .avatar{
    border-radius: 100%;
}
.comment-content .reply{
    font-size: var(--text-small-1); 
    color: var(--text-gray-light);
    font-family: var(--safe-font);
}
ul.comment-form-style li:last-child{
    border-bottom: none;
}
.comment .comment-respond{
    margin-top: var(--margin-10);
    border:var(--border-style);
}
.comments-load-btn-wrp {
    padding: 0!important;
    font-family: var(--title-font);
    border-bottom: var(--border-style);
}
.comments-load-btn-wrp .load-more-comment-btn{
    font-weight: var(--text-bold);
    font-size: var(--text-small);
    padding:10px;
    border:none;
    outline:none;
    background-color: transparent;
}
.comments-load-btn-wrp:hover{
    background-color: #f9f9f9;
}

.highlight-comment {
  background-color: #ffffcc;
  animation: fadeOutHighlight 10s ease-out forwards;
}

@keyframes fadeOutHighlight {
  0% { background-color: #ffffcc; }
  100% { background-color: transparent; }
}

#the-comments-list li.comment ul.children li:last-child{
    border-bottom: none;
}
button#cancel-cmt-reply {
    display:none;
    border: none;
    background: transparent;
    font-size: larger;
    color: var(--text-gray);
    position: absolute;
    right: 0;
    margin-top: -10px;
    margin-right: -10px;
    cursor: pointer;
}
button#cancel-cmt-reply:hover{
    color: var(--strong-text-color);
}

/* Footer */
.footer-wrap h1, .footer-wrap h2, .footer-wrap h3, .footer-wrap h4{
    color: var(--white-color);
}
.footer-wrap{
    background-color: var(--primary-color);
    color: var(--white-color);
    line-height: var(--line-height-small) ;
}
.footer-wrap a{
    color: var(--white-color);
    text-decoration: none;
}
.footer-wrap a:hover{
    text-decoration:underline;
}
.theme-tag-cloud a{
    display:inline-block;
    margin-right:5px;
}


.home-container {
  max-width: 1100px;
}

.custom-container {
  max-width: 900px;
}
.truncate {
    width: 100%;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.hompage-cards-text {
    font-size: var(--text-small);
    padding: 10px 0;
    color: var(--text-color);
    max-height: 90px;
    overflow: hidden;
}
.homepage-cards{
    font-family: var(--safe-font);
}
.safe-font{
    font-family: var(--safe-font);
}
.small-font{
    font-size: small;
}
.author-box-date {
    color: var(--text-gray-light);
}

.author-header{
   font-family: var(--safe-font); 
    color: #747474;
    text-shadow: 1px 1px 1px #fff;
    font-size: medium;
}
.flipped {
  transform: scaleX(-1);
}
.author-header > .auther-card-date{
   font-size:small;
   font-weight: 300;
}
.dropdown-menu{
    font-size:inherit;
}
.wp-block-image img{
    border: 1px solid #ddd;
}
.decor-wrp{
    position: relative;
}
.decor-left {
    background-image: url('../images/decor-left.webp');
    background-repeat: no-repeat;
    width: 60px;
    position: absolute;
    left: 0;
    top: 0;
    height: 600px;
    margin-left: -50px;
    margin-top: 30px;
}

.top-margin{
    margin-top:3rem;
}
.scroll-smooth {
    position: fixed;
    height: 40px;
    width: 40px;
    right: 0;
    bottom: 0;
    background: #09afd7;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    margin-right: 20px;
    margin-bottom: 20px;
    color:white;
    font-size:x-large;
}
.scroll-smooth:hover{
    text-decoration: none;
}
.round-shadow {
    transition: all .2s ease-in;
}
.round-shadow:after {
    content: "";
    opacity: 1;
    z-index: -1;
    background: radial-gradient(#00000040 0, #0000 80%);
    width: 90%;
    height: 10px;
    transition: all .2s ease-in;
    position: absolute;
    top: 100%;
    left: 5%;
}
.round-shadow:hover:after {
    transition: all .2s ease-in;
    transform: translateY(5px);
}
.round-shadow:hover {
    transform: translateY(-5px);
}
.icon-loader {
    display: inline-block;
    animation: spin 1s linear infinite;
}
.hidden{
    display:none;
}
.alert-error{
    border: 1px solid #ffcece;
    background: #ffefef;
    color: #db2323;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media screen and (max-width: 640px) {
    .top-margin{
        margin-top:1rem;
    }
    ul#respond li{
        padding: 5px 0!important; 
    }
    .smaller_screen_hidden{
        display: none;
    }
    .contact-info-text{
        font-size: var(--text-small);
    }
    .contact-info-text div{
        justify-content: space-between;
    }
    ul.comment-form-style li{
        padding: 0;
    }
    .code-wrapper .code-line-numbers{
        display: none;
    }
    .navbar-nav .dropdown-menu {
        text-align: center;
        padding: var(--margin-10) var(--margin-20);
    }
    .content-item-list, .content-wrp, .post-content{
        padding:  15px;
    }
    .sidebar-items{
        padding:  0;
    }
    .content-item-list, .content-wrp, .post-content{
        border: none;
        box-shadow: none;
    }

    ul.page-comments .card-title{
        font-size:var(--text-small)!important;
    }
    .post-author-info {
        font-size: var(--text-small);
        padding: 5px 0;
        color: var(--text-gray);
    }
    .post-author-info a{
        color: var(--text-gray);
    }
    .post-updated-date{
        display:none;
    }
    .footer-wrap ul li.widget{
        padding: 0 var(--margin-20);
    }
}
@media screen and (max-width: 992px) {
    .decor-left{
        display: none;
    }
    h1 {
        font-size:xx-large;
    }
    .home-slogan-text {
        font-size: var(--text-small);
        background: #efd2a7c4;
        text-align: center;
        padding: 10px 10px;
        position: inherit;
        width: 100%;
        bottom: 0;
        color: #56462e;
        text-shadow: 1px 1px 1px #ffffff61;
    }
    #menu-top-navigation > li > a.nav-link, nav.navbar div div ul.navbar-nav li a.nav-link{
        font-size: var(--text-xl);
        padding:5px 0;
        text-align: center;
        display: block;
    }
    ul#menu-top-navigation,  ul.navbar-nav{
        margin-bottom: 0!important;
    }
    #navbarNavDropdown{
        border: 1px solid #ddd;
        margin-top: 10px;
    } 
    .dropdown-menu{
        --bs-dropdown-border-radius: 0;
    }
    .sidebar-items .author-avatar img {
        height: 30px;
        width: 30px;
        position: absolute;
        border-radius: 100%;
        right: 0;
        margin-right: 15px;
    }
    .dropdown-toggle::after {
        font-size: 20px;
        margin-top: 5px;
    }
    .navbar-collapse .navbar-nav .menu-item{
        text-align: center;
    }
}

@media (min-width: 992px) { /* Only for large screens and up */
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /* prevent weird jumping */
  }
  /* If using ::after */
  .nav-link:hover .icon-chevron-down{
    transform: rotate(180deg);
    transition: transform 0.3s ease;
  }
}