body, div, h3, h4, h5, h6, p, ul, img, footer {margin:0px; padding:0px; }


@font-face {
  font-family: 'Quicksand-SemiBold';
  src: url('https://www.sketch-draw.com/Quicksand-SemiBold.eot'); /* IE9 Compat Modes */
  src: url('https://www.sketch-draw.com/Quicksand-SemiBold.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('https://www.sketch-draw.com/Quicksand-SemiBold.woff2') format('woff2'), /* Super Modern Browsers */
       url('https://www.sketch-draw.com/Quicksand-SemiBold.woff') format('woff'), /* Modern Browsers */
       url('https://www.sketch-draw.com/Quicksand-SemiBold.ttf') format('truetype'), /* Safari, Android, iOS */
       url('https://www.sketch-draw.com/Quicksand-SemiBold.svg#Quicksand-SemiBold') format('svg'); /* Legacy iOS */
}

@font-face {
  font-family: 'Quicksand-SemiBold';
  src: url('https://sketch-draw.com/Quicksand-SemiBold.eot'); /* IE9 Compat Modes */
  src: url('https://sketch-draw.com/Quicksand-SemiBold.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('https://sketch-draw.com/Quicksand-SemiBold.woff2') format('woff2'), /* Super Modern Browsers */
       url('https://sketch-draw.com/Quicksand-SemiBold.woff') format('woff'), /* Modern Browsers */
       url('https://sketch-draw.com/Quicksand-SemiBold.ttf') format('truetype'), /* Safari, Android, iOS */
       url('https://sketch-draw.com/Quicksand-SemiBold.svg#Quicksand-SemiBold') format('svg'); /* Legacy iOS */
}

body {
  font-family: 'Quicksand-SemiBold', sans-serif;
}


  

main {
   background-color: white;
    margin: 0 auto; 
}

.navbar {
     background-image: linear-gradient(0deg, #008001, #089909); /* Background color for the navbar */
    color: #fff; /* Text color for the navbar */
    padding: 10px 0; /* Increased padding for the top and bottom of the navbar */
}
.container-nav {
    max-width: 1200px; /* Set a maximum width for the content */
    margin: 0 auto; /* Center the content horizontally */
    display: flex;
    justify-content: space-between; /* Align the logo and menu at opposite ends */
    align-items: center; /* Vertically center the content */
}
.logo {
    font-size: 24px; /* Font size for the logo */
    text-decoration: none; /* Remove underline from the logo */
    padding-left: 20px;
    color: #fff; /* Text color for the logo */
}
.menu {
    list-style: none; /* Remove bullet points from the menu */
    display: flex;
    align-items: center; /* Center the menu vertically */
}
.menu li {
    margin-right: 20px; /* Add spacing between menu items */
}
.menu a {
    text-decoration: none; /* Remove underline from menu links */
    color: #fff; /* Text color for menu links */
    font-weight: bold; /* Make menu links bold */
     font-size: 24px; /* Larger font size for menu links */
    transition: color 0.3s; /* Smooth color transition on hover */
}
.menu a:hover {
    color: #f8de7f; /* Change color on hover */
}
header {
    width: 100%;
    margin: 0 auto; 
    text-align: left;
}
p {
    font-size: 17px;
    color: #4C4B4B;
    text-align: justify;
    text-justify: inter-word;
}
a {
    color: #2041AD;
}
.share {
    text-align: center;
}
.share a {
  text-decoration: none; /* Remove underline */
}
h1 {
    text-align: center;
    padding: 2%;
}
h2 {
    text-align: center;
}
.section-left {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px;
    background-color: #d4d6d3; /* Change the background color as needed */
}
.section-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px;
    background-color: white; /* Change the background color as needed */
}
.section-left .content {
    order: 1;
}
.section-left .image {
    order: 2;
}
.section-right .content {
    order: 2;
}
.section-right .image {
    order: 1;
}
/* Additional styles as needed for text, images, etc. */
.content {
    flex: 1;
    max-width: 50%;
    padding: 0 0 16px 0;
}
.image img {
    max-width: 100%;
    height: auto;
}
.iframe img {
    max-width: 100%;
    height: auto;
}
.section-left img,
.section-right img {
      border: 2px solid #0069b5;
  border-radius: 10px;
}

footer {
  line-height: 1.4;
  background-color: #008001;
  width: 100%;
}
.footer-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 100px;
  align-items: center;
  background-color: #008001; /* Change the background color as needed */
}
.footer-inner .image {
  max-width: 50%; /* Set the max-width for the "image" in PC */
}
.footer-inner .content {
  max-width: 40%; /* Set the max-width for the "content" in PC */
}
footer p {
    color: white;
    font-size: 16px;
}
footer a {
    color: white;
    text-decoration: none;
}
footer a:hover {
    color: #F8DE7F;
}
.apps {
    display: none;
}

.empty-row {
    margin-bottom: 20px;
}






.subscription-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 0 50px 0;
}

.subscription-option {
    width: 300px;
    height: 340px;
    border: 1px solid #ccc;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px; /* Add padding to the option */
}

.subscription-option h2 {
    font-size: 26px;
    color: #4C4B4B;
    margin-bottom: 10px;
}

.subscription-option {
    position: relative;
    transition: box-shadow 0.3s ease; /* Add a transition to the box shadow */
}

.subscription-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: orange;
    display: none;
    transition: opacity 0.3s ease; /* Add a transition to opacity */
    opacity: 0; /* Initially set opacity to 0 */
}

.subscription-option:hover::before {
    display: block;
    opacity: 1; /* Set opacity to 1 on hover */
}

.subscription-option ul {
    list-style-position: inside; /* bullets on left text aligned with them */
    padding: 0;
    flex: 1;
    color: #4C4B4B;
}
.subscription-option li {
    margin: 5px;
    font-size: 17px;
}
.subscription-option button {
    background-color: #008001;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 15px;
    font-size: 22px;
      font-family: 'Quicksand-SemiBold', sans-serif;
    margin: 10px 0; /* Add margin to the button */
    cursor: pointer;
    /* Transition on both background color and opacity */
transition: background-color 0.5s ease, opacity 0.5s ease;

}
.subscription-option button:hover {
    background-color: #F8DE7F;
    color: black;
    border: none;
}




  /* jump to picker  */
.center-button {
  display: flex;
  justify-content: center;
  align-items: center;
}

.my-button {
  background: #008001; /* Solid background color */
  background-image: linear-gradient(0deg, #008001, #089909);
  margin: 0 30px 30px 30px;
  color: #fff;
  font-family: 'Quicksand-SemiBold', sans-serif;
  font-size: 22px;
  padding: 15px 25px;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 1s ease, color 1s ease; /* Use background for the easing effect */
}

.my-button img {
  width: 30px; /* Adjust the width as needed */
  height: auto; /* Maintain aspect ratio */
  margin: -10px 16px -10px -10px;
}

/* Change background color on hover */
.my-button:hover {
  background: #F8DE7F; /* Solid background color on hover */
  color: black;
}


.tutor {
    background-color: #F8DE7F;
    padding: 30px;
}
.image-tutor {
    text-align: center;
}
.image-tutor img {
    margin: 4px;
    padding: 1px;
    border: solid grey 1px;
    border-radius: 25px;
    display: inline-block;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.7); /* Adds shadow to the images */
    transition: box-shadow 0.3s ease-in-out; /* Smooth transition for shadow removal */
}
.image-tutor img:hover {
    box-shadow: none; /* Removes shadow on hover */
}
.member {
     float:right;
     margin: 2px;
     width: 100px;
       text-decoration: none;
}


.floatright {
    float: right;
}



#goto2 {
    text-decoration: none;
    list-style: none;
}
.medh:hover {
    border-radius: 25px;
    box-shadow: 0 0 20px rgba(255,255,255,.6);
}


 #drawing-board {
            border: 1px solid #000;
        }

.frame-container {
    position: relative;
    overflow: hidden;
    height: 780px; /* Adjust as needed */
        width: 100%;
}

.frame {
    position: absolute;
    top: -100px; /* Adjust to hide desired top part */
    left: 0;
    width: 100%;
    height: 100%;
}




















@media (max-width: 1240px) {
    .section-left {
    padding: 40px;
}
.section-right {
    padding: 40px;
}
}

@media (max-width: 1150px) {
.section-left,
.section-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}
.section-left .content,
.section-right .content {
    order: 1;
    max-width: 100%; /* Set a specific max-width value */
}
.section-left .image,
.section-right .image {
    order: 2;
}
.simplist {
  text-align: left; /* Reset the text alignment to left */
}
 .footer-inner {
    flex-direction: column-reverse; /* Reverse the order for mobile devices */
    align-items: center;
    padding: 40px;
  }
.footer-inner .image {
    max-width: 100%; /* Set the max-width for the "image" in tablets */
}
.footer-inner .content {
    max-width: 100%; /* Set the max-width for the "content" in tablets */
}
img { /*ovo je resilo presiroke slike*/
  width: auto ;
  max-width: 100% ;
  height: auto ;
}
iframe { 
 width: 800px ;
  height: 504px;
}
video { /*ovo je resilo presiroke slike*/
  width: auto ;
  max-width: 100% ;
  height: auto ;
} 
.gallerypc1 {
display: none;
}
.gallerypc {
display: none;
}
.nomob {
    display: none;
}
.logo {
    width: 8%;
}
.frame {
    position: relative;
    top: -100px; /* Adjust to hide desired top part */
    height: 780px; /* Allow the iframe to take full height */
    width: 500px;
}
}

/* For tablets */
@media (max-width: 1024px) {
html, body {
overflow-x:hidden;
}
p {
    font-size: 20px;
}
footer a {
    font-size: 22px;
}
footer p {
    font-size: 22px;
}
.picture {
    margin: 0 20px; /* Adjust the spacing between images */
}
.drawing {
        margin: 20px 0 20px 0; /* Remove the margin for tablets */
     max-width: 500px;
}
.apps {
    display: block;
}
.apps-container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
}
ol li {
      font-size: 20px;
}
.float-left { /* mobile only apps list */
 text-align: left;
 font-size: 20px;
 margin-left: 5%;
}
}



@media only screen and (max-width: 800px) {
 .subscription-container {
        flex-direction: column;
         margin: 0 auto;
    }
    .subscription-option {
        margin: 10px 0;
    }
}


/*razlika izmedju mob i desktop*/
@media only screen and (max-width: 601px) {
.section-left,
.section-right {
    padding: 20px;
}  
.logo {
    padding-left: 10px;
    padding-right: 10px; 
}
.menu a {
     font-size: 20px;
}
.menu li {
    margin-right: 18px; /* Add spacing between menu items */
}
article {
    display: block;
    text-align: center; /* Center-align the content */
    padding: 50px 0; /* Adjust padding as needed */
}
.picture {
    margin: 20px auto; /* Center-align and add spacing between stacked images */
}
.controls {
    flex-direction: column;
}
.color-thickness-group {
    flex-direction: column;
}
.input-group {
    width: 100%;
}
ol {
    padding-left: 1.5em; /* Adjust this value to your preference */
    margin-left: 0; /* Remove the default margin */
}
ol li {
    margin-left: -0.5em; /* Counteract the default margin on list items */
}
.frame {
    width:100%;
}
    iframe {
  width: auto ;
  max-width: 100% ;
  height: auto ;
}
}



@media only screen and (max-width: 510px) {
.menu li {
    margin-right: 12px; /* Add spacing between menu items */
}
}    

@media only screen and (max-width: 440px) {
footer p {
margin:2%;
}
h1 {
    font-size: 20px;
}
.my-button {
    font-size: 18px;
}
.menu li {
    margin-right: 8px; /* Add spacing between menu items */
}
.logo {
    font-size: 24px; /* Font size for the logo */
    padding-left: 2px;
}
footer a {
    font-size: 20px;
}
footer p {
    font-size: 20px;
}
}

/* my iPhone and samsung edge use */
@media only screen and (max-width: 415px) {
.menu a {
     font-size: 16px;
}
}

@media only screen and (max-width: 360px) {
.my-button {
    font-size: 16px;
}
.menu a {
     font-size: 14px;
}
}