/*
	Theme Name: Pharmtech
	Theme URI: https://pharmtechbi.com
	Description: Custom WP Theme for Pharmtech
	Version: 1.0.05.2026
	Author: @harmonicnoise
	Author URI: http://www.deusain.com
	Tags: Interior
*/

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
/* html element 62.5% font-size for REM use */
html {
	font-size:62.5%;
}
:root {
	--red: #9f2c0f;
	--blue: #20acff;
	--dark: #000;
	--grey: #505050;
	--body-color: #212121;
	--light: #f0f0f0;
	--white: #fff;
}
body {
	font-size: clamp(15px, 1vw, 16px);
	font-family: 'Google Sans', -apple-system,BlinkMacSystemFont,segoe ui,helvetica neue,sans-serif;
	font-weight: 400;
	line-height: 1.6;
	background-color: var(--light);
	color: var(--body-color);
	width: 100%;
	position: relative;
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
a {
	color: var(--red);
	text-decoration:none;
	transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-webkit-transition: .3s ease-in-out;

	&:hover {
		color: var(--dark);
	}

	&:focus,
	&:active {
		outline:0;
	}
}
input:focus {
	outline:0;
	border:1px solid var(--dark);
}

strong {
	font-weight: 700;
}
h1, h2, h3 {font-weight: 700; font-family: 'Quicksand'; line-height: 1.2; color: var(--dark);}
h4, h5, h6 {font-weight: 700; font-family: 'Quicksand'; line-height: 1.2; color: var(--dark);}
h1 {font-size: clamp(36px, 4vw, 40px);}
h2 {font-size: clamp(30px, 3.5vw, 36px);}
h3 {font-size: clamp(24px, 3vw, 30px);}
h4 {font-size: clamp(18px, 2vw, 24px);}
h5 {font-size: clamp(15px, 1.5vw, 18px);}
h6 {font-size: clamp(12px, 1vw, 15px);}

blockquote {
	margin: 25px 0;
	background-color: var(--white);
	border-left: 3px solid var(--red);
	padding: 5px 25px;
}
blockquote p {
	font-weight: 600;
	font-family: 'Serif';
	font-size: 18px;
	font-style: italic;
	letter-spacing: .2px;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* wrapper */
.wrapper {
	width:100%;
	margin:0 auto;
	position:relative;
}

/* header */
.header {
	width: 100%;
	margin: 0 auto;
    position: relative;
	top: 0;
	background-color: var(--white);
	z-index: 99;

	.container {
		width: 100%;
		max-width: 1200px;
		margin: 0 auto;
		padding: 0;
		height: 100px;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
		position: relative;

		.logo {
			padding: 0;
		    width: 140px;
		    position: relative;
		    line-height: 0;
		    top: 0;

		    img {
		    	width: 100%;
		    	height: auto;
		    }
		}

		#desktopmenu {
			display: flex;
			flex-wrap: wrap;
			align-items: center;
			margin: 0;
			padding: 0;
			list-style: none;

			.nav {
				z-index: 999;
				position: relative;

				ul {
					padding: 0;
					margin: 0;
					list-style: none;

					li {
						display: inline-block;
						margin: 0;
						padding: 0;
						position: relative;

						a {
							display: block;
						    font-size: 15px;
						    text-transform: uppercase;
						    font-weight: 700;
						    padding: 0 20px;
						    line-height: 100px;
							color: var(--dark);
							transition: .2s ease-in-out;
							font-family: 'Quicksand';

							&:hover {
								color: var(--red);
							}
						}
						&.menu-item-has-children:hover a,
						&.current_page_item a,
						&.current_page_item:hover a {
							color: var(--red);
						}

						.sub-menu {
							position: absolute;
							top: 100px;
							left: 0;
							width: 250px;
							padding: 10px;
							z-index: 99;
							visibility: hidden;
							transition: all .2s ease-in-out;
							background-color: var(--dark);
							opacity: 0;

							li {
								width: 100%;

								a {
									display: block;
									line-height: 1;
									padding: 12px 10px;
									color: var(--white) !important;
								}
							}

							&:before {
								content: "";
								position: absolute;
								width: 0;
							    height: 0;
							    border-left: 14px solid transparent;
							    border-right: 14px solid transparent;
							    border-bottom: 16px solid var(--dark);
							    top: -12px;
							    left: 14px;

							}
						}

						&:hover .sub-menu {
							visibility: visible;
							transition: all .2s ease-in-out;
							opacity: 1;

							li {
								width: 100%;

								a {
									display: block;

									&:hover {
										background-color: rgba(255,255,255, .2);
									}
								}
							}
						}
					}
				}
			}
		}

		.topright {
			position: relative;

			ul {
				list-style: none;
				padding: 0;
				margin: 0;

				li {
					margin: 0;
					padding: 0;
					display: inline-block;

					a {
						font-weight: 500;
						font-size: 15px;
					    color: var(--red);
					    display: block;
					    padding: 10px 20px;
					    border: 2px solid var(--red);

					    i {
					    	margin-right: 10px;
					    }

					    &:hover {
					    	background-color: var(--red);
							color: var(--white);
							transition: .2s ease-in-out;
					    }
					}
				}
			}
		}

		.mobile-menu-button {
			display: none;

			a svg {
				fill: var(--red);
				color: var(--red);
			}
		}
	}

	.mobilemenu {
		position: fixed;
		top: 0;
		right: 0;
		width: 300px;
		height: 100vh;
		z-index: 999;
		opacity: 0;
	    visibility: hidden;
	    transform: translateX(100%);
	    transition: all .3s ease;
		background-color: var(--white);
		transition: .25s ease-in-out;
		padding: 30px;
		box-shadow: -1px -8px 16px 10px rgba(0, 0, 0, .2);

		.close a svg {
			fill: var(--red);
			color: var(--red);
			position: absolute;
			top: 10px;
			right: 10px;
		}

		&.show-menu {
			opacity: 1;
		    visibility: visible;
		    transform: translateX(0);

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

		.nav {
			display: block;

			li {
				width: 100%;

				a {
					color: var(--grey);
					text-transform: uppercase;
					padding: 10px 0;
					display: block;
					font-size: 16px;
					font-weight: 600;
					border-bottom: 1px solid var(--light);

					i {
						float: right;
						position: relative;
						right: 0;
						top: 3px;
					}
				}

				.sub-menu {
					padding-left: 20px;

					li {
						a {
							font-size: 14px;
							border-bottom: 0;
							font-weight: 400;
						}
					}
				}

				&:last-child {
					a {
						border-bottom: 0;
					}
				}
			}
		}

		ul.menu {
			margin-top: 20px;
			li {
				a {
					font-size: 16px;
					color: var(--grey);
					border: 2px solid var(--grey);
					display: inline-block;
					padding: 7px 20px;

					i {
						margin-right: 10px;
					}
				}
			}
		}
	}
}

.header.scrolled {
	position: fixed;
	width: 100%;
	top: 0;
	height: 80px;
    animation: smoothScroll 1s forwards;
    box-shadow: 0 1px 5px rgba(0,0,0, .1);

    .container {
		height: 80px;

		#desktopmenu {
			.nav {
				ul {
					li {
						a {
							line-height: 80px;
						}

						.sub-menu {
							top: 80px;
						}
					}
				}
			}
		}
	}
}
@keyframes smoothScroll {
	0% {
		transform: translateY(-90px);
	}
	100% {
		transform: translateY(0px);
	}
}

ul#blog {
	margin: 30px 0 0 0;
	padding: 0;
	list-style: none;
	display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;

    li {
		position: relative;
		padding-bottom: 0;
		overflow: hidden;

		a {
			display: block;
			position: relative;

			h4 {
				margin: 15px 0 0 0;
			    line-height: 1.3;
			    font-size: 18px;
			    font-weight: 700;
			    color: var(--dark);
			}

			&:hover h4 {
				color: var(--red);
			}
		}

		.thumb {
		    position: relative;
		    width: 100%;
		    height: auto;
		    overflow: hidden;
		    background-color: var(--white);
		    line-height: 0;

		    a {
		    	display: block;
		    	line-height: 0;

		    	img {
		    		width: 100%;
		    		aspect-ratio: 16 / 10;
				    object-fit: cover;
				    margin: 0;
				    transform: scale(1);
				    transition: transform .5s;
		    	}

		    	&:hover img {
		    		transform: scale(1.1);
    				transition: transform .5s;
		    	}
		    }
		}

		p {
			line-height: 1.4;
			margin-left:0;
			font-size: 15px;
		}

		.post-category {
			display: none;
		}

		.metadata {
			position: relative;

			span {
				display: block;
				font-size: 13px;
				line-height: 1;
				color: var(--grey);
				margin-top: 15px;
			}
		}
    }
}

.partnership {
	position: relative;

	.elementor-widget-image img {
		border: 2px solid transparent;
		border-radius: 0 !important;

		&:hover {
			border: 2px solid var(--grey);
		}
	}
}

#foot {
	position: relative;
	width: 100%;
	margin: 0 auto;
	background-color: var(--dark);

	.container {
		width: 100%;
		max-width: 1200px;
		margin: 0 auto;
		padding: 70px 0 50px 0;
		overflow: hidden;
		position: relative;
		font-weight: 400;
		line-height: 1.6;
		color: rgba(255,255,255, .5);
		display: flex;
		justify-content: space-between;
		z-index: 2;

		> div {
			padding-right: 0;
			text-align: left;
		}

		h3 {
			margin: 0 0 30px 0;
		    color: var(--white);
		    font-size: 19px;
		    font-weight: 700;
		    text-transform: uppercase;

		    i {
		    	margin-right: 10px;
				color: var(--red);
		    }
		}

		p {
			margin: 0 0 20px 0;

			img {
				border-radius: 0 !important;
				padding: 0;
				margin: 0 !important;
			}
		}

		ul {
			margin: 0;
			padding: 0;
			list-style: none;
			overflow: hidden;

			li {
				position: relative;
				padding: 0 0 10px 0;

				a {
					display: block;
					color: rgba(255,255,255, .5);
					line-height: 1.6;

					&:hover {
						text-decoration: underline;
						color: var(--white);
					}

					i {
						width: 16px;
						margin-right: 7px;
					}
				}
			}
		}

		ul.socmed {
			margin: 0;
			padding: 0;
			list-style: none;
			overflow: hidden;

			li {
				position: relative;
				display: inline-block;
				margin-right: 15px;
				padding-bottom: 5px;

				a {
					display: block;
					text-align: center;

					&:hover {
						opacity: .8;
					}

					img {
						width: 21px;
						margin-top: 0 !important;
					}
					
					svg {
						width: 21px;
						margin-top: 0 !important;
						color: var(--white);
						fill: var(--white);
					}
				}
			}
		}
	}
}

.copyright {
	width: 100%;
	border-top: 1px solid rgba(255,255,255, .2);
	text-align: center;
	font-size: 14px;
	padding: 25px 20px;
	line-height: 1.2;
	color: rgba(255,255,255, .5);
	position: relative;
}

#big-title {
	position: relative;
	width: 100%;
	margin: 0 auto;
	background-color: var(--dark);
	overflow: hidden;

	&:after {
		content: '';
		position: absolute;
		z-index: 1;
		width: 100%;
		height: 100%;
		left: 0;
		top: 0;
		background-color: rgba(0,0,0, .6);
	}

	.container {
		width: 100%;
		max-width: 1200px;
		margin: 0 auto;
		height: 400px;
		overflow: hidden;
		position: relative;
		z-index: 2;
		text-align: center;

		h1 {
			color: var(--white);
		    margin: 0;
		    line-height: 1.2;
		    display: block;
		    font-size: 55px;
		    padding: 0;
		    position: relative;
		    text-transform: uppercase;
		    top: 50%;
		    transform: translateY(-50%);
		}
	}

	img {
		position: absolute;
		bottom: 0;
		left: 0;
		object-fit: cover;
		height: 400px;
		width: 100%;
	}

	&.post {
		position: relative;
		background-color: transparent;
		padding-top: 60px;

		&:after {
			display: none;
		}

		.container {
			height: inherit;

			.thumb {
				overflow: hidden;
				width: 100%;
				height: auto;

				img {
					width: 100%;
					height: auto;
					aspect-ratio: 16 / 8;
					object-fit: cover;
					position: relative;
				}
			}
		}
	}

	&.nobanner {
		position: relative;
		background-color: transparent;

		&:after {
			display: none;
		}

		.container {
			height: auto;
			padding: 50px 0 20px 0;
			border-bottom: 3px solid var(--red);

			h1 {
				color: var(--dark);
				top: 0;
				transform: none;
			}

			h3 {
				margin: 0;
				text-transform: uppercase;
			}
		}
	}
}

#main-wrapper {
	position: relative;
	width: 100%;
	margin: 0 auto;

	.container {
		width: 100%;
		max-width: 1200px;
		margin: 0 auto;
		padding: 80px 0;
		position: relative;

		.body-content {
			position: relative;

			article.full {
				width: 100%;
				border-bottom: 0;
				padding-bottom: 0;
				margin-bottom: 0;
				padding: 0;
				overflow: hidden;
				float: none;
				width: 100%;
				max-width: 1140px;
				margin: 0 auto;

				img {
					margin: 0;
					width: 100% !important;
				}

				h1 {
					margin: 20px 0 30px 0;
					font-size: clamp(24px, 4vw, 30px);
				}

				h2 {
					color: inherit;
					font-size: clamp(21px, 4vw, 24px);
				}
				h3 {
					color: inherit;
					font-size: clamp(18px, 4vw, 21px);
				}

				p.cat-tag a {
					font-size: 14px;
					margin: 3px 0;
					border: 1px solid var(--red);
					padding: 2px 10px;
					display: inline-block;
					margin-left: 7px;

					&:hover {
						background-color: var(--red);
						color: var(--white);
					}
				}
			}
		}

		&.small {
			width: 100%;
			max-width: 960px;
			margin: 0 auto;
			padding: 80px 0;
			position: relative;

			.metadata {
				font-size: 16px;
				margin-bottom: 40px;
				width: 100%;
				display: flex;
				flex-wrap: wrap;
				align-items: center;
				justify-content: space-between;
				position: relative;
				margin-top: -127px;
				z-index: 9;
				padding: 20px 30px;
				background-color: var(--white);
				box-shadow: 0 20px 20px rgb(0 0 0 / 8%);

				.infoauthor,
				.infodate,
				.infocategory {
					display: block;
					font-weight: 600;

					h6 {
						margin: 0;
						font-size: 12px;
						color: var(--grey);
						font-weight: 400;
					}
				}
			}
		}

		&.blog-grid {
			margin: 0 auto;
			list-style: none;
			display: grid;
		    grid-template-columns: repeat(3, 1fr);
		    grid-gap: 40px;

		    article {
				overflow: hidden;
				padding-bottom: 0;
				position: relative;

				.post-category {
					display: none;
				}

				.thumb {
					width: 100%;
				    height: auto;
				    position: relative;
				    overflow: hidden;
				    background-color: var(--white);

					a {
						display: block;
						line-height: 0;
						
						img {
							width: 100%;
						    aspect-ratio: 16 / 10;
						    object-fit: cover;
						    margin: 0;
						    transform: scale(1);
						    transition: transform .5s;
						}

						&:hover img {
							transform: scale(1.1);
    						transition: transform .5s;
						}
					}
				}

				.loop-content {
					position: relative;

					.metadata {
						position: relative;

						span {
							display: block;
							font-size: 13px;
							line-height: 1;
							color: var(--grey);
							margin-top: 15px;
						}
					}

					h2 {
						margin: 15px 0 0 0;
						line-height: 1.3;
						font-size: 18px;
						font-weight: 700;

						a {
							color: var(--dark);

							&:hover {
								color: var(--red);
							}
						}
					}

					p {
						line-height: 1.4;
						margin-left:0;
						font-size: 15px;
						margin-bottom: 0;
					}
				}
			}
		}
	}

	.pagination {
		position: relative;
	    display: block;
	    width: 100%;
	    text-align: center;
	    margin-bottom: 80px;

	    span.page-numbers.current {
	    	background: var(--red);
		    color: var(--white);
		    padding: 7px 12px 8px 12px;
	    }

	    a.page-numbers {
		    padding: 7px 12px 8px 12px;
		    color: var(--dark);

			&:hover {
			    background: var(--red);
			    color: var(--white);
			}
		}
	}
}

#related {
	position: relative;
	width: 100%;
	margin: 0 auto;
	background-color: var(--white);

	.container {
		width: 100%;
		max-width: 1200px;
		margin: 0 auto;
		padding: 80px 0;
		position: relative;
		overflow: hidden;

		h3 {
			text-align: center;
			margin: 0 0 40px 0;
			font-size: 35px;
		}

		ul {
			margin: 0;
			padding: 0;
			list-style: none;
			display: grid;
		    grid-template-columns: repeat(3, 1fr);
		    grid-gap: 40px;

			li {
				width: 100%;

				.the-thumb {
				    position: relative;
				    width: 100%;
				    height: auto;
				    overflow: hidden;
				    background-color: var(--white);
				    line-height: 0;

				    a {
				    	line-height: 0;

				    	img {
				    		width: 100%;
							aspect-ratio: 16 / 10;
						    object-fit: cover;
							margin: 0;
							transform: scale(1);
						    transition: transform .5s;
				    	}

				    	&:hover img {
				    		transform: scale(1.1);
    						transition: transform .5s;
				    	}
				    }
				}

				.metadata {
			    	position: relative;

			    	span {
			    		display: block;
                        font-size: 13px;
                        line-height: 1;
                        color: var(--grey);
                        margin-top: 15px;
			    	}
			    }

				a {
					h4 {
			    		margin: 15px 0 0 0;
						line-height: 1.3;
						font-size: 18px;
						font-weight: 700;

					    &:hover {
					    	color: var(--red);
					    }
			    	}
				}

				p {
					font-size: 15px;
				    line-height: 1.4;
				    margin: 15px 0 0 0;
				    max-width: 100%;
				    max-height: 100%;
				    word-break: keep-all;
				    white-space: normal;
				    text-overflow: ellipsis;
				    overflow: hidden;
				    display: -webkit-box;
				    -webkit-line-clamp: 3;
				    -webkit-box-orient: vertical;
				}
			}
		}
	}
}

.gallery-columns-3 {
	column-count: 3;
	gap: 20px;

	.gallery-item {
		padding: 0 !important;
		margin: 0 0 20px 0 !important;
		line-height: 0;
		overflow: hidden;
		width: 100% !important;
		max-width: 100% !important;

		img {
			width: 100% !important;
			height: auto;
			border: 0 !important;
		}
	}

	br {
		display: none !important;
		height: 0 !important;
	}
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInUp {
    animation: fadeInUp 1s ease forwards;
}

div.wpcf7 {position: relative;}
span.wpcf7-list-item {margin: 0; padding: 2px 5px;}
div.wpcf7 h3 {margin: 0; font-size: 16px;}
div.wpcf7 .wpcf7-form .col-2 p {position: relative; display: flex; flex-wrap: wrap; justify-content: space-between; margin: 0 0 20px 0;}
div.wpcf7 .wpcf7-form .col-2 p br {display: none; height: 0;}
div.wpcf7 .wpcf7-form .col-2 p label {
	margin-bottom: 0;
	display: block;
	width: 32%;
}
div.wpcf7 .wpcf7-form .col-1 p {position: relative; display: flex; flex-wrap: wrap; justify-content: space-between; margin: 0 0 20px 0;}
div.wpcf7 .wpcf7-form .col-1 p br {display: none; height: 0;}
div.wpcf7 .wpcf7-form .col-1 p label {
	margin-bottom: 0;
	display: block;
	width: 100%;
}
div.wpcf7 .wpcf7-form input {
	width: 100%;
	outline: 0;
	border: 0;
	padding: 14px 20px;
	margin: 0;
	font-size: 16px;
	color: var(--body-color);
	background-color: var(--white);
	display: block;
}
div.wpcf7 .wpcf7-form input:hover,
div.wpcf7 .wpcf7-form input:focus {
	background-color: var(--white);
}
div.wpcf7 .wpcf7-form select,
div.wpcf7 .wpcf7-form textarea {
	width: 100%;
	float: left;
	outline: 0;
	font-size: 16px;
	padding: 14px 20px;
	margin: 0;
	color: var(--body-color);
	border: 0;
	background-color: var(--white);
	display: block;
	height: 100px;
}
div.wpcf7 .wpcf7-form select:focus,
div.wpcf7 .wpcf7-form select:hover,
div.wpcf7 .wpcf7-form textarea:focus,
div.wpcf7 .wpcf7-form textarea:hover {
	background-color: var(--white);
}
div.wpcf7 .wpcf7-form input[type="submit"] {
	width: auto;
	outline: 0;
	border: 2px solid var(--grey);
	background-color: transparent;
    color: var(--grey);
    font-weight: 700;
    padding: 14px 50px;
    font-size: 16px;
    margin: 0;
    display: inline-block;
    float: left;
}
div.wpcf7 .wpcf7-form input[type="submit"]:hover {
	background-color: var(--grey);
	outline: 0;
	border: 2px solid var(--grey);
	color: var(--white);
}
span.wpcf7-form-control.wpcf7-checkbox {
	display: inline-block;
    overflow: hidden;
    font-size: 12px;
    background-color: var(--white);
    border: 1px solid #ccc;
    margin: 10px 10px 0 0;
}
div.wpcf7 .wpcf7-form input[type="checkbox"] {
	width: auto;
	float: left;
	margin: 5px 7px 0 0;
}
.wpcf7 form .wpcf7-response-output {
    margin: 15px 0 0 0 !important;
    padding: 0 !important;
    border: 0 !important;
    width: 100% !important;
    float: left !important;
    font-size: 14px;
    line-height: 1.2;
    background-color: transparent !important;
}
div.wpcf7 img.ajax-loader {position: absolute;}
img.ajax-loader {width: auto;}
.wpcf7-spinner {position: absolute; top: 45%; left: 45%;}
.wpcf7-not-valid-tip {font-size: 12px;}

body.wp-theme-pharmtech .elementor-invisible {
	visibility: visible !important;
}
body.contact-us .elementor-element-271d259 {
	display: none;
}

.whatsapp {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 999999;
    display: none;

    a {
	    color: var(--white);
	    padding: 0;
	    background: #45b33e;
	    border-radius: 100%;
	    -moz-border-radius: 100%;
	    -webkit-border-radius: 100%;
	    display: block;
	    line-height: 50px;
	    width: 50px;
	    height: 50px;
	    text-align: center;

	    &:hover {
	    	background-color: #0e907c;
	    	color: var(--white);
	    	text-decoration: none;
	    }

	    i {
	    	vertical-align: middle;
		    font-size: 30px;
		    position: relative;
		    padding: 0;
		    top: 0;
	    }
	}
}

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/
@media only screen and (max-width:1360px) {
	.header .container,
	#big-title .container,
	#main-wrapper .container,
	#main-wrapper .container.small,
	.post-headline .container,
	#related .container,
	#cta .container,
	#foot .container {padding-left: 20px; padding-right: 20px;}
}
@media only screen and (max-width:1024px) {
	html {padding-top: 0 !important;}
	.header {
		display: block;
		z-index: 99;
		top: 0;
		overflow: visible;

		.container {
			height: 80px;
			overflow: hidden;

			.logo {
				width: 110px;
				padding: 0;
			}

			#desktopmenu {
				display: none;
			}

			.topright {
				display: none;
			}

			.mobile-menu-button {
				display: block;
				position: relative;
				top: 5px;
			}
		}
	}

	.header.scrolled {
		top: 0;
		transition: none;
		border-bottom: 0;
	}
}

@media only screen and (max-width:768px) {
	html {padding-top: 0 !important;}

	ul#desktopmenu {display: none;}
	.mobile-menu-button {display: block;}
	
	.logo-client {
		.swiper-slide-image {
			padding: 10px;
		}
	}

	ul#blog {
		grid-template-columns: repeat(1, 1fr);
    	grid-gap: 30px;
	}

	.featured-logo .elementor-inner-column {width: 50%;}
	.featured-logo {padding: 60px 10px !important;}

	.gallery-columns-3 {
		column-count: 2;
		gap: 10px;

		.gallery-item {
			margin-bottom: 10px !important;
		}
	}

	#big-title {
		.container {
			height: 220px;

			img {
				height: 220px;
			}

			h1 {
				font-size: 35px;
				line-height: 1.2;
				position: relative;
			}
		}

		&.post {
			padding-top: 60px;

			.container {
				height: inherit;

				.thumb {
					height: auto;

					img {
						width: 100%;
						aspect-ratio: 16 / 10;
						object-fit: cover;
					}
				}
			}
		}
	}
	
	#main-wrapper {
		margin-top: 0;

		.container {
			padding: 60px 20px;

			&.blog-grid {
				grid-template-columns: repeat(1, 1fr);
		    	grid-gap: 30px;
			}

			&.small {
				.metadata {
					margin-top: -87px;
					padding: 10px 15px;

					.infoauthor,
					.infodate,
					.infocategory {
						display: block;
						font-weight: 600;
						font-size: 13px;
					}
				}
			}

			.body-content {
				article.full {
					h1 {
						margin-top: 0;
					}
				}
			}
		}
	}

	#related {
		.container {
			padding: 60px 20px;

			h3 {
				font-size: 30px;
				margin-bottom: 30px;
			}

			ul {
				grid-template-columns: repeat(1, 1fr);
		    	grid-gap: 30px;
			}
		}
	}

	div.wpcf7 .col > div {width: 100%;}
	div.wpcf7 .wpcf7-form .col-2 p {margin-bottom: 0;}
	div.wpcf7 .wpcf7-form .col-2 p label {width: 100%; margin-bottom: 20px;}
	div.wpcf7 .col-2 > div {width: 100%;}
	div.wpcf7 .wpcf7-form input[type="submit"] {
		width: 100%;
		display: block;
	}

	#foot {
		.container {
			padding: 20px 20px 30px 20px;
			display: block;

			h3 {
				margin-top: 30px;
				margin-bottom: 20px;
			}

			> div {
				width: 100% !important;
				padding-right: 0;
				margin-top: 30px;

				&:last-child {
					width: 100% !important;
					padding-right: 0;
				}
			}

			p img {
				margin-right: 0;
				margin-bottom: 0;
				width: 70px;
				height: auto;
			}
		}
	}
	.copyright {margin-top: 20px;}
}
@media only screen and (max-width:640px) {
}
@media only screen and (max-width:480px) {
}
/*------------------------------------*\
    MISC
\*------------------------------------*/

::-webkit-input-placeholder { /* Edge */
  color: var(--dark);
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: var(--dark);
}

::placeholder {
  color: var(--dark);
}

::selection {
	background:#00a1e9;
	color:var(--white);
	text-shadow:none;
}
::-webkit-selection {
	background:#00a1e9;
	color:var(--white);
	text-shadow:none;
}
::-moz-selection {
	background:#00a1e9;
	color:var(--white);
	text-shadow:none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	max-width:100%;
	padding: 0;
	font-size: 14px;
	font-style: italic;
	text-align:center;
}
.wp-caption.alignnone {
	margin:0 0 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:100%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size: 14px;
	line-height: 1.3;
	margin:0;
	text-align: left;
}
p.wp-caption-text {
	font-size: 14px !important;
	font-style: italic;
	padding-bottom: 0 !important;
	margin-bottom: 0;
}
.sticky {

}
.bypostauthor {

}
.addtoany_content {
	margin: 60px 0 0 0 !important;
	text-align: center;
}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:var(--dark) !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid var(--grey);
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background-color: #eee;
}
::-webkit-scrollbar-thumb {
  background-color: #aaa;
}
::-webkit-scrollbar-thumb:hover {
  background-color: var(--red);;
}
