/* General CSS for all pages */
:root {
	--txt: #262620;
	--cta: #F4C876;
	--cta-hover: #F9B73C;
	--bckg: #EAE5DF;
	--light: #F7F4EF;
	--dark: #494942;
}
html {
	background-color: var(--light);
}
section, footer {
	float: left;
	width: 100%;
}
h1, h2, h3, h4, h5, h6 {
	color: var(--txt);
}
p, li {
	font-family: "Roboto", serif;
	font-weight: 300;
	color: var(--txt);
}
.dd-wrap {
	display: flex;
	flex-wrap: wrap;
}
.dd-title {
	font-size: 50px;
	line-height: 65px;
}
.dd-subtitle {
	font-size: 20px;
	line-height: 32px;
	letter-spacing: 0.02em;
}
.dd-text {
	font-size: 16px;
	line-height: 26px;
	letter-spacing: 0.02em;
}
a, a:hover {
	transition: .5s ease;
}
.dd-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 14px;
	line-height: 17px;
	max-width: 100%;
}
.main-btn {
	letter-spacing: -0.01em;
	background-color: var(--cta);
	color: var(--txt);
	font-weight: 600;
}
.main-btn:hover,
.main-btn:active,
.main-btn:focus {
	background-color: var(--cta-hover);
	color: var(--txt);
}
.main-cta-icon,
.phone-icon {
	margin-right: 15px;
}
.transparent-btn {
	letter-spacing: 0.02em;
	border: 1px solid var(--txt);
	background-color: transparent;
	color: var(--txt);
	font-weight: 500;
}
.transparent-btn:hover,
.transparent-btn:active,
.transparent-btn:focus {
	background-color: #E5E0D7;
	color: var(--txt);	
}
.second-transparent-btn {
	border: 1px solid #CBB69D;
	background-color: transparent;
	color: #CBB69D;	
	font-weight: 500;
}
.second-transparent-btn:hover,
.second-transparent-btn:active,
.second-transparent-btn:focus {
	background-color: #CBB69D12;
	color: #CBB69D;	
}
.second-transparent-btn .phone-icon {
	filter: brightness(0) saturate(100%) invert(84%) sepia(40%) saturate(184%) hue-rotate(349deg) brightness(83%) contrast(89%);
}
.site-main {
	padding-top: 89px;
}
/* Translation */
html[lang="en-US"] h1,
html[lang="en-US"] h2,
html[lang="en-US"] h3,
html[lang="en-US"] h4,
html[lang="en-US"] h5,
html[lang="en-US"] h6,
html[lang="sr-RS"] h1,
html[lang="sr-RS"] h2,
html[lang="sr-RS"] h3,
html[lang="sr-RS"] h4,
html[lang="sr-RS"] h5,
html[lang="sr-RS"] h6,
html[lang="en-US"] .dd-btn,
html[lang="sr-RS"] .dd-btn,
html[lang="en-US"] input#gform_submit_button_1,
html[lang="sr-RS"] input#gform_submit_button_1 {
	font-family: "Fahkwang", serif;	
	font-weight: 400;
}
html[lang="ru-RU"] h1,
html[lang="ru-RU"] h2,
html[lang="ru-RU"] h3,
html[lang="ru-RU"] h4,
html[lang="ru-RU"] h5,
html[lang="ru-RU"] h6,
html[lang="ru-RU"] .dd-btn,
html[lang="ru-RU"] input#gform_submit_button_1 {
	font-family: "Unbounded", sans-serif;
	font-weight: 300;
}
html[lang="ru-RU"] .dd-btn {
	font-size: 12px;
}
html[lang="ru-RU"] input#gform_submit_button_1 {
	font-size: 13px;
}
html[lang="ru-RU"] .dd-title {
    font-size: 47px;
    line-height: 62px;
}
html[lang="ru-RU"] .first-blog-title {
    font-size: 35px;
    line-height: 47px;
}
html[lang="ru-RU"] body {
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}
/* End of Translation */

/* Animation */
.spinner-wrap {
	position: absolute;
}
.spinning-icon {
	animation: 25s linear infinite rotation;	
	object-fit: contain;
}
@-moz-keyframes rotation { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes rotation { 100% { -webkit-transform: rotate(360deg); } }
@keyframes rotation { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }
.static-icon {
	position: absolute;
	left: 0;
	top: 0;
}
/* End of Animation */

/* Plus Sign */
.line {
	position: absolute;
	width: 1.6px;
	height: 100%;
	background: transparent;
	left: 50%;
	transform: translatex(-50%);
}
.line.horizontal {
	transform: translateX(-50%) rotate(90deg);
}
.line:before,
.line:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 35%;
	transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.line:before {
	top: 0;
}
.line:after {
	bottom: 0;
}
.dd-btn .plus-sign {
	width: 21px;
	height: 21px;
	position: relative;
	margin-right: 7px;
}
.dd-btn .line:before,
.dd-btn .line:after {
	background-color: var(--txt);
}
.plus-parent:hover .line:before,
.plus-parent:hover .line:after {
	height: 25%;
	transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
/* End of plus sign */

/* Banner */
.banner-wrap {
	display: flex;
	justify-content: center;
	text-align: center;
	position: relative;
	z-index: 9;
}
.dd-title.banner-title {
	color: #CBB69D;
	padding: 0 15px 30px;
}
.banner-btns-wrap {
	display: flex;
	gap: 15px;
	justify-content: center;
}
.banner-btns-wrap .dd-btn {
	height: 63px;
}
.banner-cta {
	letter-spacing: -0.01em;
	width: 241px;
}
.banner-phone {
	letter-spacing: 0.01em;
	width: 245px;
}
/* End of Banner */

/* Education */
.education-img-wrap {
	margin-bottom: 20px;
}
.education-title {
	font-size: 18px;
	line-height: 26px;
	font-weight: 500;
	text-align: center;
}
.education-image {
	width: 100%;
}

/* Testimonials */
.testimonials-wrap {
	position: relative;
	z-index: 9;
	background: #fff;
	display: flex;
	padding: 55px 40px 70px 60px;
}
.testimonials-title-wrap {
	width: 39%;
}
.testimonials-title {
	font-size: 40px;
	line-height: 50px;
	letter-spacing: -0.01em;
}
.all-testimonials {
	width: 61%;
	padding: 5px 0 0 20px;
}
.testimonial-text {
	height: 200px;
	margin-bottom: 45px;
	overflow-x: auto;
}
.testimonial-text p {
	font-size: 18px;
	line-height: 30px;
	letter-spacing: 0.02em;
	padding-right: 7px;
}
/* width */
.testimonials-wrap ::-webkit-scrollbar {
	width: 4px;
}
/* Track */
.testimonials-wrap ::-webkit-scrollbar-track {
	background: #f1f1f1; 
}
/* Handle */
.testimonials-wrap ::-webkit-scrollbar-thumb {
	background: #CBC2B7;
}
/* Handle on hover */
.testimonials-wrap ::-webkit-scrollbar-thumb:hover {
	background: var(--txt); 
}
.testimonial-author-wrap {
	display: flex;
}
.testimonial-img-wrap {
	margin-right: 35px;
}
.testimonial-name {
	font-size: 20px;
	font-weight: 400;
	line-height: 30px;
	letter-spacing: 0.02em;
}
.testimonial-title {
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

/* Blog */
.blog-btn {
	width: 178px;
	height: 58px;
}
.blog-posts-container {
	display: flex;
	flex-wrap: wrap;
}
.blog-post-margin {
	margin-bottom: 30px;
}
.blog-post-container {
	background-color: #fff;
	padding: 43px;
	height: 100%;
}
.blog-post-first {
	display: flex;
}
.blog-post-image-container {
	margin-right: 50px;
	position: relative;
}
.blog-post-first .blog-post-image-container,
.blog-post-first .blog-text-wrap {
	width: 50%;
}
.blog-text-wrap {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}
.blog-date {
	font-size: 13px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}
.first-blog-title {
	font-size: 40px;
	line-height: 50px;
	letter-spacing: -0.01em;
	margin-bottom: 20px;
}
.second-blog-title {
	font-size: 26px;
	line-height: 34px;
	letter-spacing: -0.01em;
	margin-bottom: 15px;
}
.blog-text-wrap .dd-text {
	margin-bottom: 30px;
}
.blog-post-image-container img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}

/* POPUP */
.dd-popup-holder {
	position: fixed;
	left: 0;
	top: 0;
	justify-content: center;
	align-items: center;
	display: none;
	z-index: 9999999;
	overflow: auto;
	opacity: 0;
	width: 100%;
	height: 100%;
}
.dd-background-pop-color {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	left: 0;
}
#dd--popup-inner {
	max-width: 920px;
	width: 100%;
	background: #fff;
	z-index: 9999;
	position: relative;
	padding: 60px;
}
.dd-close {
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
}
.fa-times:before {
	font-size: 23px;
	color: #8c8c8c;
}
.popup-title {
	font-size: 28px;
	font-weight: 600;
	line-height: 56px;
	letter-spacing: 0.08em;
	color: var(--txt);
	text-transform: uppercase;
	margin-bottom: 10px;
}
.popup-text {
	font-size: 22px;
	font-weight: 300;
	line-height: 34px;
	letter-spacing: 0.04em;
	color: var(--txt);
}
.popup-spinner-wrap {
	position: relative;
	width: 120px;
	height: 120px;
}
.popup-spinner-wrap img {
	width: 100%;
	height: 100%;
}
.dd-popup-title-wrap {
	width: 60%;
}
.dd--content-wrap {
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
}
/* Form */
.gform_wrapper.gravity-theme .gfield input.large,
.gform_wrapper.gravity-theme .gfield textarea.small,
select#archives-dropdown--1 {
	border: 1px solid #43392B;
	box-shadow: none;
	background-color: transparent;
	font-family: Roboto;
	font-size: 16px;
	font-weight: 300;
	line-height: 28px;
	letter-spacing: 0.02em;
	color: var(--txt);
}
select#archives-dropdown--1 {
	max-width: 300px;
}
.gform_wrapper.gravity-theme .gfield input.large {
	height: 48px;
}
.gform_wrapper.gravity-theme .gfield input.large::placeholder,
.gform_wrapper.gravity-theme .gfield textarea.small::placeholder {
	opacity: .8;
}
input#gform_submit_button_1 {
	background-color: var(--txt);
	width: 208px;
	height: 63px;
	color: #fff;
	font-size: 14px;
	line-height: 18.2px;
	margin: 0;
}
.dd-form-wrap .gform_wrapper.gravity-theme .gform_validation_errors {
	background: transparent;
	box-shadow: none;
}
.dd-form-wrap .gform_wrapper.gravity-theme .gfield_description {
	background-color: transparent;
	border: none;
	padding-left: 0;
	padding-bottom: 5px;
}
.dd-form-wrap .gform_wrapper.gravity-theme .gform_footer {
	padding-bottom: 0;
	margin: 0;
}
.otgs-development-site-front-end {
	float: left;
	width: 100%;
}
/* End of popup and form */
.on-scroll-button.on-scroll-desktop {
	display: none !important;
}

/* Team */
.team-member {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}
.team-img-wrap {
	margin-bottom: 20px;
	display: flex;
}
.team-img {
	width: 100%;
	aspect-ratio: 270 / 313;
	object-fit: cover;
}
.team-text {
	text-align: center;
}
.team-btn {
	width: 178px;
	height: 58px;
	margin: 0 auto;
}

/* Media */
@media screen and (max-width: 1650px) {
	.site-main {
		padding-top: 79px;
	}
	.dd-title {
		font-size: 39px;
		line-height: 53px;
	}
	.dd-subtitle {
		font-size: 19px;
		line-height: 30px;
	}
	.spinner-wrap {
		width: 160px;
		height: 160px;
	}
	.dd-btn {
		font-size: 13px;
	}
	#dd-banner {
		padding: 130px 0 175px;
	}
	.dd-title.banner-title {
		padding-left: 50px;
		padding-right: 50px;
	}
	.education-title {
		font-size: 14px;
		line-height: 20px;
	}
	.education-img-wrap {
		margin-bottom: 15px;
	}
	.testimonials-wrap {
		padding: 44px 33px 70px 55px;
	}
	.testimonials-title {
		font-size: 34px;
		line-height: 44px;
	}
	.testimonial-text p {
		font-size: 17px;
		line-height: 29px;
	}
	.testimonial-name {
		font-size: 19px;
		margin-bottom: 5px;
	}
	.testimonial-title {
		font-size: 13px;
	}
	.first-blog-title {
		font-size: 32px;
		line-height: 40px;
		margin-bottom: 15px;
	}
	.second-blog-title {
		font-size: 22px;
		line-height: 30px;
	}
	html[lang="ru-RU"] .dd-title {
    font-size: 35px;
    line-height: 48px;
}
	html[lang="ru-RU"] .first-blog-title {
    font-size: 28px;
    line-height: 41px;
}
	.team-btn {
		width: 171px;
		height: 53px;
	}
}
@media screen and (max-width: 1199px) {
	.site-main {
		padding-top: 69px;
	}
	.dd-title {
		font-size: 37px;
	}
	.dd-subtitle {
		font-size: 17px;
		line-height: 29px;
	}
	.education-img-wrap {
		margin-bottom: 15px;
	}
	#dd-banner {
		padding: 110px 0 140px;
	}
	.dd-title.banner-title {
		padding-left: 0;
		padding-right: 0;
	}
	.blog-post-image-container {
		margin-right: 40px;
	}
}
@media screen and (max-width: 991px) {
	.site-main {
		padding-top: 60px;
	}
	.dd-title {
		font-size: 34px;
		line-height: 50px;
	}
	.single-education-holder {
		margin-bottom: 30px;
	}
	.education-title {
		font-size: 18px;
		line-height: 28px;
	}
	.testimonials-wrap {
		flex-direction: column;
		padding: 36px 22px 40px 25px;
	}
	.testimonials-title-wrap {
		width: 60%;
		margin: 0 15px 30px;
	}
	.all-testimonials {
		width: 100%;
		padding: 0;
	}
	.gform_wrapper.gravity-theme .gfield input.large {
		height: 44px;
	}
	input#gform_submit_button_1 {
		height: 58px;
	}
}
@media screen and (max-width: 767px) {
	.dd-title {
		font-size: 26px;
		line-height: 41px;
	}
	html[lang="ru-RU"] .dd-title {
    font-size: 25px;
    line-height: 40px;
}
	.dd-btn {
		font-size: 15px;
	}
	.spinner-wrap {
		width: 130px;
		height: 130px;
	}
	#dd-banner {
		padding: 80px 0 95px;
	}
	.banner-btns-wrap {
		flex-direction: column;
		align-items: center;
	}
	.testimonials-wrap {
		padding: 40px 10px 45px;
	}
	.testimonials-title-wrap {
		width: 100%;
		margin: 0 auto 15px;
		padding: 0 15px;
	}
	.testimonials-title {
		font-size: 25px;
		line-height: 36px;
	}
	.testimonial-text p {
		font-size: 16px;
		line-height: 28px;
	}
	.testimonial-text {
		height: 232px;
	}
	.testimonial-img-wrap {
		margin-right: 18px;
		width: 93px;
	}
	.testimonial-name {
		font-size: 16px;
		margin-bottom: 0;
		line-height: 24px;
	}
	.blog-post-container {
		padding: 30px 25px;
	}
	.blog-post-image-container {
		margin-right: 0;
		margin-bottom: 15px;
	}
	.blog-post-image-container img {
		position: unset;
	}
	.first-blog-title {
		font-size: 24px;
		line-height: 33px;
		margin-bottom: 11px;
	}
	html[lang="ru-RU"] .first-blog-title {
    font-size: 22px;
    line-height: 34px;
}
	.second-blog-title {
		font-size: 20px;
		line-height: 28px;
	}
	.blog-post-first {
		flex-direction: column;
	}
	.blog-post-first .blog-post-image-container,
	.blog-post-first .blog-text-wrap {
		width: 100%;
	}
}
@media screen and (min-width: 501px) {
	#dd-banner {
		padding: 190px 0 200px;
		height: 100%;
		background-image: url('/wp-content/uploads/2025/02/banner_image_new.webp');
		background-position: center;
		background-size: cover;
		background-repeat: no-repeat;	
	}	
}
@media screen and (max-width: 500px) {
	#dd-banner {
		position: relative;
	}
	.banner-background-mobile {
		display: block  !important;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
	#dd-banner:after {
		position: absolute;
		content: '';
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		background-color: #0000003d;
	}
}