/*

TemplateMo 578 First Portfolio

https://templatemo.com/tm-578-first-portfolio

*/

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #ff911c;
  --secondary-color:              #0d1321;
  --section-bg-color:             #fafcff;
  --dark-color:                   #050a14;
  --p-color:                      #171230;
  --border-color:                 #e9ebf9;
  --featured-border-color:        #171230;
  --link-color:                   #050a14;
  --transparent:                  #ffffff00;

  --body-font-family:             'JetBrainsMono', 'Fira Code', monospace;

  --h1-font-size:                 48px;
  --h2-font-size:                 32px;
  --h3-font-size:                 32px;
  --h4-font-size:                 24px;
  --h5-font-size:                 24px;
  --h6-font-size:                 20px;
  --p-font-size:                  16px;
  --menu-font-size:               16px;
  --copyright-font-size:          14px;
  --contact-headers:              14px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-normal:           400;
  --font-weight-medium:           500;
  --font-weight-bold:             700;
}

body {
  background: var(--white-color);
  font-family: var(--body-font-family);
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
  letter-spacing: -1px;
}
h1 {
  font-size: var(--h1-font-size);
  letter-spacing: -2px;
}
h2 {
  font-size: var(--h2-font-size);
  color: var(--secondary-color);
  /*letter-spacing: -3px;*/
  letter-spacing: -2px;
}
h3 {
  font-size: var(--h3-font-size);
}
h4 {
  font-size: var(--h4-font-size);
}
h5 {
  font-size: var(--h5-font-size);
  line-height: normal;
}
h6 {
  font-size: var(--h6-font-size);
}
p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}
ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}
a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}
a {
  color: var(--link-color);
}
a:hover {
  color: var(--secondary-color);
}
::selection {
  background: var(--secondary-color);
  color: var(--white-color);
}
::-moz-selection {
  background: var(--secondary-color);
  color: var(--white-color);
}
.section-padding {
  padding-top: 80px;
  padding-bottom: 80px;
}
.section-margin {
  margin-top: -128px;
}
b, strong {
  font-weight: var(--font-weight-bold);
}
.section-title-wrap {
  background: var(--secondary-color);
  border-radius: var(--border-radius-small);
  padding: 10px 30px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 
  0 0 20px rgba(255, 255, 255, 0.6), 
  0 0 30px rgba(255, 255, 255, 0.4);
}
/*---------------------------------------
  AVATAR IMAGE               
-----------------------------------------*/
.avatar-image {
  border-radius: var(--border-radius-large);
  width: 160px;
  height: 160px;
  object-fit: cover;
}
.avatar-image-large {
  width: 90.4px;
  height: 90.4px;
}
/*---------------------------------------
  PRE LOADER               
-----------------------------------------*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  background: none repeat scroll 0 0 var(--white-color);
}
.spinner {
  border: 1px solid transparent;
  border-radius: var(--border-radius-small);
  position: relative;
}
.spinner:before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45px;
  height: 45px;
  margin-top: -10px;
  margin-left: -10px;
  border-radius: 50%;
  border: 1px solid var(--secondary-color);
  border-top-color: var(--primary-color);
  animation: spinner .9s linear infinite;
}
@-webkit-@keyframes spinner {
  to {transform: rotate(360deg);
  }
}
@keyframes spinner {
  to {transform: rotate(360deg);}
}
/*---------------------------------------
  CUSTOM ICON               
-----------------------------------------*/
.navbar-icon {
  background: var(--white-color);
  border-radius: var(--border-radius-large);
  color: var(--dark-color);
  width: 47px;
  height: 47px;
  line-height: 47px;
  text-align: center;
}
.is-sticky .navbar-icon {
  background: var(--secondary-color);
  color: var(--white-color);
}
.form-check-icon {
  color: var(--secondary-color);
}
/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn,
.navbar .custom-btn {
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-bold);
}
.navbar .custom-btn {
  background: transparent;
  border-width: 2px;
  border-style: solid;
  border-color: var(--white-color);
  color: var(--white-color);
  padding: 8px 22px;
}
.navbar .custom-btn:hover {
  background: var(--white-color);
  border-color: transparent;
  color: var(--secondary-color);
}
.custom-btn {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--secondary-color);
  font-weight: var(--font-weight-bold);
  padding: 12px 24px;
}
.custom-btn:hover {
  background: var(--primary-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  color: var(--white-color);
}
.custom-border-btn {
  background: transparent;
  border: 2px solid var(--border-color);
  color: var(--p-color);
}
.custom-border-btn:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white-color);
}
.custom-link {
  background-color: var(--primary-color);
}
.custom-link:hover {
  /*background-color: var(--secondary-color);*/
  background-color: var(--primary-color);
}
/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.sticky-wrapper {
  position: relative;
  z-index: 222;
  height: auto !important;
}
.is-sticky,
.is-sticky .navbar .container {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 18%);
}
.is-sticky .navbar-brand,
.is-sticky .navbar-brand:hover {
  color: var(--dark-color);
}
.is-sticky .navbar-nav .nav-link {
  color: var(--p-color);
}
.is-sticky .navbar .custom-btn {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}
.is-sticky .navbar .custom-btn:hover {
  background: var(--secondary-color);
  color: var(--white-color);
}
.navbar {
  background: transparent;
  position: absolute;
  z-index: 9;
  right: 0;
  left: 0;
  transition: all 0.3s;
  padding-top: 15px;
  padding-bottom: 0;
}
.navbar .container {
  border-radius: var(--border-radius-small);
  padding: 10px 25px;
}
.navbar-brand {
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);
}
.navbar-brand,
.navbar-brand:hover {
  color: var(--white-color);
}
.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
  margin-right: 16px;
  margin-left: 16px;
}
.navbar-nav .nav-link {
  display: inline-block;
  color: var(--section-bg-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  position: relative;
  padding-top: 16px;
  padding-bottom: 16px;
}
.navbar-nav .nav-link::after {
  content: "";
  background: transparent;
  position: absolute;
  bottom: 14px;
  right: 0;
  left: 0;
  width: 100%;
  height: 2px;
}
.navbar-nav .nav-link.active::after, 
.navbar-nav .nav-link:hover::after {
  background: var(--border-color);
}
.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
}
.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}
.navbar-toggler {
  margin-right: 16px;
}
.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent !important;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}
.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}
.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}
.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}
.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}
/*---------------------------------------
  dragokatic              
-----------------------------------------*/
.dragokatic {
  background: var(--secondary-color);
  position: relative;
  overflow: hidden;
  height: 100vh;
  padding-top: 128px;
}
.drago-katic-development-text-box,
.dragokatic h2 {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  border-radius: var(--border-radius-large);
  display: inline-block;
  padding: 8px 24px;
  font-size: var(--h2-font-size);
}
.dragokatic-text {
  position: relative;
  z-index: 22;
  top: 70px;
}
.dragokatic-image {
  position: absolute;
  z-index: 22;
  width: 64%;
}
.dragokatic svg {
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  left: 0;
  overflow: hidden;
  height: 100%;
  pointer-events: none;
}
.tagline-image {
  position: absolute;
  z-index: 22;
  bottom: 0;
  width: 64%;
}
.dragokatic-code-symbol {
  color: var(--white-color); 
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 0px;
}
.secondary-color {
  color: var(--primary-color);
}
/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.profile-thumb {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}
.profile-title {
  border-bottom: 1px solid var(--border-color);
  padding: 15px 30px;
}
.profile-small-title {
  border-right: 1px solid var(--border-color);
  color: var(--secondary-color);
  font-weight: var(--font-weight-bold);
  min-width: 140px;
  margin-right: 10px;
  padding: 13px 30px;
  display: inline-block;
  width: 100%;
}
.profile-body p {
  margin-bottom: 0;
}
.profile-body p:nth-of-type(even) {
  background: var(--white-color);
}
.about-image {
  border-radius: var(--border-radius-medium);
}
.about-thumb {
  padding-right: 20px;
  padding-left: 20px;
}
/*---------------------------------------
  FEATURED              
-----------------------------------------*/
.featured-numbers {
  font-size: var(--h1-font-size);
  line-height: normal;
  display: block;
  /*color: var(--primary-color);*/
  color: white;
  text-shadow: 
  0 0 2px var(--secondary-color),
  0 0 4px var(--secondary-color),
  0 0 6px var(--secondary-color),
  0 0 8px var(--secondary-color),
  0 0 10px var(--secondary-color);
}
.featured-text {
  color: var(--secondary-color);
}
.featured-border-bottom {
  border-bottom: 1px solid var(--border-color);
}
.featured-border-start {
  border-left: 1px solid var(--border-color);
}
/*---------------------------------------
  CLIENTS              
-----------------------------------------*/
.clients-item-height {
  height: 120px;
}
.clients-image {
  display: block;
  /* correction max-width: 100px;*/
  max-width: 270px;
  margin: auto;
  transition: all ease 0.2s;
  border: 8px solid var(--border-color);
  border-radius: var(--border-radius-small);
  background: var(--border-color);
}
.clients-image:hover {
  transform: scale(1.3);
}
/*---------------------------------------
  SERVICES              
-----------------------------------------*/
.services,
.featured {
  background: var(--section-bg-color);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.services-thumb {
  background: var(--white-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  padding: 32px 32px 256px 32px;
  /*padding: 40px 40px 240px 40px;*/
  transition: all 0.5s;
}
.services-thumb-up {
  position: relative;
  bottom: 0px;
  margin-bottom: 32px;
}
.services-thumb:hover {
  border: 2px solid var(--secondary-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
}
.services-thumb:hover .services-icon-wrap {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white-color);
}
.services-icon-wrap {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-small);
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 55%;
  transform: rotate(-35deg) translateY(55px);
  transition: all ease 0.5s;
}
.services-icon {
  font-size: 90px;
  position: relative;
  bottom: 15px;
}
.services-thumb:hover .services-price-wrap {
  background: var(--secondary-color);
}
.services-thumb:hover .services-price-overlay {
  background: var(--primary-color);
}
.bi {
  fill: var(--white-color) !important;
  width: 24px !important;
  height: 24px !important;
  margin: 0px 4px 0px 0px;
}
.bi-filetype {
  isolation: isolate;
  font-size: 8px;
  font-family: var(--body-font-family);
  font-weight: var(--font-weight-bold);
}
.kopimi-svg {
  width: 24px;
  height: 24px;
}
.kopimi-circle {
  fill: var(--white-color);
  stroke: var(--primary-color);
  stroke-width: 16.5023;
}
.kopimi {
  fill: var(--secondary-color);
}
.services-price-wrap {
  background: var(--primary-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 6px 20px 6px 15px;
  transition: all ease 0.5s;
}
.services-price-text {
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-bold);
}
.services-price-overlay {
  background: var(--secondary-color);
  border-bottom-left-radius: 100%;
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  pointer-events: none;
}
/*---------------------------------------
  PROJECTS              
-----------------------------------------*/
.projects-thumb {
  background: var(--section-bg-color);
  border: 2px solid var(--white-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 40px;
  transition: all ease 0.5s;
}
.projects-thumb:hover {
  border-color: var(--secondary-color);
}
.projects-thumb:hover .projects-image,
.projects-thumb:focus .projects-image {
  transform: rotate(0) translateY(0);
}
.projects-thumb .popup-image {
  display: block;
  width: 100%;
  height: 100%;
}
.projects-image {
  border-radius: var(--border-radius-medium);
  display: block;
  width: 100%;
  transform: rotate(10deg) translateY(80px);
  transition: all ease 0.5s;
}
.projects-tag {
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  color: var(--secondary-color);
  text-transform: uppercase;
  padding: 16px 0px 16px 0px;
}
/*---------------------------------------
  CONTACT              
-----------------------------------------*/
.contact {
  background: var(--section-bg-color);
}
.contact-info {
  background: var(--white-color);
  border-top-right-radius: var(--border-radius-small);
  border-bottom-right-radius: var(--border-radius-small);
  padding: 0px 30px 30px 30px;
  height: 100%;
}
.contact-info-border-start {
  border-right: 1px solid var(--border-color);
  border-radius: var(--border-radius-small) 0 0 var(--border-radius-small);
}
.contact-form {
  margin-left: 10px;
}
/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  background: var(--white-color);
  box-shadow: none;
  border: 2px solid var(--border-color);
  color: var(--p-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  outline: none;
}
.form-floating>label {
  color: var(--p-color);
}
.form-check-inline {
  vertical-align: middle;
  width: 100%;
  position: relative;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 24px;
  padding: 0;
}
.custom-form .form-check-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.form-check-label-text {
  color: var(--p-color);
  display: block;
  font-size: copyright-font-size;
  margin-top: 5px;
}
.form-check-input[type=checkbox] {
  background: var(--white-color);
  border: 2px solid var(--border-color);
  box-shadow: none;
  outline: none;
  width: 100%;
  margin-top: 0;
  margin-left: 0;
  padding: 40px 50px;
}
.form-check-input:checked[type=checkbox] {
  background-image: none;
}
.form-check-input:hover,
.form-check-input:checked {
  background-color: transparent;
  border-color: var(--secondary-color);
}
.custom-form .form-control:hover,
.custom-form .form-control:focus {
  background: transparent;
  border-color: var(--secondary-color);
}
.custom-form .form-floating textarea {
  height: 150px;
}
.custom-form button[type="submit"] {
  background: var(--primary-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--secondary-color);
  font-weight: var(--font-weight-bold);
  transition: all 0.3s;
  margin-bottom: 0;
}
.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--primary-color);
  border-color: transparent;
  color: var(--white-color);
}
/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  border-top: 1px solid var(--border-color);
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
}
.site-footer-title {
  font-size: var(--contact-headers);
  color: var(--dark-color);
  text-transform: uppercase;
}
.copyright-text-wrap p,
.copyright-text {
  font-size: var(--copyright-font-size);
}
.copyright-text {
  border-right: 1px solid var(--border-color);
  /*padding-right: 25px;
  margin-right: 20px;*/
}
.copyright-text-wrap a {
  font-weight: var(--font-weight-bold);
}
.footer-menu {
  margin: 0;
  padding: 0;
}
.footer-menu-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}
.footer-menu-link {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-medium);
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-medium);
  display: inline-block;
  vertical-align: top;
  text-align: center;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 6px 14px;
  min-width: 70px;
  text-decoration: none;
}
.footer-menu-link:hover {
  background: var(--secondary-color);
  border-color: transparent;
  color: var(--white-color);
}
/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}
.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
  width: 32px;
  height: auto;
  margin-right: 8px;
}
.social-icon-link {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-large);
  font-size: var(--copyright-font-size);
  color: var(--dark-color);
  display: inline-block;
  vertical-align: top;
  margin: 2px 2px 5px 2px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}
.social-icon-link:hover {
  background: var(--secondary-color);
  border-color: transparent;
  color: var(--white-color);
}

/* CUSTOM CSS */
/*HEADER SECTION*/
.header-container {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
}
.header-text {
  display: flex;
  flex-direction: column;
  line-height: 0.8;
}
.header-drago-katic {
  font-size: 20px;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}
.drago-katic-development {
  font-size: 20px;
  letter-spacing: -0.05em;
  margin-top: 0px;
}
.header-logo {
  width: 24px;
  height: auto;
  margin: -9px 0px -9px -9px;
}
.menu-links-size {
  font-size: var(--menu-font-size);
}
.margin-0{
  margin: 0px;
}
.papers-small-title {
  border-right: 1px solid var(--border-color);
  color: var(--secondary-color);
  font-weight: var(--font-weight-bold);
  min-width: 140px;
  margin-right: 10px;
  padding: 13px 10px;
  display: inline-block;
  width: 100%;
  font-size: 18px;
}
.papers-style{
  font-size: 16px;
  margin: 0px 15px 0px 10px;
  text-decoration: underline;
}
.papers-margines{
  margin: 30px 0px 10px 0px;
}
.papers-decoration {
  text-decoration: none;
  margin-top: 20px;
}
.margin-padding-0{
  margin: 0px;
  padding: 0px;
}
.margin-top-20{
  margin-top: 20px;
}
.margin-left-0 {
  margin-left: 0px !important;
}
.margin-right-0 {
  margin-right: 0px !important;
}
.contact-title {
  padding: 16px 0px;
}
.contact-info {
  padding-top: 16px;
}
/* SPRITER */
.img-spriter{
  display: block;
  width: 128px; 
  height: 15px;
  margin: 6px auto 5px auto;
  vertical-align: sub;
  background: url(../images/spriter.gif) 0 0 no-repeat;
}
.img-spriter::before {
  /*content: "Spriter *.gif animation";*/
  content: "";
}
.margin-top--11{
  margin-top: -11px;
}
.papers-margin-top {
  margin-top: -448px;
}
.section-background{
  background: var(--section-bg-color);
}
.section-z-index{
  position: relative;
  z-index: 2;
}
.custom-section {
  border-top: 1px solid var(--white-color);
  border-bottom: 1px solid var(--white-color);
}
.custom-contact-section {
  border-top: 1px solid var(--white-color);
  margin-top: 1%;
}
.logo-image {
 position: absolute;
 right: 14%;
 top: 50%;
 width: 64px;
 height: auto;
 transform: translate(-50%, -50%);
 animation: rotateImage 10s linear infinite;
}
.logo-image-big {
  width: 256px;
  top: 33%;
  right: 17%;
}
@keyframes rotateImage {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.z-index-50 {
  z-index: 50;
}
.text-weight-bold {
  font-weight: var(--font-weight-bold);
}
.width-100 {
  width: 100%;
}
.other-pages-header {
  all: unset;
  background: var(--section-bg-color) ;
  height: 80vh !important;
}
.other-pages-title {
  font-size: var(--h1-font-size) !important;
}
.other-pages-subtitle {
  margin-top: 32px;
}
.other-pages-description {
  font-size: var(--h6-font-size) !important;
  text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.8), -2px -2px 5px rgba(255, 255, 255, 0.8); 
  padding: 64px 64px 0px 0px;
}
.page-subject {
  margin-top: 64px;
}
.page-p {
  margin-top: 64px;
  margin-bottom: 16px;
}
/* SLIDER magnific-popup.css   */
.mfp-arrow-right::before {
  border-left: 27px solid var(--secondary-color);
}
.mfp-arrow-right::after {
  border-left: 17px solid var(--secondary-color);
}
.mfp-arrow-left::before {
  border-right: 27px solid var(--secondary-color);
}
.mfp-arrow-left::after {
  border-right: 17px solid var(--secondary-color);
}
.mfp-image-holder .mfp-close, 
.mfp-iframe-holder .mfp-close {
  color: var(--primary-color);
}
.mfp-counter {
  color: var(--primary-color);
}
.mfp-bg {
  background: var(--secondary-color);
  opacity: 0.8;
}
.button-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.button-text-websites {
  font-weight: 600;
  font-size: 14px;
}
.top-left-corner {
  font-size: 18px;
  margin: 0px 0px 0px 8px;
}
.projects-title {
  margin-top: 16px;
  margin-bottom: 16px;
}
/*ORDER A WEBSITE*/
.order-a-website {
  display: flex;
  justify-content: center;
  align-items: center;
}
.custom-btn {
  text-align: center;
  vertical-align: bottom;
}
.order-a-website-position{
  margin-right: 23%;
}
.tree {
  font-family: var(--body-font-family);
  white-space: pre;
  font-size: 16px;
  line-height: 1.4;
}
.folder {
  font-weight: bold;
  color: var(--primary-color);
}

/*TESTING*/
.tag-cloud {
  position: relative;
  width: 100%;
  min-height: 400px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  padding: 1rem;
}

.tag-cloud h1,
.tag-cloud h2,
.tag-cloud h3,
.tag-cloud h4,
.tag-cloud h5,
.tag-cloud h6 {
  position: relative;
  display: inline-block;
  margin: 0.4rem;
  padding: 0.1rem 0.2rem;
  color: var(--dark-color);
  opacity: 0.9;
  transition: color 0.3s ease, transform 0.3s ease;
  animation: floaty 12s infinite ease-in-out;
}

.tag-cloud h1:hover,
.tag-cloud h2:hover,
.tag-cloud h3:hover,
.tag-cloud h4:hover,
.tag-cloud h5:hover,
.tag-cloud h6:hover {
  color: var(--primary-color);
  transform: scale(1.1) rotate(2deg);
}

@keyframes floaty {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(3px, -5px) rotate(-2deg); }
  50% { transform: translate(-4px, 2px) rotate(1deg); }
  75% { transform: translate(2px, 4px) rotate(-1deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

.tag-cloud h1 { animation-duration: 11s; }
.tag-cloud h2 { animation-duration: 13s; }
.tag-cloud h3 { animation-duration: 14s; }
.tag-cloud h4 { animation-duration: 15s; }
.tag-cloud h5 { animation-duration: 16s; }
.tag-cloud h6 { animation-duration: 17s; }

/* END OF CUSTOM CSS */

/* =======================================
   RESPONSIVE STYLES (Bootstrap-aligned)
   ======================================= */

/* ≥1600px — Extra large desktops */
@media (min-width: 1600px) {

}

/* 1400px–1599px — Large desktops */
@media (min-width: 1400px) and (max-width: 1599px) {
  :root {
    --h1-font-size:                 48px;
    --h2-font-size:                 32px;
    --h3-font-size:                 32px;
    --h4-font-size:                 32px;
    --h5-font-size:                 24px;
    --h6-font-size:                 20px;
    --p-font-size:                  16px;
    --menu-font-size:               14px;
    --copyright-font-size:          14px;
    --contact-headers:              14px;
  }
  .dragokatic {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .dragokatic-text {
    top: 0;
    margin-bottom: 120px;
  }
  .about-thumb {
    padding-right: 0;
    padding-left: 0;
  }
  .about-numbers {
    font-size: 42px;
  }
  .services-thumb-up {
    bottom: 0;
    margin-bottom: 32px;
  }
  .services-thumb {
    margin-bottom: 32px;
    padding-bottom: 270px;
  }
  .services-icon-wrap {
    width: 45%;
    height: 54%;
  }
  .services .col-lg-10 .row .col-lg-6:last-child,
  .projects .col-lg-4:last-child {
    margin-bottom: 0;
  }
  .projects-thumb {
    margin-top: 0;
    margin-bottom: 32px;
  }
  .contact-info {
    border-radius: 0 0 var(--border-radius-small) var(--border-radius-small);
    padding: 40px 30px;
  }
  .contact-info-border-start {
    border-right: 0;
    border-bottom: 1px solid var(--border-color);
    border-radius: var(--border-radius-small) var(--border-radius-small) 0 0;
  }
  .img-size-position {
    margin-top: -590px;
  }
}

/* 1200px–1399px — Desktops */
@media (min-width: 1200px) and (max-width: 1399px) {
    :root {
    --h1-font-size:                 48px;
    --h2-font-size:                 28px;
    --h3-font-size:                 32px;
    --h4-font-size:                 32px;
    --h5-font-size:                 24px;
    --h6-font-size:                 20px;
    --p-font-size:                  16px;
    --menu-font-size:               14px;
    --copyright-font-size:          14px;
    --contact-headers:              14px;
  }
  .dragokatic {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .dragokatic-text {
    top: 0;
    margin-bottom: 120px;
  }
  .about-thumb {
    padding-right: 0;
    padding-left: 0;
  }
  .about-numbers {
    font-size: 42px;
  }
  .services-thumb-up {
    bottom: 0;
    margin-bottom: 32px;
  }
  .services-thumb {
    margin-bottom: 32px;
    padding-bottom: 270px;
  }
  .services-icon-wrap {
    width: 45%;
    height: 46%;
  }
  .tree {
    padding: 8px 0px 16px 8px;
  }
  .services .col-lg-10 .row .col-lg-6:last-child,
  .projects .col-lg-4:last-child {
    margin-bottom: 0;
  }
  .projects-thumb {
    margin-top: 0;
    margin-bottom: 32px;
  }
  .contact-info {
    border-radius: 0 0 var(--border-radius-small) var(--border-radius-small);
    padding: 40px 30px;
  }
  .contact-info-border-start {
    border-right: 0;
    border-bottom: 1px solid var(--border-color);
    border-radius: var(--border-radius-small) var(--border-radius-small) 0 0;
  }
  .img-size-position {
    margin-top: -590px;
  }
}

/* 992px–1199px — Laptops / Large tablets */
@media (min-width: 992px) and (max-width: 1199px) {
  :root {
    --h1-font-size:                 40px;
    --h2-font-size:                 24px;
    --h3-font-size:                 32px;
    --h4-font-size:                 32px;
    --h5-font-size:                 24px;
    --h6-font-size:                 20px;
    --p-font-size:                  16px;
    --menu-font-size:               14px;
    --copyright-font-size:          14px;
    --contact-headers:              14px;
  }
  .menu-links-size {
    font-size: var(--menu-font-size);
  }
  .tree {
    font-size: 14px;
    line-height: 1.4;
    margin-top: 16px;
  }
  .img-size-position {
    margin-top: -590px;
  }
  .dragokatic {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .dragokatic-text {
    top: 0;
    margin-bottom: 120px;
  }
  .drago-katic-development-text-box {
    font-size: var(--h3-font-size);
  }
  .about-thumb {
    padding-right: 0;
    padding-left: 0;
  }
  .about-numbers {
    font-size: 42px;
  }
  .services-thumb-up {
    bottom: 0;
    margin-bottom: 32px;
  }
  .services-thumb {
    margin-bottom: 32px;
    padding-bottom: 270px;
  }
  .services-icon-wrap {
    width: 55%;
    height: 35%;
  }
  .services .col-lg-10 .row .col-lg-6:last-child,
  .projects .col-lg-4:last-child {
    margin-bottom: 0;
  }
  .projects-thumb {
    margin-top: 0;
    margin-bottom: 32px;
  }
  .contact-info {
    border-radius: 0 0 var(--border-radius-small) var(--border-radius-small);
    padding: 40px 30px;
  }
  .contact-info-border-start {
    border-right: 0;
    border-bottom: 1px solid var(--border-color);
    border-radius: var(--border-radius-small) var(--border-radius-small) 0 0;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    margin-right: 10px;
    margin-left: 0px;
    word-spacing: -5px;
  }
  .ms-lg-5 {
    margin-left: 32px !important;
  }
  .services-price-wrap {
    width: 100%;
    margin-top: 8px;
  }
  .hero-text {
    padding: 64px 0px 0px 16px;
  }
}

/* 768px–991px — Tablets */
@media (min-width: 768px) and (max-width: 991px) {
  :root {
    --h1-font-size:                 36px;
    --h2-font-size:                 24px;
    --h3-font-size:                 42px;
    --h4-font-size:                 32px;
    --h5-font-size:                 24px;
    --h6-font-size:                 20px;
    --p-font-size:                  16px;
    --menu-font-size:               12px;
    --copyright-font-size:          14px;
    --contact-headers:              14px;
  }
  .navbar-icon {
    font-size: var(--copyright-font-size);
    width: 35.5px;
    height: 35.5px;
    line-height: 35.5px;
  }
  .navbar-nav .nav-link {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .navbar-nav {
    margin-top: 32px;
  }
  .img-size-position {
    margin-top: -300px;
  }
  .img-spriter{
    margin: 3px auto 2px auto;
  }
  .is-sticky .navbar-toggler .navbar-toggler-icon,
  .is-sticky .navbar-toggler .navbar-toggler-icon:before,
  .is-sticky .navbar-toggler .navbar-toggler-icon:after {
    background: var(--dark-color);
  }
  .navbar .container {
    padding: 8px 0px;
    margin: 8px;
  }
  .is-sticky .navbar-toggler .navbar-toggler-icon,
  .is-sticky .navbar-toggler .navbar-toggler-icon:before,
  .is-sticky .navbar-toggler .navbar-toggler-icon:after {
    background: var(--dark-color);
  }
  .navbar-nav {
    background: var(--dark-color);
  }
  .is-sticky .navbar-nav {
    background: var(--white-color);
  }
  .hero-text {
    padding: 128px 0px 64px 64px;
  }
  .services-icon-wrap {
    display: none !important;
    margin-bottom: -128px;
  }
  .services-thumb {
    padding: 16px 8px 32px 8px !important;
  } 
  .services-thumb-up {
    margin-bottom: 0px;
  }   
  .logo-image {
    position: absolute;
    left: 80%;
    top: 50%;
    width: 64px;
  }
  .navbar .custom-btn {
    font-size: 16px;
    padding: 16px 32px;
  }
  .navbar-brand, .navbar-brand:hover {
    margin-left: 0px !important;
  }
  .about-thumb {
    padding-right: 0px;
    padding-left: 0px;
  }
  .navbar {
    padding: 0px !important;
  }
  .telephone {
    width: 100%;
    padding: 16px 16px 0px 16px;
  }
  .telephone-link {
    width: 384px;
    padding: 8px 16px !important;
    margin: -64px auto 0px auto;
  }
  .telephone-button {
    margin: 0px;
  }
  .featured-numbers {
    padding-left: 16px;
    font-size: var(--h3-font-size);
  }
  .featured-text {
    padding-left: 16px;
  }
  .page-title-margin-top {
    margin-top: 64px;
  }
  .header-text {
    padding-left: 8px;
  }
  .navbar-toggler {
    margin: 8px 8px auto auto;
    padding-bottom: 16px;
  }
  .avatar-image {
    width: 96px;
    height: 96px;
  }
  .dragokatic {
    background: var(--secondary-color);
    position: relative;
    overflow: hidden;
    height: 100vh;
    padding-top: 256px;
  }
  .drago-katic-development-text-box,
  .dragokatic h2 {
    font-size: var(--h2-font-size);
    text-align: center;
  }
  .header-drago-katic {
    font-size: 20px;
  }
  .drago-katic-development {
    font-size: 20px;
  }
  .dragokatic-image {
    min-width: inherit;
    margin: -75px 0px 0px -12px;
  }
  .other-pages-header {
    height: 100vh !important;
    padding-top: 0px;
  }
  .order-a-website-position {
    margin: 0px auto 0px auto;
  }
  .other-pages-description {
    font-size: var(--h6-font-size);
    color: var(--white-color);
    text-shadow: 2px 2px 5px rgba(13, 19, 33, 0.8), -2px -2px 5px rgba(13, 19, 33, 0.8);
    padding: 32px 8px;
    text-align: center;
  }
  .other-pages-title {
    margin-top: 0px;
  }
  .other-pages-subtitle {
    margin-top: 0px;
  }
  .services-font-size {
    font-size: var(--h4-font-size);
    padding: 0px 16px;
  }
  .section-margin {
    margin-top: 0px;
  }
  .section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .services-price-wrap {
    width: 48%;
  }
  .align-items-center {
    width: 100%;
  }
  .container {
    max-width: 100%;
  }
}

/* 576px–767px — Large phones / Small tablets */
@media (min-width: 576px) and (max-width: 767px) {
  :root {
    --h1-font-size:                 36px;
    --h2-font-size:                 24px;
    --h3-font-size:                 42px;
    --h4-font-size:                 32px;
    --h5-font-size:                 24px;
    --h6-font-size:                 20px;
    --p-font-size:                  16px;
    --menu-font-size:               12px;
    --copyright-font-size:          14px;
    --contact-headers:              14px;
  }
  .navbar-icon {
    font-size: var(--copyright-font-size);
    width: 35.5px;
    height: 35.5px;
    line-height: 35.5px;
  }
  .navbar-nav .nav-link {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .navbar-nav {
    margin-top: 32px;
  }
  .img-size-position {
    margin-top: -300px;
  }
  .img-spriter{
    margin: 3px auto 2px auto;
  }
  .is-sticky .navbar-toggler .navbar-toggler-icon,
  .is-sticky .navbar-toggler .navbar-toggler-icon:before,
  .is-sticky .navbar-toggler .navbar-toggler-icon:after {
    background: var(--dark-color);
  }
  .navbar .container {
    padding: 8px 0px;
    margin: 8px;
  }
  .is-sticky .navbar-toggler .navbar-toggler-icon,
  .is-sticky .navbar-toggler .navbar-toggler-icon:before,
  .is-sticky .navbar-toggler .navbar-toggler-icon:after {
    background: var(--dark-color);
  }
  .navbar-nav {
    background: var(--dark-color);
  }
  .is-sticky .navbar-nav {
    background: var(--white-color);
  }
  .hero-text {
    padding: 128px 0px 64px 64px;
  }
  .services-icon-wrap {
    display: none !important;
    margin-bottom: -128px;
  }
  .services-thumb {
    padding: 16px 8px 32px 8px !important;
  } 
  .services-thumb-up {
    margin-bottom: 0px;
  }   
  .logo-image {
    position: absolute;
    right: 0%;
    top: 40%;
    width: 64px;
  }
  .navbar .custom-btn {
    font-size: 16px;
    padding: 16px 32px;
  }
  .navbar-brand, .navbar-brand:hover {
    margin-left: 0px !important;
  }
  .about-thumb {
    padding-right: 0px;
    padding-left: 0px;
  }
  .navbar {
    padding: 0px !important;
  }
  .telephone {
    width: 100%;
    padding: 16px 16px 0px 16px;
  }
  .telephone-link {
    width: 256px;
    padding: 8px 16px !important;
    margin: -64px auto 0px 30%;
  }
  .telephone-button {
    margin: 0px;
  }
  .featured-numbers {
    padding-left: 16px;
    font-size: var(--h3-font-size);
  }
  .featured-text {
    padding-left: 16px;
  }
  .page-title-margin-top {
    margin-top: 64px;
  }
  .header-text {
    padding-left: 8px;
  }
  .navbar-toggler {
    margin: 8px 8px auto auto;
    padding-bottom: 16px;
  }
  .avatar-image {
    width: 96px;
    height: 96px;
  }
  .dragokatic {
    background: var(--secondary-color);
    position: relative;
    overflow: hidden;
    height: 100vh;
    padding-top: 256px;
  }
  .drago-katic-development-text-box,
  .dragokatic h2 {
    font-size: var(--h2-font-size);
    text-align: center;
  }
  .header-drago-katic {
    font-size: 20px;
  }
  .drago-katic-development {
    font-size: 20px;
  }
  .dragokatic-image {
    min-width: inherit;
    margin: -75px 0px 0px -12px;
  }
  .other-pages-header {
    height: 100vh !important;
    padding-top: 0px;
  }
  .order-a-website-position {
    margin: 0px auto 0px auto;
  }
  .other-pages-description {
    font-size: var(--h6-font-size);
    color: var(--white-color);
    text-shadow: 2px 2px 5px rgba(13, 19, 33, 0.8), -2px -2px 5px rgba(13, 19, 33, 0.8);
    padding: 32px 8px;
    text-align: center;
  }
  .other-pages-title {
    margin-top: 0px;
  }
  .other-pages-subtitle {
    margin-top: 0px;
  }
  .services-font-size {
    font-size: var(--h4-font-size);
    padding: 0px 16px;
  }
  .section-margin {
    margin-top: 0px;
  }
  .section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .services-price-wrap {
    width: 48%;
  }
  .align-items-center {
    width: 100%;
  }
  .container {
    max-width: 100%;
  }
  .tag-cloud {
    gap: 0.3rem;
    padding: 0.5rem;
  }
}

/* 481px–575px — Medium phones */
@media (min-width: 481px) and (max-width: 575px) {
  :root {
    --h1-font-size:                 36px;
    --h2-font-size:                 24px;
    --h3-font-size:                 42px;
    --h4-font-size:                 32px;
    --h5-font-size:                 24px;
    --h6-font-size:                 20px;
    --p-font-size:                  16px;
    --menu-font-size:               16px;
    --copyright-font-size:          14px;
    --contact-headers:              14px;
  }
  .navbar-icon {
    font-size: var(--copyright-font-size);
    width: 35.5px;
    height: 35.5px;
    line-height: 35.5px;
  }
  .navbar-nav .nav-link {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .navbar-nav {
    margin-top: 32px;
  }
  .img-size-position {
    margin-top: -300px;
  }
  .img-spriter{
    margin: 3px auto 2px auto;
  }
  .navbar-nav {
    background: var(--dark-color);
  }
  .is-sticky .navbar-nav {
    background: var(--white-color);
  }
  .is-sticky .navbar-toggler .navbar-toggler-icon,
  .is-sticky .navbar-toggler .navbar-toggler-icon:before,
  .is-sticky .navbar-toggler .navbar-toggler-icon:after {
    background: var(--dark-color);
  }
  .navbar .container {
    padding: 8px 0px;
    margin: 8px;
  }
  .hero-text {
    padding: 128px 0px 64px 32px;
  }
  .services-icon-wrap {
    display: none !important;
    margin-bottom: -128px;
  }
  .services-thumb {
    padding: 16px 8px 32px 8px !important;
  } 
  .services-thumb-up {
    margin-bottom: 0px;
  }   
  .logo-image {
    position: absolute;
    left: 80%;
    top: 50%;
    width: 64px;
  }
  .navbar .custom-btn {
    font-size: 16px;
    padding: 16px 32px;
  }
  .navbar-brand, .navbar-brand:hover {
    margin-left: 0px !important;
  }
  .about-thumb {
    padding-right: 0px;
    padding-left: 0px;
  }
  .navbar {
    padding: 0px !important;
  }
  .telephone {
    width: 100%;
    padding: 32px 16px 0px 16px;
  }
  .telephone-link {
    width: 100%;
    margin: 0px;
    padding: 8px 16px !important;;
  }
  .telephone-button {
    margin: 0px;
  }
  .featured-numbers {
    padding-left: 16px;
    font-size: var(--h3-font-size);
  }
  .featured-text {
    padding-left: 16px;
  }
  .page-title-margin-top {
    margin-top: 64px;
  }
  .header-text {
    padding-left: 8px;
  }
  .navbar-toggler {
    margin: 8px 8px auto auto;
    padding-bottom: 16px;
  }
  .avatar-image {
    width: 96px;
    height: 96px;
    margin-left: -40px;
  }
  .dragokatic {
    background: var(--secondary-color);
    position: relative;
    overflow: hidden;
    height: 100vh;
    padding-top: 256px;
  }
  .drago-katic-development-text-box,
  .dragokatic h2 {
    font-size: var(--h2-font-size);
    text-align: center;
  }
  .header-drago-katic {
    font-size: 20px;
  }
  .drago-katic-development {
    font-size: 20px;
  }
  .dragokatic-image {
    min-width: inherit;
    margin: -75px 0px 0px -12px;
  }
  .other-pages-header {
    height: 100vh !important;
    padding-top: 0px;
  }
  .order-a-website-position {
    margin: 0px auto 0px auto;
  }
  .other-pages-description {
    font-size: var(--h6-font-size);
    color: var(--white-color);
    text-shadow: 2px 2px 5px rgba(13, 19, 33, 0.8), -2px -2px 5px rgba(13, 19, 33, 0.8);
    padding: 32px 8px;
    text-align: center;
  }
  .other-pages-title {
    margin-top: 0px;
  }
  .other-pages-subtitle {
    margin-top: 0px;
  }
  .services-font-size {
    font-size: var(--h4-font-size);
    padding: 0px 16px;
  }
  .section-margin {
    margin-top: 0px;
  }
  .section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .services-price-wrap {
    width: 100%;
    margin-top: 8px;
  }
  .align-items-center {
    width: 100%;
  }
  .container {
    max-width: 100%;
  }
  .tag-cloud {
    gap: 0.3rem;
    padding: 0.5rem;
  }
}

/* 321px–480px — Small phones */
@media (min-width: 321px) and (max-width: 480px) {
  :root {
    --h1-font-size:                 30px;
    --h2-font-size:                 20px;
    --h3-font-size:                 32px;
    --h4-font-size:                 32px;
    --h5-font-size:                 24px;
    --h6-font-size:                 16px;
    --p-font-size:                  16px;
    --menu-font-size:               14px;
    --copyright-font-size:          14px;
    --contact-headers:              14px;
  }
  .hero-text {
    padding: 192px 0px 16px 0px;
  }
  .services-icon-wrap {
    display: none !important;
    margin-bottom: -128px;
  }
  .services-thumb {
    padding: 16px 8px 32px 8px !important;
  }    
  .logo-image {
    position: absolute;
    right: 0%;
    top: 40%;
    width: 64px;
  }
  .navbar .custom-btn {
    font-size: 16px;
    padding: 16px 32px;
  }
  .navbar-brand, .navbar-brand:hover {
    margin-left: 0px !important;
  }
  .about-thumb {
    padding-right: 0px;
    padding-left: 0px;
  }
  .navbar {
    padding: 0px !important;
  }
  .telephone {
    width: 100%;
    padding: 32px 16px 0px 16px;
  }
  .telephone-link {
    width: 100%;
    margin: 0px;
    padding: 8px 16px !important;;
  }
  .telephone-button {
    margin: 0px;
  }
  .navbar-icon {
    font-size: var(--copyright-font-size);
    width: 35.5px;
    height: 35.5px;
    line-height: 35.5px;
  }
  .navbar-nav .nav-link {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .navbar-nav {
    margin-top: 32px;
  }
  .img-size-position {
    margin-top: -300px;
  }
  .img-spriter{
    margin: 3px auto 2px auto;
  }
  .navbar .container {
    padding: 8px 0px;
    margin: 8px;
  }
  .is-sticky .navbar-toggler .navbar-toggler-icon,
  .is-sticky .navbar-toggler .navbar-toggler-icon:before,
  .is-sticky .navbar-toggler .navbar-toggler-icon:after {
    background: var(--dark-color);
  }
  .navbar-nav {
    background: var(--dark-color);
  }
  .is-sticky .navbar-nav {
    background: var(--white-color);
  }
  .featured-numbers {
    padding-left: 16px;
    font-size: var(--h3-font-size);
  }
  .featured-text {
    padding-left: 16px;
  }
  .page-title-margin-top {
    margin-top: 64px;
  }
  .header-text {
    padding-left: 8px;
  }
  .navbar-toggler {
    /*margin-right: 8px;
    margin-top: -16px;*/
    margin: 8px 8px auto auto;
    padding-bottom: 16px;
  }
/*---------------------------------------
  AVATAR IMAGE               
-----------------------------------------*/
  .avatar-image {
    width: 96px;
    height: 96px;
  }
/*---------------------------------------
  DRAGO KATIĆ               
-----------------------------------------*/
  .dragokatic {
    background: var(--secondary-color);
    position: relative;
    overflow: hidden;
    height: 100vh;
    padding-top: 256px;
  }
  .drago-katic-development-text-box,
  .dragokatic h2 {
    font-size: var(--h2-font-size);
    text-align: center;
  }
  .header-drago-katic {
    font-size: 20px;
  }
  .drago-katic-development {
    font-size: 20px;
  }
  .dragokatic-image {
    min-width: inherit;
    margin: -75px 0px 0px -12px;
  }
  .other-pages-header {
    height: 100vh !important;
    padding-top: 0px;
  }
  .order-a-website-position {
    margin: 0px auto 0px auto;
  }
  .other-pages-description {
    font-size: var(--h6-font-size);
    color: var(--white-color);
    text-shadow: 2px 2px 5px rgba(13, 19, 33, 0.8), -2px -2px 5px rgba(13, 19, 33, 0.8);
    padding: 32px 8px;
    text-align: center;
  }
  .other-pages-title {
    margin-top: 0px;
    font-size: var(--h1-font-size) !important;
  }
  .other-pages-subtitle {
    margin-top: 0px;
  }
  .services-font-size {
    font-size: var(--h4-font-size);
    padding: 0px 16px;
  }
  .section-margin {
    margin-top: 0px;
  }
  .services-price-wrap {
    width: 100%;
    margin-top: 8px;
  }
  .tag-cloud {
    gap: 0.3rem;
    padding: 0.5rem;
  }
}

/* ≤320px — Very small screens */
@media (max-width: 320px) {
  :root {
    --h1-font-size:                 28px;
    --h2-font-size:                 20px;
    --h3-font-size:                 32px;
    --h4-font-size:                 28px;
    --h5-font-size:                 20px;
    --h6-font-size:                 16px;
    --p-font-size:                  14px;
    --menu-font-size:               14px;
    --copyright-font-size:          14px;
    --contact-headers:              14px;
  }
  .hero-text {
    padding: 128px 0px 64px 0px;
  }
  .services-icon-wrap {
    display: none !important;
    margin-bottom: -128px;
  }
  .services-thumb {
    padding: 16px 8px 32px 8px !important;
  }    
  .logo-image {
    position: absolute;
    right: 0%;
    top: 40%;
    width: 64px;
  }
  .navbar .custom-btn {
    font-size: 16px;
    padding: 16px 32px;
  }
  .navbar-brand, .navbar-brand:hover {
    margin-left: 0px !important;
  }
  .about-thumb {
    padding-right: 0px;
    padding-left: 0px;
  }
  .navbar {
    padding: 0px !important;
  }
  .telephone {
    width: 100%;
    padding: 32px 16px 8px 16px;
  }
  .telephone-link {
    width: 100%;
    margin: 0px;
    padding: 8px 16px !important;;
  }
  .telephone-button {
    margin: 0px;
  }
  .navbar-icon {
    font-size: var(--copyright-font-size);
    width: 35.5px;
    height: 35.5px;
    line-height: 35.5px;
  }
  .navbar-nav .nav-link {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .navbar-nav {
    margin-top: 32px;
  }
  .img-size-position {
    margin-top: -300px;
  }
  .img-spriter{
    margin: 3px auto 2px auto;
  }
  .navbar .container {
    padding: 8px 0px;
    margin: 8px;
  }
  .is-sticky .navbar-toggler .navbar-toggler-icon,
  .is-sticky .navbar-toggler .navbar-toggler-icon:before,
  .is-sticky .navbar-toggler .navbar-toggler-icon:after {
    background: var(--dark-color);
  }
  .navbar-nav {
    background: var(--dark-color);
  }
  .is-sticky .navbar-nav {
    background: var(--white-color);
  }
  .featured-numbers {
    padding-left: 8px;
    font-size: var(--h3-font-size);
  }
  .featured-text {
    padding-left: 8px;
  }
  .page-title-margin-top {
    margin-top: 64px;
  }
  .header-text {
    padding-left: 8px;
  }
  .navbar-toggler {
    /*margin-right: 8px;
    margin-top: -16px;*/
    margin: 8px 8px auto auto;
    padding-bottom: 16px;
  }
/*---------------------------------------
  AVATAR IMAGE               
-----------------------------------------*/
  .avatar-image {
    width: 96px;
    height: 96px;
  }
/*---------------------------------------
  DRAGO KATIĆ               
-----------------------------------------*/
  .dragokatic {
    background: var(--secondary-color);
    position: relative;
    overflow: hidden;
    height: 100vh;
    padding-top: 256px;
  }
  .drago-katic-development-text-box,
  .dragokatic h2 {
    font-size: var(--h2-font-size);
    text-align: center;
  }
  .header-drago-katic {
    font-size: 20px;
  }
  .drago-katic-development {
    font-size: 20px;
  }
  .dragokatic-image {
    min-width: inherit;
    margin: -75px 0px 0px -12px;
  }
  .other-pages-header {
    height: 100vh !important;
    padding-top: 0px;
  }
  .order-a-website-position {
    margin: 0px auto 0px auto;
  }
  .other-pages-description {
    font-size: var(--h6-font-size);
    color: var(--white-color);
    text-shadow: 2px 2px 5px rgba(13, 19, 33, 0.8), -2px -2px 5px rgba(13, 19, 33, 0.8);
    padding: 32px 8px;
    text-align: center;
  }
  .other-pages-title {
    margin-top: 0px;
  }
  .other-pages-subtitle {
    margin-top: 0px;
  }
  .services-font-size {
    font-size: var(--h4-font-size);
    padding: 0px 16px;
  }
  .section-margin {
    margin-top: 0px;
  }
  .services-price-wrap {
    width: 100%;
    margin-top: 8px;
  }
  .tag-cloud {
    gap: 0.3rem;
    padding: 0.5rem;
  }
}

/* =======================================
   END OF RESPONSIVE STYLES
   ======================================= */