/*
    
    Ticket Number: PROWL-186

    Author(s): Web Design Dpt @ William Reed - Digital Delivery 
    Created: 30/03/2023
    Last Modified: 03/04/2023 By AN

    -----------------------------------------------------------

    Desktop Styles

    1.0 Reset Styles
    1.1 Default Values
    1.2 Site Structure Starts Here
    1.3 FAQs
    1.4 Acordion Styles


    Tablet Styles
    
    

    
    Mobile Styles
   

*/

/* HTML5 display-role reset for older browsers */

body {
	font-family: arial;
	line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

ol,
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;
}


/*
    1.1 Default Values

    Brand Colour Root Variables
	
*/

:root {
	
	/* Brand Colour Variables */

	--primary-brand: #62a9a0;
	--primary-brand-dark: #367C81;
	--primary-brand-grey: #f0f2f2;
	--primary-cta: #F8722E;
	--primary-cta-hover: #E15007;
}

/*
    1.1 Site Structure Starts Here
*/

h1,
h2,
h3 {
	font-family: "klavika-web", sans-serif;
	font-weight: 400;
	font-style: normal;
}


/* 
1.3 FAQs
*/

.migration-faq {	
	padding: 38px 38px 51px 38px;
	width: 100%;	
}

#faqs {
	max-width: 780px;
	width: 100%;
}

.migration-faq h1 {
	align-self: start;
	font-size: 40px;
	letter-spacing: -0.008em;
	line-height: 48px;
	margin: 0 0 30px 0;
	padding: 0;
	font-weight: bold;
}

#faqs h2 {
    color:#18181B;
    font-size: 28px;
    line-height: 32px;
    margin: 0;
    max-width: 780px;
    padding: 0 0 130px 0;
    width: 100%;
}

/* 
    1.7 - faq-accordion Styles
*/

ul.faq-accordion {
    list-style: none;
    padding: 0;
    font-size: 16px;
    line-height: 24px;
    margin: 0 0 0 0;
    width: 100%;
    max-width: 780px;
  }    
  
  ul.faq-accordion li,
  ul.faq-accordion li p {
    font-size: 16px;
    line-height: 24px;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
  }

  ul.faq-accordion li p:first-of-type {
	margin-bottom: 10px;
  }

  ul.faq-accordion li:first-child a.toggle {
    border-top: none;
  }
  
  ul.faq-accordion li a.toggle {
    box-sizing: border-box;
    border-bottom: 2px solid #E5E5E5;
    color: #18181B;
    display: block;
    padding: 16px 0;
    position: relative;
    width: 100%;            
    text-decoration: none;
  }

ul.faq-accordion li a.toggle::before {
    content: "";
    position: absolute;
    right: 0;
    top: 12px;
    width: 30px;
    height: 30px;
    background-image: url(https://d53bpfpeyyyn7.cloudfront.net/Pictures/web/b/b/i/expand_circle_down_fill0_wght400_grad0_opsz48_653004.svg);
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: 0 0;
}

  ul.faq-accordion li a.toggle:hover {
    color: var(--primary-brand-dark);
  }

  ul.faq-accordion li a.toggled {
    color: var(--primary-brand);
    font-weight: 600;
    border-bottom: 0;
    position: relative;
  }

  ul.faq-accordion li a.toggle.toggled::before {
    transform: rotate(-180deg);
}
  
  ul.faq-accordion .inner {
    box-sizing: border-box;
    border-bottom: 2px solid var(--primary-brand-dark);
    display: none;
    padding: 0 0 25px 0;
    margin: 0;
    overflow: hidden;
  }     
  
  ul.faq-accordion .inner .answer {
    color: rgba(0, 0, 0, 0.55);
    font-family: 'klavika-web';
    font-size: 14px;
    line-height: 14px;
    padding: 0;
    margin: 0 0 8px 0;
    text-transform: uppercase;
  }

/*
    Tablet Styles
*/

@media screen and (min-width: 729px) and (max-width: 1120px) {

}

/*
    Mobile Styles
*/

@media screen and (max-width: 728px) {	
	.migration-faq {
		padding: 20px;
	}

	ul.faq-accordion li a.toggle {
		padding-right: 40px;
	}



}