/* =============== BASE =============== */

:root {
    --lilac: #6B3A79;
    --white: #ffffff;
    --black: #2B2827;
    --grey: #9B9B9B;
    --lgrey: #f0efef; 
    --yellow: #F2CB5A;
}

* {
    padding: 0;
    margin: 0;
    /* border: red solid 1px; */
}

html {
    scroll-behavior: smooth;
}

html, body {
    overflow-x: hidden; 
    height: 100vh;
}

body {
    background-color: var(--white);
    color: var(--black);
    font-family: "adobe-caslon-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 28px;
}

p {
    font-size: 20px;
    margin: 0 0 1.2em;
}

h1, h2 {
    font-family: "adobe-caslon-pro", sans-serif;
    font-weight: 700;
    font-style: normal;
}

h3, h4, h5, h6 {
    font-family: "roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
}

h1 {
    font-size: 40px;
    line-height: 50px;
    margin: 0rem 0 1rem 0;
}

h2 {
    font-size: 37px;
    line-height: 47px;
    margin: 1rem 0 1rem 0;
}

h3 {
    font-size: 50px;
    margin: 1.5rem 0 0rem 0;
    line-height: 66px;
}

h4 {
    font-size: 37px;
    font-weight: 300;
    margin: 0.3rem 0 1.3rem 0;
    line-height: 45px;
}

h5 {
    font-size: 30px;
    line-height: 39px;
    margin: 1.5rem 0 1rem 0;
}

h6 {
    font-size: 20px;
    margin: 1rem 0 0.5rem 0;
    line-height: 24px;
}

ul li {
    list-style-type:disc;
    margin-left: 20px;
}

ol li {
    margin-left: 20px;
}

.start-top img,
main img {
    width: 100%;
    height: auto;
}

.start-top a,
.tophero a,
main a {
    text-decoration: underline;
    color: var(--black);
} 

.start-top a:hover,
.tophero a:hover,
main a:hover, 
.start-top a:focus,
.tophero a:focus,
main a:focus {
    cursor: pointer;
    text-decoration: underline;
} 

a.gallery-post:hover h4,
a.blog-post:hover h2,
a.paper:hover h2,
a.blog-post:focus h2,
a.paper:focus h2 {
    text-decoration: underline;
}

a.btn:hover {
    text-decoration: none;
    color: var(--yellow);
}

.btn {
    font-family: "roboto", sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 20px;
}

button.btn,
.start-top a.btn,
.tophero a.btn,
main a.btn, 
footer a.btn {
    background: var(--lilac);
    color: var(--white);
    text-decoration: none;
    padding: 4px 12px;
    border: none;
} 

button.btn:hover,
.start-top a.btn:hover,
.tophero a.btn:hover,
main a.btn:hover,
footer a.btn:hover {
    cursor: pointer;
    color: var(--yellow);
} 

.btn-hollow {
    font-family: "roboto", sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    background-color: transparent;
    border: 1px solid white;
    font-size: 20px;
    color: var(--white);
    text-decoration: none;
    padding: 4px 12px;
}

/* =============== HEADER =============== */

header {
    background: var(--black);
    font-family: "roboto", sans-serif;
    font-size: 20px;
    color: var(--white);
}

.header-top {
    display: flex;
    flex-direction: row;
    height: 150px;
    align-items: baseline;
    padding-top: 50px;
    justify-content: space-between;
}

.header-top-left {
    width: 280px;
}

.header-top-right {
    width: 75%;
}

.logo {
    width: 250px;
}

#menuToggle ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
}

#menuToggle ul li {
    list-style-type: none;
    padding: 5px 12px;
    margin: 0;
}

#menuToggleMobile ul li a, 
#menuToggle ul li a {
    color: var(--white);
    opacity: 0.9;
    text-decoration: none;
    display:inline-block;
    text-align:center;
    font-weight: normal;
}

#menuToggle ul li a:hover {
    color: var(--white);
    opacity: 1;
    font-weight: bold;
}

#menuToggle ul li a::before {
    display: block;
    content: attr(title);
    font-weight: bold;
    height: 0;
    overflow: hidden;
    visibility: hidden;
}

#menuToggle ul li:last-child{
    margin: -10px 0 0px 60px;
}

#menuToggle ul li:last-child a {
    background-color: var(--lilac);
    font-weight: 700;
    letter-spacing: 1px;
    padding: 5px 12px;
}

#menuToggle ul li:last-child a:hover{
    color: var(--yellow);
}

#menuToggleMobile {
    position: relative;
    z-index: 1;
}

#menuToggleMobile input {
    position: absolute;
    width:40px;
    cursor: pointer;
    opacity: 0; 
    z-index: 2;  
    -webkit-touch-callout: none;
}

#menuToggleMobile span {
    display: block;  
    width: 33px;
    height: 4px;
    margin: 5px 20px; 
    position: relative;  
    background: var(--yellow);
    border-radius: 0px;
    z-index: 1;  
}

#menuToggleMobile span {
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
        background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
    transform-origin: 4px 0px;
}

#menuToggleMobile span:first-child {
    transform-origin: 0% 0%; 
}

#menuToggleMobile span:nth-last-child(2) {
    transform-origin: 0% 100%; 
}

#menuToggleMobile input:checked ~ span {
    opacity: 1;
    transform: rotate(45deg) translate(-2px, -1px);
    background: var(--yellow);
}

#menuToggleMobile input:checked ~ span:nth-last-child(2) {
    transform: rotate(-45deg) translate(0, -1px);
}

#menuToggleMobile input:checked ~ span:nth-last-child(3) { 
    opacity: 0; 
    transform: rotate(0deg) scale(0.2, 0.2); 
}

#menu {
    position: absolute; 
    right: -300px;
    top: 0px;
    width: 200px; 
    margin: -100px -50px 0 0px;
    padding: 50px;
    padding-top: 125px;
    background: var(--black);
    list-style-type: none; 
    -webkit-font-smoothing: antialiased;     
    transition: right 0.5s; 
  }
  
#menu li {
    padding: 10px 0;
    list-style-type: none;
}

#menuToggleMobile input:checked ~ ul {
    right:40px;
}

#menuToggleMobile ul li:last-child {
    margin-top: 10px;
}

#menuToggleMobile ul li:last-child a {
    background-color: var(--lilac);
    font-weight: 700;
    letter-spacing: 1px;
    padding: 5px 12px;
}

/* =============== TOP =============== */
.start-top {
    padding: 75px 0 50px;
}

.start-top-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: var(--white);
    justify-content: space-between;
}

.start-top-left {
    width: 50%;
}

.start-top-right {
    width: 50%;
    display: flex;
    justify-content: end;
}

.latest-no,
.latest-img {
    padding-right: 20%;
}

.latest-no h6 {
    display: none;
}

.latest-no h1 {
    margin: 1rem 0 1rem 0;
}

.latest-img h3 {
    margin: 1rem 0 1rem 0;
    font-size: 40px;
    line-height: 50px;
}

.latest-img p {
    margin-top: 50px;
}


/* =============== CONTENT =============== */
.main-container {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 170px 0 85px 0;
    width: 100%;
    align-items: center;
}

.main-container.subscription {
    padding: 75px 0 85px 0!important;
}

.main-container.infopage, 
.main-container.tifflinks {
    align-items: start;
}

.main-container .main-left {
    width: 50%;
}

.main-container .main-left .text-content {
    padding-right: 15%;
}

.main-container .main-right {
    width: 50%;
}

.main-container ul li {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 10px;
}

.main-container.archive {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.archive-table {
    font-family: "roboto", sans-serif;
    font-size: 15px;
    line-height: 20px;
}

.archive-table .bgcolor {
    background: var(--lilac);
    color: var(--white);
}

.archive-table .bgcolor-lighter {
    background: #efeaf0;
    color: var(--black)
}

.archive-table .bgcolor-lighter a {
    color: var(--black)
}

.archive {
    width: 100%;
}

.archive img {
    width: 30px;
}

.archive img:hover {
    width: 35px;
}

.archive table a {
    text-decoration: none;
}

.archive table a:hover {
    text-decoration: underline;
}

table, th, td {
    border: 0px solid var(--lgrey);
    border-collapse: collapse;
    border-spacing: 0;
}

/* th, td {
    padding: 5px;
} */

.editions table td {
    padding: 5px;
    border-bottom: 1px solid var(--lgrey);
    border-collapse: collapse;
    border-spacing: 0;
}

.archive table td {
    min-width: 50px;
}

.editions table td {
    min-width: 80px;
}

.align {
    text-align: center;
}

table.editions {
    width: 100%;
}

table.editions table { 
    /* display:inline-block!important;
    vertical-align:top!important;  */
    font-family: "roboto", sans-serif;
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 40px;
}

table.editions table th {
    height: 30px;
}

.editions .bgcolor {
    background: var(--lilac);
    color: var(--white);
}

.editions .bgcolor-lighter {
    background: #efeaf0;
    color: var(--black);
}

.editions .bgcolor-lighter a {
    color: var(--black);
}

.subpages {
    margin-bottom: 70px;
}

.the60s {
    border-left: 1px solid var(--lgrey);
    border-right: 1px solid var(--lgrey);
}

.the70s, 
.the80s, 
.the90s, 
.the00s,
.the10s, 
.the20s {
    border-left: 1px solid var(--lgrey);
}

.the70s-2, 
.the80s-2, 
.the90s-2, 
.the00s-2,
.the10s-2, 
.the20s,
.the20s-2 {
    border-right: 1px solid var(--lgrey);
}

@media screen and (min-width: 1201px) {
    .editions table th:nth-of-type(2) {
        text-align: left;
        padding-left: 30px;
    }
}

@media screen and (max-width: 1200px) {
    .archive table td {
        min-width: 60px;
    } 
    .editions table th:nth-of-type(2) {
        text-align: left;
        padding-left: 20px;
    }
}

@media screen and (min-width: 810px) {
    .the70s-2 th:first-of-type,
    .the70s-2 td:first-of-type,
    .the80s-2 th:first-of-type,
    .the80s-2 td:first-of-type,
    .the90s-2 th:first-of-type,
    .the90s-2 td:first-of-type,
    .the00s-2 th:first-of-type,
    .the00s-2 td:first-of-type, 
    .the10s-2 th:first-of-type,
    .the10s-2 td:first-of-type,
    .the20s-2 th:first-of-type,
    .the20s-2 td:first-of-type {
       display: none;
    }
    .archive .hideheader {
        display: none;
    }
}

@media screen and (max-width: 810px) {
    .the70s, 
    .the80s, 
    .the90s, 
    .the00s,
    .the10s, 
    .the20s,
    .the70s-2, 
    .the80s-2, 
    .the90s-2, 
    .the00s-2,
    .the10s-2, 
    .the20s-2 {
        border-left: 1px solid var(--lgrey);
        border-right: 1px solid var(--lgrey);
    }
    table.editions {
        width: auto;
    }
}

@media screen and (max-width: 800px) {
    table.editions table { 
        display: block!important;
        width: 100%;
    }
    table.editions table tbody {
        width: 100%; 
    }
    .archive table td {
        min-width: 40px;
    } 
    .editions table th:nth-of-type(2) {
        text-align: center;
        padding-left: 0px;
    }
    .subpages {
        margin-bottom: 20px;
    }    
}

/* =============== START / GALLERY =============== */
.tiff-meet {
    background: var(--lgrey);
}

.start-container-articles {
    background-color: var(--white);
}

.start-container-blog {
    padding-top:50px;
    padding-bottom: 50px;
}

.start-container-blog h3 {
    margin-bottom: 2rem;
    margin: 0rem 0 2rem 0;
    font-size: 40px;
    line-height: 50px;
}

.grid-equal-3,
.grid-equal-4 {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    width: calc(100% + 30px);
}

.start-container-blog h6,
.post-info h6 {
    font-size: 12px;
    margin: 0rem 0 0rem 0;
    color: var(--grey);
    line-height: 15px;
    text-transform: uppercase;
}

.start-container-blog h6 a {
    text-decoration: none;
    color: var(--grey);
}

.start-container-blog h6 a:hover {
    text-decoration: underline;
    color: var(--black);
}

.blog-post {
    align-items: stretch;
    display: flex;
    flex-direction: column;
    margin: 0px 15px;
    position: relative;
    width: calc(33.33333% - 30px);
    text-align: left;
}

.gallery-post {
    align-items: stretch;
    display: flex;
    flex-direction: column;
    margin: 0px 15px 40px;
    position: relative;
    width: calc(25% - 30px);
    text-align: left;
}

.gallery-post h4 {
    font-weight: 700;
    font-size: 30px;
    line-height: 39px;
    margin: 1rem 0 1.3rem 0;
}

.blog-post img {
    margin-bottom: 30px;
    display: block;
    height: 376px;
    width: 100%;
    object-fit: cover;
}

.square {
    position: relative;
}
  
.square::after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.square img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

main a.gallery-post,
main a.paper,
main .blog-posts a,
a.tommy-art {
    text-decoration: none;
    color: var(--black);
} 

a.tommy-art:hover {
    text-decoration: none;
} 

a.tommy-art:hover h5,
a.tommy-art:focus h5  {
    text-decoration: underline;
} 

.start-content {
    display: flex;
    justify-content: space-between;
    padding: 40px 0;
}

.start-content-left {
    width: 65.6%;
    padding-bottom: 70px;
    margin-right: 20px;
}

.start-content-left hr {
    margin-top: 30px;
    margin-bottom: 40px;
    display: block;
    height: 1px;
    padding: 0;
    border: 0;
    border-top: 1px solid var(--black);
}

.start-content-left h3 {
    margin: -1rem 0 1rem 0;
}

.paper {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-end;
}

.paper-cover {
    width: 260px;
    margin-right: 30px;
}

.paper-context {
    padding-right: 15%;
}

.paper-context p {
    margin: 0 0em;
}

.paper-cover img{
    width: 252px;
}

.start-content-right {
    border-left: 1px solid var(--black);
    width: 33%;
    font-family: "roboto", sans-serif;
    font-weight: 300;
    padding-left: 20px;
}

.start-content-right hr {
    margin-top: 40px;
    margin-bottom: 40px;
    display: block;
    height: 1px;
    padding: 0;
    border: 0;
    border-top: 1px solid var(--black);
}

.gallery-navigation {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 25px;
}

.gallery-grid .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 0px;
    margin-bottom: 40px;
  }
  
  .gallery-grid .column {
    flex: 50%; 
    max-width: 50%;
    padding: 0 0px;
  }

  .gallery-grid .column:first-of-type {
    margin-left: -5px;
  } 

  .gallery-grid .column:last-of-type {
    margin-left: 5px;
  } 

  .gallery-grid .column div {
    padding: 3px 0px;
  }
  
  .gallery-grid .column img {
    margin-top: 0px;
    vertical-align: middle;
    width: 100%;
  }

/* =============== FORM =============== */
#contactus {
    padding-top: 50px;
}

#contactus .form-row {
    display: flex;
    flex-direction: column;
}

#contactus .form-row input {
    border: none;
    border-bottom: 1px var(--black) solid;
    color: var(--black);
    font-size: 20px;
    margin: 20px 0;
    font-weight: 300;
    padding: 5px 0;
    font-family: "roboto", sans-serif;
}

::placeholder {
    color: var(--black);
    opacity: 1;  
  }
  
::-ms-input-placeholder {  
    color: var(--black);
}

input:focus, textarea:focus, select:focus {
    outline: none;
}

#contactus button {
    margin-top: 25px;
}

/* Customize the label (the container) */
.container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: "roboto", sans-serif;
    font-weight: 300;
    font-size: 20px;
  }
  
  /* Hide the browser's default radio button */
  .container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom radio button */
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
  }
  
  /* On mouse-over, add a grey background color */
  .container:hover input ~ .checkmark {
    background-color: #ccc;
  }
  
  /* When the radio button is checked, add a blue background */
  .container input:checked ~ .checkmark {
    background-color: var(--lilac);
  }
  
  /* Create the indicator (the dot/circle - hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the indicator (dot/circle) when checked */
  .container input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the indicator (dot/circle) */
  .container .checkmark:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--yellow);
  }

/* =============== FOOTER =============== */

footer {
    background-color: var(--black);
    color: var(--white);
    position: relative;
    font-family: "roboto", sans-serif;
    font-weight: 300;
    line-height: 26px;
}

.footer-container {
    display: flex;
    padding: 50px 0;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.footerlogo img {
    width: 160px;
}

.footerlogo {
    margin-bottom: 30px;
}

.footer-left,
.footer-center {
    width: 280px;
}

.footer-center,
.footer-right,
.footer-copyright {
    padding-top: 81px;
}

.footer-copyright {
    width: 280px;
}

footer h4 {
    font-size: 20px;
    margin: 1rem 0 0rem 0;
    font-weight: 700;
    line-height: 23px;
}

footer a {
    color: var(--white);
    text-decoration: none;
} 

footer a:hover {
    text-decoration: underline;
} 

footer a.totop {
    position: absolute;
    right: 10px;
    bottom: 10px;
    font-size: 30px;
}

footer a.totop:hover {
    border-bottom: 0;
} 

/* =============== COOKIE MODAL =============== */

.cookie-modal {
    position: fixed;
    display: none;
    bottom: 0;
    margin: 2rem;
    background-color: var(--black);
    padding: 2rem;
    max-width: 1000px;
}

.show-extension {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.m-0 {
    margin: 0;
}

.cookie-modal h2 {
    font-size: 36px;
    font-family: "adobe-caslon-pro", sans-serif;
}

.cookie-modal p {
    font-family: "adobe-caslon-pro", sans-serif;
}

.cookie-modal .btn, .cookie-modal .btn-hollow {
    font-family: "roboto", sans-serif;
    margin-left: 0.25rem;
    margin-right: 0.25rem;
    cursor: pointer;
}

.cookie-modal .fa-chevron-down,
.cookie-modal .fa-chevron-up {
    margin-right: 0.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.cookie-select {
    display: none;
}

.flex {
    display: flex;
}

.no-border {
    border-bottom: none !important;
}

.justify-between {
    justify-content: space-between;
}

.cookie-option {
    border-bottom: 1px solid white;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.cookie-option-extension {
    transition: 0.2s ease-in-out;
    max-height: 0;
    overflow: hidden;
}

.show {
    display: flex;
    max-height: 900px;
}

.fa-chevron-down {
    transition: 0.2s ease-in-out;
}

.rotate-180 {
    transform: rotate(180deg);
}

.pointer:hover {
    cursor: pointer;
}

.cookie-logo {
    width: 80px;
}

.cookie-opener {
    display: none !important;
    position: fixed;
    left: 1rem;
    bottom: 1rem;
    color: #6b3a79;
    cursor: pointer;
}

body .show {
    display: flex !important;
}

/* =============== TOGGLE BUTTON =============== */

.toggle {
	cursor: pointer;
	display: inline-block;
}
.toggle-switch {
	display: inline-block;
	background: #6f6f6f;
	border-radius: 16px;
	width: 58px;
	height: 28px;
	position: relative;
	vertical-align: middle;
	transition: background 0.25s;
	&:before,
	&:after {
		content: "";
	}
	&:before {
		display: block;
		background: linear-gradient(to bottom, #fff 0%, #fff 100%);
		border-radius: 50%;
		box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
		width: 24px;
		height: 24px;
		position: absolute;
		top: 2px;
		left: 1px;
		transition: left 0.25s;
	}
	.toggle:hover &:before {
		background: linear-gradient(to bottom, #fff 0%, #fff 100%);
		box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5);
	}
	.toggle-checkbox:checked + & {
		background: #6b3a79;
		&:before {
			left: 33px;
		}
	}
}
.toggle-checkbox {
	position: absolute;
	visibility: hidden;
}
.toggle-label {
	margin-left: 5px;
    margin-right: 10px;
	position: relative;
	top: 2px;
}

/* =============== RESPONSIVE =============== */

@media screen and (min-width: 1920px) {
    .content-width {
        max-width: 1640px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 1919px) {
    .content-width {
        max-width: 100%;
        padding-left: 140px;
        padding-right: 140px;
    }
    #menuToggle ul li:last-child{
        margin: -10px 0 0 30px;
    }   
    .blog-post img {
        height: auto;
        width: 100%;
        object-fit: cover;
    } 
} 

@media screen and (min-width: 768px) {
    .hidedesktop {
        display: none;
    }
}

@media screen and (max-width: 1536px) {
    .archive table td {
        width: 30px;
    }
    header, footer, footer p, footer h4 {
        font-size: 16px;
        line-height: 22px;
    }
    .logo {
        width: 200px;
    }
    .header-top-left {
        width: 200px;
    }
    .header-top {
        height: 130px;
        padding-top: 50px;
    }
    h1, h2, h3, h4, h5, h6 {
        hyphens: auto;
    }  
    #menuToggle ul li:last-child{
        margin: -7px 0 0 0px;
    }   
}

@media screen and (max-width: 1280px) {
    .content-width {
        max-width: 100%;
        padding-left: 60px;
        padding-right: 60px;
    }
    .header-top-left {
        width: 170px;
    }
    .logo {
        width: 170px;
    }
    .header-top-right {
        width: 80%;
    }
    .paper-context {
        padding-right: 0%;
    }
    #menuToggle ul li {
        padding: 5px 5px;
    }
    #menuToggle ul li:last-child a{
        padding: 5px 8px;
    }  
}

@media screen and (min-width: 1024px) {
    .header-top-mobmenu {
        display: none;
    }
}

@media screen and (max-width: 1023px) {
    .hidemobile {
        display: none;
    }
    .gallery-navigation h6 {
        font-size: 30px;
        line-height: 35px;
    }
    .content-width {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
    .header-top {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        height: 60px;
        padding: 0 0px 10px 0;
    }
    .header-top-left {
        width: 100px;
        margin: 0;
    }
    .header-top-mobmenu {
        width: 75px;
    }
    .header-top-right {
        display: none;
    }
    .logo {
        padding: 6px 0px 0 0; 
    }
    .logo img {
        height: 40px;
        width: auto;
        margin-left: 20px;
    }
    #menuToggle {
        display: none;
    }
    .latest-no, .latest-img {
        padding-right: 0;
    }
    
    .start-top-left {
        width: 100%;
    }
    .start-top-right {
        width: 100%;
    }
    .start-top-content {
        flex-direction: column-reverse;
        /* padding-top: 60px; */
    }
    .grid-equal-3 {
        margin-left: 0px; 
        width: 100%
    }
    .blog-posts.grid-equal-3>*, 
    .blog-posts.grid-equal-2>* {
        width: 100%;
        margin: 0px 0px 30px 0; 
    }
    .gallery-post {
        margin: 0px 15px 20px;
        width: calc(50% - 30px);
    }
    .blog-post img {
        margin-bottom: 0px;
    }
    .start-content {
        flex-direction: column;
    }
    .start-content-left, 
    .start-content-right {
        width: 100%;
    }
    .start-content-right {
        border-left: 0px solid var(--black);
        border-top: 1px solid var(--black);
        padding-top: 20px;
        padding-left: 0;
    }
    .start-content-right div {
        padding-left: 0px;
    }
    .start-content-right hr {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .tommy img {
        display: block;
        height: 500px;
        width: 100%;
        object-fit: cover;
        object-position: right 20%;
    }
    .main-container {
        flex-direction: column;
        /* padding: 75px 0 85px 0; */
    }
    .main-container .main-left {
        width: 100%;
    }
    .main-container .main-left .text-content {
        padding-right: 0%;
    }
    .main-container .main-right {
        width: 100%;
        margin-top: 70px;
    }
    .main-container.infopage .main-right {
        width: 100%;
        margin-top: -15px;
    }
    .gallery-grid {
        margin-bottom: 20px;
    }
    .gallery-grid .column {
        flex: 100%;
        max-width: 100%;
    }
    .gallery-grid .column:first-of-type {
        margin-left: 0;
    } 
    .gallery-grid .column:last-of-type {
        margin-left: 0px;
    } 
    .footer-left,
    .footer-center,
    .footer-right,
    .footer-copyright {
        width: 100%;
    }
    .footer-center {
        padding-top: 40px;
    }
    .footer-right,
    .footer-copyright {
        padding-top: 20px;
    }
}

@media screen and (max-width: 992px) {
    body, p, header, footer, footer p, footer h4 {
        font-size: 15px;
        line-height: 20px;
    }

    #contactus .form-row input {
        font-size: 15px;
        margin: 15px 0;
    }
    h1 {
        font-size: 30px;
        line-height: 32px;
        margin: 0rem 0 1rem 0;
    }
    h2 {
        font-size: 30px;
        line-height: 32px;
    }
    .start-container-blog h3,
    .latest-img h3,
    h3 {
        font-size: 30px;
        line-height: 35px;
    }
    .start-container-blog h3,
    .latest-img h3,
    h3 {
        font-size: 30px;
        line-height: 35px;
    }
    .start-container-blog h3 {
        margin-bottom: 10px;
    }
    h4 {
        font-size: 25px;
        line-height: 26px;
    }
    .gallery-post h4 {
        font-size: 20px;
        line-height: 26px;
        margin: 1rem 0 0.5rem 0;
    }
    h5 {
        font-size: 20px;
        line-height: 26px;
        margin: 1rem 0 0.5rem 0;
    }
    h6 {
        font-size: 15px;
        line-height: 18px;
    }
    .start-top {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .start-container-blog {
        padding: 20px 0 0px; 
    }
    .latest-no p:last-of-type {
        margin-bottom: 0;
    }
    .post-info {
        margin-bottom: 20px;
    }
    .latest-img p {
        margin-top: 20px;
    }
    .start-content {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .start-content-left hr {
        margin-top: 15px;
        margin-bottom: 20px;
    }
    .start-content-right,
    .start-content-left hr, 
    .start-content-right hr  {
        border-top: 0.5px solid var(--black);
    }
    .start-content-left h3 {
        margin: -0.5rem 0 1rem 0;
    }
    .main-container {
        padding: 20px 0 20px 0; 
    }
    .main-container.subscription {
        padding: 20px 0 20px 0!important; 
    }
    .main-container .main-right {
        margin-top: 30px;
    }
    .main-container.infopage .main-left {
        margin-top: -20px; 
    }
    #contactus .form-row {
        margin-top: 0px;
    }
    .start-content-left {
        padding-bottom: 20px;
    }
    h2 {
        margin: 1rem 0 0.5rem 0;
    }
    .latest-img h3,
    h3 {
        margin: 1rem 0 0rem 0;
    }
    h4 {
        margin: 0rem 0 0.5rem 0;
    }
    .paper-cover {
        width: 200px;
        margin-right: 20px;
    }
    .paper-cover img{
        width: 190px;
    } 
    .blog-posts.grid-equal-3>*, 
    .blog-posts.grid-equal-2>* {
        margin: 0px 0px 10px 0; 
    }
}

@media screen and (max-width: 768px) {
    .tommy img {
        height: 400px;
    }
    .gallery-navigation h6 {
        max-width: 150px;
    }
    .gallery-navigation h6:last-of-type {
        text-align: right;
    }

    .cookie-modal .btn, .cookie-modal .btn-hollow {
        font-size: 13px;
    }

    .cookie-modal .text {
        padding-right: 0;
    }
}

@media screen and (max-width: 440px) {
    .paper-cover {
        width: 119px;
        margin-right: 20px;
    }
    .paper-cover img{
        width: 119px;
    } 
    .tommy img {
        height: 230px;
    }
    .gallery-post {
        margin: 0px 15px 0px;
        width: 100%;
    }
}
