/*!
Theme Name: Invictus
Theme URI: https://invictus-dizajn.com/
Author: Željko Vinković - Invictus Dizajn
Author URI: https://invictus-dizajn.com/
Description: WordPress custom tema za Invictus Dizajn web stranice.
Version: 1.0.0
Tested up to: 7.0.1
Requires PHP: 8.3
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: invictus
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
Screenshot: /wp-content/themes/invictus/screenshot.png
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.
invictus is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.
*/

@import url("css/animate.css");
@import url("fonts/fonts.css");

/*===================== SADRŽAJ =======================

0. Reset
1. Root
2. Body
3. Placeholders & Highlights
4. Row & Grid
5. Headings
6. Buttons
7. Form
8. Paddings & Margins
9. Breadcrumbs
10. Custom UL
11. Pagination
12. Sliders
13. Header
14. Footer

=======================================================*/

/*===================================================== 

0. Reset

=======================================================*/
*, *::after, *::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}
a, a:active, a:hover, a:focus {
  outline: none;
  text-decoration: none;
}
abbr[title] {
  border-bottom: 1px dotted;
}
dfn {
  font-style: italic;
}
small {
  font-size: 80%;
}
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
  max-width: 100%;
  display: block;
}
svg:not(:root) {
  overflow: hidden;
}
hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  margin-top: 30px;
  margin-bottom: 35px;
  border-width: 0;
  border-top: 1px solid #e1e1e1;
}
pre {
  overflow: auto;
}
code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
strong {
  font-weight: 700;
}
input[type="button"], input[type="submit"] {
  width: auto;
  transition: all 0.4s ease-in-out;
}
.hidden {
  display: none;
}
ul, ol {
  margin: 2rem 0;
  padding: 0;
}
a {
  text-decoration: none;
}


/*===================================================== 

1. Root

=======================================================*/
:root {
  --color-primary: ;
  --color-secondary: ;
  --color-white: #fff;
  --font: ;
  --main-transition: all .3s ease-in-out;
}


/*===================================================== 

2. Body

=======================================================*/
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 56.25%;
  word-wrap: break-word;
}
@media only screen and (min-width: 80.0625em) {
  /*1281px*/
  html {
    font-size: 62.5%;
  }
}
body {
  font-family: var(--font);
  font-weight: 300;
  line-height: 1.5;
  color: var(--color-primary);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 1.6rem;
}
section {
  position: relative;
  z-index: 2;
}
main {
  position: relative;
}
.bg-primary {background: var(--color-primary);}


/*===================================================== 

3. Placeholders & Highlights

=======================================================*/
::-webkit-input-placeholder {
  color: inherit;
  opacity: 1 !important;
}
:-moz-placeholder {
  color: inherit;
  opacity: 1;
}
::-moz-placeholder {
  color: inherit;
  opacity: 1;
}
:-ms-input-placeholder {
  color: inherit;
}
/*::-moz-selection {
  background-color: #c9a84c;
  color: #000;
}
::selection {
  background-color: #c9a84c;
  color: #000;
}*/


/*===================================================== 

4. Row & Grid

=======================================================*/
.row {
  position: relative;
  width: 100%;
  max-width: 131rem;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 2rem;
  padding-right: 2rem;
  display: flex;
  gap: 3%;
}
.row-sm {
  max-width: 100rem;
}
.row-md {
  max-width: 120rem;
}
.row-lg {
  max-width: 180rem;
}
.row-xl {
  max-width: 160rem;
  padding: 0;
}
.row-2xl {
  max-width: 192rem;
  padding: 0;
}
.row-fluid {
  max-width: 100%;
}
.w-25 {width:25%;}
.w-50 {width:50%;}
.w-75 {width:75%;}
.col {
    box-sizing: border-box;
}

@media (min-width:981px) {
  .d-cw-50 {
    width: calc((100% - 3%) / 2);
  }

  .d-cw-33 {
      width: calc((100% - 3% * 2) / 3);
  }

  .d-cw-66 {
      width: calc((100% - 3% * 2) / 3 * 2 + 3%);
  }

  .d-cw-25 {
      width: calc((100% - 3% * 3) / 4);
  }

  .d-cw-75 {
      width: calc((100% - 3% * 3) / 4 * 3 + 3% * 2);
  }
}

@media (max-width:980px) {
  .m-cw-50 {
    width: calc((100% - 3%) / 2);
  }

  .m-cw-33 {
      width: calc((100% - 3% * 2) / 3);
  }

  .m-cw-66 {
      width: calc((100% - 3% * 2) / 3 * 2 + 3%);
  }

  .m-cw-25 {
      width: calc((100% - 3% * 3) / 4);
  }

  .m-cw-75 {
      width: calc((100% - 3% * 3) / 4 * 3 + 3% * 2);
  }
}

@media (max-width: 767px) {
    .row {
        flex-wrap: wrap;
    }
    .m-cw-50, .m-cw-33, .m-cw-66, .m-cw-25, .m-cw-75 {
        width: 100%;
    }
}

/*===================================================== 

5. Headings

=======================================================*/
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 2rem;
  font-weight: 400;
  margin-top: 1rem;
}
h1 {
  /*font-size: 4.8rem;
  line-height: 1.4;*/
}
h2 {
  
}
h3 {
 
}
h4 {
  
}
h5 {
  
}
h6 {
  
}
p {
  margin-bottom: 1.6rem;
}
.title-center {
  text-align: center;
}


/*===================================================== 

6. Buttons

=======================================================*/
.btn {
  
}
.btn-primary {
  /*background-color: #;
  color: #;*/
}
.btn-secondary {

}
.btn-primary:hover {

}
.btn-secondary:hover {

}


/*===================================================== 

7. Form

=======================================================*/
form p {
  margin-bottom: 0;
}
input, textarea, select {
  display: block;
  width: 100%;
  /*border: 1px solid #43515a;*/
  padding: 0.8rem 1rem;
  outline: none;
  /*background-color: #ffffff;*/
  font-family: inherit;
  font-size: 1.6rem;
}
textarea {
  resize: vertical;
  height: 19rem;
}
input:focus, textarea:focus, select:focus {
  /*border-color: #c9a84c;*/
}
input[type="button"] {
  width: auto;
}
label {
  display: block;
  margin-bottom: 0.5rem;
}
button {
  transition: all 0.4s ease-in-out;
  border: 0;
  font-family: inherit;
  font-size: 1.6rem;
  width: auto;
}
fieldset {
  border: 0;
  margin-bottom: 2rem;
}
label.check-wrapper {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-transform: none;
}
.check-wrapper input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkmark {
  position: absolute;
  top: 3px;
  left: 0;
  height: 1.5rem;
  width: 1.5rem;
  /*border: 1px solid #43515a;*/
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.check-wrapper input:checked ~ .checkmark:after {
  display: block;
}
.check-wrapper .checkmark::after {
  left: 0.4rem;
  top: 0.2rem;
  width: 0.5rem;
  height: 1rem;
  /*border: solid #43515a;*/
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}


/*===================================================== 

8. Paddings & Margins

=======================================================*/
.space {
  padding: 4rem 0;
}
.mt-5 {
  margin-top: 5rem;
}
.mb-5 {
  margin-bottom: 5rem;
}
.no-pt {
  padding-top: 0 !important;
}
.no-pb {
  padding-bottom: 0 !important;
}
@media only screen and (min-width: 64.0625em) {
  /*1025px*/
  .space {
    padding: 8rem 0;
  }
}


/*===================================================== 

9. Breadcrumbs

=======================================================*/


/*===================================================== 

10. Custom UL

=======================================================*/
/*.list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list ul li {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1rem;
}
.list ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 2rem;
  height: 2rem;
  background-image: url(images/list.svg);
  background-repeat: no-repeat;
  background-size: 1.6rem;
}
.list2 ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 2rem;
  height: 2rem;
  background-image: url(images/list2.svg);
  background-repeat: no-repeat;
  background-size: 1.6rem;
}*/


/*===================================================== 

11. Pagination

=======================================================*/



/*===================================================== 

12. Sliders

=======================================================*/



/*===================================================== 

13. Header

=======================================================*/


/*===================================================== 

14. Footer

=======================================================*/
