/*--------------------------------------*/

/* Fonts
/*--------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/*--------------------------------------*/
/* Bootstrap 5 css
/* Font Awesome css
/* Effect css
/*--------------------------------------*/
/*
@import url("https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css");

@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css");

@import url("https://unpkg.com/aos@2.3.1/dist/aos.css");
*/
/*--------------------------------------*/

/*Element Base
/*--------------------------------------*/
body,
html,
header,
footer,
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
ul,
li,
p,
section,
main,
nav{
	margin:0px;
	padding:0px;
	display:block;
}
*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:focus-visible {
    outline: -webkit-focus-ring-color auto 0px;
}
.navbar-toggler:focus,
button:focus,
.btn-close:focus,
.btn-check:focus+.btn,
.btn:focus,
.accordion-button:focus,
.form-check-input:focus,
.form-control:focus,
.page-link:focus{
	box-shadow: none;
}
body{
	overflow-x: hidden;
}
a{
	text-decoration: none;
}
img{
	max-width: 100%;
	height:auto;
	object-fit: cover;
	vertical-align: middle;
}
.navbar-toggler{
	border: 0;
}
.z-index-9{
	z-index: 9;
}
.cursor-pointer{
	cursor: pointer;
}
.centerdiv{
	display: flex;
	align-items: center;
	justify-content: center;
}
.aligndiv{
	display: flex;
	align-items: center;
}
/* Fonts */
:root {
	--font-default: "Poppins", sans-serif;
}
/* Colors */
:root {
	--color-default: #222222;
	--color-primary: #1d293f;
	--color-warning: #ef6c20;
}
/* Smooth scroll behavior */
:root {
	scroll-behavior: smooth;
}
body{
	font-size: 16px;
	line-height: 1.5;
	font-family: var(--font-default);
	color: var(--color-default);
}
.spad{
	padding: 80px 0;
}
.spad-2{
	padding: 40px 0;
}
.primary-bg{
	background-color: var(--color-primary);
}
/*--------------------------------------*/

/*Typography
/*--------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6{
	text-transform: uppercase;
	font-family: "Playfair Display", serif;
	font-weight: 500;
}
.section-header{
    position: relative;
	max-width: 460px;
	margin: 0 auto;
}
.section-header:after {
    content: "";
    position: absolute;
    display: block;
    width: 100px;
    height: 2px;
    background-color: #7366f4;
    left: 0;
    right: 0;
    bottom: -10px;
    margin: auto;
}
/*--------------------------------------*/

/*Scroll top button
/*--------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #7366f4;
  width: 36px;
  height: 36px;
  border-radius: 50px;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-primary);
}
.scroll-top i {
  font-size: 28px;
  color: #FFFFFF;
  line-height: 0;
}
.scroll-top:hover {
  background-color: #7366f4;
  color: #FFFFFF;
  box-shadow: 0 0 4px;
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
}
/*--------------------------------------*/

/* Button with Animation
/*--------------------------------------*/
.button.animation-btn {
    --white: #ffe7ff;
    --purple-100: #f4b1fd;
    --purple-200: #d190ff;
    --purple-300: #c389f2;
    --purple-400: #8e26e2;
    --purple-500: #5e2b83;
    --radius: 18px;
  
    border-radius: var(--radius);
    outline: none;
    cursor: pointer;
    font-size: 16px;
    font-family: Arial;
    background: transparent;
    letter-spacing: 1px;
    border: 0;
    position: relative;
    width: 150px;
    height: 48px;
    transform: rotate(353deg) skewX(4deg);
	margin: 18px auto;
  }
  
  .animation-btn .bg {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    filter: blur(1px);
  }
  .animation-btn .bg::before,
  .animation-btn .bg::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: calc(var(--radius) * 1.1);
    background: var(--purple-500);
  }
  .animation-btn .bg::before {
    filter: blur(5px);
    transition: all 0.3s ease;
    /*box-shadow:
      -7px 6px 0 0 rgb(115 75 155 / 40%),
      -14px 12px 0 0 rgb(115 75 155 / 30%),
      -21px 18px 4px 0 rgb(115 75 155 / 25%),
      -28px 24px 8px 0 rgb(115 75 155 / 15%),
      -35px 30px 12px 0 rgb(115 75 155 / 12%),
      -42px 36px 16px 0 rgb(115 75 155 / 8%),
      -56px 42px 20px 0 rgb(115 75 155 / 5%); */
  }
  
  .animation-btn .wrap {
    border-radius: inherit;
    overflow: hidden;
    height: 100%;
    transform: translate(6px, -6px);
    padding: 3px;
    background: linear-gradient(
      to bottom,
      var(--purple-100) 0%,
      var(--purple-400) 100%
    );
    position: relative;
    transition: all 0.3s ease;
  }
  
  .animation-btn .outline {
    position: absolute;
    overflow: hidden;
    inset: 0;
    opacity: 0;
    outline: none;
    border-radius: inherit;
    transition: all 0.4s ease;
  }
  .animation-btn .outline::before {
    content: "";
    position: absolute;
    inset: 2px;
    width: 120px;
    height: 300px;
    margin: auto;
    background: linear-gradient(
      to right,
      transparent 0%,
      white 50%,
      transparent 100%
    );
    animation: spin 3s linear infinite;
    animation-play-state: paused;
  }
  
  .animation-btn .content {
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    position: relative;
    height: 100%;
    gap: 6px;
    border-radius: calc(var(--radius) * 0.85);
    font-weight: 600;
    transition: all 0.3s ease;
    background: linear-gradient(
      to bottom,
      var(--purple-300) 0%,
      var(--purple-400) 100%
    );
    box-shadow:
      inset -2px 12px 11px -5px var(--purple-200),
      inset 1px -3px 11px 0px rgb(0 0 0 / 35%);
  }
  .animation-btn .content::before {
    content: "";
    inset: 0;
    position: absolute;
    z-index: 10;
    width: 80%;
    top: 45%;
    bottom: 35%;
    opacity: 0.7;
    margin: auto;
    background: linear-gradient(to bottom, transparent, var(--purple-400));
    filter: brightness(1.3) blur(5px);
  }
  
  .animation-btn .char {
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .animation-btn .char span {
    display: block;
    color: transparent;
    position: relative;
  }
  .animation-btn .char span:nth-child(5) {
    margin-left: 5px;
  }
  .animation-btn .char.state-1 span:nth-child(5) {
    margin-right: -3px;
  }
  .animation-btn .char.state-1 span {
    animation: charAppear 1.2s ease backwards calc(var(--i) * 0.03s);
  }
  .animation-btn .char.state-1 span::before,
  .animation-btn .char span::after {
    content: attr(data-label);
    position: absolute;
    color: var(--white);
    text-shadow: -1px 1px 2px var(--purple-500);
    left: 0;
  }
  .animation-btn .char span::before {
    opacity: 0;
    transform: translateY(-100%);
  }
  .animation-btn .char.state-2 {
    position: absolute;
    left: 46px;
  }
  .animation-btn .char.state-2 span::after {
    opacity: 1;
  }
  
  .animation-btn .icon {
    animation: resetArrow 0.8s cubic-bezier(0.7, -0.5, 0.3, 1.2) forwards;
    z-index: 10;
  }
  .animation-btn .icon div,
  .animation-btn .icon div::before,
  .animation-btn .icon div::after {
    height: 3px;
    border-radius: 1px;
    background-color: var(--white);
  }
  .animation-btn .icon div::before,
  .animation-btn .icon div::after {
    content: "";
    position: absolute;
    right: 0;
    transform-origin: center right;
    width: 11px;
    border-radius: 15px;
    transition: all 0.3s ease;
  }
  .animation-btn .icon div {
    position: relative;
    width: 20px;
    box-shadow: -2px 2px 5px var(--purple-400);
    transform: scale(0.9);
    background: linear-gradient(to bottom, var(--white), var(--purple-100));
    animation: swingArrow 1s ease-in-out infinite;
    animation-play-state: paused;
  }
  .animation-btn .icon div::before {
    transform: rotate(44deg);
    top: 1px;
    box-shadow: 1px -2px 3px -1px var(--purple-400);
    animation: rotateArrowLine 1s linear infinite;
    animation-play-state: paused;
  }
  .animation-btn .icon div::after {
    bottom: 1px;
    transform: rotate(316deg);
    box-shadow: -2px 2px 3px 0 var(--purple-400);
    background: linear-gradient(200deg, var(--white), var(--purple-100));
    animation: rotateArrowLine2 1s linear infinite;
    animation-play-state: paused;
  }
  
  .animation-btn .path {
    position: absolute;
    z-index: 12;
    bottom: 0;
    left: 0;
    right: 0;
    stroke-dasharray: 150 480;
    stroke-dashoffset: 150;
    pointer-events: none;
  }
  
  .animation-btn .splash {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    stroke-dasharray: 60 60;
    stroke-dashoffset: 60;
    transform: translate(-17%, -31%);
    stroke: var(--purple-300);
	width: 250px;
	top: -22px;
  }
  
  /** STATES */
  
  .animation-btn.button:hover .words {
    opacity: 1;
  }
  .animation-btn.button:hover .words span {
    animation-play-state: running;
  }
  
  .animation-btn.button:hover .char.state-1 span::before {
    animation: charAppear 0.7s ease calc(var(--i) * 0.03s);
  }
  
  .animation-btn.button:hover .char.state-1 span::after {
    opacity: 1;
    animation: charDisappear 0.7s ease calc(var(--i) * 0.03s);
  }
  
  .animation-btn.button:hover .wrap {
    transform: translate(8px, -8px);
  }
  
  .animation-btn.button:hover .outline {
    opacity: 1;
  }
  
  .animation-btn.button:hover .outline::before,
  .animation-btn.button:hover .icon div::before,
  .animation-btn.button:hover .icon div::after,
  .animation-btn.button:hover .icon div {
    animation-play-state: running;
  }
  
  .animation-btn.button:active .bg::before {
    filter: blur(5px);
    opacity: 0.7;
    box-shadow:
      -7px 6px 0 0 rgb(115 75 155 / 40%),
      -14px 12px 0 0 rgb(115 75 155 / 25%),
      -21px 18px 4px 0 rgb(115 75 155 / 15%);
  }
  .animation-btn.button:active .content {
    box-shadow:
      inset -1px 12px 8px -5px rgba(71, 0, 137, 0.4),
      inset 0px -3px 8px 0px var(--purple-200);
  }
  
  .animation-btn.button:active .words,
  .animation-btn.button:active .outline {
    opacity: 0;
  }
  
  .animation-btn.button:active .wrap {
    transform: translate(3px, -3px);
  }
  
  .animation-btn.button:active .splash {
    animation: splash 0.8s cubic-bezier(0.3, 0, 0, 1) forwards 0.05s;
  }
  
  .animation-btn.button:focus .path {
    animation: path 1.6s ease forwards 0.2s;
  }
  
  .animation-btn.button:focus .icon {
    animation: arrow 1s cubic-bezier(0.7, -0.5, 0.3, 1.5) forwards;
	right: -20px;
    position: absolute;
  }
  
  .animation-btn .char.state-2 span::after,
  .animation-btn.button:focus .char.state-1 span {
    animation: charDisappear 0.5s ease forwards calc(var(--i) * 0.03s);
  }
  
  .animation-btn.button:focus .char.state-2 span::after {
    animation: charAppear 1s ease backwards calc(var(--i) * 0.03s);
  }
  
  
  .animation-btn .char-2 span:nth-child(5) {
    margin-left: 0;
  }
  .animation-btn .char-2.state-1 span:nth-child(5) {
    margin-right: 0;
  }
  .animation-btn .char-2 span:nth-child(6) {
    margin-left: 5px;
  }
  .animation-btn .char-2.state-1 span:nth-child(6) {
    margin-right: 0;
  }

  .animation-btn .char-3 span:nth-child(5) {
    margin-left: 0;
  }

  .animation-btn .char-3.state-1 span:nth-child(5) {
    margin-right: 0;
  }

  .animation-btn .char-3 span:nth-child(7) {
    margin-left: 5px;
  }

  .animation-btn .char-3.state-1 span:nth-child(7) {
    margin-right: 0;
  }
  
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes charAppear {
    0% {
      transform: translateY(50%);
      opacity: 0;
      filter: blur(20px);
    }
    20% {
      transform: translateY(70%);
      opacity: 1;
    }
    50% {
      transform: translateY(-15%);
      opacity: 1;
      filter: blur(0);
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  @keyframes charDisappear {
    0% {
      transform: translateY(0);
      opacity: 1;
    }
    100% {
      transform: translateY(-70%);
      opacity: 0;
      filter: blur(3px);
    }
  }
  
  @keyframes arrow {
    0% {
      opacity: 1;
    }
    50% {
      transform: translateX(60px);
      opacity: 0;
    }
    51% {
      transform: translateX(-200px);
      opacity: 0;
    }
    100% {
      transform: translateX(-128px);
      opacity: 1;
    }
  }
  
  @keyframes swingArrow {
    50% {
      transform: translateX(5px) scale(0.9);
    }
  }
  
  @keyframes rotateArrowLine {
    50% {
      transform: rotate(30deg);
    }
    80% {
      transform: rotate(55deg);
    }
  }
  
  @keyframes rotateArrowLine2 {
    50% {
      transform: rotate(330deg);
    }
    80% {
      transform: rotate(300deg);
    }
  }
  
  @keyframes resetArrow {
    0% {
      transform: translateX(-128px);
    }
    100% {
      transform: translateX(0);
    }
  }
  
  @keyframes path {
    from {
      stroke: white;
    }
    to {
      stroke-dashoffset: -480;
      stroke: #f9c6fe;
    }
  }
  
  @keyframes splash {
    to {
      stroke-dasharray: 2 60;
      stroke-dashoffset: -60;
    }
  }
/*--------------------------------------*/

/*--------------------------------------*/

/*My Services Section*/
/*--------------------------------------*/
.services-section .wrap{
	margin-bottom: 60px;
}
.services-section .section-header h2 span{
	color: #7366f4;
}
.services-section p{
	font-size: 14px;
}
.services-section .card{
	background-color: transparent;
	color: #FFFFFF;
	box-shadow: 0 0 4px;
	padding: 20px 10px;
	height: 100%;
}
.services-section .card .card-icon{
	border-radius: 50%;
	width: 48px;
	height: 48px;
	margin: 0px auto;
	box-shadow: 0 0 3px;
}
.services-section .card .card-icon i{
	color: #7366f4;
	font-size: 20px;
	line-height: 20px;
}
.services-section .voliet-btn{
	top: 14px;
    right: 0;
    height: auto;
	padding: inherit;
	width: 160px;
}
.services-section .voliet-btn h6{
	font-size: 14px;
}
.services-section .voliet-btn p{
	font-size: 12px;
}
.bg-gradient-info {
    background-color: #00c8ff;
    background: linear-gradient(180deg, #00c8ff, #0072ff) !important;
    border: 0px solid rgba(255, 255, 255, .125);
}
.services-section .voliet-btn .card-body{
	padding: 10px 20px;
}
.services-section .voliet-btn .icon{
	border: 2px solid #FFF;
    border-radius: 50px;
    padding: 4px;
    width: 30px;
    height: 30px;
}
/*--------------------------------------*/
/*Profile Page*/
/*--------------------------------------*/
.profile-page .mobile-code .iti{
	width: 100%;
}
.profile-page .mobile-code .iti__country-list{
	z-index: 3;
}
/*--------------------------------------*/

/*--------------------------------------*/

/*Responsive*/
/*--------------------------------------*/
@media only screen and (min-width: 1554px) and (max-width: 1920px) {
	
}

@media only screen and (min-width: 1200px) and (max-width: 1250px) {
	
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	
}

/* `xxl` applies to x-large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {
	
}

/* `xl` applies to large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
	
}

/* `lg` applies to medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
	.services-section .voliet-btn{
		margin: 0px auto 30px;
	}
}

/* `md` applies to small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
	
}

@media (max-width: 640px) {
	
}

/* `sm` applies to x-small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
	
}

/* `xs` returns only a ruleset and no media query */
@media (max-width: 480px) {
	
}
/*--------------------------------------*/