@font-face {
    font-family:"Agrandir WideMedium";
    src:url("../fonts/agrandir-variable/Agrandir-WideMedium.woff2") format("woff2"),url("../fonts/agrandir-variable/Agrandir-WideMedium.woff") format("woff"),url("https://happimess.lt/wp-content/themes/happimess/fonts/agrandir-variable/Agrandir-WideMedium.otf") format("opentype");
    font-style:normal;
    font-weight:400;
}

/* Reset */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1.5;
	font-family: 'Montserrat', sans-serif;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

.layouts-title {
	font-size: 26px;
	margin:15px 0px;
}

.layouts ul li {
	margin-bottom:5px;
}

.layouts ul li a {
	font-size: 17px;
	display: inline-block;
	padding:3px 10px;
}

.layouts ul li a:hover {
	background:#000;
	color:#fff;
}

/* -- END RESET -- */

.column:last-child:not(:first-child), .columns:last-child:not(:first-child) {
    float: left;
}

.row {
    max-width: 1720px;
}

/* -- main styles -- */

.nopad {
	padding:0px;
}

.nopadleft {
	padding-left:0px;
}

.nopadright {
	padding-right:0px;
}

strong {
	font-weight: bold;
}

i {
	font-style: italic;
}

em {
	font-style: italic;
}

.clear {
	clear:both;
}

.left {
	float:left;
	margin-right:15px;
	margin-bottom:15px;
}

.right {
	float:right;
	margin-left:15px;
	margin-bottom:15px;
}

.alignleft {
	float:left;
	margin-right:15px;
	margin-bottom:15px;
}

.alignright {
	float:right;
	margin-left:15px;
	margin-bottom:15px;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.wp-caption {
    margin-bottom: 15px;
}


.invi {
	visibility: hidden;
	opacity: 0;
}

/* preloader */

.preloader {
    display: inline-block;
	width: 25px;
	height: 25px;
	border: 3px solid hsla(0,0%,100%,.3);
    border-top-color: rgba(255, 255, 255, 0.3);
    border-right-color: rgba(255, 255, 255, 0.3);
    border-bottom-color: rgba(255, 255, 255, 0.3);
    border-left-color: rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	border-top-color: #ccc !important;
	-webkit-animation: a 1s ease-in-out infinite;
	animation: a 1s ease-in-out infinite;
	z-index: 50;
}

@-webkit-keyframes a {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}
@keyframes a {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

/*   hamburger   */

.hamburger {
    font: inherit;
    display: inline-block;
    overflow: visible;
	margin: 0;
	padding: 0;
    cursor: pointer;
    transition-timing-function: linear;
    transition-duration: .15s;
    transition-property: opacity, filter;
    text-transform: none;
    color: inherit;
    border: 0;
    background-color: transparent;
	float: right;

	display: none;
}

.hamburger:hover {
    opacity: 1;
}

.hamburger-box {
    position: relative;
    display: inline-block;
    width: 28px;
    height: 20px;
    float: right;
}

.hamburger-inner {
    top: 50%;
    display: block;
    margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
	border-radius: 2px;
    position: absolute;
    width: 28px;
    height: 2px;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform;
    background-color: #746f6c;
}

.hamburger-inner:after,
.hamburger-inner:before {
    display: block;
    content: "";
}

.hamburger-inner:before {
    top: -7px;
}

.hamburger-inner:after {
    bottom: -7px;
}

.hamburger--squeeze .hamburger-inner {
    transition-timing-function: cubic-bezier(.55, .055, .675, .19);
    transition-duration: 75ms;
}

.hamburger--squeeze .hamburger-inner:before {
    transition: top 75ms ease .12s, opacity 75ms ease;
}

.hamburger--squeeze .hamburger-inner:after {
    transition: bottom 75ms ease .12s, transform 75ms cubic-bezier(.55, .055, .675, .19);
}

.hamburger--squeeze.is-active .hamburger-inner {
    transition-delay: .12s;
    transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    transform: rotate(45deg);
}

.hamburger--squeeze.is-active .hamburger-inner:before {
    top: 0;
    transition: top 75ms ease, opacity 75ms ease .12s;
    opacity: 0;
}

.hamburger--squeeze.is-active .hamburger-inner:after {
    bottom: 0;
    transition: bottom 75ms ease, transform 75ms cubic-bezier(.215, .61, .355, 1) .12s;
    transform: rotate(-90deg);
}


/*main start*/

body {
    background-size: cover!important;
}

.main-header-container {
    position: fixed;
    top: 50px;
    left: 50px;
    bottom: 50px;
    z-index: 55;
    overflow: auto;
}

.main-header-container.nav-down {
    animation: nav-down 0.4s ease-out both;
}

.main-header-container.nav-up {
    animation: nav-up 0.4s ease-out both;
}

.main-header::-webkit-scrollbar {
    display: none;
}

.main-header {
    background: #D65C94;
    position: relative;
    border-radius: 20px;
    width: 45vw;
    max-width: 866px;
    height: 100%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: auto;
    -ms-overflow-style: none;
    font-family: "Agrandir WideMedium", sans-serif;
}

body.kas-mes .main-header {
    background: #D65C94;
}

body.kas-mes.inner .mobile-hamburger svg path {
    stroke: #D65C94
}

.header-logo a {
    display: inline-block;
    transition: 0.2s;
}

.header-logo a:hover {
    opacity: 0.8;
}

.header-nav-container {
    margin-bottom: 50px;
}

.header-nav ul li {
    margin-bottom: 45px;
    position: relative;
}

.header-nav ul li:last-child {
    margin-bottom: 0;
}

.header-nav ul li a {
    display: inline-block;
    position: relative;
    font-size: 28px;
    color: #fff;
    line-height: 1.3;
    text-transform: uppercase;
    padding-left: 22px;
    transition: 0.2s;
}

.header-nav ul li a:hover {
    opacity: 0.8;
}

.header-nav ul li a:hover:before {
    left: 5px;
}

.header-nav ul li a:before {
    content: '';
    background: url("https://happimess.lt/wp-content/themes/happimess/img/arrow-right.svg") no-repeat;
    background-size: contain!important;
    height: 20px;
    width: 10px;
    position: absolute;
    left: 0;
    top: 5px;
    transition: 0.2s;
}

.header-nav ul li a:after {
    content: '';
    background: url("../img/arrow-line.svg") no-repeat;
    background-size: cover!important;
    min-height: 1px;
    width: 0;
    position: absolute;
    left: 0;
    top: 14px;
    transition: 0.2s;
}

.header-nav ul li.item-to-load a:before {
    left: 70px;
}

.header-nav ul li.item-to-load a:after {
    width: 80px;
}

.header-nav ul li.item-to-load a {
    padding-left: 92px!important;
    transition: 0.2s;
}



body.prisidek .header-nav ul li.current-page-ancestor a:before {
    background: url("https://happimess.lt/wp-content/themes/happimess/img/arrow-right.svg") no-repeat;
    width: 10px;
    left: 0;
}

body.prisidek .header-nav ul li.current-page-ancestor a:after {
    width: 0;
    left: 0;
}

body.prisidek .header-nav ul li.current-page-ancestor a {
    padding-left: 22px;
}

body.single-naujiena .header-nav ul li.menu-item-207 a:before,
body.single-darbas .header-nav ul li.menu-item-208 a:before,
.header-nav ul li.current-menu-item a:before,
.header-nav ul li.current-page-ancestor a:before {
  left: 70px;
}

body.single-naujiena .header-nav ul li.menu-item-207 a:after,
body.single-darbas .header-nav ul li.menu-item-208 a:after,
.header-nav ul li.current-menu-item a:after,
.header-nav ul li.current-page-ancestor a:after {
    width: 80px;
}

body.single-naujiena .header-nav ul li.menu-item-207 a,
body.single-darbas .header-nav ul li.menu-item-208 a,
.header-nav ul li.current-menu-item a,
.header-nav ul li.current-page-ancestor a {
    padding-left: 92px;
}

.header-bottom-nav ul li {
    display: inline-block;
    width: 32%;
    float: left;
    margin-right: 2%;
}

.header-bottom-nav ul li:last-child {
    margin-right: 0;
}

.header-bottom-nav ul li a {
    display: inline-block;
    color: #fff;
    transition: 0.2s;
    border-bottom: 2px solid transparent;
    font-size: 24px;
}

.header-bottom-nav ul li a:hover {
    opacity: 0.8;
}

.header-bottom-nav ul li:nth-child(3n) {
    text-align: right;
}

body.single-naujiena .header-bottom-nav ul li#menu-item-17 a,
body.single-darbas .header-bottom-nav ul li#menu-item-17 a,
body.archive.veikla .header-bottom-nav ul li#menu-item-17 a,
.header-bottom-nav ul li.current-menu-item a,
.header-bottom-nav ul li.current-page-ancestor a {
    border-bottom: 2px solid #fff;
}

.header-title {
    font-size: 70px;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.64;
    margin-bottom: 45px;
}

.mobile-header-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
}

.mobile-header {
    padding-top: 27px;
}

.mobile-logo img {
    max-height: 20px;
}

body.inner .mobile-header .logo-white {
    display: none;
}

body.inner .mobile-header .logo-color {
    display: block;
}

.mobile-header .logo-white {
    display: block;
}

.mobile-header .logo-color {
    display: none;
}

.mobile-hamburger svg path {
    stroke: #fff;
}

.mobile-menu-container {
    display: none;
    position: fixed;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    background: #D65C94;
    z-index: 60;
}

.menu-close {
    position: absolute;
    top: 27px;
    right: 25px;
}

.mobile-menu {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 0 45px;
}

.mobile-menu ul li a{
    font-size: 30px;
    color: #fff;
    text-transform: uppercase;
    transition: 0.2s;
    font-family: "Agrandir WideMedium", sans-serif;

}

.mobile-menu ul li a:hover {
    opacity: 0.8;
}

.mobile-menu ul li {
    margin-bottom: 25px;
}

.main-content {
    padding: 240px 0 70px 13.5%;
    animation: fade-in 1s ease-out both;
}

.main-content.fade-out {
    animation: fade-out 1s ease-out both;
}


/*team*/

.team-list ul li {
    width: 37%;
    float: left;
    margin-right: 12%;
    text-align: center;
    margin-bottom: 80px
}

.team-list ul li:nth-child(2n) {
    margin-right: 0;
}

.team-list ul li:nth-child(2n+1) {
    clear: both;
}

.team-list ul li:first-child .team-img {
    border: 1px solid #A8A8A8;
}

.team-img {
    background-size: cover !important;
    padding-bottom: 57%;
    width: 158px;
    height: 158px;
    margin: auto auto 40px;
    border-radius: 10px;
}

.team-position {
    color: #D65C94;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
}

.team-name {
    color: #D65C94;
    font-size: 22px;
    line-height: 1.18;
    font-family: "Agrandir WideMedium", sans-serif;
}

/*sponsors*/

.sponsors-wrap {
    padding: 0 6% 0 7% ;
}

.section-title {
    font-family: "Agrandir WideMedium", sans-serif;
    font-size: 26px;
    color: #D65C94;
    font-weight: 500;
    line-height: 1.27;
    margin-bottom: 35px;
}

.main-sponsor-list {
    padding-top: 25px;
    margin-bottom: 135px;
}

.main-sponsor-list ul li {
    margin-bottom: 30px;
    width: 44%;
}

.main-sponsor-list ul li a img {
    max-height: 100px;
}

.main-sponsor-list ul li:last-child {
    margin-bottom: 0;
}

.main-sponsor-list ul li a {
    display: inline-block;
    transition: 0.2s;
}

.main-sponsor-list ul li a:hover {
    opacity: 0.8;
}

.sponsor-list ul {
    display: flex;
    flex-wrap: wrap;
}

.sponsor-list ul li {
    float: left;
    width: 30%;
    margin-right: 5%;
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    justify-content: center;
}

.sponsor-list ul li a {
    display: block;
    transition: 0.2s;
}

.sponsor-list ul li a img {
    max-width: 100%;
    max-height: 145px;
}

.sponsor-list ul li a:hover {
    opacity: 0.8;
}

.sponsor-list ul li:nth-child(3n) {
    margin-right: 0;
}

/*our work*/

body.veikla .main-header {
    background: #F2AC0D;
}

body.veikla.inner .mobile-hamburger svg path {
    stroke: #F2AC0D
}

body.veikla .mobile-menu-container {
    background: #F2AC0D;
}



/*initiatives*/
.main-container {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    background-size: cover!important;
    animation: fade-in 1s ease-out both;
}

.bg-inner {
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -100px;
    background-size: cover!important;
}

.our-work .bg-inner.layer-3 {
    top: 150px;
    bottom: -150px;
}

.main-container.fade-out {
    animation: fade-out 1s ease-out both;
}

.main-container.initiatives {
    background: #223478;
}

.main-container.initiatives .entry h3,
.main-container.about-shop .entry h3 {
    color: #fff;
}

.main-container.initiatives .entry p,
.main-container.about-shop .entry p {
    color: #fff;
}

.main-container.initiatives .entry > ul > li,
.main-container.about-shop .entry > ul > li {
    color: #fff;
    margin-bottom: 5px;
}


.our-work-img-container {
    position: relative;
    left: -20%;
    margin-bottom: 130px;
    margin-top: 90px;
}

.our-work-img-list ul {
    display: flex;
}

.our-work-img-list ul li {
    min-width: 76.4%;
    float: left;
    margin-right: 10%;
}

.our-work-img {
    border-radius: 10px;
    background-size: cover!important;
    padding-bottom: 75%;
}


.our-work-img-bottom {
    position: relative;
    right: -150px;
    border-radius: 10px;
    padding-bottom: 55%;
    background-size: cover!important;
    margin-top: 130px;
    margin-bottom: 150px;
}

/*news*/

body.veikla.inner .main-content {
    padding-top: 100px;
}


.news-list ul li {
    width: 46%;
    margin-right: 8%;
    float: left;
    margin-bottom: 100px;
}

.news-list ul li:nth-child(2n){
    margin-right: 0;
}

.news-list ul li a {
    display: block;
    transition: 0.2s;
}

.news-list ul li a:hover {
    opacity: 0.8;
}

.item-img {
    background-size: cover!important;
    padding-bottom: 79%;
    border-radius: 10px;
    margin-bottom: 45px;
    transition: 0.2s;
}

.item-title {
    color: #F2AC0D;
    font-size: 22px;
    line-height: 1.45;
    margin-bottom: 21px;
    font-family: "Agrandir WideMedium", sans-serif;
}

.product-info .item-title {
    text-decoration: underline;
}

.item-excerpt {
    font-size: 20px;
    color: #4E4E4E;
    margin-bottom: 21px;
}

.read-more {
    color: #F2AC0D;
    text-decoration: underline;
    font-size: 20px;
    transition: 0.2s;
}

.news-list ul li a:hover .read-more{
    text-decoration: none;
}


/*news single*/

.news-top-img {
    background-size: cover!important;
    padding-bottom: 53%;
    border-radius: 10px;
    position: relative;
    left: -12%;
    top: -30px;
    animation: zoom-in 0.5s ease-out both;
}

/*products*/

.product-list ul li {
    width: 46%;
    margin-right: 8%;
    float: left;
    margin-bottom: 100px;
}

.product-list ul li:nth-child(2n){
    margin-right: 0;
}

.product-list ul li a {
    display: block;
    transition: 0.2s;
}

.product-list ul li a:hover {
    opacity: 0.8;
}


.product-list ul li a:hover .item-img,
.news-list ul li a:hover .item-img {
    transform: scale(1.1);
}

.item-author {
    font-size: 20px;
    color: #4E4E4E;
    margin-bottom: 0;
}

.product-item .product-title {
    color: #F2AC0D;
    font-size: 22px;
    text-decoration: underline;
    font-family: "Agrandir WideMedium", sans-serif;
}

/*products single*/

.product-img {
    background-size: cover!important;
    padding-bottom: 59%;
    border-radius: 10px;
    margin-top: -30px;
}

.products-single .news-top-img {
    left: auto;
}

/*join us*/

body.prisidek .main-header {
    background: #40A452;
}

body.prisidek .mobile-menu-container {
    background: #40A452;
}

body.prisidek.inner .mobile-hamburger svg path {
    stroke: #40A452;
}

/*contacts*/
.main-container.contacts-page .main-content {
    padding-top: 100px
}

.contacts-left ul li {
    font-size: 20px;
    line-height: 1.65;
    font-weight: 400;
    color: #3C3C3B;
    margin-bottom: 60px;
}

.contacts-left ul li span {
    color: #40A452;
}

.contacts .entry p span {
    color: #40A452;
}

.contacts-left ul li a {
    color: #3C3C3B;
    transition: 0.2s;
}

.contacts-left ul li a:hover {
    opacity: 0.8;
}

.contacts-right {
    padding-left: 15%;
    position: relative;
    padding-bottom: 250px;
}

.social-container {
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 362px;
}

.social-block {
    background: url("../img/social-bg.png") no-repeat;
    background-size: cover!important;
    padding-bottom: 61%;
    position: relative;
}

.social-block-inner {
    position: absolute;
    left: 20%;
    top: 30%;
    width: 100%;
}

.social-text {
    color: #fff;
    font-size: 26px;
    margin-bottom: 13px;
    font-family: "Agrandir WideMedium", sans-serif;
}

.social-list ul li {
    display: inline-block;
    margin-right: 10%;
}

.social-list ul li:last-child {
    margin-right: 0;
}

.social-list ul li a {
    display: inline-block;
    transition: 0.2s;
}

.social-list ul li a:hover {
    opacity: 0.8;
}



/*entry*/

.entry-wrap {
    padding: 0 10% 0 6%;
}

.entry-wrap.nopadleft {
    padding-left: 0;
}

.entry h3 {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.27;
    margin-bottom: 35px;
    font-family: "Agrandir WideMedium", sans-serif;
}

body.kas-mes.inner .entry h3 {
    color: #D65C94;
}

body.veikla.inner .entry h3 {
    color: #F2AC0D;
}

body.prisidek .entry h3{
    color: #40A452;
}

.locations {
    padding-left: 11%;
    padding-right: 15%;
}

.locations ul li {
    font-size: 20px;
    margin-bottom: 40px;
}

.location-list {
    margin-bottom: 150px;
}

.donation-box-list {
    padding-right: 40px;
}

.main-content.lowpadtop {
    padding-top: 100px;
}

/*about-shop*/

.main-container.about-shop {
    background-attachment: fixed!important;
}

/*entry*/

.entry.donation-method-list > ul > li:before {
    margin-right: 70px;
}

.entry.donation-method-list > ul > li a {
    color: #40A452;
    text-decoration: underline;
    transition: 0.2s;
}

.entry.donation-method-list > ul > li a:hover {
    opacity: 0.8;
    text-decoration: none;
}

.entry p {
    font-size: 20px;
    line-height: 1.65;
    color: #3C3C3B;
    font-weight: 400;
    margin-bottom: 35px;
}

.entry p a {
    color: inherit;
    transition: 0.2s;
}

.entry p a:hover {
    opacity: 0.8;
}

.entry p img {

    width: 114%;
    max-width: none;
    margin-left: -7%;
    margin-top: 120px;
    margin-bottom: 120px;
    border-radius: 10px;
}

.products-single .entry p img {
    max-width: 100%;
    margin-left: 0;
    position: relative;
    right: -30%;
}

.entry > ul > li {
    font-size: 20px;
    line-height: 1.65;
    font-weight: 400;
    margin-bottom: 40px;
}

.entry > ul > li:before {
    content: "- ";
}

/*updated links css*/

.our-work-links a {
    display: inline-block;
    font-size: 45px;
    color: #fff;
    line-height: 1.1;
    transition: 0.2s;
    position: relative;
    font-family: "Agrandir WideMedium", sans-serif;
}

.our-work-links a:hover {
    opacity: 0.8;
}

.our-work-links .top-link {
    position: absolute;
    top: 25%;
    right: 19%;
    z-index: 4;
}

.our-work-links .top-link a:after {
    content:'';
    background: url("../img/star.png") no-repeat center center;
    background-size: cover!important;
    height: 720px;
    width: 720px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-45%, -55%);
    z-index: -1;
}

.our-work-links .bottom-link {
    position: absolute;
    bottom: 15%;
    right: 15%;
    z-index: 5;
}

.our-work-links .bottom-link a:after {
    content:'';
    background: url("https://happimess.lt/wp-content/themes/happimess/img/heart.png") no-repeat center center;
    background-size: cover!important;
    height: 720px;
    width: 720px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-55%, -55%);
    z-index: -1;
}

/*updated*/

/*cookies*/

.cc_container {
    left: 40px!important;
    right: 40px!important;
    width: auto!important;
    font-family: "Agrandir WideMedium", sans-serif;
    padding-top: 30px!important;
    padding-bottom: 30px!important;
    padding-right: 55px!important;
}

.cc_container .cc_logo {
    display: none!important;
}

.cc_container .cc_btn {
    width: 35px!important;
    height: 35px!important;
    color: #fff!important;
    padding: 0!important;
    padding-top: 8px!important;
    background-color: #D65C94!important;
    left: auto!important;
    right: 15px!important;
    top: 20px!important;
    font-size: 16px!important;
}

body.kas-mes .entry strong {
    color: #D65C94;
}

body.veikla .entry strong {
    color: #F2AC0D;
}

body.prisidek .entry strong {
    color: #40A452;
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

}

@keyframes fade-out {
    0% {
        opacity: 1;
    }
    100% {
    opacity: 0;
    }
}

@keyframes zoom-in {
    0%  {
        transform: scale(0.5);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes nav-down {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(50%);
    }
}

@keyframes nav-up {
    0% {
        transform: translateY(50%);
    }

    100% {
        transform: translateY(0);
    }
}


@media only screen and (min-width: 1921px) {
    .main-header-container {
     left: calc((100vw - 1920px)/2);
    }
}

@media only screen and (max-width: 1800px) {
    .row {
        padding: 0 20px;
    }

    .main-header-container {
        left: 20px;
    }

    .our-work-links a {
        font-size: 38px;
    }

    .our-work-links .top-link a:after,
    .our-work-links .bottom-link a:after {
        height: 600px;
        width: 600px;
    }


}

@media only screen and (max-width: 1500px) {
    .our-work-links a {
        font-size: 28px;
    }

    .our-work-links .top-link a:after,
    .our-work-links .bottom-link a:after {
        height: 450px;
        width: 450px;
    }


    .location-list {
        margin-bottom: 70px;
    }

    .main-content {
        padding: 120px 0 70px 6.8%;
    }

    .header-title {
        font-size: 60px;
        margin-bottom: 35px;
    }

    .header-nav ul li a {
        font-size: 24px;
    }

    .header-nav ul li {
        margin-bottom: 30px;
    }

    .header-nav-container {
        margin-bottom: 30px;
    }

}


@media only screen and (max-width: 1200px) {
    .header-title {
        font-size: 50px;
    }
    .header-nav ul li a {
        font-size: 20px;
    }

    .header-nav ul li a:before {
        top: 2px;
    }
    .header-nav ul li a:after {
        top: 11px;
    }

    .header-bottom-nav ul li a {
        font-size: 18px;
    }

    .contacts-right {
        padding-left: 10%;
        padding-bottom: 200px;
    }



}


@media only screen and (max-width: 1023px) {

    .main-header {
        padding: 30px;
    }

    .header-title {
        font-size: 40px;
    }

    .header-nav ul li a {
        font-size: 16px;
    }

    .header-bottom-nav ul li a {
        font-size: 14px;
        padding-right: 5px;
    }

    .main-content {
        padding-top: 100px;
    }

   .main-container.about-shop {
        background: #CE472C!important;
    }

    .team-img {
        width: auto;
        height: auto;
        padding-bottom: 100%;
    }

    .team-position {
        font-size: 16px;
    }

    .team-name {
        font-size: 18px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .our-work-links a {
        font-size: 18px;
    }

    .our-work-links .top-link a:after,
    .our-work-links .bottom-link a:after  {
        width: 300px;
        height: 300px;
    }

    .our-work-links .bottom-link {
        bottom: 30%;
    }

    .our-work-links .top-link {
        top: 30%;
    }

    .news-list ul li {
        width: 100%;
        margin-right: 0;
    }

    .product-list ul li {
        width: 100%;
        margin-right: 0;
    }

    .item-img {
        margin-bottom: 30px;
    }

    .item-title {
        font-size: 20px;
    }

    .item-excerpt {
        font-size: 18px;
    }

    .item-author {
        font-size: 18px;
    }

    .read-more {
        font-size: 18px;
    }

    .product-item .product-title {
        font-size: 18px;
    }

    .product-img {
        margin-top: 75px;
        margin-left: -40px;
    }

    .contacts-left {
        margin-bottom: 25px;
    }

    .contacts-right {
        padding-left: 0;
    }

    .social-container {
        max-width: 300px;
    }

    .social-text {
        font-size: 22px;
    }

    .locations {
        padding-left: 5%;
        padding-right: 5%;
    }

    .locations ul li {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .entry h3 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .entry p {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .entry > ul > li {
        font-size: 18px;
    }
	/*.hamburger {
		display: inline-block;
	}*/

}

@media screen and (max-width:639px) {

    .row {
        padding: 0 15px;
    }

    .main-container.charity-page {
        background: url("../img/bg-work-v2-mob.svg") no-repeat center center !important;
        background-size: cover!important;
    }

    .main-container.our-work {
        background: url("../img/bg-work-mob.svg") no-repeat top center!important;
        background-size: cover!important;
    }

    .main-container.about-us {
        background: url("../img/bg-about-us-mob.png") no-repeat top center!important;
        background-size: cover!important;
    }

    .bg-inner {
        display: none;
    }

    .main-header-container {
        right: 20px;
        top: auto;
        bottom: 20px;
        left: 20px;

    }

    .main-header {
        display: block;
        width: 100%;
        height: auto;
        padding: 25px 20px;
    }

    .header-logo {
        display: none;
    }

    .header-title {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .header-nav-container {
        margin-bottom: 0;
    }

    .header-nav ul li {
        margin-bottom: 15px;
    }

    .header-nav ul li a {
        font-size: 12px;
        padding-left: 10px;
    }

    .header-nav ul li a:before {
        height: 9px;
        width: 5px;
        top: 1px;
    }

    .header-nav ul li a:after {
        top: 5px;
    }


    .header-nav ul li.current-menu-item a:before,
    .header-nav ul li.current-page-ancestor a:before {
        left: 30px;
    }

    .header-nav ul li.current-menu-item a:after,
    .header-nav ul li.current-page-ancestor a:after {
        width: 32px;
    }

    body.single-naujiena .header-nav ul li.menu-item-207 a,
    body.single-darbas .header-nav ul li.menu-item-208 a,
    .header-nav ul li.current-menu-item a,
    .header-nav ul li.current-page-ancestor a {
        padding-left: 39px;
    }

    body.single-naujiena .header-nav ul li.menu-item-207 a:before,
    body.single-darbas .header-nav ul li.menu-item-208 a:before,
    .header-nav ul li.current-menu-item a:before,
    .header-nav ul li.current-page-ancestor a:before {
        left: 30px;
    }

    body.single-naujiena .header-nav ul li.menu-item-207 a:after,
    body.single-darbas .header-nav ul li.menu-item-208 a:after,
    .header-nav ul li.current-menu-item a:after,
    .header-nav ul li.current-page-ancestor a:after {
        width: 32px;
    }

    .header-nav ul li.item-to-load a:before {
        left: 30px!important;
    }

    .header-nav ul li.item-to-load a:after {
        width: 32px;!important
    }

    .header-nav ul li.item-to-load a {
        padding-left: 39px!important;
    }

    body.prisidek .header-nav ul li.current-page-ancestor a {
        padding-left: 10px;
    }

    .header-bottom-nav {
        display: none;
    }

    .main-content {
        padding: 100px 15px 160px ;
    }

    .team-list ul li {
        width: 100%;
        margin-bottom: 55px;
    }

    .team-img {
        width: 126px;
        height: 126px;
        padding-bottom: 0;
        margin-bottom: 20px;
    }

    .team-position {
        font-size: 14px;
    }

    .team-name {
        font-size: 16px;
    }

    .section-title {
        font-size: 16px;
    }

    .main-sponsor-list {
        margin-bottom: 40px;
    }

    .sponsor-list ul li {
        width: 22%;
        margin-right: 17%;
        margin-bottom: 30px;
    }

    .our-work-links a {
        font-size: 16px;
    }

    .our-work-links .top-link a:after,
    .our-work-links .bottom-link a:after {
        width: 270px;
        height: 270px;
    }
    .our-work-links .top-link {
        top: 20%;
        right: 8%;
    }

    .our-work-links .bottom-link {
        bottom: auto;
        right: auto;
        left: 19%;
        top: 40%;
        z-index: 3;
    }

    .our-work-img-list ul li {
        min-width: 77.4%;
        margin-right: 5%;
    }

    .our-work-img {
        padding-bottom: 85%;
    }

    .our-work-img-container {
        margin-top: 40px;
        margin-bottom: 50px;
    }


    .our-work-img-bottom {
        right: -35px;
        margin-top: 20px;
        margin-bottom: 50px;
        padding-bottom: 66%;
    }

    .inner .main-content {
        padding: 75px 8px 250px;
    }

    .news-list ul li  {
        margin-bottom: 70px;
    }

    .product-list ul li {
        margin-bottom: 55px;
    }

    .item-img {
        padding-bottom: 59%;
    }

    .item-title {
        font-size: 16px;
    }

    .item-excerpt {
        font-size: 14px;
    }

    .item-author {
        font-size: 14px;
    }

    .read-more {
        font-size: 16px;
    }

    .product-item .product-title {
        font-size: 16px;
    }

    .news-top-img {
        top: 75px;
        margin-bottom: 35px;
    }

    .products-single .news-top-img {
        left: -12%;
    }


    .locations {
      padding: 0;
    }


    .location-list {
        margin-bottom: 50px;
    }

    .locations ul li {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .contacts-right {
        padding-bottom: 100px;
    }

    .social-container {
        max-width: 195px;
        left: auto;
        right: 0;
    }

    .social-text {
        font-size: 16px;
        margin-bottom: 0;
    }

    .social-list ul li {
        max-width: 25px;
    }

    .entry-wrap {
        padding: 0;
    }

    .entry.donation-method-list > ul > li:before {
        margin-right: 35px;
    }

    .entry h3 {
        font-size: 16px;
    }

    .entry p {
        font-size: 14px;
    }

    .entry p img {
        width: 100%;
        margin-left: 0;
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .products-single .entry p img {
        right: auto;
    }

    .entry > ul > li {
        font-size: 14px;
    }
    .cc_container .cc_btn {
        width: 25px!important;
        height: 25px!important;
        padding-top: 5px!important;
        font-size: 14px!important;
    }

    .cc_container {
        left: 0px!important;
        right: 0px!important;
    }

}