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

CSS RESET RULES

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


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


CSS variables


====================================================*/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* font-optical-sizing: auto; */
  
:root{
  --color-blue-secondary: #0BA5EC;
  --blendBackground:#80e9ff;
  --blendForeground:#7a73ff;
  --green-primary:#278664;
  --button-background:#4e594a;
  --button-background-hover:#278664;
  --green-secondary:#79a471;
  --color-blue-primary: #278664;
--product-heading-color: #F38744;
--background-minor-heading:#ffdb80;
--e-global-color-uicore_headline: #101828;
--e-global-color-uicore_body: rgba(16, 24, 40, 0.6);
--e-global-color-uicore_dark: #101828;
/* --color-light: rgb(249, 250, 251); */
 --color-light: rgb(255, 255, 255); 
--color-light-darker: rgb(244, 245, 246);
--e-global-color-uicore_white: #FFFFFF;
  --background-selection:#278664;
  --color-selection:#ffffff;
  --font-family-general:"Inter", sans-serif;
--font-family-headings: ;
  /* --color-general:rgba(0, 0, 0, 0.8);
  --color-headings:#000000; */
  --color-general:#676e5d;
  --color-headings:#4e594a;
  --font-weight-headings:600 ;
  --color-hover-links:#278664;
  --background-buttons-general:#4e594a;
  --color-buttons-general:#FFFFFF;
  --background-general:#ffffff;
  --font-size-h1:86px;
  --font-size-h2:62px;
  --font-size-h3:46px;
  --font-size-h4:36px;
  --font-size-h5:22px;
  --font-size-h6:20px;
  --font-size-p:18px    
}

  @media (max-width:1024px) {
    :root{
      --font-size-h1:66px;
      --font-size-h2:44px;
      --font-size-h3:36px;
      --font-size-h4:24px;
      --font-size-h5:21px;
      --font-size-h6:19px;
      --font-size-p:15px
    }
    
  }
  @media (max-width:767px) {
    :root {
      --font-size-h1:46px;
      --font-size-h2:36px;
      --font-size-h3:28px;
      --font-size-h4:22px;
      --font-size-h5:20px;
      --font-size-h6:18px;
      --font-size-p:14px;
    }
    
  }
  @media (max-width:450px) {
    :root {
      --font-size-h1:36px;
      --font-size-h2:32px;
      --font-size-h3:28px;
      --font-size-h4:24px;
      --font-size-h5:20px;
      --font-size-h6:16px;
      --font-size-p:14px;
    }
    
  }

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, header ol, header ul, header li,
footer ol, footer ul, footer li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: var(--font-size-p);
	font: inherit;
	vertical-align: baseline;
  box-sizing: border-box;
}
*,*::before,*::after{
  box-sizing: border-box;
  margin: 0;
	padding: 0;
}
/*------------------------------------------------
## Typography
------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-family-headings);
	color:var(--color-headings);
  font-weight: var(--font-weight-headings);
  margin-bottom:10px;
}
@media (min-width:1024px) {
    .blog-body h1{
      font-size: calc(var(--font-size-h1) - 10px);
      line-height: calc( var(--font-size-h1) + 7px );
      margin-bottom:10px;
    }
    .blog-body h2{
      font-size: calc(var(--font-size-h2) - 10px);
      line-height: calc( var(--font-size-21) + 7px );
      margin-bottom:10px;
    }
    .blog-body h3{
      font-size: calc(var(--font-size-h3) - 10px);
      line-height: calc( var(--font-size-h3) + 7px );
      margin-bottom:10px;
    }
    .blog-body h4{
      font-size: calc(var(--font-size-h4) - 10px);
      line-height: calc( var(--font-size-h4) + 7px );
      margin-bottom:10px;
    }
}
h1 {
	font-size: var(--font-size-h1);
	line-height: calc( var(--font-size-h1) + 4px );
}

h2 {
	font-size: var(--font-size-h2);
	line-height: calc( var(--font-size-h2) + 4px );
}

h3 {
	font-size: var(--font-size-h3);
	line-height: calc( var(--font-size-h3) + 4px );
}

h4 {
	font-size: var(--font-size-h4);
	line-height: calc( var(--font-size-h4) + 4px );
}

h5 {
	font-size: var(--font-size-h5);
	line-height: calc( var(--font-size-h5) + 4px );
}

h6 {
	font-size: var(--font-size-h6);
	line-height: calc( var(--font-size-h6) + 4px );
}

p {
	font-size: var(--font-size-p);
	line-height: calc(var(--font-size-p) + 8px ); 
}


/*

SELECTION BACKGROUND 

*/
::-moz-selection { /* Code for Firefox */
  color: var(--color-selection);
  background: var(--background-selection);
}

::selection {
  color: var(--color-selection);
  background: var(--background-selection);
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body,main,header {
	line-height: 1;
    width:100%;
    
 
}
main{
    max-width: 100vw !important;
    width:100%;
}

header ol, header ul,footer ol, footer ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

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

BUTTON RESET

========================================================*/
button{
    position: relative;
    display:flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size:var(--font-size-p) ;
    padding:10px 30px;
    border:none;
    background: none;
}

button.button-general{
  background: var(--color-headings);
  border-radius: 50px;
  color:var(--color-buttons-general);
}
button.button-general:hover{
  background: var(--green-primary);
  border-radius: 50px;
  color:var(--color-buttons-general);
}
button.button.green{
  background: var(--button-background-hover);
  border-radius: 50px;
  color:var(--color-buttons-general);
}
button.button-general.green:hover{
  background: var(--button-background);
  border-radius: 50px;
  color:var(--color-buttons-general);
}
button::before,
button::after {
content:"";
position:absolute;
background:var(var(--green-primary));
width:100%;
height:100%;
z-index:-1;
left:0;
top:0;
border-radius:inherit;
}

button.button-general:hover::before,
button.button-general:hover::after {
content:"";
position:absolute;
background:var(--green-primary);
width:100%;
height:100%;
z-index:-1;
left:0;
top:0;
border-radius:inherit;
}
button.button-general.greeb:hover::before,
button.button-general.greeb:hover::after {
content:"";
position:absolute;
background:var(--button-background);
width:100%;
height:100%;
z-index:-1;
left:0;
top:0;
border-radius:inherit;
}

button:hover::before {
  animation:pulse 2s ease-in-out infinite;
  -webkit-animation:pulse 2s ease-in-out infinite ;
  -moz-animation:pulse 2s ease-in-out infinite ;
  -o-animation:pulse 2s ease-in-out infinite ;
  
}
button:hover::after {
  animation:pulse 2s 1s ease-in-out infinite;
  -webkit-animation:pulse 2s 1s ease-in-out infinite ;
  -moz-animation:pulse 2s 1s ease-in-out infinite ; 
  -o-animation:pulse 2s 1s ease-in-out infinite ;
}
button.no-pulse:hover::before {
  animation:none;
  -webkit-animation:none ;
  -moz-animation:none ;
  -o-animation:none ;
  
}
button.no-pulse:hover::after {
  animation:none;
  -webkit-animation:none ;
  -moz-animation:none ; 
  -o-animation:none ;
}
@keyframes pulse {
  0% {
    transform:scale(1);
    opacity:1;
  }
  100% {
    transform:scale(1.15, 1.5);
    opacity:0;
  }
}

/*------------------------------------------------
## Layout
------------------------------------------------*/


html {
	font-size: var(--font-size-p);
	box-sizing: border-box;
	scroll-behavior: smooth;
    width:100%;
    line-height: 1.5;
	 background: var(--color-light); 
}


small {
	font-size: calc(var(--font-size-p) - 4px);
	line-height: var(--font-size-p);
}


em {
	font-style: italic;
	font-variation-settings: 'wght' 200;
}


/*------------------------------------------------
## Layout
------------------------------------------------*/
*,
*:before,
*:after {
	position: relative;
	box-sizing: inherit;
  box-sizing: border-box;
}

body {
	font-size: var(--font-size-p);
	font-family: var(--font-family-general);
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	color: var(--color-general);
	width:100%;
 
}
/* body::after{
  content: "";
  display: block;
  background-image: url("../images/background/noise.webp"); /* background image */
  /* opacity: .15;
  background-repeat: repeat;
  background-size: 257px auto;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 0;
} */ */

html{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	width:100%;
  /* background: var(--background-general); */
}

/*------------------------------------------------
## Links
------------------------------------------------*/
a {
	color: unset;
    text-decoration: none;
    font-weight: 700;
}
.contact-us a {
	color: unset;
    text-decoration: none;
    font-weight: 500;
}


ol,
ul {
	line-height: calc(var(--font-size-p) + 4px);
}


.section-padding{
	padding-left:5%;
	padding-right: 5%;
  margin-top:70px;
}
@media screen and (max-width:500px){
	.section-padding{
		padding-left:4%;
		padding-right: 4%;
	}
}

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

ANIMATION EFFECTS GENERAL

==================================================================================================

*/
p.bold{
  font-weight:600;
  color:var(--color-headings);
}

.bold{
  color:var(--color-headings);
}
header a:hover,
header a:hover,
button:hover{
  animation: shake 0.3s;
  -webkit-animation: shake 0.3s;
  -moz-animation: shake 0.3s; 
  -o-animation: shake 0.3s;
  
}


@keyframes shake {
0% { transform: translate(1px, 1px) rotate(0deg); }
10% { transform: translate(-1px, -2px) rotate(-1deg); }
20% { transform: translate(-3px, 0px) rotate(1deg); }
30% { transform: translate(3px, 2px) rotate(0deg); }
40% { transform: translate(1px, -1px) rotate(1deg); }
50% { transform: translate(-1px, 2px) rotate(-1deg); }
60% { transform: translate(-3px, 1px) rotate(0deg); }
70% { transform: translate(3px, 1px) rotate(-1deg); }
80% { transform: translate(-1px, -1px) rotate(1deg); }
90% { transform: translate(1px, 2px) rotate(0deg); }
100% { transform: translate(1px, -2px) rotate(-1deg); }
}








/*

HEADER


*/





header{
  display:flex;
  justify-content: space-between;
  align-items:center;
  padding:0px 5%;
  width:100%;
  max-width:100vw;
  height: 65px;
  z-index: 1000;
  position:fixed;
  top:0;
  left:0;
  right:0;
  transition:0.5s;
}
header.header-scrolled{
  background: var(--background-general);
  
  background: rgba(249, 250, 251, 0.7);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition:0.5s;
}
header:hover{
  background: rgba(249, 250, 251, 0.7);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition:0.5s;
}
header.header-scrolled:hover{
 background: rgba(249, 250, 251, 0.7);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition:0.5s;

}
header.header-scrolled-other-pages{
  background: rgba(249, 250, 251, 0.7);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition:0.5s;
}
header.header-scrolled::after{
  content: "";
  display: block;
  background-image: url("../images/background/noise.webp"); /* background image */
  opacity: .15;
  background-repeat: repeat;
  background-size: 65px auto;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 1001;
}
header .logo{
  display:flex;
  align-items: center;
  height:100%;
}
header .logo a{
  height:100%;
  display:flex;
  align-items: center;
  font-size:25px;
  color: var(--color-headings);
  text-transform: capitalize;
  background: #3B5E8E;
  background: linear-gradient(to right, #3B5E8E 58%, #00D4FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}
header .logo img{
  max-width:140px;
  max-height:60% ;
  object-fit: contain;
}
.nav-buttons-phones .logo img{
  max-width:140px;
  max-height:26px ;
  object-fit: contain;
}
header nav.laptops-shows{
  height: 100%;
}

header nav.laptops-shows ul.main-links-large-screen{
 display:flex;
 align-items: center;
 justify-content: space-between;
 height: 100%;
}
header nav.laptops-shows ul li.main-link-large-screen{
  height: 100%;
  margin: 0 20px;
  
}
header nav.laptops-shows ul li.main-link-large-screen a.main-link{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: var(--color-headings);
  position:relative;
  transition:all 0.6s;
  -webkit-transition:all 0.6s;
  -moz-transition:all 0.6s;
  -o-transition:all 0.6s;
}
header nav.laptops-shows ul li.main-link-large-screen a.main-link i{
  -webkit-text-stroke: 0.5px;
  margin-left:7px;
  margin-top:2px;
  font-size:calc(var(--font-size-p) - 3px)

}
header nav.laptops-shows ul li.main-link-large-screen:hover a.main-link{
color:var(--color-hover-links);
}
header nav.laptops-shows ul.minor-links-large-screen
{
position:absolute;
background: rgba(249, 250, 251, 0.7);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
min-width:250px;
min-height:100%;
border-radius:2px;
display:none;
flex-direction: column;
justify-content: flex-start;
align-items:flex-start;
transition:all 1s;

}
header nav.laptops-shows li:hover ul.minor-links-large-screen{
  top:100%;
  display:flex;
}
header nav.laptops-shows ul.minor-links-large-screen li{
  width:100%;
  display:flex;
  justify-content: flex-start;
  align-items:flex-start;
}
header nav.laptops-shows ul.minor-links-large-screen a{
  padding:15px 20px;
  display:block;
  width:100%;
  text-align: left;
  color: var(--color-headings);
  position:relative;
  transition:0.5s;
}
header nav.laptops-shows ul.minor-links-large-screen a:hover{
  padding:15px 20px;
  display:block;
  width:100%;
  text-align: left;
  background: var(--color-headings);
  color:var(--background-general) ;
  border-bottom: 0.5px solid var(--color-general);
  position:relative;
  transition:0.5s;
}
header nav.laptops-shows ul.minor-links-large-screen a:after{
  content:'';
  position:absolute;
  bottom:-1.5px;
  height:3px;
  background:var(--color-general);
  width:0%;
  left:0;
  transition:1s;
}
header nav.laptops-shows ul.minor-links-large-screen a:hover:after{
  content:'';
  position:absolute;
  bottom:-1.5px;
  height:2px;
  background:var(--color-general);
  width:100%;
  left:0;
  transition:0.5s;
}
header nav.laptops-shows ul.minor-links-large-screen li:last-of-type a:after{
  content:'';
  position:absolute;
  bottom:-1.5px;
  height:0px;
  background:var(--color-general);
  width:10%;
  left:0;
  
}
header nav.laptops-shows ul.minor-links-large-screen li:last-of-type a{
  border-bottom:none;
}

.nav-buttons-phones,.phones-show{
  display:none;
}
@media screen and (max-width:1008px){
  header nav.laptops-shows{
    display:none;
  }
  header{
    height:50px;
  }
  header.header-scrolled::after{
    content: "";
    display: block;
    background-image: url("../images/background/noise.webp"); /* background image */
    opacity: .15;
    background-repeat: repeat;
    background-size: 50px auto;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: 99999998;
  }
  #laptops-shows{
    display:none;
  }
  .nav-buttons-phones,.phones-show{
    display:flex;
  }
  .nav-buttons-phones{
    display:none;
    z-index: 1001;
  }
  .nav-buttons-phones.show{
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background: var(--background-general);
    padding:2% 5%;
    display:flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
    height: 100vh !important;
    width: 100vw !important;
    z-index: 10000;
    
  }
  .nav-buttons-phones::after{
    content: "";
    display: block;
    background-image: url("../images/background/noise.webp"); /* background image */
    opacity: .15;
    background-repeat: repeat;
    background-size: 257px auto;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height:100%;
    width:100%;
    pointer-events: none;
    z-index: 99999998;
  }
  .logo-nav-holder .logo-close{
  display:flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  }
  .logo-nav-holder .logo-close i{
    font-size: 45px;
    cursor:pointer;

  }
  .nav-buttons-phones nav{
    margin-top:40px;
  }
  .nav-buttons-phones nav ul li{
    margin:45px 0px;
  }
  .nav-buttons-phones nav ul li li{
    margin-left: 20px;

  }
  .nav-buttons-phones nav ul li ul{
    height:0;
    overflow:hidden;

  }
  .nav-buttons-phones nav ul li.active ul{
    height:auto;
    overflow:visible;

  }
  .nav-buttons-phones nav ul li.phone-main-links.active ul{
    height:auto;
    overflow:visible;
  }
  .nav-buttons-phones nav ul li a{
    color:var(--color-headings);
    transition:all 0.6s;
    -webkit-transition:all 0.6s;
    -moz-transition:all 0.6s;
    -o-transition:all 0.6s;
    min-height:30px;

   }
   .nav-buttons-phones nav ul li a{
    position:relative;
    font-size: calc(var(--font-size-p) + 3px);
   }
   .nav-buttons-phones nav ul li a span{
    position:absolute;
    top:0;
    left:0;
    height:100%;
    width:100%;
   }
   
   .nav-buttons-phones nav ul li i{
    -webkit-text-stroke: 0.5px;
    margin-left:10px;
    margin-top:2px;
    font-size:calc(var(--font-size-p) - 3px);

   }
   .nav-buttons-phones nav ul li a:hover{
    color:var(--color-hover-links);
   }
  .buttons.phones-show{
    width:100%;
    justify-self: flex-end;
    display: flex;
    margin-bottom: 60px;
  }
  .buttons.phones-show a{
    display:flex;
    width:100%;
  }
  .buttons.phones-show a button{
    display:flex;
    width:100%;
  }
  .harmburger i{
    font-size: 30px;
    cursor:pointer;
    color:var(--color-headings);
    -webkit-text-stroke: 0.5px;

  }
}



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

FOOTER START
================================================
*/


.footer-top{
    display:flex;
    justify-content:space-between;
    padding-top:40px;
    padding-bottom:40px;
  }
  
  .footer-intro{
    max-width:300px;
    display:flex;
  
    flex-direction:column;
  }
  .download-app{
    margin-top:10px;
    display:flex;
    flex-wrap:wrap;
    
  }
  .download-app a{
    flex-basis:120px;
    margin-right:10px;
    margin-top:10px;
    display:block;
  }
  .download-app a img {
    width: 120px;
    max-width: 100%;
    min-height: 50px;
    height: 100% !important;
  }
  .logo-name{
    display:flex;
    align-items:center;
    margin-bottom:20px;
  }
  .logo-name img{
    max-width:200px;
  }
  .logo-name p{
    font-size: 40px;
    line-height:45px;
    color:var(--color-headings);
    background: #3B5E8E;
    background: linear-gradient(to right, #3B5E8E 58%, #00D4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .footer-links{
    padding-top:20px;
    display:flex;
    flex-wrap:wrap;
    justify-content: space-between;
    flex-basis: 40%;
  }
  .get-intouch{
    flex-basis:20%;
  }
  
  .get-intouch p{
    margin-bottom:10px;
    display:flex;
    align-items:center;
  }
  .get-intouch p i{
    color:var(--color-headings);
    font-size:calc(var(--font-size-p) + 5px);
    margin-right:5px;
  }
  @media screen and (max-width:1100px){
    .footer-top{
      flex-direction: column;
    }
    .footer-links{
      padding-top:20px;
      display:flex;
      flex-wrap:wrap;
      
      flex-basis: 100%;
    }
    .get-intouch{
      flex-basis:100%;
    }
    .footer-intro{
      max-width:100%;
    }
  }
  .get-intouch{
    padding-top:20px;
  }
  .links-container{
    margin-right:40px;
    
  }
  p.links-heading{
    font-size:calc(var(--font-size-p) + 3px);
    color:var(--color-headings);
    margin-bottom:30px;
    font-weight: 600;
  }
  footer ul li{
    margin-bottom: 20px;
  }
  .links-container a{
    font-weight: 500 !important;
    color:var(--color-general);
  }
  footer ul li a:hover{
    color:var(--color-hover-links);
    
  }
  footer ul li:hover{
    animation: shake 0.3s !important;
    -webkit-animation:shake 0.3s !important ;
    -moz-animation:shake 0.3s !important ; 
    -o-animation:shake 0.3s !important ;
  }
  .footer-top{
    margin-top:60px;
  }
  
  @media screen and (max-width:420px){
    .footer-links{
      flex-direction:column;
    }
  }
  .social-links-footer{
    display:flex;
    flex-wrap:wrap;
  }
  .footer-top .get-intouch a{
    background: var(--color-light-darker);
    color: var(--color-headings);
    padding:15px;
    border-radius:5px;
    font-size:20px;
    display:block;
    margin-right:20px;
    margin-top:10px;
    transition:all 1s;
    -webkit-transition:all 1s;
    -moz-transition:all 1s;
    -o-transition:all 1s;
  }
  .footer-top .get-intouch a:hover{
    background: var(--color-headings);
    color:var(--color-buttons-general);
  }
  .footer-bottom{
    background: var(--color-headings);
    color:var(--color-buttons-general);
    padding:30px 5%;
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
  }
  .footer-bottom a{
    font-weight:500px;
    margin-right:20px;
    margin-top:10px;
    display:block;
  }
  .footer-bottom .privacy{
    display:flex;
    flex-wrap:wrap;
  }
  .footer-bottom a:hover{
    color:var(--color-hover-links);
  }
  @media screen and (max-width:420px){
    footer{
      text-align:center;
    }
    .logo-name{
      display:flex;
      align-items:center;
      justify-content:center;
    }
    .footer-links{
      text-align:center;
    }
    .download-app{
      margin-top:10px;
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      justify-content:center;
      
    }
    .get-intouch p{
      text-align:center;
      display:flex;
      align-items:center;
      justify-content:center;
    }
    .links-container {
      margin-right:0px;
    }
    .social-links-footer {
      display: flex;
      flex-wrap: wrap;
      align-items:center;
      justify-content:center;
    }
    .footer-bottom {
      text-align:center;
      display:flex;
      align-items:center;
      justify-content:center;
      flex-direction:column;
    }
  }
  
  /*
  ================================================
  
  FOOTER END
  ================================================
  */
  

.back-to-top{
  box-sizing:border-box;
  position:fixed;
  height: 50px;
  width:50px;
  min-height:50px;
  min-width:50px;
  max-height:50px;
  max-width:50px;
  bottom:-140px;
  right:30px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  box-shadow:0px 0px 10px rgba(0,0,0,0.2);
  border-radius:50%;
  cursor:pointer;
  z-index:3;
  transition:all 0.6s;
  -webkit-transition:all 0.6s;
  -moz-transition:all 0.6s;
  -o-transition:all 0.6s;
}
.back-to-top #progress-value{
  box-sizing:border-box;
  border-radius:50%;
  height:45px;
  width:45px;
  min-height:45px;
  min-width:45px;
  max-height:45px;
  max-width:45px;
  background:var(--background-general);
  display:flex;
  justify-content:center;
  align-items:center;
  transition:all 0.5s;
  -webkit-transition:all 0.5s;
  -moz-transition:all 0.5s;
  -o-transition:all 0.5s;
}
.back-to-top #progress-value i{
  -webkit-text-stroke: 1.5px;
}
.back-to-top:hover{
  animation: shake 0.4s;
  -webkit-animation:shake 0.4s ;
  -moz-animation:shake 0.4s ; 
  -o-animation:shake 0.4s ;
}
.back-to-top:hover #progress-value{
  
  background: var(--green-primary);
  display:flex;
  justify-content:center;
  align-items:center;
  
}
.back-to-top #progress-value:hover i{
  color:var(--background-general);
  -webkit-text-stroke: 1.5px;
}










.hero-blogs{
  padding-top:100px;
  padding-bottom:40px;
    width: 100%;
    z-index: 1;
	display: flex;
	justify-content: center;
}
.hero-content-blogs{
  display: flex;
	justify-content: center;

}
.hero-content-blogs .blog-intro-holder .link-section{
  display:flex;
  align-items:center;
  justify-content: center;
  margin-bottom:30px;
}
.hero-content-blogs .blog-intro-holder .link-section i{
  font-size:12px;
  margin-right:5px;
  margin-left:5px;
  color:var(--color-headings);
}

.blog-intro{
    display:flex;
    justify-content:space-between;
   
    
  }

  .blog-intro .link-section{
    margin-top:20px;
    display:flex;
    align-items:center;
  }
  .blog-intro .link-section i{
    font-size:calc(var(--font-size-p) - 5px);
    -webkit-text-stroke: 1px;
    color:var(--color-headings);
  }
  .blog-intro .blogs-heading{
    margin-bottom:30px;
  }
  .links-bold-and-underline a{
    color:var(--color-headings);
    position:relative;
  }
  .links-bold-and-underline a::after{
    position:absolute;
    content:"";
    height:2px;
    width:0%;
    bottom:-4px;
    left:0px;
    background:var(--color-headings);
    transition:0.5s;
  }
  .links-bold-and-underline a:hover::after{
    width:100%;
  }

  .blog-left{
    flex-basis:70%;
    padding-bottom:80px;
  }
  .blog-right{
    flex-basis:25%;
    padding-bottom:80px;
  }
  .side-bar-blogs{
    width:100%;
    position:sticky;
    top:80px;
  }
  @media screen and (max-width:1008px){
    .side-bar-blogs{
        position: static;
    }
    .blog-intro{
        flex-direction:column;
        padding-bottom:30px;
        
      }
      .blog-left{
        padding-bottom:30px;
      }
      .blog-right{
        padding-bottom:30px;
      }
  }
  .side-bar-content{
    width:100%;
  }
  .search-input{
    display:flex;
    border:1px solid var(--color-light-darker);
    padding:5px 20px;
    border-radius:10px;
    align-items:center;
  }
  .search-input input{
    width:100%;
    padding:10px;
    font-size:var(--font-size-p);
    border:none;
    outline:none;
  }
  p.heading{
    font-weight:600;
    color:var(--color-headings);
    margin-bottom:15px;
    font-size:calc(var(--font-size-p) + 3px);
  }
.space-bottom{
    margin-bottom:45px;
}
.search-container form button {
    animation:none;
    -webkit-animation: none;
    -moz-animation:none;
    -o-animation: none;
    padding:0;
}
.search-container form button:hover {
    animation:none;
    -webkit-animation: none;
    -moz-animation:none;
    -o-animation: none;
    padding:0;
}

.category{
    margin-top:10px;
}
.category a{
    font-weight:500;
}
.category a{
    position:relative;
}
.category a::after{
    position:absolute;
    content: " ";
    bottom:-3px;
    left:0;
    height:2px;
    width:0%;
    background:var(--color-headings);
    transition:0.5s;
}
.category a:hover::after{
    width:100%;
}
.tags a:hover {
    animation:none !important;
    -webkit-animation: none !important;
    -moz-animation:none !important;
    -o-animation: none !important;
    transform: scale(1);
}

.tags-holder{
    display:flex;
    flex-wrap:wrap;
}
.tag{
    margin-right:10px;
    margin-top:10px;
    padding:5px 10px;
    border:1px solid var(--color-light-darker);
    border-radius: 10px;
    transition: 1s;
}
.tag p{
    font-size:calc(var(--font-size-p) - 4px);
    color:var(--color-headings);
    transition: 1s;
    text-transform:uppercase;
}
@media screen and (max-width:1008px){
    .tag p{
        font-size:calc(var(--font-size-p) - 1px);

    }
}
.tag:hover{
    background:var(--color-headings);
    border:none;
}
.tag:hover p{
    color:var(--background-general);
}
  .blog-container{
    width:100%;
    margin-bottom:40px;
  }
  .image-blogs{
    width:100%;
    max-width:100%;
    max-height:500px;
    overflow:hidden;
    border-radius: 10px;
    display:flex;

  }
  .blog-container img{
    width:100%;
    max-width:100%;
    transition:1s;
    border-radius: 10px;
    object-fit:cover;
  }
  
  .blog-body .blog-body-content p img,
  .blog-body .blog-body-content h3 img,
  .blog-body .blog-body-content h2 img,
  .blog-body .blog-body-content img{
    width:100% !important;
    max-width:600px !important;
    transition:1s;
    border-radius: 10px;
    object-fit:contain;
    max-height:300px;
    margin:0px auto;
  }
  .blog-body img.image-main{
    width:100% !important;
    max-width:100% !important;
    transition:1s;
    border-radius: 10px;
    
  }
  .blog-container img:hover{
    transform:scale(1.1);
  
  }
  .blog-details .blog-category p{
    color:var(--color-headings);
    margin-top:20px;
  }
  .blog-title h3{
    font-size:calc(var(--font-size-p) + 20px);
    margin-top:10px;
  }
  @media screen and (max-width:1008px){
    .blog-title h3{
        font-size:var(--font-size-h4);
    }
  }
  .blog-details .other-details{
    display:flex;
    align-items: center;
    margin-top:10px;
    flex-wrap:wrap;
  }
  .blog-details .other-details a,
  .blog-details .other-details p{
    text-transform:uppercase;
    font-size:calc(var(--font-size-p) - 1px);
    color:var(--color-headings);
    font-weight:600;
    margin-right:10px;
  }
.blog-details .other-details a{
    position:relative;
}
.blog-details .other-details a::after{
    position:absolute;
    content: " ";
    bottom:-3px;
    left:0;
    height:2px;
    width:0%;
    background:var(--color-headings);
    transition:0.5s;
}
.blog-details .other-details a:hover::after{
    width:100%;
}

  .attention-grabber{
    margin-top:10px;
  }
  .pagination-blogs{
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .pagination-blogs a{
    padding:10px 15px;
    margin-right:10px;
    border:1px solid var(--color-light-darker);
    color:var(--color-headings);
    font-size:12px;
    text-transform:uppercase;
    font-weight:600;
    border-radius:9px;
  }
  .pagination-blogs a.active{
    background:#000;
    color:#ffffff;
    border:1px solid #000000;

  }
  .pagination-blogs a:hover{
    border:1px solid #000000;
  }
  .pagination-blogs i{
    margin-left:2px;
    margin-right:2px;
    -webkit-text-stroke: 1px;
    font-size:10px;
  }


  @media screen and (max-width:700px){
    .side-bar-content  p.heading{
      text-align:center;
    }
    .section-categories .categories{
      text-align:center;
    }
    .tags-holder{
      display:flex;
      justify-content:center;
    }
    .space-bottom {
      margin-bottom: 20px;
    }
    .blog-right {
      padding-bottom: 0px;
    }
    .blog-intro {
      padding-bottom: 10px;
    }
    .section-padding.reduce-section-padding{
      margin-top:0px;
    }
    .hero-blogs .blogs-heading{
      text-align:center;
    }
    .pagination-blogs {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
    }
  }

  @media screen and (max-width:332px){
    .pagination-blogs a {
      font-size:10px;
      margin:5px;
    }
  }
  @media screen and (max-width:319px){
    .pagination-blogs a {
      padding:10px;
      margin:5px;
    }
  }


  .read-more.section-padding{
    margin-top:120px;
  }

  .pagination-blogs.read-more{
    margin-top:30px;
    justify-content:space-between;
  }
  .pagination-blogs.read-more div{
    width:20px;
    height:100%;
  }
  .blog-body h2{
    font-size:calc(var(--font-size-h4) + 7px);
    line-height:calc(var(--font-size-h4) + 12px);
    margin-top:20px;
    margin-bottom:20px;
  }
  p.category-intro-heading{
    color:var(--color-headings);
    margin-bottom:20px;
  }
  h2.blogs-heading.read-more{
    margin-bottom:20px;
  }
  .minor-read-more-details{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    margin-bottom:30px;
  }
  .minor-read-more-details.links-bold-and-underline a{
    margin-right:10px;
    margin-top:5px;
    color:var(--color-headings);
    font-weight:600;
    text-transform:uppercase;
    font-size:15px;
  }
  .minor-read-more-details.links-bold-and-underline p{
    margin-right:10px;
    margin-top:5px;
    font-weight:600;
    text-transform:uppercase;
    color:var(--color-headings);
    font-size:15px;
  }
  .blog-body img{
    width:100%;
    border-radius:10px;
    margin-bottom:40px;
    margin-top:30px;
  }
  .blog-body p{
    margin-bottom:20px;
  }
  .blog-body a{
    color:var(--color-headings);
  }
  .blog-body blockquote{
    padding:20px;
    border:1.5px solid var(--color-light-darker);
    border-left:4px solid var(--color-headings);
    border-radius:8px;
    margin-top:20px;

  }
  .blog-body cite{
    color:var(--color-headings);
    font-weight:600;
  }
  .blog-body ul,
  .blog-body ol{
    margin-left:40px;
  }
  .blog-body li{
    margin-bottom:20px;
  }


  .blog-author{
    display:flex;
    padding:20px;
    border:1.5px solid var(--color-light-darker);
    border-radius:10px;
    margin-top:20px;
    margin-bottom:30px;
  }
  .blog-author .image-author{
    margin-right:20px;
 
  }
  @media screen and (max-width:500px){
    .blog-author{
      flex-direction:column;
      text-align:center;
    }
    .blog-author .image-author{
      margin-right:0px;
      margin-bottom:20px;
      display:flex;
      align-items:center;
      justify-content:center;
    }
    .blog-body h2{
      font-size:calc(var(--font-size-h4) );
      line-height:calc(var(--font-size-h4) + 2px);
    }
    .read-more.section-padding{
      margin-top:80px;
    }
    .blog-body img {
      margin-bottom: 10px;
      margin-top: 10px;
    }
  }
  .blog-author .image-author img{
     width:80px;
     height:80px;
     border-radius:10px;
     object-fit: cover;
  }
  .name-quote p{
    margin-top:20px;
    
  }
  .name-quote a{
    font-size:calc(var(--font-size-p) + 3px );
  }
  .comments-section{
    padding-top:80px;
  }

  .comments-section .comment{
    margin-top:30px;
    border-top:1px solid var(--color-light-darker);
    display:flex;
    padding:30px 20px;
  }
  .comments-section .comment:last-of-type{
    border-bottom:1px solid var(--color-light-darker);
  }
  .comments-section .comment img{
     height:70px;
     width:70px;
     border-radius:10px;
     margin-right:20px;
     margin-bottom:20px;
  }
  .comment-details{
    width:calc(100% - 70px);
  }
  .top-details-comment{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    margin-bottom:20px;
  }
  .top-details-comment p{
    color:var(--color-headings);
    font-weight:600;
    

  }
  .top-details-comment p.data-time{
    font-size:calc(var(--font-size-p) - 2px);

  }
  @media screen and (max-width:500px){
    .comments-section .comment img{
      height:40px;
      width:40px;
      border-radius:10px;
      margin-right:10px;
      margin-bottom:20px;
   }
  }
  .comment-form{
    margin-top:40px;
  }
  .comment-form h3{
    margin-bottom:30px;
  }
  .related-blogs h3{
    margin-bottom:30px;
  }
  .blogs-related-container{
    display:flex;
    justify-content:space-between;
    
  }
  .blog-left .blogs-related-container{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    
  }
  .blogs-related-container .blog-container{
    min-width:300px;
    max-width:400px;
    margin-right:20px;
  }
  .blog-left .blogs-related-container .blog-container{
    min-width:48% !important;
    max-width:48% !important;
    margin-right:0px;
  
  }
  @media screen and (max-width:700px){
    .blog-left .blogs-related-container .blog-container{
      min-width:100% !important;
      max-width:100% !important;
      margin-right:0px;
    
    }
  }
  @media screen and (max-width:1038px){
    .blogs-related-container{
      display:flex;
      justify-content:space-between;
      flex-wrap:wrap;
      
    }
  }
  @media screen and (max-width:930px){
    .blogs-related-container{
      display:flex;
      justify-content:center;
      flex-wrap:wrap;
      
    }
  }
  @media screen and (max-width:550px){
    .blogs-related-container .blog-container{
      min-width:100%;
      max-width:100%;
      margin-right:0px;
    }
  }

  .comment-form label{
    display:block;
    margin-top:5px;
    margin-bottom:5px;
    opacity:0;
  }

  .comment-form textarea{
    width:100%;
    min-height:150px;
    font-size:var(--font-size-p);
    padding:10px 20px;
    border-radius:8px;
    outline:none;
    border:1px solid var(--color-light-darker);
  }
  .comment-form input{
    width:100%;
    padding:10px 20px;
    font-size:var(--font-size-p);
    border-radius:8px;
    outline:none;
    border:1px solid var(--color-light-darker);
  }
  .comment-form button{
    padding:10px 20px;
  }
  .comment-form .inputs-container{
    display:flex;
    justify-content:space-between;
    margin-bottom:20px;
  }
  .comment-form .input-holder{
    flex-basis:49%;
  }
  @media screen and (max-width:500px){
    .comment-form .inputs-container{
      display:flex;
      justify-content:space-between;
      margin-bottom:20px;
      flex-direction:column;
    }
    .comment-form .input-holder{
      flex-basis:100%;
    }
  }

  @media screen and (min-width:1008px){
    .blogs-related-container .blog-container{
      align-items:center;
    }
    .blogs-related-container .blog-container .other-details p,
    .blogs-related-container .blog-container .other-details a{
      font-size:calc(var(--font-size-p) - 5px);
      line-height: calc(var(--font-size-p) + 8px );
      

    }

  }
  .blog-left .not-found{
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
  }
  .blog-left .not-found img{
    width:100%;
    max-width:400px;
    margin-top:30px;


  }
  .blog-update-approve{
    display:none;
  }
  .blog-update-approve.active{
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  height:100%;
  width:100%;
  background:rgba(0,0,0,0.4);
  display:flex;
  justify-content:center;
  align-items:center;
  }
  .approve-blog-pop-up{
    background:var(--background-general);
    max-width:450px;
    padding:20px;
    border-radius:10px;
  }
  .bi-x.close-approve{
    font-size:30px;
    cursor:pointer;
  }
  .approve-blog-pop-up form input{
     opacity:0;
  }