@import url('https://fonts.googleapis.com/css2?family=Maitree:wght@300;400;500&display=swap');
/* font-family: 'Maitree', serif; */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@200;300;400;500&display=swap');
/* font-family: 'Raleway', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@200;300;400;500&display=swap');
/* font-family: 'Josefin Sans', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=PT+Serif:wght@400;700&display=swap');
/* font-family: 'PT Serif', serif; */

html {scroll-behavior: s;}
body {
    padding: 0 !important;
    margin: 0 !important;
    background-color: #fff !important;
}

.mob-view {
    display: none;
}

.desk-view {
    display: block;
}

.more-btn a {
    text-decoration: none;
    border: 1px solid #f5f5f5;
    color: #f5f5f5;
    font-size: 23px;
    padding: 10px 25px;
}

.mfp-bg {z-index: 9999998;}
.mfp-wrap {z-index: 9999999;}

/* ===============================
    Header Begin Here
=============================== */
#header {
    width: 100%;
    padding: 0 5%;
    position: absolute;
    z-index: 99;
    background-color: transparent;
    transition: all 0.4s linear;
}

#header .top-section {
    display: flex;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 20px;
}

.sticky .top-section {
    display: block !important;
    padding-bottom: 10px !important;
}

.sticky .top-section .logo {
    margin: 0 auto;
    width: 30% !important;
}

.sticky .top-section .social-icon,
.sticky .top-section .top-email-box {display: none !important;}

#header .top-section .logo {
    width: 44%;
    transition: all 0.5s;
}

#header .top-section .logo a {display: block;}

.top-section .social-icon {
    display: flex;
    width: 31%;
    border-left: 1px solid #b9b9b9;
    padding-left: 30px;
    margin-left: 30px;
    line-height: 55px;
}

.top-section .social-icon p {
    margin-bottom: 0;
    margin-right: 20px;
    font-family: 'Maitree', serif;
    font-weight: 300;
    font-size: 18px;
    color: #fff;
}

.top-section .social-icon ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.top-section .social-icon ul li {
    display: inline-block;
    margin-right: 5px;
}

.top-section .social-icon ul li a {
    text-decoration: none;
    color: #fff;
    display: block;
    border: 1px solid #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    transition: all 0.4s;
}

.top-section .social-icon ul li a:hover {
    background: #ccc;
    color: #313131;
}

.top-section .top-email-box {
    width: 25%;
    text-align: right;
}

.top-section .top-email-box a {
    text-decoration: none;
    color: #e67817;
    font-weight: 500;
    font-size: 17px;
}

.top-section .top-email-box a i {
    width: 30px;
    height: 30px;
    line-height: 31px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.top-section .top-email-box a:hover i {
    background-color: #e67817;
    color: #fff;
}

/* ===============================
    Navbar Begin Here
=============================== */
.sticky {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    background-color: #2e517c !important;
    position: fixed !important;
    top: 0;
    left: 0;
    z-index: 999999 !important;
	width: 100% !important;
    padding-bottom: 10px !important;
    animation-name: scrollSticky;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-iteration-count: 1;
    animation-delay: 0.3s;
}

@keyframes scrollSticky {
    0% {transform: translateY(-100%); opacity: 0;}
    100% {transform: translateY(0); opacity: 1;}
}

.navbar-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    line-height: 36px;
}

.navbar-menu li {
    display: inline-block;
    margin-left: -4px;
    padding: 0;
    transition: all 0.3s;
}

.navbar-menu li:hover {
    background-color: #6d7a85;
}

.navbar-menu li:hover a {
    color: #fff;
}

.navbar-menu li a {
    text-decoration: none;
    display: block;
    padding: 0 13px;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    font-family: 'Raleway', sans-serif;
}

.navbar-menu li a i {
    font-size: 15px;
    margin-left: 10px;
}

.dropdown-list {
    position: relative;
}

.dropdown-list .dropdown {
    min-width: 200px;
    padding: 5px 12px;
    margin: 0;
    background-color: #6d7a85;
    position: absolute;
    top: 36px;
    /* left: 0; */
    z-index: 99;
    transition: all 0.3s;
    box-shadow: 2px 10px 15px rgb(0, 0, 0, 0.4);
    transform: scaleY(0);
    transform-origin: top;
}

.navbar-menu .dropdown-list:last-child .dropdown {
    right: 0 !important;
}

.dropdown-list:hover .dropdown {
    transform: scaleY(1);
}

.dropdown-list .dropdown li {
    display: block;
    min-width: 100%;
    border-bottom: 1px solid #8293a1;
    margin-bottom: 5px;
}

.dropdown-list .dropdown li:last-child {
    border-bottom: none;
}

.dropdown-list .dropdown li:hover {
    background-color: #495661;
}

.dropdown-list .dropdown li a {
    width: max-content;
    min-width: 100%;
    display: block;
    font-size: 16px;
    transition: all 0.2s;
    padding: 0 7px;
    color: #ffffff;
}

.dropdown-list .dropdown li a:hover {
    padding-left: 11px;
    padding-right: 3px;
    transition: all 0.3s;
    color: #fff;
}

/* ===============================
    Inner Banner Begin Here
=============================== */
#inner-banner {
    margin-bottom: 30px;
    position: relative;
}

.infographic-clr::before {background-color: rgba(2, 16, 64, 0.85);}
.about-clr::before {background-color: rgba(1, 36, 37, 0.85);}
.mission-clr::before {background-color: rgba(0, 51, 34, 0.85);}
.photo-g-clr::before {background-color: rgba(0, 53, 66, 0.88);}
.contact-clr::before {background-color: rgba(14, 26, 0, 0.85);}

.infographic-clr::before, .about-clr::before, .mission-clr::before,
.photo-g-clr::before, .contact-clr::before {
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

#inner-banner h2 {
    padding: 0 6%;
    position: absolute;
    top: 55%;
    left: 0;
    font-family: 'PT Serif', serif;
    font-weight: 600;
    font-size: 32px;
    letter-spacing: 1px;
    color: #f2f2f2;
    margin: 0;
}

/* ===============================
    Useful Links Begin Here
=============================== */
#useful-links {
    padding: 30px 0;
}

#useful-links .links-box {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

#useful-links .links-box .links-item {
    width: calc(20% - 20px);
    margin-right: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    border: 2px solid #f3f3f3;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

#useful-links .links-box .links-item a {
    display: block;
    position: relative;
}

#useful-links .links-box .links-item a img {
    transition: all 1s linear;
}

#useful-links .links-box .links-item a:hover img {
    transform: scale(1.06);
}

#useful-links .links-box .links-item a::before,
#useful-links .links-box .links-item a::after {
    content: '';
    background-color: rgba(190, 0, 32, 0.8);
    width: 94%;
    height: 47%;
    position: absolute;
    left: 3%;
    z-index: 1;
    opacity: 0;
    transition: all 0.3s ease-out;
}

#useful-links .links-box .links-item a::before {
    top: -50%;
}

#useful-links .links-box .links-item a::after {
    bottom: -50%;
}

#useful-links .links-box .links-item a:hover::before {
    opacity: 1;
    top: 3%;
}

#useful-links .links-box .links-item a:hover::after {
    opacity: 1;
    bottom: 3%;
}

#useful-links .links-box .links-item .links-info {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    width: 100%;
    height: 100%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transform: rotate(90deg);
    opacity: 0;
    transition: all 0.1s;
}

#useful-links .links-box .links-item a:hover .links-info {
    transition: all 0.35s;
    transition-delay: 0.1s;
    opacity: 1;
    transform: rotate(0deg);
}

#useful-links .links-box .links-item .links-info h3 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #fff;
    text-align: center;
}

#useful-links .links-box .links-item .links-info span {
    width: 40px;
    height: 40px;
    line-height: 42px;
    border-radius: 50%;
    background: #fff;
    text-align: center;
    transition: all 0.3s;
}

#useful-links .links-box .links-item .links-info span:hover {
    background: #0073a0;
}

#useful-links .links-box .links-item .links-info span i {
    color: #242424;
    font-size: 17px;
}

#useful-links .links-box .links-item .links-info span:hover i {color: #fff;}

/* ===============================
    Content Section Begin Here
=============================== */
.content-sec {
    padding: 30px 0;
}

.content-sec .content-box p, .content-sec .content-box ul li {
    font-family: 'Maitree', serif;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 25px;
    color: #343434;
}

.content-sec .content-box h1, .content-sec .content-box h2 {
    font-family: 'PT Serif', serif;
    font-weight: 600;
    font-size: 30px;
    margin: 0;
    margin-bottom: 40px;
}

.content-sec .content-box h2 {
    font-size: 25px;
    margin-bottom: 25px;
}

.content-box .right-thumb, .content-box .left-thumb {
    border-radius: 10px;
    padding: 13px;
    margin-bottom: 30px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

.content-box .right-thumb {
    margin-left: 20px;
    float: right;
}
.content-box .left-thumb {
    margin-right: 20px;
    float: left;
}

/* ===============================
    Gallery Begin Here
=============================== */
#gallery {
    padding: 30px 0;
}

.gallery-box {
    display: flex;
    flex-wrap: wrap;
}

.gallery-box .gallery-item {
    width: calc(33.33% - 14px);
    margin-right: 20px;
    margin-bottom: 20px;
}

.gallery-box .gallery-item:nth-child(3n) {margin-right: 0;}

.gallery-box .gallery-item a {
    display: block;
    transition: all 0.4s;
}

.gallery-box .gallery-item a:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
}

/* ===============================================
    Contact Section Start
=============================================== */
.form-box {
    background: #e4ebf3;
    padding: 30px 40px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.form-box p {font-size: 18px; text-align: center;}

.form-box .form-group {
    margin-bottom: 15px;
}

.form-box .form-group input, .form-box .form-group textarea {
    border-radius: 0 !important;
    font-size: 17px;
    padding: 7px 13px;
    font-family: 'Merriweather', serif;
}

.form-box .form-group textarea {
    resize: none;
}

.submit-btn {
    font-family: 'Merriweather', serif;
    display: inline;
    color: #fff;
    background: #3376ce;
    border-radius: 3px;
    border: none !important;
    font-size: 20px;
    padding: 5px 15px;
    padding-top: 6px;
    margin-top: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #1966ca;
}

.form-detail {
    background-color: #e4ebf3;
    padding: 40px;
}

.form-detail h2 {
    font-family: 'PT Serif', serif;
    font-weight: 600;
    font-size: 26px;
    letter-spacing: 1px;
    color: #274b76;
    margin-bottom: 20px;
}

.form-detail ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.form-detail ul li {
    display: block;
    padding: 0;
    margin-bottom: 6px;
    font-size: 17px;
    font-family: 'Maitree', serif;
}

.form-detail ul li a {
    text-decoration: none;
}

/* ===============================
    Brief Section Begin Here
=============================== */
.brief-note {
    padding: 90px 0;
}

.brief-note .brief-txt p {
    color: #131313;
    margin: 0;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 30px;
    line-height: 32px;
    text-align: center;
}

.brief-note .brief-box {
    margin-left: 20px;
    position: relative;
}

.brief-note .brief-box img {
    margin-top: -20px;
    border-left: 4px solid #fff;
    border-bottom: 3px solid #fff;
}

.brief-note .brief-box::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 95%;
    transform: translate(-10px , 10px);
    background: #f00;
    z-index: -1;
}

/* ===============================
    About Brief Begin Here
=============================== */
.about-brief {
    padding: 70px 0;
    background-color: #191944;
}

.about-brief .about-thumb {
    position: relative;
    overflow: hidden;
}

.about-brief .about-thumb img {
    max-width: 60%;
    position: relative;
}

.about-brief .about-thumb::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to right, transparent, #191944 55%);
    z-index: 1;
}

.about-brief .about-thumb .about-txt .more-btn {
    position: static;
}

.about-brief .about-thumb .about-txt .more-btn a{
    transition: all 0.4s;
}

.about-brief .about-thumb .about-txt .more-btn a:hover {
    background-color: #e67817;
}

.about-brief .about-thumb .about-txt {
    position: absolute;
    top: 50%;
    left: 43%;
    transform: translateY(-50%);
    z-index: 9;
}

.about-brief .about-thumb .about-txt h2 {
    color: #fff;
    font-weight: bold;
    font-size: 40px;
    margin: 0;
    margin-bottom: 15px;
}

.about-brief .about-thumb .about-txt p {
    color: #e67817;
    font-size: 20px;
    margin-bottom: 40px;
}

/* -----------------------------------------------------
    Review Section Begin Here
----------------------------------------------------- */
#public-review {
    padding-top: 60px;
    padding-bottom: 30px;
}

#public-review .review-slide-hd {
    display: inline-block;
    font-family: 'PT Serif', serif;
    font-weight: 600;
    font-size: 32px;
    letter-spacing: 1px;
    color: #f00;
    padding-bottom: 7px;
    margin-bottom: 40px;
    margin-top: 0;
    position: relative;
}

#public-review .review-slide-hd::after {
    content: "";
    background: #1a1a1a;
    width: 80%;
    height: 4px;
    position: absolute;
    top: 100%;
    left: 0;
    border-radius: 40%;
}

#public-review .item {
    padding: 45px 0;
}

#public-review .owl-carousel {
    position: relative;
}

#public-review .owl-carousel .owl-nav button.owl-next,
#public-review .owl-carousel .owl-nav button.owl-prev {
    background: 0;
    color: #818181;
    border: 1px solid #818181;
    border-radius: 5px;
    outline: none;
    padding: 0!important;
    font-size: 20px !important;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.5s linear;
    position: absolute;
    top: calc(50% - 20px);
    height: 40px;
    width: 40px;
    line-height: 40px;
    border-radius: 50%;
}

#public-review .owl-carousel .owl-nav button.owl-next {
    right: -43px !important;
}

#public-review .owl-carousel .owl-nav button.owl-prev {
    left: -43px !important;
}

#public-review .owl-carousel:hover .owl-nav button.owl-next,
#public-review .owl-carousel:hover .owl-nav button.owl-prev {
    opacity: 1;
    transition: opacity 0.5s linear;
}

.customer-content {
    height: 220px;
    width: 85%;
    border: 1px solid #b6d5e3;
    border-radius: 3px;
    margin: 0 auto;
    position: relative;
}

.customer-content::before {
    font-family: 'FontAwesome';
    content: "\f10d";
    font-size: 220px;
    position: absolute;
    top: 0;
    right: 10px;
    z-index: -1;
    color: #ecf2f3;
    line-height: 100%;
}

.customer-content img {
    position: absolute;
    top: 40%;
    left: -35px;
    transform: translateY(-50%);
    width: 127px !important;
    height: 147px !important;
    float: left;
}

.customer-content .customer-txt {
    float: left;
    margin-left: 95px;
    padding: 20px;
}

.customer-content .customer-txt p {
    font-size: 18px;
    font-family: sans-serif;
    line-height: 28px;
    color: #022140;
    margin-bottom: 25px;
}

.customer-content .customer-txt h2 {
    display: inline-block;
    font-size: 20px;
    margin: 0;
    padding-left: 30px;
    color: #363636;
    font-family: 'Maitree', serif;
    font-weight: 600 !important;
    position: relative;
}

.customer-content .customer-txt h2::before {
    content: "";
    width: 20px;
    height: 2px;
    background: #363636;
    position: absolute;
    top: 50%;
    left: 0;
}

/* -----------------------------------------------------
    Useful Links Section Begin Here
----------------------------------------------------- */
.useful-links-sec {
    padding-top: 60px;
    padding-bottom: 60px;
}

.useful-links-sec .more-btn {
    display: block;
    text-align: center;
    margin-top: 60px;
}

.useful-links-sec .more-btn a {
    text-decoration: none;
    color: #fff;
    background: #2f527d;
    border-radius: 5px;
    font-size: 20px;
    padding: 10px 25px;
    transition: all 0.4s;
}

.useful-links-sec .more-btn a:hover {
    background: #062c5a;
}

.useful-links-sec h2 {
    margin-bottom: 30px;
    font-size: 28px;
    font-family: 'PT Serif', serif;
    text-align: center;
    color: #e67817;
}

.useful-links-sec .links-box {
    display: flex;
}

.useful-links-sec .links-box .links-single {
    margin-right: 30px;
}


.useful-links-sec .links-box .links-single a {
    text-decoration: none;
    display: block;
    box-shadow: inset 0px 0px 20px rgb(192 221 233);
    padding: 10px;
}

.useful-links-sec .links-box .links-single:last-child {
    margin-right: 0;
}

.useful-links-sec .links-box .links-single .links-thumb {
    overflow: hidden;
    border-radius: 5px 5px 0 0;
}

.useful-links-sec .links-box .links-single .links-thumb img {
    transition: all 0.9s;
}

.useful-links-sec .links-box .links-single:hover .links-thumb img {
    transform: scale(1.05);
}

.useful-links-sec .links-box .links-single .link-title {
    margin-bottom: 10px;
    margin-top: 25px;
    font-size: 17px;
    font-weight: 500;
    font-family: 'Raleway', sans-serif;
    color: #0a48a5;
}

/* -----------------------------------------------------
	Partners Begin
----------------------------------------------------- */
.partners {
	padding: 80px 0;
}

.partners .partners-list {
    list-style: none;
    margin: 0;
    padding: 0;
	display: flex;
	flex-wrap: nowrap;
	text-align: center;
}

.partners .partners-list li {
	width: 20%;
}

/* -----------------------------------------------------
	Info Graphics Begin
----------------------------------------------------- */
#infographics {
    padding: 50px 0;
}

#infographics h2 {
    margin-bottom: 35px;
    font-size: 30px;
    font-family: 'PT Serif', serif;
    font-weight: 600;
    text-align: center;
    color: #191944;
}

#infographics .infographics-filter {
    list-style: none;
    padding: 0;
    margin: 0 0 50px;
    display: inline-block;
}

#infographics .infographics-filter>li {
    float: left;
    display: block;
}

#infographics .infographics-filter>li a {
    display: block;
    padding: 7px 15px;
    background: #e5e5e5;
    color: #64686d;
    position: relative;
}

#infographics .infographics-filter>li a:hover,
#infographics .infographics-filter>li a.active {
    background: #45aed6;
    color: #fff;
    box-shadow: 0 -3px 0 0 #318daf inset;
    -webkit-box-shadow: 0 -3px 0 0 #318daf inset;
}

#infographics .infographics-filter>li a.active:after {
    content: " ";
    position: absolute;
    bottom: -17px;
    left: 50%;
    margin-left: -10px;
    border-width: 10px;
    border-style: solid;
    border-color: #318daf transparent transparent transparent;
}

#infographics .infographics-filter>li:first-child a {
    border-radius: 4px 0 0 4px;
}

#infographics .infographics-filter>li:last-child a {
    border-radius: 0 4px 4px 0;
}

#infographics .infographics-items {
    margin: -15px;
}

#infographics .infographics-item {
    width: 24.9%;
    float: left;
    padding: 15px;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    transform: scale(1);
    transition: all 0.3s;
    overflow: hidden;
}

#infographics .infographics-item:hover {transform: scale(1.1);}

#infographics .infographics-item .infographics-item-inner {
    position: relative;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

#infographics .infographics-item .infographics-item-inner .infographics-info {
    opacity: 0;
    transition: opacity 400ms;
    -webkit-transition: opacity 400ms;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
}

#infographics .infographics-item .infographics-item-inner .infographics-info h3 {
    font-size: 16px;
    line-height: 1;
    margin: 0;
    color: #fff;
}

#infographics .infographics-item .infographics-item-inner .infographics-info .preview {
    position: absolute;
    top: -18px;
    right: 12px;
    border-radius: 50%;
    background-image: -webkit-gradient(linear, left top, right top, from(#2caab3), to(#2c8cb3));
    background-image: linear-gradient(90deg, #2caab3 0%, #2c8cb3 100%);
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    color: #fff;
    box-shadow: 0 0 0 2px #fff;
    -webkit-box-shadow: 0 0 0 2px #fff;
}

#infographics .infographics-item:hover .infographics-info {
    opacity: 1;
}

/* -----------------------------------------------------
	Info Graphics Begin
----------------------------------------------------- */
.footer {
    margin-top: 30px;
    padding-top: 60px;
    background-image: url(../images/footer-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.footer .fotr-logo {
    width: 70%;
    margin-bottom: 25px;
}

.footer .fotr-brief {
    margin-bottom: 0;
    color: #cacaca;
    font-size: 17px;
}

.footer .fotr-list {
    list-style: none;
    margin: 0;
}

.footer .fotr-list li {
    display: block;
    margin-bottom: 8px;
}

.footer .fotr-list li a {
    text-decoration: none;
    color: #cacaca;
    font-size: 15px;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
}

.footer .fotr-list li a:hover {
    text-decoration: underline;
}

.footer .foter-social {
    margin-top: 40px;
}

.footer .foter-social span {
    display: block;
    color: #ccc;
    font-family: 'Raleway', sans-serif;
    font-style: italic;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

.footer .foter-social ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.footer .foter-social ul li {
    margin-bottom: 15px;
    width: 16.5%;

}

.footer .foter-social ul li:last-child {margin: 0;}

.footer .foter-social ul li a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    color: #f4f4f4;
    background-color: #2464b1;
    text-align: center;
    border-radius: 5px;
    display: block;
    transition: all 0.3s;
}

.footer .foter-social ul li a:hover {
    transform: translateY(-3px);
    background-color: #fff;
    color: #2464b1;
}

.footer .copy-right {
    margin-top: 70px;
    background-color: #0b1830;
}

.footer .copy-right p {
    color: #ccc;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    padding: 15px 0;
    margin-bottom: 0;
}